diff --git a/grammar.js b/grammar.js index d40216cff..f98479c6e 100644 --- a/grammar.js +++ b/grammar.js @@ -330,12 +330,31 @@ module.exports = grammar({ anonymous_function: ($) => seq( "fn", - field("parameters", $.function_parameters), + field( + "parameters", + alias($.anonymous_function_parameters, $.function_parameters) + ), optional(seq("->", field("return_type", $._type))), "{", field("body", alias($._expression_seq, $.function_body)), "}" ), + anonymous_function_parameters: ($) => + seq( + "(", + optional( + series_of( + alias($.anonymous_function_parameter, $.function_parameter), + "," + ) + ), + ")" + ), + anonymous_function_parameter: ($) => + seq( + choice($._discard_param, $._name_param), + optional($._type_annotation) + ), expression_group: ($) => seq("{", $._expression_seq, "}"), case: ($) => seq( diff --git a/src/grammar.json b/src/grammar.json index 492ed15c5..7a2468c0f 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -2956,8 +2956,13 @@ "type": "FIELD", "name": "parameters", "content": { - "type": "SYMBOL", - "name": "function_parameters" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "anonymous_function_parameters" + }, + "named": true, + "value": "function_parameters" } }, { @@ -3008,6 +3013,104 @@ } ] }, + "anonymous_function_parameters": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "anonymous_function_parameter" + }, + "named": true, + "value": "function_parameter" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "anonymous_function_parameter" + }, + "named": true, + "value": "function_parameter" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "anonymous_function_parameter": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_discard_param" + }, + { + "type": "SYMBOL", + "name": "_name_param" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_type_annotation" + }, + { + "type": "BLANK" + } + ] + } + ] + }, "expression_group": { "type": "SEQ", "members": [ diff --git a/src/parser.c b/src/parser.c index 2e656c809..bbafa1906 100644 --- a/src/parser.c +++ b/src/parser.c @@ -14,9 +14,9 @@ #endif #define LANGUAGE_VERSION 13 -#define STATE_COUNT 1277 +#define STATE_COUNT 1293 #define LARGE_STATE_COUNT 4 -#define SYMBOL_COUNT 246 +#define SYMBOL_COUNT 249 #define ALIAS_COUNT 1 #define TOKEN_COUNT 90 #define EXTERNAL_TOKEN_COUNT 1 @@ -169,108 +169,111 @@ enum { sym__expression_bit_string_named_segment_option = 142, sym__expression_bit_string_segment_option_size = 143, sym_anonymous_function = 144, - sym_expression_group = 145, - sym_case = 146, - sym_case_subjects = 147, - sym_case_clauses = 148, - sym_case_clause = 149, - sym_case_clause_patterns = 150, - sym_case_clause_pattern = 151, - sym_case_clause_guard = 152, - sym__case_clause_guard_expression = 153, - sym__case_clause_guard_binary_expression = 154, - sym__case_clause_guard_unit = 155, - sym__case_clause_tuple_access = 156, - sym_let = 157, - sym_assert = 158, - sym_negation = 159, - sym__assignment = 160, - sym_record_update = 161, - sym_record_update_arguments = 162, - sym_record_update_argument = 163, - sym__maybe_tuple_expression = 164, - sym_tuple_access = 165, - sym__maybe_record_expression = 166, - sym_field_access = 167, - sym__maybe_function_expression = 168, - sym_arguments = 169, - sym_argument = 170, - sym_hole = 171, - sym_function_call = 172, - sym__pattern = 173, - sym_record_pattern = 174, - sym_record_pattern_arguments = 175, - sym_record_pattern_argument = 176, - sym_pattern_spread = 177, - sym_tuple_pattern = 178, - sym__pattern_bit_string = 179, - sym_pattern_bit_string_segment = 180, - sym_pattern_bit_string_segment_options = 181, - sym__pattern_bit_string_segment_option = 182, - sym__pattern_bit_string_named_segment_option = 183, - sym__pattern_bit_string_segment_option_size = 184, - sym__pattern_bit_string_segment_argument = 185, - sym_list_pattern = 186, - sym_list_pattern_tail = 187, - sym_type_definition = 188, - sym_data_constructors = 189, - sym_data_constructor = 190, - sym_data_constructor_arguments = 191, - sym_data_constructor_argument = 192, - sym_type_alias = 193, - sym_string = 194, - sym_integer = 195, - sym__bit_string_segment_option = 196, - sym__type = 197, - sym__type_annotation = 198, - sym_type_hole = 199, - sym_tuple_type = 200, - sym_function_type = 201, - sym_function_parameter_types = 202, - sym_type = 203, - sym_type_arguments = 204, - sym_type_argument = 205, - sym_type_var = 206, - sym_type_name = 207, - sym_type_parameters = 208, - sym_type_parameter = 209, - sym_identifier = 210, - sym_label = 211, - sym_discard = 212, - sym_type_identifier = 213, - sym_remote_type_identifier = 214, - sym_constructor_name = 215, - sym_remote_constructor_name = 216, - aux_sym_source_file_repeat1 = 217, - aux_sym_target_group_repeat1 = 218, - aux_sym_module_repeat1 = 219, - aux_sym_unqualified_imports_repeat1 = 220, - aux_sym_constant_tuple_repeat1 = 221, - aux_sym__constant_bit_string_repeat1 = 222, - aux_sym_constant_bit_string_segment_options_repeat1 = 223, - aux_sym_constant_record_arguments_repeat1 = 224, - aux_sym_constant_tuple_type_repeat1 = 225, - aux_sym_constant_type_arguments_repeat1 = 226, - aux_sym_external_function_parameters_repeat1 = 227, - aux_sym_function_parameters_repeat1 = 228, - aux_sym_tuple_repeat1 = 229, - aux_sym__expression_bit_string_repeat1 = 230, - aux_sym_expression_bit_string_segment_options_repeat1 = 231, - aux_sym_case_clauses_repeat1 = 232, - aux_sym_case_clause_patterns_repeat1 = 233, - aux_sym_case_clause_pattern_repeat1 = 234, - aux_sym_record_update_arguments_repeat1 = 235, - aux_sym_arguments_repeat1 = 236, - aux_sym_record_pattern_arguments_repeat1 = 237, - aux_sym__pattern_bit_string_repeat1 = 238, - aux_sym_pattern_bit_string_segment_options_repeat1 = 239, - aux_sym_data_constructors_repeat1 = 240, - aux_sym_data_constructor_arguments_repeat1 = 241, - aux_sym_string_repeat1 = 242, - aux_sym_tuple_type_repeat1 = 243, - aux_sym_type_arguments_repeat1 = 244, - aux_sym_type_parameters_repeat1 = 245, - alias_sym_function_body = 246, + sym_anonymous_function_parameters = 145, + sym_anonymous_function_parameter = 146, + sym_expression_group = 147, + sym_case = 148, + sym_case_subjects = 149, + sym_case_clauses = 150, + sym_case_clause = 151, + sym_case_clause_patterns = 152, + sym_case_clause_pattern = 153, + sym_case_clause_guard = 154, + sym__case_clause_guard_expression = 155, + sym__case_clause_guard_binary_expression = 156, + sym__case_clause_guard_unit = 157, + sym__case_clause_tuple_access = 158, + sym_let = 159, + sym_assert = 160, + sym_negation = 161, + sym__assignment = 162, + sym_record_update = 163, + sym_record_update_arguments = 164, + sym_record_update_argument = 165, + sym__maybe_tuple_expression = 166, + sym_tuple_access = 167, + sym__maybe_record_expression = 168, + sym_field_access = 169, + sym__maybe_function_expression = 170, + sym_arguments = 171, + sym_argument = 172, + sym_hole = 173, + sym_function_call = 174, + sym__pattern = 175, + sym_record_pattern = 176, + sym_record_pattern_arguments = 177, + sym_record_pattern_argument = 178, + sym_pattern_spread = 179, + sym_tuple_pattern = 180, + sym__pattern_bit_string = 181, + sym_pattern_bit_string_segment = 182, + sym_pattern_bit_string_segment_options = 183, + sym__pattern_bit_string_segment_option = 184, + sym__pattern_bit_string_named_segment_option = 185, + sym__pattern_bit_string_segment_option_size = 186, + sym__pattern_bit_string_segment_argument = 187, + sym_list_pattern = 188, + sym_list_pattern_tail = 189, + sym_type_definition = 190, + sym_data_constructors = 191, + sym_data_constructor = 192, + sym_data_constructor_arguments = 193, + sym_data_constructor_argument = 194, + sym_type_alias = 195, + sym_string = 196, + sym_integer = 197, + sym__bit_string_segment_option = 198, + sym__type = 199, + sym__type_annotation = 200, + sym_type_hole = 201, + sym_tuple_type = 202, + sym_function_type = 203, + sym_function_parameter_types = 204, + sym_type = 205, + sym_type_arguments = 206, + sym_type_argument = 207, + sym_type_var = 208, + sym_type_name = 209, + sym_type_parameters = 210, + sym_type_parameter = 211, + sym_identifier = 212, + sym_label = 213, + sym_discard = 214, + sym_type_identifier = 215, + sym_remote_type_identifier = 216, + sym_constructor_name = 217, + sym_remote_constructor_name = 218, + aux_sym_source_file_repeat1 = 219, + aux_sym_target_group_repeat1 = 220, + aux_sym_module_repeat1 = 221, + aux_sym_unqualified_imports_repeat1 = 222, + aux_sym_constant_tuple_repeat1 = 223, + aux_sym__constant_bit_string_repeat1 = 224, + aux_sym_constant_bit_string_segment_options_repeat1 = 225, + aux_sym_constant_record_arguments_repeat1 = 226, + aux_sym_constant_tuple_type_repeat1 = 227, + aux_sym_constant_type_arguments_repeat1 = 228, + aux_sym_external_function_parameters_repeat1 = 229, + aux_sym_function_parameters_repeat1 = 230, + aux_sym_tuple_repeat1 = 231, + aux_sym__expression_bit_string_repeat1 = 232, + aux_sym_expression_bit_string_segment_options_repeat1 = 233, + aux_sym_anonymous_function_parameters_repeat1 = 234, + aux_sym_case_clauses_repeat1 = 235, + aux_sym_case_clause_patterns_repeat1 = 236, + aux_sym_case_clause_pattern_repeat1 = 237, + aux_sym_record_update_arguments_repeat1 = 238, + aux_sym_arguments_repeat1 = 239, + aux_sym_record_pattern_arguments_repeat1 = 240, + aux_sym__pattern_bit_string_repeat1 = 241, + aux_sym_pattern_bit_string_segment_options_repeat1 = 242, + aux_sym_data_constructors_repeat1 = 243, + aux_sym_data_constructor_arguments_repeat1 = 244, + aux_sym_string_repeat1 = 245, + aux_sym_tuple_type_repeat1 = 246, + aux_sym_type_arguments_repeat1 = 247, + aux_sym_type_parameters_repeat1 = 248, + alias_sym_function_body = 249, }; static const char * const ts_symbol_names[] = { @@ -419,6 +422,8 @@ static const char * const ts_symbol_names[] = { [sym__expression_bit_string_named_segment_option] = "_expression_bit_string_named_segment_option", [sym__expression_bit_string_segment_option_size] = "bit_string_segment_option", [sym_anonymous_function] = "anonymous_function", + [sym_anonymous_function_parameters] = "function_parameters", + [sym_anonymous_function_parameter] = "function_parameter", [sym_expression_group] = "expression_group", [sym_case] = "case", [sym_case_subjects] = "case_subjects", @@ -506,6 +511,7 @@ static const char * const ts_symbol_names[] = { [aux_sym_tuple_repeat1] = "tuple_repeat1", [aux_sym__expression_bit_string_repeat1] = "_expression_bit_string_repeat1", [aux_sym_expression_bit_string_segment_options_repeat1] = "expression_bit_string_segment_options_repeat1", + [aux_sym_anonymous_function_parameters_repeat1] = "anonymous_function_parameters_repeat1", [aux_sym_case_clauses_repeat1] = "case_clauses_repeat1", [aux_sym_case_clause_patterns_repeat1] = "case_clause_patterns_repeat1", [aux_sym_case_clause_pattern_repeat1] = "case_clause_pattern_repeat1", @@ -669,6 +675,8 @@ static const TSSymbol ts_symbol_map[] = { [sym__expression_bit_string_named_segment_option] = sym__expression_bit_string_named_segment_option, [sym__expression_bit_string_segment_option_size] = sym__constant_bit_string_segment_option_size, [sym_anonymous_function] = sym_anonymous_function, + [sym_anonymous_function_parameters] = sym_function_parameters, + [sym_anonymous_function_parameter] = sym_function_parameter, [sym_expression_group] = sym_expression_group, [sym_case] = sym_case, [sym_case_subjects] = sym_case_subjects, @@ -756,6 +764,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_tuple_repeat1] = aux_sym_tuple_repeat1, [aux_sym__expression_bit_string_repeat1] = aux_sym__expression_bit_string_repeat1, [aux_sym_expression_bit_string_segment_options_repeat1] = aux_sym_expression_bit_string_segment_options_repeat1, + [aux_sym_anonymous_function_parameters_repeat1] = aux_sym_anonymous_function_parameters_repeat1, [aux_sym_case_clauses_repeat1] = aux_sym_case_clauses_repeat1, [aux_sym_case_clause_patterns_repeat1] = aux_sym_case_clause_patterns_repeat1, [aux_sym_case_clause_pattern_repeat1] = aux_sym_case_clause_pattern_repeat1, @@ -1354,6 +1363,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_anonymous_function_parameters] = { + .visible = true, + .named = true, + }, + [sym_anonymous_function_parameter] = { + .visible = true, + .named = true, + }, [sym_expression_group] = { .visible = true, .named = true, @@ -1702,6 +1719,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_anonymous_function_parameters_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_case_clauses_repeat1] = { .visible = false, .named = false, @@ -1841,32 +1862,32 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [5] = {.index = 7, .length = 2}, [6] = {.index = 9, .length = 2}, [7] = {.index = 11, .length = 2}, - [8] = {.index = 13, .length = 2}, - [9] = {.index = 15, .length = 1}, - [10] = {.index = 16, .length = 2}, - [11] = {.index = 18, .length = 3}, + [8] = {.index = 13, .length = 1}, + [9] = {.index = 14, .length = 2}, + [10] = {.index = 16, .length = 3}, + [11] = {.index = 19, .length = 2}, [12] = {.index = 21, .length = 2}, [13] = {.index = 23, .length = 2}, - [14] = {.index = 25, .length = 2}, - [15] = {.index = 27, .length = 1}, + [14] = {.index = 25, .length = 1}, + [15] = {.index = 26, .length = 2}, [16] = {.index = 28, .length = 2}, [17] = {.index = 30, .length = 2}, - [18] = {.index = 32, .length = 2}, - [19] = {.index = 34, .length = 1}, - [20] = {.index = 35, .length = 3}, - [21] = {.index = 38, .length = 3}, - [22] = {.index = 41, .length = 2}, - [23] = {.index = 43, .length = 2}, - [24] = {.index = 45, .length = 1}, + [18] = {.index = 32, .length = 1}, + [19] = {.index = 33, .length = 3}, + [20] = {.index = 36, .length = 2}, + [21] = {.index = 38, .length = 2}, + [22] = {.index = 40, .length = 1}, + [23] = {.index = 41, .length = 2}, + [24] = {.index = 43, .length = 3}, [25] = {.index = 46, .length = 2}, - [26] = {.index = 48, .length = 3}, - [27] = {.index = 51, .length = 2}, - [28] = {.index = 53, .length = 1}, - [29] = {.index = 54, .length = 1}, - [30] = {.index = 55, .length = 3}, - [31] = {.index = 58, .length = 3}, - [32] = {.index = 61, .length = 1}, - [33] = {.index = 62, .length = 1}, + [26] = {.index = 48, .length = 1}, + [27] = {.index = 49, .length = 1}, + [28] = {.index = 50, .length = 3}, + [29] = {.index = 53, .length = 3}, + [30] = {.index = 56, .length = 1}, + [31] = {.index = 57, .length = 1}, + [32] = {.index = 58, .length = 2}, + [33] = {.index = 60, .length = 3}, [34] = {.index = 63, .length = 2}, [35] = {.index = 65, .length = 1}, [36] = {.index = 66, .length = 2}, @@ -1923,84 +1944,84 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_name, 0}, {field_parameters, 1}, [13] = - {field_label, 0, .inherited = true}, - {field_name, 0, .inherited = true}, - [15] = {field_name, 0, .inherited = true}, - [16] = + [14] = {field_assign, 0, .inherited = true}, {field_value, 0}, - [18] = + [16] = {field_left, 0}, {field_operator, 1}, {field_right, 2}, - [21] = + [19] = {field_index, 2}, {field_tuple, 0}, - [23] = + [21] = {field_field, 2}, {field_record, 0}, - [25] = + [23] = {field_module, 0}, {field_name, 2}, - [27] = + [25] = {field_target, 1}, - [28] = + [26] = {field_imports, 3}, {field_module, 1}, - [30] = + [28] = {field_alias, 3}, {field_module, 1}, - [32] = + [30] = {field_name, 1}, {field_value, 3}, - [34] = + [32] = {field_type, 1}, - [35] = + [33] = {field_options, 1}, {field_options, 2}, {field_value, 0}, - [38] = - {field_label, 0, .inherited = true}, + [36] = {field_name, 0, .inherited = true}, {field_type, 1, .inherited = true}, - [41] = + [38] = + {field_label, 0, .inherited = true}, {field_name, 0, .inherited = true}, - {field_type, 1, .inherited = true}, - [43] = - {field_label, 0}, - {field_name, 1}, - [45] = + [40] = {field_assign, 1, .inherited = true}, - [46] = + [41] = {field_assign, 1}, {field_assign, 2}, - [48] = + [43] = {field_assign, 1, .inherited = true}, {field_pattern, 1}, {field_value, 3}, - [51] = + [46] = {field_assign, 0, .inherited = true}, {field_pattern, 0}, - [53] = + [48] = {field_message, 2}, - [54] = + [49] = {field_assign, 0, .inherited = true}, - [55] = + [50] = {field_assign, 0, .inherited = true}, {field_pattern, 0}, {field_value, 2}, - [58] = + [53] = {field_name, 1}, {field_type, 2, .inherited = true}, {field_value, 4}, - [61] = + [56] = {field_spread, 3}, - [62] = + [57] = {field_type, 0}, - [63] = + [58] = {field_body, 3}, {field_parameters, 1}, + [60] = + {field_label, 0, .inherited = true}, + {field_name, 0, .inherited = true}, + {field_type, 1, .inherited = true}, + [63] = + {field_label, 0}, + {field_name, 1}, [65] = {field_assign, 2, .inherited = true}, [66] = @@ -2112,7 +2133,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { [0] = {0}, - [34] = { + [32] = { [3] = alias_sym_function_body, }, [47] = { @@ -2886,19 +2907,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') SKIP(140) if (lookahead == '"') ADVANCE(241); if (lookahead == '#') ADVANCE(181); - if (lookahead == ')') ADVANCE(183); - if (lookahead == '-') ADVANCE(194); + if (lookahead == '-') ADVANCE(193); if (lookahead == '/') ADVANCE(4); if (lookahead == '0') ADVANCE(246); if (lookahead == '<') ADVANCE(8); - if (lookahead == '>') ADVANCE(12); if (lookahead == '[') ADVANCE(184); - if (lookahead == ']') ADVANCE(185); - if (lookahead == '_') ADVANCE(290); - if (lookahead == '{') ADVANCE(162); + if (lookahead == '_') ADVANCE(288); + if (lookahead == 'i') ADVANCE(334); + if (lookahead == '|') ADVANCE(230); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(247); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(426); if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(426); END_STATE(); case 141: if (lookahead == '\t' || @@ -2908,17 +2927,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') SKIP(141) if (lookahead == '"') ADVANCE(241); if (lookahead == '#') ADVANCE(181); - if (lookahead == '-') ADVANCE(193); + if (lookahead == ')') ADVANCE(183); + if (lookahead == '-') ADVANCE(194); if (lookahead == '/') ADVANCE(4); if (lookahead == '0') ADVANCE(246); if (lookahead == '<') ADVANCE(8); + if (lookahead == '>') ADVANCE(12); if (lookahead == '[') ADVANCE(184); - if (lookahead == '_') ADVANCE(288); - if (lookahead == 'i') ADVANCE(334); - if (lookahead == '|') ADVANCE(230); + if (lookahead == ']') ADVANCE(185); + if (lookahead == '_') ADVANCE(290); + if (lookahead == '{') ADVANCE(162); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(247); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(426); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); END_STATE(); case 142: if (lookahead == '\t' || @@ -4788,16 +4809,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7] = {.lex_state = 152}, [8] = {.lex_state = 152}, [9] = {.lex_state = 152}, - [10] = {.lex_state = 152}, + [10] = {.lex_state = 132}, [11] = {.lex_state = 152}, [12] = {.lex_state = 152}, [13] = {.lex_state = 132}, [14] = {.lex_state = 133}, - [15] = {.lex_state = 152}, - [16] = {.lex_state = 132}, + [15] = {.lex_state = 132}, + [16] = {.lex_state = 152}, [17] = {.lex_state = 152}, - [18] = {.lex_state = 132}, - [19] = {.lex_state = 132}, + [18] = {.lex_state = 152}, + [19] = {.lex_state = 152}, [20] = {.lex_state = 152}, [21] = {.lex_state = 152}, [22] = {.lex_state = 152}, @@ -4805,89 +4826,89 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [24] = {.lex_state = 152}, [25] = {.lex_state = 152}, [26] = {.lex_state = 152}, - [27] = {.lex_state = 152}, + [27] = {.lex_state = 132}, [28] = {.lex_state = 152}, [29] = {.lex_state = 152}, [30] = {.lex_state = 132}, - [31] = {.lex_state = 152}, + [31] = {.lex_state = 132}, [32] = {.lex_state = 152}, [33] = {.lex_state = 152}, - [34] = {.lex_state = 152}, + [34] = {.lex_state = 132}, [35] = {.lex_state = 132}, - [36] = {.lex_state = 152}, - [37] = {.lex_state = 132}, - [38] = {.lex_state = 132}, - [39] = {.lex_state = 132}, + [36] = {.lex_state = 132}, + [37] = {.lex_state = 152}, + [38] = {.lex_state = 152}, + [39] = {.lex_state = 152}, [40] = {.lex_state = 152}, [41] = {.lex_state = 132}, - [42] = {.lex_state = 152}, - [43] = {.lex_state = 132}, + [42] = {.lex_state = 132}, + [43] = {.lex_state = 152}, [44] = {.lex_state = 132}, - [45] = {.lex_state = 132}, - [46] = {.lex_state = 132}, + [45] = {.lex_state = 152}, + [46] = {.lex_state = 152}, [47] = {.lex_state = 152}, [48] = {.lex_state = 132}, - [49] = {.lex_state = 132}, - [50] = {.lex_state = 152}, - [51] = {.lex_state = 152}, - [52] = {.lex_state = 152}, - [53] = {.lex_state = 152}, - [54] = {.lex_state = 133}, - [55] = {.lex_state = 152}, - [56] = {.lex_state = 147}, + [49] = {.lex_state = 152}, + [50] = {.lex_state = 132}, + [51] = {.lex_state = 132}, + [52] = {.lex_state = 132}, + [53] = {.lex_state = 132}, + [54] = {.lex_state = 152}, + [55] = {.lex_state = 133}, + [56] = {.lex_state = 133}, [57] = {.lex_state = 152}, - [58] = {.lex_state = 133}, + [58] = {.lex_state = 152}, [59] = {.lex_state = 152}, [60] = {.lex_state = 152}, - [61] = {.lex_state = 147}, - [62] = {.lex_state = 133}, + [61] = {.lex_state = 152}, + [62] = {.lex_state = 152}, [63] = {.lex_state = 133}, - [64] = {.lex_state = 152}, - [65] = {.lex_state = 152}, - [66] = {.lex_state = 147}, - [67] = {.lex_state = 133}, + [64] = {.lex_state = 133}, + [65] = {.lex_state = 133}, + [66] = {.lex_state = 133}, + [67] = {.lex_state = 152}, [68] = {.lex_state = 133}, [69] = {.lex_state = 152}, [70] = {.lex_state = 133}, - [71] = {.lex_state = 133}, - [72] = {.lex_state = 133}, - [73] = {.lex_state = 152}, - [74] = {.lex_state = 133}, + [71] = {.lex_state = 147}, + [72] = {.lex_state = 152}, + [73] = {.lex_state = 133}, + [74] = {.lex_state = 152}, [75] = {.lex_state = 152}, [76] = {.lex_state = 152}, - [77] = {.lex_state = 133}, + [77] = {.lex_state = 152}, [78] = {.lex_state = 133}, [79] = {.lex_state = 152}, - [80] = {.lex_state = 133}, - [81] = {.lex_state = 147}, + [80] = {.lex_state = 152}, + [81] = {.lex_state = 152}, [82] = {.lex_state = 152}, - [83] = {.lex_state = 152}, - [84] = {.lex_state = 152}, + [83] = {.lex_state = 133}, + [84] = {.lex_state = 133}, [85] = {.lex_state = 152}, - [86] = {.lex_state = 132}, - [87] = {.lex_state = 152}, - [88] = {.lex_state = 152}, - [89] = {.lex_state = 152}, + [86] = {.lex_state = 147}, + [87] = {.lex_state = 133}, + [88] = {.lex_state = 147}, + [89] = {.lex_state = 133}, [90] = {.lex_state = 152}, - [91] = {.lex_state = 133}, + [91] = {.lex_state = 152}, [92] = {.lex_state = 152}, - [93] = {.lex_state = 152}, + [93] = {.lex_state = 133}, [94] = {.lex_state = 152}, [95] = {.lex_state = 152}, - [96] = {.lex_state = 152}, + [96] = {.lex_state = 133}, [97] = {.lex_state = 152}, - [98] = {.lex_state = 152}, - [99] = {.lex_state = 133}, + [98] = {.lex_state = 147}, + [99] = {.lex_state = 152}, [100] = {.lex_state = 152}, [101] = {.lex_state = 133}, - [102] = {.lex_state = 133}, + [102] = {.lex_state = 152}, [103] = {.lex_state = 133}, [104] = {.lex_state = 133}, [105] = {.lex_state = 133}, [106] = {.lex_state = 152}, [107] = {.lex_state = 133}, [108] = {.lex_state = 133}, - [109] = {.lex_state = 147}, + [109] = {.lex_state = 133}, [110] = {.lex_state = 133}, [111] = {.lex_state = 133}, [112] = {.lex_state = 133}, @@ -4899,7 +4920,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [118] = {.lex_state = 133}, [119] = {.lex_state = 133}, [120] = {.lex_state = 133}, - [121] = {.lex_state = 133}, + [121] = {.lex_state = 147}, [122] = {.lex_state = 133}, [123] = {.lex_state = 133}, [124] = {.lex_state = 133}, @@ -4907,22 +4928,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [126] = {.lex_state = 133}, [127] = {.lex_state = 133}, [128] = {.lex_state = 133}, - [129] = {.lex_state = 147}, - [130] = {.lex_state = 132}, + [129] = {.lex_state = 134}, + [130] = {.lex_state = 147}, [131] = {.lex_state = 147}, [132] = {.lex_state = 134}, [133] = {.lex_state = 147}, - [134] = {.lex_state = 147}, + [134] = {.lex_state = 134}, [135] = {.lex_state = 134}, [136] = {.lex_state = 134}, - [137] = {.lex_state = 134}, + [137] = {.lex_state = 147}, [138] = {.lex_state = 134}, - [139] = {.lex_state = 134}, + [139] = {.lex_state = 147}, [140] = {.lex_state = 147}, [141] = {.lex_state = 147}, - [142] = {.lex_state = 134}, - [143] = {.lex_state = 147}, - [144] = {.lex_state = 147}, + [142] = {.lex_state = 147}, + [143] = {.lex_state = 132}, + [144] = {.lex_state = 134}, [145] = {.lex_state = 134}, [146] = {.lex_state = 147}, [147] = {.lex_state = 147}, @@ -4932,35 +4953,35 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [151] = {.lex_state = 147}, [152] = {.lex_state = 134}, [153] = {.lex_state = 134}, - [154] = {.lex_state = 134}, + [154] = {.lex_state = 147}, [155] = {.lex_state = 134}, [156] = {.lex_state = 134}, [157] = {.lex_state = 147}, [158] = {.lex_state = 147}, - [159] = {.lex_state = 147}, + [159] = {.lex_state = 134}, [160] = {.lex_state = 147}, - [161] = {.lex_state = 134}, - [162] = {.lex_state = 134}, + [161] = {.lex_state = 147}, + [162] = {.lex_state = 147}, [163] = {.lex_state = 147}, [164] = {.lex_state = 147}, [165] = {.lex_state = 147}, [166] = {.lex_state = 134}, - [167] = {.lex_state = 147}, + [167] = {.lex_state = 134}, [168] = {.lex_state = 134}, - [169] = {.lex_state = 147}, + [169] = {.lex_state = 134}, [170] = {.lex_state = 134}, [171] = {.lex_state = 134}, [172] = {.lex_state = 134}, [173] = {.lex_state = 134}, [174] = {.lex_state = 134}, - [175] = {.lex_state = 134}, - [176] = {.lex_state = 134}, - [177] = {.lex_state = 134}, + [175] = {.lex_state = 147}, + [176] = {.lex_state = 147}, + [177] = {.lex_state = 147}, [178] = {.lex_state = 134}, [179] = {.lex_state = 134}, - [180] = {.lex_state = 147}, - [181] = {.lex_state = 147}, - [182] = {.lex_state = 147}, + [180] = {.lex_state = 134}, + [181] = {.lex_state = 134}, + [182] = {.lex_state = 134}, [183] = {.lex_state = 134}, [184] = {.lex_state = 134}, [185] = {.lex_state = 134}, @@ -4974,9 +4995,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [193] = {.lex_state = 134}, [194] = {.lex_state = 134}, [195] = {.lex_state = 134}, - [196] = {.lex_state = 147}, + [196] = {.lex_state = 134}, [197] = {.lex_state = 134}, - [198] = {.lex_state = 147}, + [198] = {.lex_state = 134}, [199] = {.lex_state = 134}, [200] = {.lex_state = 134}, [201] = {.lex_state = 134}, @@ -4987,21 +5008,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [206] = {.lex_state = 134}, [207] = {.lex_state = 134}, [208] = {.lex_state = 134}, - [209] = {.lex_state = 147}, - [210] = {.lex_state = 147}, + [209] = {.lex_state = 134}, + [210] = {.lex_state = 134}, [211] = {.lex_state = 134}, - [212] = {.lex_state = 147}, + [212] = {.lex_state = 134}, [213] = {.lex_state = 134}, [214] = {.lex_state = 134}, [215] = {.lex_state = 134}, [216] = {.lex_state = 134}, - [217] = {.lex_state = 147}, + [217] = {.lex_state = 134}, [218] = {.lex_state = 134}, [219] = {.lex_state = 134}, [220] = {.lex_state = 134}, [221] = {.lex_state = 134}, - [222] = {.lex_state = 147}, - [223] = {.lex_state = 147}, + [222] = {.lex_state = 134}, + [223] = {.lex_state = 134}, [224] = {.lex_state = 134}, [225] = {.lex_state = 134}, [226] = {.lex_state = 134}, @@ -5018,35 +5039,35 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [237] = {.lex_state = 134}, [238] = {.lex_state = 134}, [239] = {.lex_state = 134}, - [240] = {.lex_state = 147}, - [241] = {.lex_state = 147}, - [242] = {.lex_state = 134}, - [243] = {.lex_state = 134}, - [244] = {.lex_state = 134}, - [245] = {.lex_state = 134}, - [246] = {.lex_state = 134}, - [247] = {.lex_state = 134}, - [248] = {.lex_state = 134}, + [240] = {.lex_state = 134}, + [241] = {.lex_state = 134}, + [242] = {.lex_state = 147}, + [243] = {.lex_state = 147}, + [244] = {.lex_state = 147}, + [245] = {.lex_state = 147}, + [246] = {.lex_state = 147}, + [247] = {.lex_state = 147}, + [248] = {.lex_state = 147}, [249] = {.lex_state = 134}, [250] = {.lex_state = 134}, [251] = {.lex_state = 134}, [252] = {.lex_state = 134}, [253] = {.lex_state = 134}, [254] = {.lex_state = 134}, - [255] = {.lex_state = 134}, - [256] = {.lex_state = 134}, + [255] = {.lex_state = 147}, + [256] = {.lex_state = 147}, [257] = {.lex_state = 147}, - [258] = {.lex_state = 147}, - [259] = {.lex_state = 147}, + [258] = {.lex_state = 134}, + [259] = {.lex_state = 134}, [260] = {.lex_state = 134}, [261] = {.lex_state = 147}, - [262] = {.lex_state = 134}, + [262] = {.lex_state = 147}, [263] = {.lex_state = 147}, [264] = {.lex_state = 134}, [265] = {.lex_state = 134}, [266] = {.lex_state = 134}, - [267] = {.lex_state = 134}, - [268] = {.lex_state = 134}, + [267] = {.lex_state = 147}, + [268] = {.lex_state = 147}, [269] = {.lex_state = 134}, [270] = {.lex_state = 134}, [271] = {.lex_state = 134}, @@ -5137,20 +5158,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [356] = {.lex_state = 137}, [357] = {.lex_state = 153}, [358] = {.lex_state = 153}, - [359] = {.lex_state = 153}, - [360] = {.lex_state = 138}, - [361] = {.lex_state = 138}, - [362] = {.lex_state = 138}, + [359] = {.lex_state = 138}, + [360] = {.lex_state = 153}, + [361] = {.lex_state = 135}, + [362] = {.lex_state = 135}, [363] = {.lex_state = 138}, - [364] = {.lex_state = 135}, + [364] = {.lex_state = 138}, [365] = {.lex_state = 135}, - [366] = {.lex_state = 135}, + [366] = {.lex_state = 153}, [367] = {.lex_state = 138}, - [368] = {.lex_state = 138}, - [369] = {.lex_state = 135}, + [368] = {.lex_state = 135}, + [369] = {.lex_state = 138}, [370] = {.lex_state = 138}, [371] = {.lex_state = 138}, - [372] = {.lex_state = 153}, + [372] = {.lex_state = 138}, [373] = {.lex_state = 138}, [374] = {.lex_state = 138}, [375] = {.lex_state = 138}, @@ -5158,69 +5179,69 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [377] = {.lex_state = 138}, [378] = {.lex_state = 135}, [379] = {.lex_state = 135}, - [380] = {.lex_state = 135}, - [381] = {.lex_state = 138}, + [380] = {.lex_state = 138}, + [381] = {.lex_state = 135}, [382] = {.lex_state = 138}, - [383] = {.lex_state = 153}, + [383] = {.lex_state = 152}, [384] = {.lex_state = 138}, [385] = {.lex_state = 138}, - [386] = {.lex_state = 138}, - [387] = {.lex_state = 135}, + [386] = {.lex_state = 135}, + [387] = {.lex_state = 138}, [388] = {.lex_state = 138}, [389] = {.lex_state = 138}, [390] = {.lex_state = 138}, - [391] = {.lex_state = 152}, - [392] = {.lex_state = 152}, + [391] = {.lex_state = 138}, + [392] = {.lex_state = 138}, [393] = {.lex_state = 138}, [394] = {.lex_state = 138}, - [395] = {.lex_state = 138}, - [396] = {.lex_state = 138}, + [395] = {.lex_state = 152}, + [396] = {.lex_state = 152}, [397] = {.lex_state = 135}, - [398] = {.lex_state = 152}, + [398] = {.lex_state = 153}, [399] = {.lex_state = 137}, - [400] = {.lex_state = 138}, + [400] = {.lex_state = 137}, [401] = {.lex_state = 137}, - [402] = {.lex_state = 135}, - [403] = {.lex_state = 137}, - [404] = {.lex_state = 138}, - [405] = {.lex_state = 152}, + [402] = {.lex_state = 138}, + [403] = {.lex_state = 138}, + [404] = {.lex_state = 152}, + [405] = {.lex_state = 138}, [406] = {.lex_state = 138}, [407] = {.lex_state = 138}, - [408] = {.lex_state = 152}, - [409] = {.lex_state = 153}, + [408] = {.lex_state = 138}, + [409] = {.lex_state = 138}, [410] = {.lex_state = 138}, [411] = {.lex_state = 138}, [412] = {.lex_state = 153}, [413] = {.lex_state = 138}, - [414] = {.lex_state = 138}, - [415] = {.lex_state = 138}, - [416] = {.lex_state = 153}, - [417] = {.lex_state = 138}, - [418] = {.lex_state = 137}, - [419] = {.lex_state = 153}, + [414] = {.lex_state = 137}, + [415] = {.lex_state = 152}, + [416] = {.lex_state = 138}, + [417] = {.lex_state = 153}, + [418] = {.lex_state = 138}, + [419] = {.lex_state = 138}, [420] = {.lex_state = 138}, [421] = {.lex_state = 138}, - [422] = {.lex_state = 137}, - [423] = {.lex_state = 138}, - [424] = {.lex_state = 135}, - [425] = {.lex_state = 153}, + [422] = {.lex_state = 138}, + [423] = {.lex_state = 135}, + [424] = {.lex_state = 138}, + [425] = {.lex_state = 137}, [426] = {.lex_state = 138}, - [427] = {.lex_state = 137}, - [428] = {.lex_state = 135}, + [427] = {.lex_state = 138}, + [428] = {.lex_state = 138}, [429] = {.lex_state = 138}, [430] = {.lex_state = 138}, [431] = {.lex_state = 138}, [432] = {.lex_state = 138}, - [433] = {.lex_state = 137}, - [434] = {.lex_state = 138}, - [435] = {.lex_state = 152}, - [436] = {.lex_state = 137}, + [433] = {.lex_state = 135}, + [434] = {.lex_state = 135}, + [435] = {.lex_state = 153}, + [436] = {.lex_state = 152}, [437] = {.lex_state = 138}, - [438] = {.lex_state = 138}, - [439] = {.lex_state = 138}, - [440] = {.lex_state = 138}, - [441] = {.lex_state = 138}, - [442] = {.lex_state = 138}, + [438] = {.lex_state = 137}, + [439] = {.lex_state = 137}, + [440] = {.lex_state = 153}, + [441] = {.lex_state = 137}, + [442] = {.lex_state = 153}, [443] = {.lex_state = 137}, [444] = {.lex_state = 152}, [445] = {.lex_state = 152}, @@ -5230,8 +5251,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [449] = {.lex_state = 152}, [450] = {.lex_state = 152}, [451] = {.lex_state = 152}, - [452] = {.lex_state = 139}, - [453] = {.lex_state = 152}, + [452] = {.lex_state = 152}, + [453] = {.lex_state = 139}, [454] = {.lex_state = 152}, [455] = {.lex_state = 152}, [456] = {.lex_state = 152}, @@ -5281,143 +5302,143 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [500] = {.lex_state = 152}, [501] = {.lex_state = 152}, [502] = {.lex_state = 152}, - [503] = {.lex_state = 137}, - [504] = {.lex_state = 140}, - [505] = {.lex_state = 141}, - [506] = {.lex_state = 140}, - [507] = {.lex_state = 141}, + [503] = {.lex_state = 140}, + [504] = {.lex_state = 141}, + [505] = {.lex_state = 140}, + [506] = {.lex_state = 141}, + [507] = {.lex_state = 140}, [508] = {.lex_state = 137}, - [509] = {.lex_state = 141}, - [510] = {.lex_state = 140}, + [509] = {.lex_state = 138}, + [510] = {.lex_state = 137}, [511] = {.lex_state = 141}, - [512] = {.lex_state = 140}, - [513] = {.lex_state = 140}, - [514] = {.lex_state = 140}, - [515] = {.lex_state = 140}, + [512] = {.lex_state = 141}, + [513] = {.lex_state = 141}, + [514] = {.lex_state = 141}, + [515] = {.lex_state = 141}, [516] = {.lex_state = 140}, - [517] = {.lex_state = 140}, - [518] = {.lex_state = 140}, + [517] = {.lex_state = 141}, + [518] = {.lex_state = 141}, [519] = {.lex_state = 137}, - [520] = {.lex_state = 138}, - [521] = {.lex_state = 139}, - [522] = {.lex_state = 138}, - [523] = {.lex_state = 137}, + [520] = {.lex_state = 141}, + [521] = {.lex_state = 138}, + [522] = {.lex_state = 139}, + [523] = {.lex_state = 139}, [524] = {.lex_state = 139}, [525] = {.lex_state = 139}, - [526] = {.lex_state = 137}, - [527] = {.lex_state = 139}, - [528] = {.lex_state = 139}, + [526] = {.lex_state = 139}, + [527] = {.lex_state = 137}, + [528] = {.lex_state = 137}, [529] = {.lex_state = 139}, - [530] = {.lex_state = 138}, - [531] = {.lex_state = 138}, - [532] = {.lex_state = 139}, - [533] = {.lex_state = 137}, + [530] = {.lex_state = 139}, + [531] = {.lex_state = 139}, + [532] = {.lex_state = 137}, + [533] = {.lex_state = 139}, [534] = {.lex_state = 139}, - [535] = {.lex_state = 138}, - [536] = {.lex_state = 139}, + [535] = {.lex_state = 139}, + [536] = {.lex_state = 138}, [537] = {.lex_state = 139}, - [538] = {.lex_state = 139}, - [539] = {.lex_state = 139}, + [538] = {.lex_state = 138}, + [539] = {.lex_state = 137}, [540] = {.lex_state = 139}, [541] = {.lex_state = 139}, [542] = {.lex_state = 139}, - [543] = {.lex_state = 139}, - [544] = {.lex_state = 137}, + [543] = {.lex_state = 138}, + [544] = {.lex_state = 139}, [545] = {.lex_state = 139}, - [546] = {.lex_state = 137}, - [547] = {.lex_state = 140}, - [548] = {.lex_state = 140}, + [546] = {.lex_state = 141}, + [547] = {.lex_state = 137}, + [548] = {.lex_state = 137}, [549] = {.lex_state = 137}, - [550] = {.lex_state = 138}, - [551] = {.lex_state = 138}, - [552] = {.lex_state = 137}, + [550] = {.lex_state = 137}, + [551] = {.lex_state = 141}, + [552] = {.lex_state = 141}, [553] = {.lex_state = 137}, - [554] = {.lex_state = 138}, + [554] = {.lex_state = 141}, [555] = {.lex_state = 137}, - [556] = {.lex_state = 140}, - [557] = {.lex_state = 137}, - [558] = {.lex_state = 137}, - [559] = {.lex_state = 140}, - [560] = {.lex_state = 140}, + [556] = {.lex_state = 137}, + [557] = {.lex_state = 141}, + [558] = {.lex_state = 141}, + [559] = {.lex_state = 137}, + [560] = {.lex_state = 137}, [561] = {.lex_state = 137}, [562] = {.lex_state = 137}, - [563] = {.lex_state = 137}, - [564] = {.lex_state = 137}, + [563] = {.lex_state = 138}, + [564] = {.lex_state = 138}, [565] = {.lex_state = 137}, [566] = {.lex_state = 137}, - [567] = {.lex_state = 138}, + [567] = {.lex_state = 137}, [568] = {.lex_state = 138}, [569] = {.lex_state = 137}, - [570] = {.lex_state = 137}, - [571] = {.lex_state = 140}, + [570] = {.lex_state = 138}, + [571] = {.lex_state = 138}, [572] = {.lex_state = 137}, - [573] = {.lex_state = 137}, - [574] = {.lex_state = 137}, - [575] = {.lex_state = 138}, + [573] = {.lex_state = 141}, + [574] = {.lex_state = 141}, + [575] = {.lex_state = 141}, [576] = {.lex_state = 138}, - [577] = {.lex_state = 138}, + [577] = {.lex_state = 141}, [578] = {.lex_state = 137}, - [579] = {.lex_state = 140}, + [579] = {.lex_state = 138}, [580] = {.lex_state = 137}, - [581] = {.lex_state = 140}, - [582] = {.lex_state = 140}, - [583] = {.lex_state = 140}, - [584] = {.lex_state = 140}, - [585] = {.lex_state = 140}, - [586] = {.lex_state = 140}, - [587] = {.lex_state = 138}, + [581] = {.lex_state = 137}, + [582] = {.lex_state = 137}, + [583] = {.lex_state = 138}, + [584] = {.lex_state = 141}, + [585] = {.lex_state = 141}, + [586] = {.lex_state = 141}, + [587] = {.lex_state = 141}, [588] = {.lex_state = 138}, - [589] = {.lex_state = 140}, + [589] = {.lex_state = 141}, [590] = {.lex_state = 138}, [591] = {.lex_state = 138}, - [592] = {.lex_state = 140}, - [593] = {.lex_state = 140}, - [594] = {.lex_state = 138}, - [595] = {.lex_state = 140}, - [596] = {.lex_state = 140}, + [592] = {.lex_state = 138}, + [593] = {.lex_state = 138}, + [594] = {.lex_state = 141}, + [595] = {.lex_state = 141}, + [596] = {.lex_state = 138}, [597] = {.lex_state = 138}, [598] = {.lex_state = 138}, - [599] = {.lex_state = 140}, - [600] = {.lex_state = 140}, - [601] = {.lex_state = 140}, - [602] = {.lex_state = 140}, - [603] = {.lex_state = 138}, + [599] = {.lex_state = 141}, + [600] = {.lex_state = 138}, + [601] = {.lex_state = 141}, + [602] = {.lex_state = 138}, + [603] = {.lex_state = 141}, [604] = {.lex_state = 138}, - [605] = {.lex_state = 138}, - [606] = {.lex_state = 138}, - [607] = {.lex_state = 140}, - [608] = {.lex_state = 138}, - [609] = {.lex_state = 140}, - [610] = {.lex_state = 140}, + [605] = {.lex_state = 141}, + [606] = {.lex_state = 141}, + [607] = {.lex_state = 138}, + [608] = {.lex_state = 141}, + [609] = {.lex_state = 141}, + [610] = {.lex_state = 138}, [611] = {.lex_state = 138}, - [612] = {.lex_state = 138}, - [613] = {.lex_state = 138}, + [612] = {.lex_state = 141}, + [613] = {.lex_state = 141}, [614] = {.lex_state = 138}, [615] = {.lex_state = 138}, - [616] = {.lex_state = 140}, - [617] = {.lex_state = 140}, - [618] = {.lex_state = 140}, - [619] = {.lex_state = 140}, - [620] = {.lex_state = 140}, - [621] = {.lex_state = 140}, - [622] = {.lex_state = 140}, - [623] = {.lex_state = 140}, - [624] = {.lex_state = 140}, - [625] = {.lex_state = 140}, - [626] = {.lex_state = 140}, + [616] = {.lex_state = 138}, + [617] = {.lex_state = 141}, + [618] = {.lex_state = 141}, + [619] = {.lex_state = 141}, + [620] = {.lex_state = 141}, + [621] = {.lex_state = 141}, + [622] = {.lex_state = 141}, + [623] = {.lex_state = 141}, + [624] = {.lex_state = 141}, + [625] = {.lex_state = 141}, + [626] = {.lex_state = 141}, [627] = {.lex_state = 133}, [628] = {.lex_state = 142}, [629] = {.lex_state = 142}, [630] = {.lex_state = 142}, - [631] = {.lex_state = 135}, - [632] = {.lex_state = 142}, - [633] = {.lex_state = 143}, - [634] = {.lex_state = 142}, + [631] = {.lex_state = 142}, + [632] = {.lex_state = 143}, + [633] = {.lex_state = 135}, + [634] = {.lex_state = 135}, [635] = {.lex_state = 142}, - [636] = {.lex_state = 135}, - [637] = {.lex_state = 142}, - [638] = {.lex_state = 135}, - [639] = {.lex_state = 143}, + [636] = {.lex_state = 142}, + [637] = {.lex_state = 143}, + [638] = {.lex_state = 142}, + [639] = {.lex_state = 135}, [640] = {.lex_state = 143}, [641] = {.lex_state = 143}, [642] = {.lex_state = 143}, @@ -5450,112 +5471,112 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [669] = {.lex_state = 143}, [670] = {.lex_state = 143}, [671] = {.lex_state = 143}, - [672] = {.lex_state = 143}, - [673] = {.lex_state = 143}, + [672] = {.lex_state = 144}, + [673] = {.lex_state = 144}, [674] = {.lex_state = 143}, - [675] = {.lex_state = 144}, + [675] = {.lex_state = 143}, [676] = {.lex_state = 143}, - [677] = {.lex_state = 139}, - [678] = {.lex_state = 139}, + [677] = {.lex_state = 143}, + [678] = {.lex_state = 143}, [679] = {.lex_state = 143}, [680] = {.lex_state = 143}, - [681] = {.lex_state = 143}, + [681] = {.lex_state = 139}, [682] = {.lex_state = 143}, - [683] = {.lex_state = 143}, - [684] = {.lex_state = 143}, - [685] = {.lex_state = 139}, - [686] = {.lex_state = 139}, + [683] = {.lex_state = 139}, + [684] = {.lex_state = 139}, + [685] = {.lex_state = 144}, + [686] = {.lex_state = 143}, [687] = {.lex_state = 143}, [688] = {.lex_state = 143}, [689] = {.lex_state = 143}, - [690] = {.lex_state = 143}, - [691] = {.lex_state = 139}, + [690] = {.lex_state = 139}, + [691] = {.lex_state = 143}, [692] = {.lex_state = 143}, - [693] = {.lex_state = 139}, - [694] = {.lex_state = 144}, - [695] = {.lex_state = 143}, - [696] = {.lex_state = 144}, + [693] = {.lex_state = 143}, + [694] = {.lex_state = 143}, + [695] = {.lex_state = 139}, + [696] = {.lex_state = 139}, [697] = {.lex_state = 143}, - [698] = {.lex_state = 138}, - [699] = {.lex_state = 144}, - [700] = {.lex_state = 138}, + [698] = {.lex_state = 139}, + [699] = {.lex_state = 138}, + [700] = {.lex_state = 139}, [701] = {.lex_state = 139}, - [702] = {.lex_state = 139}, - [703] = {.lex_state = 145}, + [702] = {.lex_state = 144}, + [703] = {.lex_state = 139}, [704] = {.lex_state = 145}, - [705] = {.lex_state = 138}, - [706] = {.lex_state = 144}, - [707] = {.lex_state = 139}, + [705] = {.lex_state = 145}, + [706] = {.lex_state = 138}, + [707] = {.lex_state = 138}, [708] = {.lex_state = 138}, - [709] = {.lex_state = 145}, - [710] = {.lex_state = 139}, + [709] = {.lex_state = 144}, + [710] = {.lex_state = 145}, [711] = {.lex_state = 144}, - [712] = {.lex_state = 135}, - [713] = {.lex_state = 145}, - [714] = {.lex_state = 144}, - [715] = {.lex_state = 144}, - [716] = {.lex_state = 144}, + [712] = {.lex_state = 144}, + [713] = {.lex_state = 144}, + [714] = {.lex_state = 145}, + [715] = {.lex_state = 145}, + [716] = {.lex_state = 135}, [717] = {.lex_state = 144}, [718] = {.lex_state = 144}, [719] = {.lex_state = 144}, [720] = {.lex_state = 144}, [721] = {.lex_state = 144}, [722] = {.lex_state = 135}, - [723] = {.lex_state = 145}, + [723] = {.lex_state = 144}, [724] = {.lex_state = 144}, [725] = {.lex_state = 144}, - [726] = {.lex_state = 145}, + [726] = {.lex_state = 135}, [727] = {.lex_state = 145}, - [728] = {.lex_state = 135}, + [728] = {.lex_state = 145}, [729] = {.lex_state = 144}, [730] = {.lex_state = 144}, [731] = {.lex_state = 144}, [732] = {.lex_state = 145}, - [733] = {.lex_state = 135}, - [734] = {.lex_state = 145}, + [733] = {.lex_state = 144}, + [734] = {.lex_state = 144}, [735] = {.lex_state = 144}, - [736] = {.lex_state = 144}, + [736] = {.lex_state = 145}, [737] = {.lex_state = 144}, [738] = {.lex_state = 144}, - [739] = {.lex_state = 145}, + [739] = {.lex_state = 144}, [740] = {.lex_state = 144}, [741] = {.lex_state = 144}, [742] = {.lex_state = 144}, - [743] = {.lex_state = 144}, + [743] = {.lex_state = 145}, [744] = {.lex_state = 144}, [745] = {.lex_state = 144}, [746] = {.lex_state = 144}, [747] = {.lex_state = 144}, [748] = {.lex_state = 144}, - [749] = {.lex_state = 144}, + [749] = {.lex_state = 135}, [750] = {.lex_state = 144}, [751] = {.lex_state = 144}, [752] = {.lex_state = 144}, - [753] = {.lex_state = 144}, + [753] = {.lex_state = 145}, [754] = {.lex_state = 144}, [755] = {.lex_state = 144}, - [756] = {.lex_state = 144}, - [757] = {.lex_state = 145}, + [756] = {.lex_state = 145}, + [757] = {.lex_state = 144}, [758] = {.lex_state = 144}, [759] = {.lex_state = 144}, - [760] = {.lex_state = 145}, + [760] = {.lex_state = 144}, [761] = {.lex_state = 144}, [762] = {.lex_state = 144}, [763] = {.lex_state = 144}, - [764] = {.lex_state = 144}, - [765] = {.lex_state = 135}, + [764] = {.lex_state = 145}, + [765] = {.lex_state = 144}, [766] = {.lex_state = 144}, [767] = {.lex_state = 144}, [768] = {.lex_state = 144}, - [769] = {.lex_state = 144}, - [770] = {.lex_state = 145}, + [769] = {.lex_state = 135}, + [770] = {.lex_state = 144}, [771] = {.lex_state = 146}, - [772] = {.lex_state = 135}, + [772] = {.lex_state = 144}, [773] = {.lex_state = 135}, [774] = {.lex_state = 135}, [775] = {.lex_state = 135}, [776] = {.lex_state = 135}, - [777] = {.lex_state = 144}, + [777] = {.lex_state = 135}, [778] = {.lex_state = 135}, [779] = {.lex_state = 135}, [780] = {.lex_state = 135}, @@ -5564,8 +5585,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [783] = {.lex_state = 135}, [784] = {.lex_state = 135}, [785] = {.lex_state = 135}, - [786] = {.lex_state = 135}, - [787] = {.lex_state = 135}, + [786] = {.lex_state = 145}, + [787] = {.lex_state = 145}, [788] = {.lex_state = 144}, [789] = {.lex_state = 135}, [790] = {.lex_state = 135}, @@ -5575,283 +5596,283 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [794] = {.lex_state = 135}, [795] = {.lex_state = 135}, [796] = {.lex_state = 135}, - [797] = {.lex_state = 135}, + [797] = {.lex_state = 145}, [798] = {.lex_state = 135}, [799] = {.lex_state = 135}, [800] = {.lex_state = 135}, [801] = {.lex_state = 135}, - [802] = {.lex_state = 144}, - [803] = {.lex_state = 146}, + [802] = {.lex_state = 135}, + [803] = {.lex_state = 135}, [804] = {.lex_state = 135}, - [805] = {.lex_state = 146}, - [806] = {.lex_state = 146}, + [805] = {.lex_state = 145}, + [806] = {.lex_state = 144}, [807] = {.lex_state = 146}, [808] = {.lex_state = 135}, [809] = {.lex_state = 146}, [810] = {.lex_state = 146}, [811] = {.lex_state = 146}, [812] = {.lex_state = 146}, - [813] = {.lex_state = 146}, + [813] = {.lex_state = 135}, [814] = {.lex_state = 146}, [815] = {.lex_state = 146}, [816] = {.lex_state = 135}, - [817] = {.lex_state = 135}, + [817] = {.lex_state = 146}, [818] = {.lex_state = 146}, - [819] = {.lex_state = 144}, - [820] = {.lex_state = 146}, - [821] = {.lex_state = 146}, - [822] = {.lex_state = 135}, - [823] = {.lex_state = 135}, + [819] = {.lex_state = 146}, + [820] = {.lex_state = 135}, + [821] = {.lex_state = 135}, + [822] = {.lex_state = 0}, + [823] = {.lex_state = 146}, [824] = {.lex_state = 146}, [825] = {.lex_state = 146}, - [826] = {.lex_state = 0}, - [827] = {.lex_state = 0}, - [828] = {.lex_state = 144}, - [829] = {.lex_state = 0}, - [830] = {.lex_state = 0}, - [831] = {.lex_state = 145}, + [826] = {.lex_state = 144}, + [827] = {.lex_state = 146}, + [828] = {.lex_state = 146}, + [829] = {.lex_state = 146}, + [830] = {.lex_state = 135}, + [831] = {.lex_state = 0}, [832] = {.lex_state = 0}, - [833] = {.lex_state = 0}, - [834] = {.lex_state = 0}, + [833] = {.lex_state = 144}, + [834] = {.lex_state = 145}, [835] = {.lex_state = 132}, - [836] = {.lex_state = 145}, + [836] = {.lex_state = 0}, [837] = {.lex_state = 0}, - [838] = {.lex_state = 0}, + [838] = {.lex_state = 135}, [839] = {.lex_state = 0}, [840] = {.lex_state = 0}, [841] = {.lex_state = 0}, - [842] = {.lex_state = 135}, - [843] = {.lex_state = 144}, - [844] = {.lex_state = 144}, - [845] = {.lex_state = 146}, - [846] = {.lex_state = 0}, - [847] = {.lex_state = 135}, + [842] = {.lex_state = 0}, + [843] = {.lex_state = 145}, + [844] = {.lex_state = 0}, + [845] = {.lex_state = 144}, + [846] = {.lex_state = 146}, + [847] = {.lex_state = 0}, [848] = {.lex_state = 0}, - [849] = {.lex_state = 144}, - [850] = {.lex_state = 146}, + [849] = {.lex_state = 0}, + [850] = {.lex_state = 144}, [851] = {.lex_state = 0}, - [852] = {.lex_state = 0}, + [852] = {.lex_state = 144}, [853] = {.lex_state = 135}, [854] = {.lex_state = 135}, [855] = {.lex_state = 135, .external_lex_state = 1}, - [856] = {.lex_state = 135, .external_lex_state = 1}, + [856] = {.lex_state = 0}, [857] = {.lex_state = 135, .external_lex_state = 1}, - [858] = {.lex_state = 144}, - [859] = {.lex_state = 135, .external_lex_state = 1}, + [858] = {.lex_state = 135, .external_lex_state = 1}, + [859] = {.lex_state = 135}, [860] = {.lex_state = 135}, - [861] = {.lex_state = 135}, - [862] = {.lex_state = 135, .external_lex_state = 1}, + [861] = {.lex_state = 0}, + [862] = {.lex_state = 135}, [863] = {.lex_state = 135, .external_lex_state = 1}, - [864] = {.lex_state = 0}, - [865] = {.lex_state = 135}, - [866] = {.lex_state = 135, .external_lex_state = 1}, + [864] = {.lex_state = 135}, + [865] = {.lex_state = 0}, + [866] = {.lex_state = 0}, [867] = {.lex_state = 0}, - [868] = {.lex_state = 146}, - [869] = {.lex_state = 0}, - [870] = {.lex_state = 0}, - [871] = {.lex_state = 0}, + [868] = {.lex_state = 135, .external_lex_state = 1}, + [869] = {.lex_state = 135}, + [870] = {.lex_state = 135}, + [871] = {.lex_state = 146}, [872] = {.lex_state = 146}, - [873] = {.lex_state = 135}, - [874] = {.lex_state = 144}, - [875] = {.lex_state = 0}, - [876] = {.lex_state = 135, .external_lex_state = 1}, - [877] = {.lex_state = 135}, - [878] = {.lex_state = 146}, - [879] = {.lex_state = 135}, + [873] = {.lex_state = 144}, + [874] = {.lex_state = 0}, + [875] = {.lex_state = 146}, + [876] = {.lex_state = 0}, + [877] = {.lex_state = 0}, + [878] = {.lex_state = 0}, + [879] = {.lex_state = 135, .external_lex_state = 1}, [880] = {.lex_state = 135}, [881] = {.lex_state = 135, .external_lex_state = 1}, - [882] = {.lex_state = 146}, + [882] = {.lex_state = 135, .external_lex_state = 1}, [883] = {.lex_state = 135}, - [884] = {.lex_state = 0}, - [885] = {.lex_state = 135, .external_lex_state = 1}, - [886] = {.lex_state = 135, .external_lex_state = 1}, - [887] = {.lex_state = 135}, + [884] = {.lex_state = 135, .external_lex_state = 1}, + [885] = {.lex_state = 0}, + [886] = {.lex_state = 0}, + [887] = {.lex_state = 0}, [888] = {.lex_state = 0}, - [889] = {.lex_state = 0}, - [890] = {.lex_state = 146}, + [889] = {.lex_state = 145}, + [890] = {.lex_state = 135, .external_lex_state = 1}, [891] = {.lex_state = 135}, - [892] = {.lex_state = 145}, - [893] = {.lex_state = 146}, + [892] = {.lex_state = 146}, + [893] = {.lex_state = 144}, [894] = {.lex_state = 144}, - [895] = {.lex_state = 135}, + [895] = {.lex_state = 146}, [896] = {.lex_state = 135}, [897] = {.lex_state = 0}, - [898] = {.lex_state = 0}, - [899] = {.lex_state = 0}, - [900] = {.lex_state = 0}, - [901] = {.lex_state = 132}, - [902] = {.lex_state = 0}, - [903] = {.lex_state = 0}, - [904] = {.lex_state = 146}, + [898] = {.lex_state = 135}, + [899] = {.lex_state = 135, .external_lex_state = 1}, + [900] = {.lex_state = 135}, + [901] = {.lex_state = 146}, + [902] = {.lex_state = 146}, + [903] = {.lex_state = 135}, + [904] = {.lex_state = 135}, [905] = {.lex_state = 0}, [906] = {.lex_state = 0}, - [907] = {.lex_state = 0}, + [907] = {.lex_state = 132}, [908] = {.lex_state = 0}, - [909] = {.lex_state = 0}, - [910] = {.lex_state = 0}, + [909] = {.lex_state = 135}, + [910] = {.lex_state = 135}, [911] = {.lex_state = 0}, - [912] = {.lex_state = 132}, + [912] = {.lex_state = 146}, [913] = {.lex_state = 0}, [914] = {.lex_state = 0}, [915] = {.lex_state = 0}, [916] = {.lex_state = 0}, - [917] = {.lex_state = 132}, + [917] = {.lex_state = 0}, [918] = {.lex_state = 0}, - [919] = {.lex_state = 0}, + [919] = {.lex_state = 139}, [920] = {.lex_state = 0}, - [921] = {.lex_state = 0}, - [922] = {.lex_state = 132}, + [921] = {.lex_state = 132}, + [922] = {.lex_state = 0}, [923] = {.lex_state = 0}, [924] = {.lex_state = 0}, - [925] = {.lex_state = 132}, + [925] = {.lex_state = 0}, [926] = {.lex_state = 0}, - [927] = {.lex_state = 135}, - [928] = {.lex_state = 135}, - [929] = {.lex_state = 0}, + [927] = {.lex_state = 0}, + [928] = {.lex_state = 0}, + [929] = {.lex_state = 135}, [930] = {.lex_state = 0}, [931] = {.lex_state = 0}, - [932] = {.lex_state = 0}, - [933] = {.lex_state = 0}, - [934] = {.lex_state = 0}, + [932] = {.lex_state = 135}, + [933] = {.lex_state = 152}, + [934] = {.lex_state = 135}, [935] = {.lex_state = 0}, [936] = {.lex_state = 0}, - [937] = {.lex_state = 0}, + [937] = {.lex_state = 132}, [938] = {.lex_state = 0}, - [939] = {.lex_state = 135}, - [940] = {.lex_state = 132}, - [941] = {.lex_state = 0}, + [939] = {.lex_state = 0}, + [940] = {.lex_state = 0}, + [941] = {.lex_state = 132}, [942] = {.lex_state = 0}, [943] = {.lex_state = 0}, [944] = {.lex_state = 0}, - [945] = {.lex_state = 0}, - [946] = {.lex_state = 132}, + [945] = {.lex_state = 135}, + [946] = {.lex_state = 135}, [947] = {.lex_state = 0}, [948] = {.lex_state = 0}, - [949] = {.lex_state = 0}, + [949] = {.lex_state = 132}, [950] = {.lex_state = 0}, - [951] = {.lex_state = 146}, + [951] = {.lex_state = 132}, [952] = {.lex_state = 0}, - [953] = {.lex_state = 135}, + [953] = {.lex_state = 0}, [954] = {.lex_state = 0}, - [955] = {.lex_state = 132}, - [956] = {.lex_state = 135}, + [955] = {.lex_state = 0}, + [956] = {.lex_state = 0}, [957] = {.lex_state = 0}, - [958] = {.lex_state = 0}, - [959] = {.lex_state = 132}, + [958] = {.lex_state = 132}, + [959] = {.lex_state = 0}, [960] = {.lex_state = 0}, [961] = {.lex_state = 0}, - [962] = {.lex_state = 139}, + [962] = {.lex_state = 0}, [963] = {.lex_state = 0}, - [964] = {.lex_state = 135}, - [965] = {.lex_state = 146}, + [964] = {.lex_state = 0}, + [965] = {.lex_state = 132}, [966] = {.lex_state = 0}, [967] = {.lex_state = 0}, - [968] = {.lex_state = 0}, - [969] = {.lex_state = 0}, + [968] = {.lex_state = 132}, + [969] = {.lex_state = 132}, [970] = {.lex_state = 132}, - [971] = {.lex_state = 132}, + [971] = {.lex_state = 0}, [972] = {.lex_state = 0}, - [973] = {.lex_state = 135}, - [974] = {.lex_state = 144}, - [975] = {.lex_state = 132}, + [973] = {.lex_state = 0}, + [974] = {.lex_state = 0}, + [975] = {.lex_state = 0}, [976] = {.lex_state = 0}, - [977] = {.lex_state = 0}, - [978] = {.lex_state = 152}, - [979] = {.lex_state = 135}, + [977] = {.lex_state = 135}, + [978] = {.lex_state = 132}, + [979] = {.lex_state = 0}, [980] = {.lex_state = 0}, [981] = {.lex_state = 0}, [982] = {.lex_state = 0}, - [983] = {.lex_state = 0}, + [983] = {.lex_state = 146}, [984] = {.lex_state = 0}, - [985] = {.lex_state = 132}, + [985] = {.lex_state = 0}, [986] = {.lex_state = 0}, [987] = {.lex_state = 0}, - [988] = {.lex_state = 0}, - [989] = {.lex_state = 152}, - [990] = {.lex_state = 0}, - [991] = {.lex_state = 132}, - [992] = {.lex_state = 132}, + [988] = {.lex_state = 132}, + [989] = {.lex_state = 0}, + [990] = {.lex_state = 132}, + [991] = {.lex_state = 135}, + [992] = {.lex_state = 0}, [993] = {.lex_state = 0}, [994] = {.lex_state = 132}, - [995] = {.lex_state = 132}, + [995] = {.lex_state = 152}, [996] = {.lex_state = 0}, [997] = {.lex_state = 0}, - [998] = {.lex_state = 135}, - [999] = {.lex_state = 135}, - [1000] = {.lex_state = 0}, - [1001] = {.lex_state = 0}, + [998] = {.lex_state = 0}, + [999] = {.lex_state = 0}, + [1000] = {.lex_state = 146}, + [1001] = {.lex_state = 132}, [1002] = {.lex_state = 0}, - [1003] = {.lex_state = 152}, - [1004] = {.lex_state = 146}, + [1003] = {.lex_state = 0}, + [1004] = {.lex_state = 0}, [1005] = {.lex_state = 0}, - [1006] = {.lex_state = 152}, + [1006] = {.lex_state = 0}, [1007] = {.lex_state = 0}, - [1008] = {.lex_state = 146}, - [1009] = {.lex_state = 0}, - [1010] = {.lex_state = 0}, + [1008] = {.lex_state = 132}, + [1009] = {.lex_state = 152}, + [1010] = {.lex_state = 132}, [1011] = {.lex_state = 0}, [1012] = {.lex_state = 0}, - [1013] = {.lex_state = 132}, + [1013] = {.lex_state = 146}, [1014] = {.lex_state = 0}, [1015] = {.lex_state = 0}, - [1016] = {.lex_state = 146}, + [1016] = {.lex_state = 0}, [1017] = {.lex_state = 0}, - [1018] = {.lex_state = 0}, - [1019] = {.lex_state = 132}, + [1018] = {.lex_state = 135}, + [1019] = {.lex_state = 146}, [1020] = {.lex_state = 0}, [1021] = {.lex_state = 0}, [1022] = {.lex_state = 0}, [1023] = {.lex_state = 0}, - [1024] = {.lex_state = 0}, + [1024] = {.lex_state = 146}, [1025] = {.lex_state = 0}, [1026] = {.lex_state = 0}, - [1027] = {.lex_state = 132}, + [1027] = {.lex_state = 0}, [1028] = {.lex_state = 0}, - [1029] = {.lex_state = 0}, + [1029] = {.lex_state = 132}, [1030] = {.lex_state = 0}, [1031] = {.lex_state = 0}, [1032] = {.lex_state = 0}, - [1033] = {.lex_state = 0}, - [1034] = {.lex_state = 135}, + [1033] = {.lex_state = 152}, + [1034] = {.lex_state = 132}, [1035] = {.lex_state = 0}, - [1036] = {.lex_state = 0}, + [1036] = {.lex_state = 144}, [1037] = {.lex_state = 0}, [1038] = {.lex_state = 0}, - [1039] = {.lex_state = 146}, + [1039] = {.lex_state = 0}, [1040] = {.lex_state = 0}, - [1041] = {.lex_state = 146}, - [1042] = {.lex_state = 146}, + [1041] = {.lex_state = 0}, + [1042] = {.lex_state = 0}, [1043] = {.lex_state = 0}, [1044] = {.lex_state = 0}, - [1045] = {.lex_state = 146}, - [1046] = {.lex_state = 146}, + [1045] = {.lex_state = 0}, + [1046] = {.lex_state = 0}, [1047] = {.lex_state = 0}, - [1048] = {.lex_state = 0}, - [1049] = {.lex_state = 132}, + [1048] = {.lex_state = 146}, + [1049] = {.lex_state = 0}, [1050] = {.lex_state = 0}, [1051] = {.lex_state = 0}, [1052] = {.lex_state = 146}, - [1053] = {.lex_state = 132}, - [1054] = {.lex_state = 146}, - [1055] = {.lex_state = 0}, - [1056] = {.lex_state = 146}, + [1053] = {.lex_state = 146}, + [1054] = {.lex_state = 0}, + [1055] = {.lex_state = 132}, + [1056] = {.lex_state = 0}, [1057] = {.lex_state = 0}, - [1058] = {.lex_state = 0}, - [1059] = {.lex_state = 0}, - [1060] = {.lex_state = 146}, - [1061] = {.lex_state = 132}, + [1058] = {.lex_state = 146}, + [1059] = {.lex_state = 146}, + [1060] = {.lex_state = 0}, + [1061] = {.lex_state = 0}, [1062] = {.lex_state = 0}, [1063] = {.lex_state = 0}, - [1064] = {.lex_state = 0}, + [1064] = {.lex_state = 146}, [1065] = {.lex_state = 0}, - [1066] = {.lex_state = 135}, - [1067] = {.lex_state = 0}, - [1068] = {.lex_state = 146}, + [1066] = {.lex_state = 0}, + [1067] = {.lex_state = 132}, + [1068] = {.lex_state = 0}, [1069] = {.lex_state = 0}, - [1070] = {.lex_state = 0}, - [1071] = {.lex_state = 152}, + [1070] = {.lex_state = 135}, + [1071] = {.lex_state = 0}, [1072] = {.lex_state = 0}, - [1073] = {.lex_state = 0}, + [1073] = {.lex_state = 146}, [1074] = {.lex_state = 0}, [1075] = {.lex_state = 0}, [1076] = {.lex_state = 0}, @@ -5859,116 +5880,116 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1078] = {.lex_state = 0}, [1079] = {.lex_state = 0}, [1080] = {.lex_state = 0}, - [1081] = {.lex_state = 146}, - [1082] = {.lex_state = 135}, + [1081] = {.lex_state = 0}, + [1082] = {.lex_state = 0}, [1083] = {.lex_state = 0}, [1084] = {.lex_state = 0}, - [1085] = {.lex_state = 152}, - [1086] = {.lex_state = 132}, - [1087] = {.lex_state = 0}, - [1088] = {.lex_state = 0}, + [1085] = {.lex_state = 0}, + [1086] = {.lex_state = 0}, + [1087] = {.lex_state = 146}, + [1088] = {.lex_state = 135}, [1089] = {.lex_state = 0}, [1090] = {.lex_state = 0}, [1091] = {.lex_state = 0}, - [1092] = {.lex_state = 146}, + [1092] = {.lex_state = 132}, [1093] = {.lex_state = 0}, [1094] = {.lex_state = 0}, [1095] = {.lex_state = 0}, [1096] = {.lex_state = 0}, - [1097] = {.lex_state = 0}, + [1097] = {.lex_state = 146}, [1098] = {.lex_state = 0}, [1099] = {.lex_state = 0}, [1100] = {.lex_state = 0}, - [1101] = {.lex_state = 0}, + [1101] = {.lex_state = 152}, [1102] = {.lex_state = 0}, [1103] = {.lex_state = 0}, - [1104] = {.lex_state = 0}, - [1105] = {.lex_state = 146}, - [1106] = {.lex_state = 0}, - [1107] = {.lex_state = 146}, + [1104] = {.lex_state = 152}, + [1105] = {.lex_state = 0}, + [1106] = {.lex_state = 152}, + [1107] = {.lex_state = 0}, [1108] = {.lex_state = 0}, - [1109] = {.lex_state = 146}, - [1110] = {.lex_state = 0}, - [1111] = {.lex_state = 132}, + [1109] = {.lex_state = 0}, + [1110] = {.lex_state = 146}, + [1111] = {.lex_state = 146}, [1112] = {.lex_state = 0}, [1113] = {.lex_state = 0}, [1114] = {.lex_state = 0}, - [1115] = {.lex_state = 152}, + [1115] = {.lex_state = 0}, [1116] = {.lex_state = 0}, - [1117] = {.lex_state = 146}, - [1118] = {.lex_state = 0}, - [1119] = {.lex_state = 152}, + [1117] = {.lex_state = 0}, + [1118] = {.lex_state = 132}, + [1119] = {.lex_state = 0}, [1120] = {.lex_state = 0}, - [1121] = {.lex_state = 146}, + [1121] = {.lex_state = 0}, [1122] = {.lex_state = 0}, - [1123] = {.lex_state = 135}, + [1123] = {.lex_state = 146}, [1124] = {.lex_state = 0}, - [1125] = {.lex_state = 146}, + [1125] = {.lex_state = 0}, [1126] = {.lex_state = 0}, - [1127] = {.lex_state = 0}, + [1127] = {.lex_state = 146}, [1128] = {.lex_state = 0}, [1129] = {.lex_state = 0}, - [1130] = {.lex_state = 146}, + [1130] = {.lex_state = 0}, [1131] = {.lex_state = 0}, [1132] = {.lex_state = 0}, [1133] = {.lex_state = 152}, - [1134] = {.lex_state = 0}, - [1135] = {.lex_state = 146}, - [1136] = {.lex_state = 152}, + [1134] = {.lex_state = 146}, + [1135] = {.lex_state = 0}, + [1136] = {.lex_state = 146}, [1137] = {.lex_state = 0}, - [1138] = {.lex_state = 0}, + [1138] = {.lex_state = 146}, [1139] = {.lex_state = 0}, - [1140] = {.lex_state = 0}, - [1141] = {.lex_state = 0}, - [1142] = {.lex_state = 146}, - [1143] = {.lex_state = 135}, - [1144] = {.lex_state = 0}, - [1145] = {.lex_state = 0}, - [1146] = {.lex_state = 146}, + [1140] = {.lex_state = 146}, + [1141] = {.lex_state = 135}, + [1142] = {.lex_state = 0}, + [1143] = {.lex_state = 146}, + [1144] = {.lex_state = 146}, + [1145] = {.lex_state = 152}, + [1146] = {.lex_state = 0}, [1147] = {.lex_state = 146}, [1148] = {.lex_state = 0}, [1149] = {.lex_state = 0}, - [1150] = {.lex_state = 146}, + [1150] = {.lex_state = 152}, [1151] = {.lex_state = 0}, - [1152] = {.lex_state = 0}, + [1152] = {.lex_state = 146}, [1153] = {.lex_state = 0}, [1154] = {.lex_state = 0}, - [1155] = {.lex_state = 0}, + [1155] = {.lex_state = 135}, [1156] = {.lex_state = 0}, - [1157] = {.lex_state = 0}, - [1158] = {.lex_state = 146}, + [1157] = {.lex_state = 132}, + [1158] = {.lex_state = 0}, [1159] = {.lex_state = 146}, - [1160] = {.lex_state = 132}, + [1160] = {.lex_state = 0}, [1161] = {.lex_state = 0}, [1162] = {.lex_state = 0}, - [1163] = {.lex_state = 0}, - [1164] = {.lex_state = 0}, + [1163] = {.lex_state = 146}, + [1164] = {.lex_state = 146}, [1165] = {.lex_state = 0}, - [1166] = {.lex_state = 0}, + [1166] = {.lex_state = 146}, [1167] = {.lex_state = 0}, [1168] = {.lex_state = 0}, [1169] = {.lex_state = 0}, [1170] = {.lex_state = 0}, - [1171] = {.lex_state = 0}, + [1171] = {.lex_state = 132}, [1172] = {.lex_state = 0}, - [1173] = {.lex_state = 132}, + [1173] = {.lex_state = 146}, [1174] = {.lex_state = 0}, - [1175] = {.lex_state = 132}, + [1175] = {.lex_state = 0}, [1176] = {.lex_state = 0}, [1177] = {.lex_state = 0}, [1178] = {.lex_state = 0}, - [1179] = {.lex_state = 0}, - [1180] = {.lex_state = 132}, + [1179] = {.lex_state = 132}, + [1180] = {.lex_state = 0}, [1181] = {.lex_state = 0}, [1182] = {.lex_state = 0}, [1183] = {.lex_state = 0}, [1184] = {.lex_state = 0}, [1185] = {.lex_state = 0}, - [1186] = {.lex_state = 0}, + [1186] = {.lex_state = 132}, [1187] = {.lex_state = 0}, [1188] = {.lex_state = 0}, [1189] = {.lex_state = 0}, - [1190] = {.lex_state = 132}, + [1190] = {.lex_state = 0}, [1191] = {.lex_state = 0}, [1192] = {.lex_state = 0}, [1193] = {.lex_state = 0}, @@ -5976,68 +5997,68 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1195] = {.lex_state = 0}, [1196] = {.lex_state = 0}, [1197] = {.lex_state = 0}, - [1198] = {.lex_state = 132}, + [1198] = {.lex_state = 0}, [1199] = {.lex_state = 0}, - [1200] = {.lex_state = 0}, - [1201] = {.lex_state = 0}, + [1200] = {.lex_state = 132}, + [1201] = {.lex_state = 132}, [1202] = {.lex_state = 0}, - [1203] = {.lex_state = 0}, - [1204] = {.lex_state = 132}, - [1205] = {.lex_state = 0}, + [1203] = {.lex_state = 132}, + [1204] = {.lex_state = 0}, + [1205] = {.lex_state = 135}, [1206] = {.lex_state = 0}, - [1207] = {.lex_state = 132}, - [1208] = {.lex_state = 0}, + [1207] = {.lex_state = 0}, + [1208] = {.lex_state = 132}, [1209] = {.lex_state = 0}, [1210] = {.lex_state = 0}, [1211] = {.lex_state = 0}, [1212] = {.lex_state = 0}, [1213] = {.lex_state = 0}, [1214] = {.lex_state = 0}, - [1215] = {.lex_state = 132}, - [1216] = {.lex_state = 0}, + [1215] = {.lex_state = 0}, + [1216] = {.lex_state = 146}, [1217] = {.lex_state = 0}, [1218] = {.lex_state = 0}, [1219] = {.lex_state = 0}, [1220] = {.lex_state = 0}, - [1221] = {.lex_state = 135}, + [1221] = {.lex_state = 0}, [1222] = {.lex_state = 0}, - [1223] = {.lex_state = 0}, + [1223] = {.lex_state = 132}, [1224] = {.lex_state = 0}, - [1225] = {.lex_state = 132}, - [1226] = {.lex_state = 135}, + [1225] = {.lex_state = 0}, + [1226] = {.lex_state = 132}, [1227] = {.lex_state = 0}, [1228] = {.lex_state = 0}, [1229] = {.lex_state = 0}, [1230] = {.lex_state = 0}, [1231] = {.lex_state = 0}, [1232] = {.lex_state = 0}, - [1233] = {.lex_state = 135}, + [1233] = {.lex_state = 0}, [1234] = {.lex_state = 0}, [1235] = {.lex_state = 0}, - [1236] = {.lex_state = 135}, + [1236] = {.lex_state = 0}, [1237] = {.lex_state = 0}, [1238] = {.lex_state = 0}, [1239] = {.lex_state = 0}, [1240] = {.lex_state = 0}, - [1241] = {.lex_state = 146}, - [1242] = {.lex_state = 0}, + [1241] = {.lex_state = 132}, + [1242] = {.lex_state = 135}, [1243] = {.lex_state = 0}, [1244] = {.lex_state = 0}, [1245] = {.lex_state = 0}, [1246] = {.lex_state = 0}, [1247] = {.lex_state = 0}, [1248] = {.lex_state = 0}, - [1249] = {.lex_state = 0}, + [1249] = {.lex_state = 135}, [1250] = {.lex_state = 0}, [1251] = {.lex_state = 0}, - [1252] = {.lex_state = 0}, - [1253] = {.lex_state = 0}, + [1252] = {.lex_state = 135}, + [1253] = {.lex_state = 132}, [1254] = {.lex_state = 0}, [1255] = {.lex_state = 0}, [1256] = {.lex_state = 0}, - [1257] = {.lex_state = 146}, - [1258] = {.lex_state = 132}, - [1259] = {.lex_state = 132}, + [1257] = {.lex_state = 0}, + [1258] = {.lex_state = 0}, + [1259] = {.lex_state = 146}, [1260] = {.lex_state = 0}, [1261] = {.lex_state = 0}, [1262] = {.lex_state = 0}, @@ -6046,15 +6067,31 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1265] = {.lex_state = 0}, [1266] = {.lex_state = 0}, [1267] = {.lex_state = 0}, - [1268] = {.lex_state = 132}, + [1268] = {.lex_state = 0}, [1269] = {.lex_state = 132}, [1270] = {.lex_state = 0}, - [1271] = {.lex_state = 132}, + [1271] = {.lex_state = 0}, [1272] = {.lex_state = 0}, [1273] = {.lex_state = 0}, [1274] = {.lex_state = 132}, [1275] = {.lex_state = 0}, [1276] = {.lex_state = 0}, + [1277] = {.lex_state = 132}, + [1278] = {.lex_state = 0}, + [1279] = {.lex_state = 0}, + [1280] = {.lex_state = 0}, + [1281] = {.lex_state = 0}, + [1282] = {.lex_state = 0}, + [1283] = {.lex_state = 0}, + [1284] = {.lex_state = 0}, + [1285] = {.lex_state = 0}, + [1286] = {.lex_state = 132}, + [1287] = {.lex_state = 0}, + [1288] = {.lex_state = 0}, + [1289] = {.lex_state = 0}, + [1290] = {.lex_state = 0}, + [1291] = {.lex_state = 132}, + [1292] = {.lex_state = 0}, }; enum { @@ -6165,45 +6202,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_quoted_content] = ACTIONS(1), }, [1] = { - [sym_source_file] = STATE(1220), - [sym__statement] = STATE(3), - [sym_target_group] = STATE(3), - [sym_import] = STATE(3), - [sym_constant] = STATE(3), - [sym_external_type] = STATE(3), - [sym_external_function] = STATE(3), - [sym_function] = STATE(3), + [sym_source_file] = STATE(1187), + [sym__statement] = STATE(2), + [sym_target_group] = STATE(2), + [sym_import] = STATE(2), + [sym_constant] = STATE(2), + [sym_external_type] = STATE(2), + [sym_external_function] = STATE(2), + [sym_function] = STATE(2), [aux_sym__expression_seq] = STATE(5), - [sym_try] = STATE(458), - [sym__expression] = STATE(87), - [sym_binary_expression] = STATE(87), - [sym__expression_unit] = STATE(87), - [sym_record] = STATE(40), - [sym_todo] = STATE(87), - [sym_tuple] = STATE(29), - [sym_list] = STATE(87), - [sym__expression_bit_string] = STATE(87), - [sym_anonymous_function] = STATE(31), - [sym_expression_group] = STATE(28), - [sym_case] = STATE(28), - [sym_let] = STATE(87), - [sym_assert] = STATE(87), - [sym_negation] = STATE(87), - [sym_record_update] = STATE(40), - [sym__maybe_tuple_expression] = STATE(1218), - [sym_tuple_access] = STATE(28), - [sym__maybe_record_expression] = STATE(1216), - [sym_field_access] = STATE(28), - [sym__maybe_function_expression] = STATE(1118), - [sym_function_call] = STATE(28), - [sym_type_definition] = STATE(3), - [sym_type_alias] = STATE(3), - [sym_string] = STATE(87), - [sym_integer] = STATE(87), - [sym_identifier] = STATE(21), + [sym_try] = STATE(455), + [sym__expression] = STATE(106), + [sym_binary_expression] = STATE(106), + [sym__expression_unit] = STATE(106), + [sym_record] = STATE(39), + [sym_todo] = STATE(106), + [sym_tuple] = STATE(40), + [sym_list] = STATE(106), + [sym__expression_bit_string] = STATE(106), + [sym_anonymous_function] = STATE(29), + [sym_expression_group] = STATE(8), + [sym_case] = STATE(8), + [sym_let] = STATE(106), + [sym_assert] = STATE(106), + [sym_negation] = STATE(106), + [sym_record_update] = STATE(39), + [sym__maybe_tuple_expression] = STATE(1178), + [sym_tuple_access] = STATE(8), + [sym__maybe_record_expression] = STATE(1232), + [sym_field_access] = STATE(8), + [sym__maybe_function_expression] = STATE(1051), + [sym_function_call] = STATE(8), + [sym_type_definition] = STATE(2), + [sym_type_alias] = STATE(2), + [sym_string] = STATE(106), + [sym_integer] = STATE(106), + [sym_identifier] = STATE(25), [sym_constructor_name] = STATE(6), [sym_remote_constructor_name] = STATE(6), - [aux_sym_source_file_repeat1] = STATE(3), + [aux_sym_source_file_repeat1] = STATE(2), [ts_builtin_sym_end] = ACTIONS(7), [sym_module_comment] = ACTIONS(3), [sym_statement_comment] = ACTIONS(5), @@ -6237,119 +6274,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__upname] = ACTIONS(57), }, [2] = { - [sym__statement] = STATE(2), - [sym_target_group] = STATE(2), - [sym_import] = STATE(2), - [sym_constant] = STATE(2), - [sym_external_type] = STATE(2), - [sym_external_function] = STATE(2), - [sym_function] = STATE(2), + [sym__statement] = STATE(3), + [sym_target_group] = STATE(3), + [sym_import] = STATE(3), + [sym_constant] = STATE(3), + [sym_external_type] = STATE(3), + [sym_external_function] = STATE(3), + [sym_function] = STATE(3), [aux_sym__expression_seq] = STATE(5), - [sym_try] = STATE(458), - [sym__expression] = STATE(87), - [sym_binary_expression] = STATE(87), - [sym__expression_unit] = STATE(87), - [sym_record] = STATE(40), - [sym_todo] = STATE(87), - [sym_tuple] = STATE(29), - [sym_list] = STATE(87), - [sym__expression_bit_string] = STATE(87), - [sym_anonymous_function] = STATE(31), - [sym_expression_group] = STATE(28), - [sym_case] = STATE(28), - [sym_let] = STATE(87), - [sym_assert] = STATE(87), - [sym_negation] = STATE(87), - [sym_record_update] = STATE(40), - [sym__maybe_tuple_expression] = STATE(1218), - [sym_tuple_access] = STATE(28), - [sym__maybe_record_expression] = STATE(1216), - [sym_field_access] = STATE(28), - [sym__maybe_function_expression] = STATE(1118), - [sym_function_call] = STATE(28), - [sym_type_definition] = STATE(2), - [sym_type_alias] = STATE(2), - [sym_string] = STATE(87), - [sym_integer] = STATE(87), - [sym_identifier] = STATE(21), + [sym_try] = STATE(455), + [sym__expression] = STATE(106), + [sym_binary_expression] = STATE(106), + [sym__expression_unit] = STATE(106), + [sym_record] = STATE(39), + [sym_todo] = STATE(106), + [sym_tuple] = STATE(40), + [sym_list] = STATE(106), + [sym__expression_bit_string] = STATE(106), + [sym_anonymous_function] = STATE(29), + [sym_expression_group] = STATE(8), + [sym_case] = STATE(8), + [sym_let] = STATE(106), + [sym_assert] = STATE(106), + [sym_negation] = STATE(106), + [sym_record_update] = STATE(39), + [sym__maybe_tuple_expression] = STATE(1178), + [sym_tuple_access] = STATE(8), + [sym__maybe_record_expression] = STATE(1232), + [sym_field_access] = STATE(8), + [sym__maybe_function_expression] = STATE(1051), + [sym_function_call] = STATE(8), + [sym_type_definition] = STATE(3), + [sym_type_alias] = STATE(3), + [sym_string] = STATE(106), + [sym_integer] = STATE(106), + [sym_identifier] = STATE(25), [sym_constructor_name] = STATE(6), [sym_remote_constructor_name] = STATE(6), - [aux_sym_source_file_repeat1] = STATE(2), + [aux_sym_source_file_repeat1] = STATE(3), [ts_builtin_sym_end] = ACTIONS(59), [sym_module_comment] = ACTIONS(3), [sym_statement_comment] = ACTIONS(5), [sym_comment] = ACTIONS(5), - [anon_sym_if] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(64), - [anon_sym_import] = ACTIONS(67), - [anon_sym_const] = ACTIONS(70), - [anon_sym_POUND] = ACTIONS(73), - [anon_sym_LBRACK] = ACTIONS(76), - [anon_sym_LT_LT] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(82), - [anon_sym_external] = ACTIONS(85), - [anon_sym_type] = ACTIONS(88), - [anon_sym_fn] = ACTIONS(91), - [anon_sym_try] = ACTIONS(94), - [anon_sym_todo] = ACTIONS(97), - [anon_sym_case] = ACTIONS(100), - [anon_sym_let] = ACTIONS(103), - [anon_sym_assert] = ACTIONS(106), - [anon_sym_BANG] = ACTIONS(109), - [sym_visibility_modifier] = ACTIONS(112), - [sym_opacity_modifier] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(118), - [sym_float] = ACTIONS(121), - [sym__hex] = ACTIONS(124), - [sym__decimal] = ACTIONS(127), - [sym__octal] = ACTIONS(124), - [sym__binary] = ACTIONS(124), - [sym__name] = ACTIONS(130), - [sym__upname] = ACTIONS(133), - }, - [3] = { - [sym__statement] = STATE(2), - [sym_target_group] = STATE(2), - [sym_import] = STATE(2), - [sym_constant] = STATE(2), - [sym_external_type] = STATE(2), - [sym_external_function] = STATE(2), - [sym_function] = STATE(2), - [aux_sym__expression_seq] = STATE(5), - [sym_try] = STATE(458), - [sym__expression] = STATE(87), - [sym_binary_expression] = STATE(87), - [sym__expression_unit] = STATE(87), - [sym_record] = STATE(40), - [sym_todo] = STATE(87), - [sym_tuple] = STATE(29), - [sym_list] = STATE(87), - [sym__expression_bit_string] = STATE(87), - [sym_anonymous_function] = STATE(31), - [sym_expression_group] = STATE(28), - [sym_case] = STATE(28), - [sym_let] = STATE(87), - [sym_assert] = STATE(87), - [sym_negation] = STATE(87), - [sym_record_update] = STATE(40), - [sym__maybe_tuple_expression] = STATE(1218), - [sym_tuple_access] = STATE(28), - [sym__maybe_record_expression] = STATE(1216), - [sym_field_access] = STATE(28), - [sym__maybe_function_expression] = STATE(1118), - [sym_function_call] = STATE(28), - [sym_type_definition] = STATE(2), - [sym_type_alias] = STATE(2), - [sym_string] = STATE(87), - [sym_integer] = STATE(87), - [sym_identifier] = STATE(21), - [sym_constructor_name] = STATE(6), - [sym_remote_constructor_name] = STATE(6), - [aux_sym_source_file_repeat1] = STATE(2), - [ts_builtin_sym_end] = ACTIONS(136), - [sym_module_comment] = ACTIONS(3), - [sym_statement_comment] = ACTIONS(5), - [sym_comment] = ACTIONS(5), [anon_sym_if] = ACTIONS(9), [anon_sym_LBRACE] = ACTIONS(11), [anon_sym_import] = ACTIONS(13), @@ -6378,6 +6344,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__name] = ACTIONS(55), [sym__upname] = ACTIONS(57), }, + [3] = { + [sym__statement] = STATE(3), + [sym_target_group] = STATE(3), + [sym_import] = STATE(3), + [sym_constant] = STATE(3), + [sym_external_type] = STATE(3), + [sym_external_function] = STATE(3), + [sym_function] = STATE(3), + [aux_sym__expression_seq] = STATE(5), + [sym_try] = STATE(455), + [sym__expression] = STATE(106), + [sym_binary_expression] = STATE(106), + [sym__expression_unit] = STATE(106), + [sym_record] = STATE(39), + [sym_todo] = STATE(106), + [sym_tuple] = STATE(40), + [sym_list] = STATE(106), + [sym__expression_bit_string] = STATE(106), + [sym_anonymous_function] = STATE(29), + [sym_expression_group] = STATE(8), + [sym_case] = STATE(8), + [sym_let] = STATE(106), + [sym_assert] = STATE(106), + [sym_negation] = STATE(106), + [sym_record_update] = STATE(39), + [sym__maybe_tuple_expression] = STATE(1178), + [sym_tuple_access] = STATE(8), + [sym__maybe_record_expression] = STATE(1232), + [sym_field_access] = STATE(8), + [sym__maybe_function_expression] = STATE(1051), + [sym_function_call] = STATE(8), + [sym_type_definition] = STATE(3), + [sym_type_alias] = STATE(3), + [sym_string] = STATE(106), + [sym_integer] = STATE(106), + [sym_identifier] = STATE(25), + [sym_constructor_name] = STATE(6), + [sym_remote_constructor_name] = STATE(6), + [aux_sym_source_file_repeat1] = STATE(3), + [ts_builtin_sym_end] = ACTIONS(61), + [sym_module_comment] = ACTIONS(3), + [sym_statement_comment] = ACTIONS(5), + [sym_comment] = ACTIONS(5), + [anon_sym_if] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(66), + [anon_sym_import] = ACTIONS(69), + [anon_sym_const] = ACTIONS(72), + [anon_sym_POUND] = ACTIONS(75), + [anon_sym_LBRACK] = ACTIONS(78), + [anon_sym_LT_LT] = ACTIONS(81), + [anon_sym_DASH] = ACTIONS(84), + [anon_sym_external] = ACTIONS(87), + [anon_sym_type] = ACTIONS(90), + [anon_sym_fn] = ACTIONS(93), + [anon_sym_try] = ACTIONS(96), + [anon_sym_todo] = ACTIONS(99), + [anon_sym_case] = ACTIONS(102), + [anon_sym_let] = ACTIONS(105), + [anon_sym_assert] = ACTIONS(108), + [anon_sym_BANG] = ACTIONS(111), + [sym_visibility_modifier] = ACTIONS(114), + [sym_opacity_modifier] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(120), + [sym_float] = ACTIONS(123), + [sym__hex] = ACTIONS(126), + [sym__decimal] = ACTIONS(129), + [sym__octal] = ACTIONS(126), + [sym__binary] = ACTIONS(126), + [sym__name] = ACTIONS(132), + [sym__upname] = ACTIONS(135), + }, }; static const uint16_t ts_small_parse_table[] = { @@ -6422,34 +6459,34 @@ static const uint16_t ts_small_parse_table[] = { sym__upname, STATE(4), 1, aux_sym__expression_seq, - STATE(21), 1, + STATE(25), 1, sym_identifier, STATE(29), 1, - sym_tuple, - STATE(31), 1, sym_anonymous_function, - STATE(458), 1, + STATE(40), 1, + sym_tuple, + STATE(455), 1, sym_try, - STATE(1118), 1, + STATE(1051), 1, sym__maybe_function_expression, - STATE(1216), 1, - sym__maybe_record_expression, - STATE(1218), 1, + STATE(1178), 1, sym__maybe_tuple_expression, + STATE(1232), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, STATE(6), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(40), 2, + STATE(39), 2, sym_record, sym_record_update, ACTIONS(184), 3, sym__hex, sym__octal, sym__binary, - STATE(28), 5, + STATE(8), 5, sym_expression_group, sym_case, sym_tuple_access, @@ -6463,7 +6500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, sym_visibility_modifier, sym_opacity_modifier, - STATE(87), 11, + STATE(106), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -6516,34 +6553,34 @@ static const uint16_t ts_small_parse_table[] = { sym__upname, STATE(4), 1, aux_sym__expression_seq, - STATE(21), 1, + STATE(25), 1, sym_identifier, STATE(29), 1, - sym_tuple, - STATE(31), 1, sym_anonymous_function, - STATE(458), 1, + STATE(40), 1, + sym_tuple, + STATE(455), 1, sym_try, - STATE(1118), 1, + STATE(1051), 1, sym__maybe_function_expression, - STATE(1216), 1, - sym__maybe_record_expression, - STATE(1218), 1, + STATE(1178), 1, sym__maybe_tuple_expression, + STATE(1232), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, STATE(6), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(40), 2, + STATE(39), 2, sym_record, sym_record_update, ACTIONS(242), 3, sym__hex, sym__octal, sym__binary, - STATE(28), 5, + STATE(8), 5, sym_expression_group, sym_case, sym_tuple_access, @@ -6557,7 +6594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, sym_visibility_modifier, sym_opacity_modifier, - STATE(87), 11, + STATE(106), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -6574,7 +6611,7 @@ static const uint16_t ts_small_parse_table[] = { sym_module_comment, ACTIONS(258), 1, anon_sym_LPAREN, - STATE(52), 1, + STATE(38), 1, sym_arguments, ACTIONS(5), 2, sym_statement_comment, @@ -6690,9 +6727,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [387] = 4, + [387] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(268), 1, + anon_sym_DOT, + ACTIONS(271), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, @@ -6721,12 +6762,10 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(264), 27, + ACTIONS(264), 25, ts_builtin_sym_end, anon_sym_LBRACE, - anon_sym_DOT, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, @@ -6749,13 +6788,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [450] = 4, + [454] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(270), 24, + ACTIONS(275), 24, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -6780,7 +6819,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(268), 27, + ACTIONS(273), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_DOT, @@ -6808,72 +6847,103 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [513] = 4, + [517] = 35, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(274), 24, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_const, + ACTIONS(277), 1, + anon_sym_LBRACE, + ACTIONS(279), 1, + anon_sym_POUND, + ACTIONS(281), 1, + anon_sym_RPAREN, + ACTIONS(283), 1, + anon_sym_LBRACK, + ACTIONS(285), 1, + anon_sym_LT_LT, + ACTIONS(287), 1, anon_sym_DASH, - anon_sym_external, - anon_sym_type, + ACTIONS(289), 1, anon_sym_fn, - anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(291), 1, anon_sym_todo, + ACTIONS(293), 1, + anon_sym_DOT_DOT, + ACTIONS(295), 1, anon_sym_case, + ACTIONS(297), 1, anon_sym_let, + ACTIONS(299), 1, anon_sym_assert, + ACTIONS(301), 1, anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(272), 27, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, + ACTIONS(303), 1, anon_sym_DQUOTE, + ACTIONS(305), 1, sym_float, + ACTIONS(309), 1, + sym__decimal, + ACTIONS(311), 1, + sym__discard_name, + ACTIONS(313), 1, + sym__name, + ACTIONS(315), 1, + sym__upname, + STATE(375), 1, + sym_identifier, + STATE(380), 1, + sym_tuple, + STATE(387), 1, + sym_anonymous_function, + STATE(959), 1, + sym_argument, + STATE(1116), 1, + sym__maybe_function_expression, + STATE(1168), 1, + sym_hole, + STATE(1189), 1, + sym_label, + STATE(1218), 1, + sym__maybe_tuple_expression, + STATE(1229), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(359), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(392), 2, + sym_record, + sym_record_update, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [576] = 4, + STATE(374), 5, + sym_expression_group, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(576), 11, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_list, + sym__expression_bit_string, + sym_let, + sym_assert, + sym_negation, + sym_string, + sym_integer, + [642] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(278), 24, + ACTIONS(319), 24, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -6898,7 +6968,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(276), 27, + ACTIONS(317), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_DOT, @@ -6926,13 +6996,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [639] = 4, + [705] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(282), 24, + ACTIONS(323), 24, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -6957,7 +7027,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(280), 27, + ACTIONS(321), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_DOT, @@ -6985,85 +7055,85 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [702] = 35, + [768] = 35, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(277), 1, anon_sym_LBRACE, - ACTIONS(286), 1, + ACTIONS(279), 1, anon_sym_POUND, - ACTIONS(288), 1, - anon_sym_RPAREN, - ACTIONS(290), 1, + ACTIONS(283), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(285), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(289), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(291), 1, anon_sym_todo, - ACTIONS(300), 1, - anon_sym_DOT_DOT, - ACTIONS(302), 1, + ACTIONS(295), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(297), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(299), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(301), 1, anon_sym_BANG, - ACTIONS(310), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(312), 1, + ACTIONS(305), 1, sym_float, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(318), 1, + ACTIONS(311), 1, sym__discard_name, - ACTIONS(320), 1, + ACTIONS(313), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__upname, - STATE(361), 1, + ACTIONS(325), 1, + anon_sym_RPAREN, + ACTIONS(327), 1, + anon_sym_DOT_DOT, + STATE(375), 1, sym_identifier, - STATE(385), 1, + STATE(380), 1, sym_tuple, - STATE(393), 1, + STATE(387), 1, sym_anonymous_function, - STATE(903), 1, + STATE(984), 1, sym_argument, - STATE(1090), 1, - sym_hole, - STATE(1100), 1, + STATE(1116), 1, sym__maybe_function_expression, - STATE(1213), 1, - sym__maybe_record_expression, - STATE(1243), 1, - sym__maybe_tuple_expression, - STATE(1245), 1, + STATE(1168), 1, + sym_hole, + STATE(1189), 1, sym_label, + STATE(1218), 1, + sym__maybe_tuple_expression, + STATE(1229), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(360), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(382), 2, + STATE(392), 2, sym_record, sym_record_update, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(367), 5, + STATE(374), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(577), 11, + STATE(576), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -7075,13 +7145,13 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [827] = 4, + [893] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(326), 19, + ACTIONS(331), 19, anon_sym_DOT, anon_sym_SLASH, anon_sym_EQ, @@ -7101,7 +7171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(324), 32, + ACTIONS(329), 32, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -7134,144 +7204,85 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [890] = 4, + [956] = 35, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(330), 24, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_const, - anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(328), 27, - ts_builtin_sym_end, + ACTIONS(277), 1, anon_sym_LBRACE, - anon_sym_DOT, + ACTIONS(279), 1, anon_sym_POUND, - anon_sym_LPAREN, + ACTIONS(283), 1, anon_sym_LBRACK, + ACTIONS(285), 1, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [953] = 35, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(286), 1, - anon_sym_POUND, - ACTIONS(290), 1, - anon_sym_LBRACK, - ACTIONS(292), 1, - anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(289), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(291), 1, anon_sym_todo, - ACTIONS(302), 1, + ACTIONS(295), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(297), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(299), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(301), 1, anon_sym_BANG, - ACTIONS(310), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(312), 1, + ACTIONS(305), 1, sym_float, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(318), 1, + ACTIONS(311), 1, sym__discard_name, - ACTIONS(320), 1, + ACTIONS(313), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(332), 1, + ACTIONS(333), 1, anon_sym_RPAREN, - ACTIONS(334), 1, + ACTIONS(335), 1, anon_sym_DOT_DOT, - STATE(361), 1, + STATE(375), 1, sym_identifier, - STATE(385), 1, + STATE(380), 1, sym_tuple, - STATE(393), 1, + STATE(387), 1, sym_anonymous_function, - STATE(933), 1, + STATE(952), 1, sym_argument, - STATE(1090), 1, - sym_hole, - STATE(1100), 1, + STATE(1116), 1, sym__maybe_function_expression, - STATE(1213), 1, - sym__maybe_record_expression, - STATE(1243), 1, - sym__maybe_tuple_expression, - STATE(1245), 1, + STATE(1168), 1, + sym_hole, + STATE(1189), 1, sym_label, + STATE(1218), 1, + sym__maybe_tuple_expression, + STATE(1229), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(360), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(382), 2, + STATE(392), 2, sym_record, sym_record_update, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(367), 5, + STATE(374), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(577), 11, + STATE(576), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -7283,13 +7294,13 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [1078] = 4, + [1081] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(338), 24, + ACTIONS(339), 24, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -7314,7 +7325,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(336), 27, + ACTIONS(337), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_DOT, @@ -7342,193 +7353,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [1141] = 35, + [1144] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(286), 1, - anon_sym_POUND, - ACTIONS(290), 1, - anon_sym_LBRACK, - ACTIONS(292), 1, - anon_sym_LT_LT, - ACTIONS(294), 1, - anon_sym_DASH, - ACTIONS(296), 1, - anon_sym_fn, - ACTIONS(298), 1, - anon_sym_todo, - ACTIONS(302), 1, - anon_sym_case, - ACTIONS(304), 1, - anon_sym_let, - ACTIONS(306), 1, - anon_sym_assert, - ACTIONS(308), 1, - anon_sym_BANG, - ACTIONS(310), 1, - anon_sym_DQUOTE, - ACTIONS(312), 1, - sym_float, - ACTIONS(316), 1, - sym__decimal, - ACTIONS(318), 1, - sym__discard_name, - ACTIONS(320), 1, - sym__name, - ACTIONS(322), 1, - sym__upname, - ACTIONS(340), 1, - anon_sym_RPAREN, - ACTIONS(342), 1, - anon_sym_DOT_DOT, - STATE(361), 1, - sym_identifier, - STATE(385), 1, - sym_tuple, - STATE(393), 1, - sym_anonymous_function, - STATE(1015), 1, - sym_argument, - STATE(1090), 1, - sym_hole, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1213), 1, - sym__maybe_record_expression, - STATE(1243), 1, - sym__maybe_tuple_expression, - STATE(1245), 1, - sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(360), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(382), 2, - sym_record, - sym_record_update, - ACTIONS(314), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(367), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(577), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [1266] = 35, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(286), 1, - anon_sym_POUND, - ACTIONS(290), 1, - anon_sym_LBRACK, - ACTIONS(292), 1, - anon_sym_LT_LT, - ACTIONS(294), 1, - anon_sym_DASH, - ACTIONS(296), 1, - anon_sym_fn, - ACTIONS(298), 1, - anon_sym_todo, - ACTIONS(302), 1, - anon_sym_case, - ACTIONS(304), 1, - anon_sym_let, - ACTIONS(306), 1, - anon_sym_assert, - ACTIONS(308), 1, - anon_sym_BANG, - ACTIONS(310), 1, - anon_sym_DQUOTE, - ACTIONS(312), 1, - sym_float, - ACTIONS(316), 1, - sym__decimal, - ACTIONS(318), 1, - sym__discard_name, - ACTIONS(320), 1, - sym__name, - ACTIONS(322), 1, - sym__upname, - ACTIONS(344), 1, - anon_sym_RPAREN, - ACTIONS(346), 1, - anon_sym_DOT_DOT, - STATE(361), 1, - sym_identifier, - STATE(385), 1, - sym_tuple, - STATE(393), 1, - sym_anonymous_function, - STATE(966), 1, - sym_argument, - STATE(1090), 1, - sym_hole, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1213), 1, - sym__maybe_record_expression, - STATE(1243), 1, - sym__maybe_tuple_expression, - STATE(1245), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(360), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(382), 2, - sym_record, - sym_record_update, - ACTIONS(314), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(367), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(577), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [1391] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(350), 24, + ACTIONS(343), 24, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -7553,7 +7384,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(348), 27, + ACTIONS(341), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_DOT, @@ -7581,17 +7412,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [1454] = 6, + [1207] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(356), 1, - anon_sym_DOT, - ACTIONS(360), 1, - anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(354), 24, + ACTIONS(347), 24, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -7616,10 +7443,12 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(352), 25, + ACTIONS(345), 27, ts_builtin_sym_end, anon_sym_LBRACE, + anon_sym_DOT, anon_sym_POUND, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, @@ -7642,13 +7471,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [1521] = 4, + [1270] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(364), 24, + ACTIONS(351), 24, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -7673,7 +7502,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(362), 27, + ACTIONS(349), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_DOT, @@ -7701,13 +7530,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [1584] = 4, + [1333] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(326), 24, + ACTIONS(355), 24, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -7732,7 +7561,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(324), 27, + ACTIONS(353), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_DOT, @@ -7760,13 +7589,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [1647] = 4, + [1396] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(368), 24, + ACTIONS(359), 24, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -7791,7 +7620,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(366), 27, + ACTIONS(357), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_DOT, @@ -7819,13 +7648,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [1710] = 4, + [1459] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(372), 24, + ACTIONS(363), 24, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -7850,7 +7679,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(370), 27, + ACTIONS(361), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_DOT, @@ -7878,13 +7707,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [1773] = 4, + [1522] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(376), 24, + ACTIONS(331), 24, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -7909,7 +7738,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(374), 27, + ACTIONS(329), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_DOT, @@ -7937,13 +7766,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [1836] = 4, + [1585] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(380), 24, + ACTIONS(367), 24, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -7968,7 +7797,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(378), 27, + ACTIONS(365), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_DOT, @@ -7996,17 +7825,17 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [1899] = 6, + [1648] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(360), 1, + ACTIONS(271), 1, anon_sym_LPAREN, - ACTIONS(382), 1, + ACTIONS(369), 1, anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(354), 24, + ACTIONS(266), 24, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -8031,7 +7860,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(352), 25, + ACTIONS(264), 25, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -8057,15 +7886,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [1966] = 5, + [1715] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(385), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(354), 24, + ACTIONS(375), 24, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -8090,10 +7917,12 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(352), 25, + ACTIONS(373), 27, ts_builtin_sym_end, anon_sym_LBRACE, + anon_sym_DOT, anon_sym_POUND, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, @@ -8116,83 +7945,85 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [2030] = 34, + [1778] = 35, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(277), 1, anon_sym_LBRACE, - ACTIONS(286), 1, + ACTIONS(279), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(283), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(285), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(289), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(291), 1, anon_sym_todo, - ACTIONS(302), 1, + ACTIONS(295), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(297), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(299), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(301), 1, anon_sym_BANG, - ACTIONS(310), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(312), 1, + ACTIONS(305), 1, sym_float, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(318), 1, + ACTIONS(311), 1, sym__discard_name, - ACTIONS(320), 1, + ACTIONS(313), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(387), 1, + ACTIONS(377), 1, anon_sym_RPAREN, - STATE(361), 1, + ACTIONS(379), 1, + anon_sym_DOT_DOT, + STATE(375), 1, sym_identifier, - STATE(385), 1, + STATE(380), 1, sym_tuple, - STATE(393), 1, + STATE(387), 1, sym_anonymous_function, - STATE(1090), 1, - sym_hole, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1122), 1, + STATE(1031), 1, sym_argument, - STATE(1213), 1, - sym__maybe_record_expression, - STATE(1243), 1, - sym__maybe_tuple_expression, - STATE(1245), 1, + STATE(1116), 1, + sym__maybe_function_expression, + STATE(1168), 1, + sym_hole, + STATE(1189), 1, sym_label, + STATE(1218), 1, + sym__maybe_tuple_expression, + STATE(1229), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(360), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(382), 2, + STATE(392), 2, sym_record, sym_record_update, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(367), 5, + STATE(374), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(577), 11, + STATE(576), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -8204,15 +8035,13 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [2152] = 5, + [1903] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(360), 1, - anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(354), 24, + ACTIONS(383), 24, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -8237,10 +8066,12 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(352), 25, + ACTIONS(381), 27, ts_builtin_sym_end, anon_sym_LBRACE, + anon_sym_DOT, anon_sym_POUND, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, @@ -8263,13 +8094,15 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [2216] = 4, + [1966] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(271), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(391), 24, + ACTIONS(266), 24, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -8294,10 +8127,9 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(389), 26, + ACTIONS(264), 25, ts_builtin_sym_end, anon_sym_LBRACE, - anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -8321,71 +8153,189 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [2278] = 4, + [2030] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(395), 24, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_const, + ACTIONS(277), 1, + anon_sym_LBRACE, + ACTIONS(279), 1, + anon_sym_POUND, + ACTIONS(283), 1, + anon_sym_LBRACK, + ACTIONS(285), 1, + anon_sym_LT_LT, + ACTIONS(287), 1, anon_sym_DASH, - anon_sym_external, - anon_sym_type, + ACTIONS(289), 1, anon_sym_fn, - anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(291), 1, anon_sym_todo, + ACTIONS(295), 1, anon_sym_case, + ACTIONS(297), 1, anon_sym_let, + ACTIONS(299), 1, anon_sym_assert, + ACTIONS(301), 1, anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, + ACTIONS(303), 1, + anon_sym_DQUOTE, + ACTIONS(305), 1, + sym_float, + ACTIONS(309), 1, sym__decimal, + ACTIONS(311), 1, + sym__discard_name, + ACTIONS(313), 1, sym__name, - ACTIONS(393), 26, - ts_builtin_sym_end, + ACTIONS(315), 1, + sym__upname, + ACTIONS(385), 1, + anon_sym_RPAREN, + STATE(375), 1, + sym_identifier, + STATE(380), 1, + sym_tuple, + STATE(387), 1, + sym_anonymous_function, + STATE(1116), 1, + sym__maybe_function_expression, + STATE(1160), 1, + sym_argument, + STATE(1168), 1, + sym_hole, + STATE(1189), 1, + sym_label, + STATE(1218), 1, + sym__maybe_tuple_expression, + STATE(1229), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(359), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(392), 2, + sym_record, + sym_record_update, + ACTIONS(307), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(374), 5, + sym_expression_group, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(576), 11, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_list, + sym__expression_bit_string, + sym_let, + sym_assert, + sym_negation, + sym_string, + sym_integer, + [2152] = 34, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(277), 1, anon_sym_LBRACE, - anon_sym_DOT, + ACTIONS(279), 1, anon_sym_POUND, + ACTIONS(283), 1, anon_sym_LBRACK, + ACTIONS(285), 1, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, + ACTIONS(287), 1, + anon_sym_DASH, + ACTIONS(289), 1, + anon_sym_fn, + ACTIONS(291), 1, + anon_sym_todo, + ACTIONS(295), 1, + anon_sym_case, + ACTIONS(297), 1, + anon_sym_let, + ACTIONS(299), 1, + anon_sym_assert, + ACTIONS(301), 1, + anon_sym_BANG, + ACTIONS(303), 1, anon_sym_DQUOTE, + ACTIONS(305), 1, sym_float, + ACTIONS(309), 1, + sym__decimal, + ACTIONS(311), 1, + sym__discard_name, + ACTIONS(313), 1, + sym__name, + ACTIONS(315), 1, + sym__upname, + ACTIONS(387), 1, + anon_sym_RPAREN, + STATE(375), 1, + sym_identifier, + STATE(380), 1, + sym_tuple, + STATE(387), 1, + sym_anonymous_function, + STATE(1116), 1, + sym__maybe_function_expression, + STATE(1160), 1, + sym_argument, + STATE(1168), 1, + sym_hole, + STATE(1189), 1, + sym_label, + STATE(1218), 1, + sym__maybe_tuple_expression, + STATE(1229), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(359), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(392), 2, + sym_record, + sym_record_update, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [2340] = 4, + STATE(374), 5, + sym_expression_group, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(576), 11, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_list, + sym__expression_bit_string, + sym_let, + sym_assert, + sym_negation, + sym_string, + sym_integer, + [2274] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(399), 24, + ACTIONS(391), 24, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -8410,7 +8360,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(397), 26, + ACTIONS(389), 26, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_DOT, @@ -8437,101 +8387,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [2402] = 34, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(286), 1, - anon_sym_POUND, - ACTIONS(290), 1, - anon_sym_LBRACK, - ACTIONS(292), 1, - anon_sym_LT_LT, - ACTIONS(294), 1, - anon_sym_DASH, - ACTIONS(296), 1, - anon_sym_fn, - ACTIONS(298), 1, - anon_sym_todo, - ACTIONS(302), 1, - anon_sym_case, - ACTIONS(304), 1, - anon_sym_let, - ACTIONS(306), 1, - anon_sym_assert, - ACTIONS(308), 1, - anon_sym_BANG, - ACTIONS(310), 1, - anon_sym_DQUOTE, - ACTIONS(312), 1, - sym_float, - ACTIONS(316), 1, - sym__decimal, - ACTIONS(318), 1, - sym__discard_name, - ACTIONS(320), 1, - sym__name, - ACTIONS(322), 1, - sym__upname, - ACTIONS(401), 1, - anon_sym_RPAREN, - STATE(361), 1, - sym_identifier, - STATE(385), 1, - sym_tuple, - STATE(393), 1, - sym_anonymous_function, - STATE(1090), 1, - sym_hole, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1122), 1, - sym_argument, - STATE(1213), 1, - sym__maybe_record_expression, - STATE(1243), 1, - sym__maybe_tuple_expression, - STATE(1245), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(360), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(382), 2, - sym_record, - sym_record_update, - ACTIONS(314), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(367), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(577), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [2524] = 4, + [2336] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(405), 24, + ACTIONS(395), 24, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -8556,7 +8418,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(403), 26, + ACTIONS(393), 26, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_DOT, @@ -8583,83 +8445,83 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [2586] = 34, + [2398] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(277), 1, anon_sym_LBRACE, - ACTIONS(286), 1, + ACTIONS(279), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(283), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(285), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(289), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(291), 1, anon_sym_todo, - ACTIONS(302), 1, + ACTIONS(295), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(297), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(299), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(301), 1, anon_sym_BANG, - ACTIONS(310), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(312), 1, + ACTIONS(305), 1, sym_float, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(318), 1, + ACTIONS(311), 1, sym__discard_name, - ACTIONS(320), 1, + ACTIONS(313), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(407), 1, + ACTIONS(377), 1, anon_sym_RPAREN, - STATE(361), 1, + STATE(375), 1, sym_identifier, - STATE(385), 1, + STATE(380), 1, sym_tuple, - STATE(393), 1, + STATE(387), 1, sym_anonymous_function, - STATE(1090), 1, - sym_hole, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1122), 1, + STATE(1031), 1, sym_argument, - STATE(1213), 1, - sym__maybe_record_expression, - STATE(1243), 1, - sym__maybe_tuple_expression, - STATE(1245), 1, + STATE(1116), 1, + sym__maybe_function_expression, + STATE(1168), 1, + sym_hole, + STATE(1189), 1, sym_label, + STATE(1218), 1, + sym__maybe_tuple_expression, + STATE(1229), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(360), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(382), 2, + STATE(392), 2, sym_record, sym_record_update, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(367), 5, + STATE(374), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(577), 11, + STATE(576), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -8671,83 +8533,83 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [2708] = 34, + [2520] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(277), 1, anon_sym_LBRACE, - ACTIONS(286), 1, + ACTIONS(279), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(283), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(285), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(289), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(291), 1, anon_sym_todo, - ACTIONS(302), 1, + ACTIONS(295), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(297), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(299), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(301), 1, anon_sym_BANG, - ACTIONS(310), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(312), 1, + ACTIONS(305), 1, sym_float, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(318), 1, + ACTIONS(311), 1, sym__discard_name, - ACTIONS(320), 1, + ACTIONS(313), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(409), 1, + ACTIONS(397), 1, anon_sym_RPAREN, - STATE(361), 1, + STATE(375), 1, sym_identifier, - STATE(385), 1, + STATE(380), 1, sym_tuple, - STATE(393), 1, + STATE(387), 1, sym_anonymous_function, - STATE(1090), 1, - sym_hole, - STATE(1100), 1, + STATE(1116), 1, sym__maybe_function_expression, - STATE(1122), 1, + STATE(1160), 1, sym_argument, - STATE(1213), 1, - sym__maybe_record_expression, - STATE(1243), 1, - sym__maybe_tuple_expression, - STATE(1245), 1, + STATE(1168), 1, + sym_hole, + STATE(1189), 1, sym_label, + STATE(1218), 1, + sym__maybe_tuple_expression, + STATE(1229), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(360), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(382), 2, + STATE(392), 2, sym_record, sym_record_update, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(367), 5, + STATE(374), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(577), 11, + STATE(576), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -8759,83 +8621,83 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [2830] = 34, + [2642] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(277), 1, anon_sym_LBRACE, - ACTIONS(286), 1, + ACTIONS(279), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(283), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(285), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(289), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(291), 1, anon_sym_todo, - ACTIONS(302), 1, + ACTIONS(295), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(297), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(299), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(301), 1, anon_sym_BANG, - ACTIONS(310), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(312), 1, + ACTIONS(305), 1, sym_float, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(318), 1, + ACTIONS(311), 1, sym__discard_name, - ACTIONS(320), 1, + ACTIONS(313), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(411), 1, + ACTIONS(399), 1, anon_sym_RPAREN, - STATE(361), 1, + STATE(375), 1, sym_identifier, - STATE(385), 1, + STATE(380), 1, sym_tuple, - STATE(393), 1, + STATE(387), 1, sym_anonymous_function, - STATE(1090), 1, - sym_hole, - STATE(1100), 1, + STATE(1116), 1, sym__maybe_function_expression, - STATE(1122), 1, + STATE(1160), 1, sym_argument, - STATE(1213), 1, - sym__maybe_record_expression, - STATE(1243), 1, - sym__maybe_tuple_expression, - STATE(1245), 1, + STATE(1168), 1, + sym_hole, + STATE(1189), 1, sym_label, + STATE(1218), 1, + sym__maybe_tuple_expression, + STATE(1229), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(360), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(382), 2, + STATE(392), 2, sym_record, sym_record_update, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(367), 5, + STATE(374), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(577), 11, + STATE(576), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -8847,15 +8709,13 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [2952] = 5, + [2764] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(413), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(354), 24, + ACTIONS(403), 24, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -8880,9 +8740,10 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(352), 25, + ACTIONS(401), 26, ts_builtin_sym_end, anon_sym_LBRACE, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -8906,101 +8767,132 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [3016] = 34, + [2826] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(286), 1, - anon_sym_POUND, - ACTIONS(290), 1, - anon_sym_LBRACK, - ACTIONS(292), 1, - anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(407), 24, + anon_sym_if, + anon_sym_import, + anon_sym_SLASH, + anon_sym_const, anon_sym_DASH, - ACTIONS(296), 1, + anon_sym_external, + anon_sym_type, anon_sym_fn, - ACTIONS(298), 1, + anon_sym_try, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(302), 1, anon_sym_case, - ACTIONS(304), 1, anon_sym_let, - ACTIONS(306), 1, anon_sym_assert, - ACTIONS(308), 1, anon_sym_BANG, - ACTIONS(310), 1, - anon_sym_DQUOTE, - ACTIONS(312), 1, - sym_float, - ACTIONS(316), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(318), 1, - sym__discard_name, - ACTIONS(320), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(405), 26, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, sym__upname, - ACTIONS(415), 1, - anon_sym_RPAREN, - STATE(361), 1, - sym_identifier, - STATE(385), 1, - sym_tuple, - STATE(393), 1, - sym_anonymous_function, - STATE(1090), 1, - sym_hole, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1122), 1, - sym_argument, - STATE(1213), 1, - sym__maybe_record_expression, - STATE(1243), 1, - sym__maybe_tuple_expression, - STATE(1245), 1, - sym_label, + [2888] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(409), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(360), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(382), 2, - sym_record, - sym_record_update, - ACTIONS(314), 3, + ACTIONS(266), 24, + anon_sym_if, + anon_sym_import, + anon_sym_SLASH, + anon_sym_const, + anon_sym_DASH, + anon_sym_external, + anon_sym_type, + anon_sym_fn, + anon_sym_try, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + ACTIONS(264), 25, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DQUOTE, + sym_float, sym__hex, sym__octal, sym__binary, - STATE(367), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(577), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [3138] = 4, + sym__upname, + [2952] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(411), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(419), 24, + ACTIONS(266), 24, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -9025,11 +8917,10 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(417), 26, + ACTIONS(264), 25, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, @@ -9052,83 +8943,83 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [3200] = 34, + [3016] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(277), 1, anon_sym_LBRACE, - ACTIONS(286), 1, + ACTIONS(279), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(283), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(285), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(289), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(291), 1, anon_sym_todo, - ACTIONS(302), 1, + ACTIONS(295), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(297), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(299), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(301), 1, anon_sym_BANG, - ACTIONS(310), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(312), 1, + ACTIONS(305), 1, sym_float, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(318), 1, + ACTIONS(311), 1, sym__discard_name, - ACTIONS(320), 1, + ACTIONS(313), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(340), 1, + ACTIONS(325), 1, anon_sym_RPAREN, - STATE(361), 1, + STATE(375), 1, sym_identifier, - STATE(385), 1, + STATE(380), 1, sym_tuple, - STATE(393), 1, + STATE(387), 1, sym_anonymous_function, - STATE(1015), 1, + STATE(984), 1, sym_argument, - STATE(1090), 1, - sym_hole, - STATE(1100), 1, + STATE(1116), 1, sym__maybe_function_expression, - STATE(1213), 1, - sym__maybe_record_expression, - STATE(1243), 1, - sym__maybe_tuple_expression, - STATE(1245), 1, + STATE(1168), 1, + sym_hole, + STATE(1189), 1, sym_label, + STATE(1218), 1, + sym__maybe_tuple_expression, + STATE(1229), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(360), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(382), 2, + STATE(392), 2, sym_record, sym_record_update, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(367), 5, + STATE(374), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(577), 11, + STATE(576), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -9140,83 +9031,83 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [3322] = 34, + [3138] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(277), 1, anon_sym_LBRACE, - ACTIONS(286), 1, + ACTIONS(279), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(281), 1, + anon_sym_RPAREN, + ACTIONS(283), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(285), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(289), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(291), 1, anon_sym_todo, - ACTIONS(302), 1, + ACTIONS(295), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(297), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(299), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(301), 1, anon_sym_BANG, - ACTIONS(310), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(312), 1, + ACTIONS(305), 1, sym_float, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(318), 1, + ACTIONS(311), 1, sym__discard_name, - ACTIONS(320), 1, + ACTIONS(313), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(344), 1, - anon_sym_RPAREN, - STATE(361), 1, + STATE(375), 1, sym_identifier, - STATE(385), 1, + STATE(380), 1, sym_tuple, - STATE(393), 1, + STATE(387), 1, sym_anonymous_function, - STATE(966), 1, + STATE(959), 1, sym_argument, - STATE(1090), 1, - sym_hole, - STATE(1100), 1, + STATE(1116), 1, sym__maybe_function_expression, - STATE(1213), 1, - sym__maybe_record_expression, - STATE(1243), 1, - sym__maybe_tuple_expression, - STATE(1245), 1, + STATE(1168), 1, + sym_hole, + STATE(1189), 1, sym_label, + STATE(1218), 1, + sym__maybe_tuple_expression, + STATE(1229), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(360), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(382), 2, + STATE(392), 2, sym_record, sym_record_update, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(367), 5, + STATE(374), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(577), 11, + STATE(576), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -9228,83 +9119,141 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [3444] = 34, + [3260] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(415), 24, + anon_sym_if, + anon_sym_import, + anon_sym_SLASH, + anon_sym_const, + anon_sym_DASH, + anon_sym_external, + anon_sym_type, + anon_sym_fn, + anon_sym_try, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + ACTIONS(413), 26, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_POUND, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [3322] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(277), 1, anon_sym_LBRACE, - ACTIONS(286), 1, + ACTIONS(279), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(283), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(285), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(289), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(291), 1, anon_sym_todo, - ACTIONS(302), 1, + ACTIONS(295), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(297), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(299), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(301), 1, anon_sym_BANG, - ACTIONS(310), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(312), 1, + ACTIONS(305), 1, sym_float, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(318), 1, + ACTIONS(311), 1, sym__discard_name, - ACTIONS(320), 1, + ACTIONS(313), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(332), 1, + ACTIONS(417), 1, anon_sym_RPAREN, - STATE(361), 1, + STATE(375), 1, sym_identifier, - STATE(385), 1, + STATE(380), 1, sym_tuple, - STATE(393), 1, + STATE(387), 1, sym_anonymous_function, - STATE(933), 1, + STATE(1116), 1, + sym__maybe_function_expression, + STATE(1160), 1, sym_argument, - STATE(1090), 1, + STATE(1168), 1, sym_hole, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1213), 1, - sym__maybe_record_expression, - STATE(1243), 1, - sym__maybe_tuple_expression, - STATE(1245), 1, + STATE(1189), 1, sym_label, + STATE(1218), 1, + sym__maybe_tuple_expression, + STATE(1229), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(360), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(382), 2, + STATE(392), 2, sym_record, sym_record_update, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(367), 5, + STATE(374), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(577), 11, + STATE(576), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -9316,83 +9265,258 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [3566] = 34, + [3444] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(423), 1, + anon_sym_LPAREN, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(421), 24, + anon_sym_if, + anon_sym_import, + anon_sym_SLASH, + anon_sym_const, + anon_sym_DASH, + anon_sym_external, + anon_sym_type, + anon_sym_fn, + anon_sym_try, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + ACTIONS(419), 25, + ts_builtin_sym_end, anon_sym_LBRACE, - ACTIONS(286), 1, anon_sym_POUND, - ACTIONS(288), 1, - anon_sym_RPAREN, - ACTIONS(290), 1, anon_sym_LBRACK, - ACTIONS(292), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [3508] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(427), 24, + anon_sym_if, + anon_sym_import, + anon_sym_SLASH, + anon_sym_const, + anon_sym_DASH, + anon_sym_external, + anon_sym_type, + anon_sym_fn, + anon_sym_try, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + ACTIONS(425), 26, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [3570] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(431), 24, + anon_sym_if, + anon_sym_import, + anon_sym_SLASH, + anon_sym_const, + anon_sym_DASH, + anon_sym_external, + anon_sym_type, + anon_sym_fn, + anon_sym_try, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + ACTIONS(429), 26, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [3632] = 34, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(277), 1, + anon_sym_LBRACE, + ACTIONS(279), 1, + anon_sym_POUND, + ACTIONS(283), 1, + anon_sym_LBRACK, + ACTIONS(285), 1, + anon_sym_LT_LT, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(289), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(291), 1, anon_sym_todo, - ACTIONS(302), 1, + ACTIONS(295), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(297), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(299), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(301), 1, anon_sym_BANG, - ACTIONS(310), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(312), 1, + ACTIONS(305), 1, sym_float, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(318), 1, + ACTIONS(311), 1, sym__discard_name, - ACTIONS(320), 1, + ACTIONS(313), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__upname, - STATE(361), 1, + ACTIONS(433), 1, + anon_sym_RPAREN, + STATE(375), 1, sym_identifier, - STATE(385), 1, + STATE(380), 1, sym_tuple, - STATE(393), 1, + STATE(387), 1, sym_anonymous_function, - STATE(903), 1, + STATE(1116), 1, + sym__maybe_function_expression, + STATE(1160), 1, sym_argument, - STATE(1090), 1, + STATE(1168), 1, sym_hole, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1213), 1, - sym__maybe_record_expression, - STATE(1243), 1, - sym__maybe_tuple_expression, - STATE(1245), 1, + STATE(1189), 1, sym_label, + STATE(1218), 1, + sym__maybe_tuple_expression, + STATE(1229), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(360), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(382), 2, + STATE(392), 2, sym_record, sym_record_update, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(367), 5, + STATE(374), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(577), 11, + STATE(576), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -9404,13 +9528,13 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [3688] = 4, + [3754] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(423), 24, + ACTIONS(437), 24, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -9435,7 +9559,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(421), 26, + ACTIONS(435), 26, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -9462,83 +9586,83 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [3750] = 34, + [3816] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(277), 1, anon_sym_LBRACE, - ACTIONS(286), 1, + ACTIONS(279), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(283), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(285), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(289), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(291), 1, anon_sym_todo, - ACTIONS(302), 1, + ACTIONS(295), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(297), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(299), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(301), 1, anon_sym_BANG, - ACTIONS(310), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(312), 1, + ACTIONS(305), 1, sym_float, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(318), 1, + ACTIONS(311), 1, sym__discard_name, - ACTIONS(320), 1, + ACTIONS(313), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(425), 1, + ACTIONS(333), 1, anon_sym_RPAREN, - STATE(361), 1, + STATE(375), 1, sym_identifier, - STATE(385), 1, + STATE(380), 1, sym_tuple, - STATE(393), 1, + STATE(387), 1, sym_anonymous_function, - STATE(1090), 1, - sym_hole, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1122), 1, + STATE(952), 1, sym_argument, - STATE(1213), 1, - sym__maybe_record_expression, - STATE(1243), 1, - sym__maybe_tuple_expression, - STATE(1245), 1, + STATE(1116), 1, + sym__maybe_function_expression, + STATE(1168), 1, + sym_hole, + STATE(1189), 1, sym_label, + STATE(1218), 1, + sym__maybe_tuple_expression, + STATE(1229), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(360), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(382), 2, + STATE(392), 2, sym_record, sym_record_update, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(367), 5, + STATE(374), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(577), 11, + STATE(576), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -9550,83 +9674,83 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [3872] = 34, + [3938] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(277), 1, anon_sym_LBRACE, - ACTIONS(286), 1, + ACTIONS(279), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(283), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(285), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(289), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(291), 1, anon_sym_todo, - ACTIONS(302), 1, + ACTIONS(295), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(297), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(299), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(301), 1, anon_sym_BANG, - ACTIONS(310), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(312), 1, + ACTIONS(305), 1, sym_float, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(318), 1, + ACTIONS(311), 1, sym__discard_name, - ACTIONS(320), 1, + ACTIONS(313), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(427), 1, + ACTIONS(439), 1, anon_sym_RPAREN, - STATE(361), 1, + STATE(375), 1, sym_identifier, - STATE(385), 1, + STATE(380), 1, sym_tuple, - STATE(393), 1, + STATE(387), 1, sym_anonymous_function, - STATE(1090), 1, - sym_hole, - STATE(1100), 1, + STATE(1116), 1, sym__maybe_function_expression, - STATE(1122), 1, + STATE(1160), 1, sym_argument, - STATE(1213), 1, - sym__maybe_record_expression, - STATE(1243), 1, - sym__maybe_tuple_expression, - STATE(1245), 1, + STATE(1168), 1, + sym_hole, + STATE(1189), 1, sym_label, + STATE(1218), 1, + sym__maybe_tuple_expression, + STATE(1229), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(360), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(382), 2, + STATE(392), 2, sym_record, sym_record_update, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(367), 5, + STATE(374), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(577), 11, + STATE(576), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -9638,182 +9762,181 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [3994] = 5, + [4060] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(433), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(431), 24, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_const, - anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(429), 25, - ts_builtin_sym_end, + ACTIONS(277), 1, anon_sym_LBRACE, + ACTIONS(279), 1, anon_sym_POUND, + ACTIONS(283), 1, anon_sym_LBRACK, + ACTIONS(285), 1, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [4058] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(437), 24, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_const, + ACTIONS(287), 1, anon_sym_DASH, - anon_sym_external, - anon_sym_type, + ACTIONS(289), 1, anon_sym_fn, - anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(291), 1, anon_sym_todo, + ACTIONS(295), 1, anon_sym_case, + ACTIONS(297), 1, anon_sym_let, + ACTIONS(299), 1, anon_sym_assert, + ACTIONS(301), 1, anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(435), 26, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, + ACTIONS(303), 1, anon_sym_DQUOTE, + ACTIONS(305), 1, sym_float, + ACTIONS(309), 1, + sym__decimal, + ACTIONS(311), 1, + sym__discard_name, + ACTIONS(313), 1, + sym__name, + ACTIONS(315), 1, + sym__upname, + ACTIONS(441), 1, + anon_sym_RPAREN, + STATE(375), 1, + sym_identifier, + STATE(380), 1, + sym_tuple, + STATE(387), 1, + sym_anonymous_function, + STATE(1116), 1, + sym__maybe_function_expression, + STATE(1160), 1, + sym_argument, + STATE(1168), 1, + sym_hole, + STATE(1189), 1, + sym_label, + STATE(1218), 1, + sym__maybe_tuple_expression, + STATE(1229), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(359), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(392), 2, + sym_record, + sym_record_update, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [4120] = 4, + STATE(374), 5, + sym_expression_group, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(576), 11, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_list, + sym__expression_bit_string, + sym_let, + sym_assert, + sym_negation, + sym_string, + sym_integer, + [4182] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(441), 24, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_const, + ACTIONS(277), 1, + anon_sym_LBRACE, + ACTIONS(279), 1, + anon_sym_POUND, + ACTIONS(283), 1, + anon_sym_LBRACK, + ACTIONS(285), 1, + anon_sym_LT_LT, + ACTIONS(287), 1, anon_sym_DASH, - anon_sym_external, - anon_sym_type, + ACTIONS(289), 1, anon_sym_fn, - anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(291), 1, anon_sym_todo, + ACTIONS(295), 1, anon_sym_case, + ACTIONS(297), 1, anon_sym_let, + ACTIONS(299), 1, anon_sym_assert, + ACTIONS(301), 1, anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(439), 26, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, + ACTIONS(303), 1, anon_sym_DQUOTE, + ACTIONS(305), 1, sym_float, + ACTIONS(309), 1, + sym__decimal, + ACTIONS(311), 1, + sym__discard_name, + ACTIONS(313), 1, + sym__name, + ACTIONS(315), 1, + sym__upname, + STATE(375), 1, + sym_identifier, + STATE(380), 1, + sym_tuple, + STATE(387), 1, + sym_anonymous_function, + STATE(1116), 1, + sym__maybe_function_expression, + STATE(1160), 1, + sym_argument, + STATE(1168), 1, + sym_hole, + STATE(1189), 1, + sym_label, + STATE(1218), 1, + sym__maybe_tuple_expression, + STATE(1229), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(359), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(392), 2, + sym_record, + sym_record_update, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [4182] = 4, + STATE(374), 5, + sym_expression_group, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(576), 11, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_list, + sym__expression_bit_string, + sym_let, + sym_assert, + sym_negation, + sym_string, + sym_integer, + [4301] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, @@ -9870,7 +9993,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [4243] = 33, + [4362] = 33, ACTIONS(3), 1, sym_module_comment, ACTIONS(447), 1, @@ -9911,40 +10034,40 @@ static const uint16_t ts_small_parse_table[] = { sym__upname, STATE(68), 1, aux_sym__expression_seq, - STATE(141), 1, + STATE(133), 1, sym_identifier, - STATE(158), 1, + STATE(163), 1, sym_tuple, - STATE(164), 1, + STATE(175), 1, sym_anonymous_function, STATE(627), 1, sym_try, - STATE(1095), 1, + STATE(1100), 1, sym__maybe_function_expression, - STATE(1183), 1, + STATE(1199), 1, sym__maybe_record_expression, - STATE(1246), 1, + STATE(1231), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(109), 2, + STATE(121), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(164), 2, sym_record, sym_record_update, ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(140), 5, + STATE(151), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(285), 11, + STATE(290), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -9956,72 +10079,106 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [4362] = 4, + [4481] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(487), 24, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_const, + ACTIONS(447), 1, + anon_sym_LBRACE, + ACTIONS(451), 1, + anon_sym_POUND, + ACTIONS(453), 1, + anon_sym_LBRACK, + ACTIONS(455), 1, + anon_sym_LT_LT, + ACTIONS(457), 1, anon_sym_DASH, - anon_sym_external, - anon_sym_type, + ACTIONS(459), 1, anon_sym_fn, + ACTIONS(461), 1, anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(463), 1, anon_sym_todo, + ACTIONS(465), 1, anon_sym_case, + ACTIONS(467), 1, anon_sym_let, + ACTIONS(469), 1, anon_sym_assert, + ACTIONS(471), 1, anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, + ACTIONS(473), 1, + anon_sym_DQUOTE, + ACTIONS(475), 1, + sym_float, + ACTIONS(479), 1, sym__decimal, + ACTIONS(481), 1, sym__name, - ACTIONS(485), 25, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DQUOTE, - sym_float, + ACTIONS(483), 1, + sym__upname, + ACTIONS(485), 1, + anon_sym_RBRACE, + STATE(68), 1, + aux_sym__expression_seq, + STATE(133), 1, + sym_identifier, + STATE(163), 1, + sym_tuple, + STATE(175), 1, + sym_anonymous_function, + STATE(627), 1, + sym_try, + STATE(1100), 1, + sym__maybe_function_expression, + STATE(1199), 1, + sym__maybe_record_expression, + STATE(1231), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(121), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(164), 2, + sym_record, + sym_record_update, + ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [4423] = 4, + STATE(151), 5, + sym_expression_group, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(290), 11, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_list, + sym__expression_bit_string, + sym_let, + sym_assert, + sym_negation, + sym_string, + sym_integer, + [4600] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(368), 17, + ACTIONS(489), 24, + anon_sym_if, + anon_sym_import, anon_sym_SLASH, + anon_sym_const, anon_sym_DASH, + anon_sym_external, + anon_sym_type, anon_sym_fn, anon_sym_try, anon_sym_LT, @@ -10035,21 +10192,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_assert, anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(366), 32, + ACTIONS(487), 25, + ts_builtin_sym_end, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_COMMA, anon_sym_POUND, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -10070,13 +10222,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [4484] = 4, + [4661] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(491), 24, + ACTIONS(493), 24, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -10101,7 +10253,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(489), 25, + ACTIONS(491), 25, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -10127,99 +10279,80 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [4545] = 33, + [4722] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(503), 1, + anon_sym_PIPE_PIPE, + ACTIONS(505), 1, + anon_sym_AMP_AMP, + ACTIONS(513), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(499), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(501), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(507), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(515), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(517), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(509), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(511), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(495), 11, + ts_builtin_sym_end, anon_sym_LBRACE, - ACTIONS(451), 1, anon_sym_POUND, - ACTIONS(453), 1, anon_sym_LBRACK, - ACTIONS(455), 1, anon_sym_LT_LT, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(459), 1, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(497), 16, + anon_sym_if, + anon_sym_import, + anon_sym_const, + anon_sym_external, + anon_sym_type, anon_sym_fn, - ACTIONS(461), 1, anon_sym_try, - ACTIONS(463), 1, anon_sym_todo, - ACTIONS(465), 1, anon_sym_case, - ACTIONS(467), 1, anon_sym_let, - ACTIONS(469), 1, anon_sym_assert, - ACTIONS(471), 1, anon_sym_BANG, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(475), 1, - sym_float, - ACTIONS(479), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(481), 1, sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(493), 1, - anon_sym_RBRACE, - STATE(68), 1, - aux_sym__expression_seq, - STATE(141), 1, - sym_identifier, - STATE(158), 1, - sym_tuple, - STATE(164), 1, - sym_anonymous_function, - STATE(627), 1, - sym_try, - STATE(1095), 1, - sym__maybe_function_expression, - STATE(1183), 1, - sym__maybe_record_expression, - STATE(1246), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(109), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(169), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(140), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(285), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [4664] = 4, + [4803] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(497), 24, + ACTIONS(521), 24, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -10244,7 +10377,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(495), 25, + ACTIONS(519), 25, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -10270,13 +10403,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [4725] = 4, + [4864] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(501), 24, + ACTIONS(525), 24, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -10301,7 +10434,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(499), 25, + ACTIONS(523), 25, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -10327,15 +10460,20 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [4786] = 4, + [4925] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(364), 17, + ACTIONS(529), 24, + anon_sym_if, + anon_sym_import, anon_sym_SLASH, + anon_sym_const, anon_sym_DASH, + anon_sym_external, + anon_sym_type, anon_sym_fn, anon_sym_try, anon_sym_LT, @@ -10349,21 +10487,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_assert, anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(362), 32, + ACTIONS(527), 25, + ts_builtin_sym_end, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_COMMA, anon_sym_POUND, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -10384,7 +10517,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [4847] = 33, + [4986] = 33, ACTIONS(3), 1, sym_module_comment, ACTIONS(447), 1, @@ -10421,44 +10554,44 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(483), 1, sym__upname, - ACTIONS(503), 1, + ACTIONS(531), 1, anon_sym_RBRACE, STATE(68), 1, aux_sym__expression_seq, - STATE(141), 1, + STATE(133), 1, sym_identifier, - STATE(158), 1, + STATE(163), 1, sym_tuple, - STATE(164), 1, + STATE(175), 1, sym_anonymous_function, STATE(627), 1, sym_try, - STATE(1095), 1, + STATE(1100), 1, sym__maybe_function_expression, - STATE(1183), 1, + STATE(1199), 1, sym__maybe_record_expression, - STATE(1246), 1, + STATE(1231), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(109), 2, + STATE(121), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(164), 2, sym_record, sym_record_update, ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(140), 5, + STATE(151), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(285), 11, + STATE(290), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -10470,7 +10603,7 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [4966] = 33, + [5105] = 33, ACTIONS(3), 1, sym_module_comment, ACTIONS(447), 1, @@ -10507,44 +10640,44 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(483), 1, sym__upname, - ACTIONS(505), 1, + ACTIONS(533), 1, anon_sym_RBRACE, STATE(68), 1, aux_sym__expression_seq, - STATE(141), 1, + STATE(133), 1, sym_identifier, - STATE(158), 1, + STATE(163), 1, sym_tuple, - STATE(164), 1, + STATE(175), 1, sym_anonymous_function, STATE(627), 1, sym_try, - STATE(1095), 1, + STATE(1100), 1, sym__maybe_function_expression, - STATE(1183), 1, + STATE(1199), 1, sym__maybe_record_expression, - STATE(1246), 1, + STATE(1231), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(109), 2, + STATE(121), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(164), 2, sym_record, sym_record_update, ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(140), 5, + STATE(151), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(285), 11, + STATE(290), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -10556,188 +10689,7 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [5085] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(509), 24, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_const, - anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(507), 25, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [5146] = 14, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(519), 1, - anon_sym_PIPE_PIPE, - ACTIONS(521), 1, - anon_sym_AMP_AMP, - ACTIONS(529), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(515), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(517), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(523), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(531), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(533), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(525), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(527), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(511), 11, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(513), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [5227] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(278), 17, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(276), 32, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_POUND, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [5288] = 33, + [5224] = 33, ACTIONS(3), 1, sym_module_comment, ACTIONS(447), 1, @@ -10778,40 +10730,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(68), 1, aux_sym__expression_seq, - STATE(141), 1, + STATE(133), 1, sym_identifier, - STATE(158), 1, + STATE(163), 1, sym_tuple, - STATE(164), 1, + STATE(175), 1, sym_anonymous_function, STATE(627), 1, sym_try, - STATE(1095), 1, + STATE(1100), 1, sym__maybe_function_expression, - STATE(1183), 1, + STATE(1199), 1, sym__maybe_record_expression, - STATE(1246), 1, + STATE(1231), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(109), 2, + STATE(121), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(164), 2, sym_record, sym_record_update, ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(140), 5, + STATE(151), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(285), 11, + STATE(290), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -10823,81 +10775,81 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [5407] = 33, + [5343] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(138), 1, - anon_sym_RBRACE, - ACTIONS(537), 1, + ACTIONS(447), 1, anon_sym_LBRACE, - ACTIONS(540), 1, + ACTIONS(451), 1, anon_sym_POUND, - ACTIONS(543), 1, + ACTIONS(453), 1, anon_sym_LBRACK, - ACTIONS(546), 1, + ACTIONS(455), 1, anon_sym_LT_LT, - ACTIONS(549), 1, + ACTIONS(457), 1, anon_sym_DASH, - ACTIONS(552), 1, + ACTIONS(459), 1, anon_sym_fn, - ACTIONS(555), 1, + ACTIONS(461), 1, anon_sym_try, - ACTIONS(558), 1, + ACTIONS(463), 1, anon_sym_todo, - ACTIONS(561), 1, + ACTIONS(465), 1, anon_sym_case, - ACTIONS(564), 1, + ACTIONS(467), 1, anon_sym_let, - ACTIONS(567), 1, + ACTIONS(469), 1, anon_sym_assert, - ACTIONS(570), 1, + ACTIONS(471), 1, anon_sym_BANG, - ACTIONS(573), 1, + ACTIONS(473), 1, anon_sym_DQUOTE, - ACTIONS(576), 1, + ACTIONS(475), 1, sym_float, - ACTIONS(582), 1, + ACTIONS(479), 1, sym__decimal, - ACTIONS(585), 1, + ACTIONS(481), 1, sym__name, - ACTIONS(588), 1, + ACTIONS(483), 1, sym__upname, + ACTIONS(537), 1, + anon_sym_RBRACE, STATE(68), 1, aux_sym__expression_seq, - STATE(141), 1, + STATE(133), 1, sym_identifier, - STATE(158), 1, + STATE(163), 1, sym_tuple, - STATE(164), 1, + STATE(175), 1, sym_anonymous_function, STATE(627), 1, sym_try, - STATE(1095), 1, + STATE(1100), 1, sym__maybe_function_expression, - STATE(1183), 1, + STATE(1199), 1, sym__maybe_record_expression, - STATE(1246), 1, + STATE(1231), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(109), 2, + STATE(121), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(164), 2, sym_record, sym_record_update, - ACTIONS(579), 3, + ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(140), 5, + STATE(151), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(285), 11, + STATE(290), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -10909,57 +10861,47 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [5526] = 14, + [5462] = 8, ACTIONS(3), 1, sym_module_comment, - ACTIONS(519), 1, - anon_sym_PIPE_PIPE, - ACTIONS(521), 1, - anon_sym_AMP_AMP, - ACTIONS(529), 1, - anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(515), 2, + ACTIONS(499), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(517), 2, + ACTIONS(501), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(523), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(531), 2, + ACTIONS(515), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(533), 3, + ACTIONS(517), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(525), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(527), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(591), 11, + ACTIONS(539), 20, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - ACTIONS(593), 16, + ACTIONS(541), 20, anon_sym_if, anon_sym_import, anon_sym_const, @@ -10967,6 +10909,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_fn, anon_sym_try, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, anon_sym_todo, anon_sym_case, anon_sym_let, @@ -10976,81 +10922,81 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [5607] = 33, + [5531] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(138), 1, + anon_sym_RBRACE, + ACTIONS(543), 1, anon_sym_LBRACE, - ACTIONS(451), 1, + ACTIONS(546), 1, anon_sym_POUND, - ACTIONS(453), 1, + ACTIONS(549), 1, anon_sym_LBRACK, - ACTIONS(455), 1, + ACTIONS(552), 1, anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(555), 1, anon_sym_DASH, - ACTIONS(459), 1, + ACTIONS(558), 1, anon_sym_fn, - ACTIONS(461), 1, + ACTIONS(561), 1, anon_sym_try, - ACTIONS(463), 1, + ACTIONS(564), 1, anon_sym_todo, - ACTIONS(465), 1, + ACTIONS(567), 1, anon_sym_case, - ACTIONS(467), 1, + ACTIONS(570), 1, anon_sym_let, - ACTIONS(469), 1, + ACTIONS(573), 1, anon_sym_assert, - ACTIONS(471), 1, + ACTIONS(576), 1, anon_sym_BANG, - ACTIONS(473), 1, + ACTIONS(579), 1, anon_sym_DQUOTE, - ACTIONS(475), 1, + ACTIONS(582), 1, sym_float, - ACTIONS(479), 1, + ACTIONS(588), 1, sym__decimal, - ACTIONS(481), 1, + ACTIONS(591), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(594), 1, sym__upname, - ACTIONS(595), 1, - anon_sym_RBRACE, STATE(68), 1, aux_sym__expression_seq, - STATE(141), 1, + STATE(133), 1, sym_identifier, - STATE(158), 1, + STATE(163), 1, sym_tuple, - STATE(164), 1, + STATE(175), 1, sym_anonymous_function, STATE(627), 1, sym_try, - STATE(1095), 1, + STATE(1100), 1, sym__maybe_function_expression, - STATE(1183), 1, + STATE(1199), 1, sym__maybe_record_expression, - STATE(1246), 1, + STATE(1231), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(109), 2, + STATE(121), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(164), 2, sym_record, sym_record_update, - ACTIONS(477), 3, + ACTIONS(585), 3, sym__hex, sym__octal, sym__binary, - STATE(140), 5, + STATE(151), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(285), 11, + STATE(290), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -11062,18 +11008,80 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [5726] = 33, + [5650] = 9, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, - anon_sym_LBRACE, - ACTIONS(451), 1, - anon_sym_POUND, - ACTIONS(453), 1, - anon_sym_LBRACK, - ACTIONS(455), 1, - anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(513), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(499), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(501), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(515), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(517), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(539), 19, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(541), 20, + anon_sym_if, + anon_sym_import, + anon_sym_const, + anon_sym_external, + anon_sym_type, + anon_sym_fn, + anon_sym_try, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [5721] = 33, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(447), 1, + anon_sym_LBRACE, + ACTIONS(451), 1, + anon_sym_POUND, + ACTIONS(453), 1, + anon_sym_LBRACK, + ACTIONS(455), 1, + anon_sym_LT_LT, + ACTIONS(457), 1, anon_sym_DASH, ACTIONS(459), 1, anon_sym_fn, @@ -11103,40 +11111,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(68), 1, aux_sym__expression_seq, - STATE(141), 1, + STATE(133), 1, sym_identifier, - STATE(158), 1, + STATE(163), 1, sym_tuple, - STATE(164), 1, + STATE(175), 1, sym_anonymous_function, STATE(627), 1, sym_try, - STATE(1095), 1, + STATE(1100), 1, sym__maybe_function_expression, - STATE(1183), 1, + STATE(1199), 1, sym__maybe_record_expression, - STATE(1246), 1, + STATE(1231), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(109), 2, + STATE(121), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(164), 2, sym_record, sym_record_update, ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(140), 5, + STATE(151), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(285), 11, + STATE(290), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -11148,7 +11156,128 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [5845] = 33, + [5840] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(351), 17, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_fn, + anon_sym_try, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(349), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_POUND, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [5901] = 11, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(513), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(499), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(501), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(515), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(517), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(509), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(511), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(539), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(541), 16, + anon_sym_if, + anon_sym_import, + anon_sym_const, + anon_sym_external, + anon_sym_type, + anon_sym_fn, + anon_sym_try, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [5976] = 33, ACTIONS(3), 1, sym_module_comment, ACTIONS(447), 1, @@ -11189,40 +11318,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(68), 1, aux_sym__expression_seq, - STATE(141), 1, + STATE(133), 1, sym_identifier, - STATE(158), 1, + STATE(163), 1, sym_tuple, - STATE(164), 1, + STATE(175), 1, sym_anonymous_function, STATE(627), 1, sym_try, - STATE(1095), 1, + STATE(1100), 1, sym__maybe_function_expression, - STATE(1183), 1, + STATE(1199), 1, sym__maybe_record_expression, - STATE(1246), 1, + STATE(1231), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(109), 2, + STATE(121), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(164), 2, sym_record, sym_record_update, ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(140), 5, + STATE(151), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(285), 11, + STATE(290), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -11234,7 +11363,7 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [5964] = 4, + [6095] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, @@ -11291,7 +11420,186 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [6025] = 33, + [6156] = 12, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(513), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(499), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(501), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(507), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(515), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(517), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(509), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(511), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(539), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(541), 16, + anon_sym_if, + anon_sym_import, + anon_sym_const, + anon_sym_external, + anon_sym_type, + anon_sym_fn, + anon_sym_try, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [6233] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(607), 24, + anon_sym_if, + anon_sym_import, + anon_sym_SLASH, + anon_sym_const, + anon_sym_DASH, + anon_sym_external, + anon_sym_type, + anon_sym_fn, + anon_sym_try, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + ACTIONS(605), 25, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [6294] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(611), 24, + anon_sym_if, + anon_sym_import, + anon_sym_SLASH, + anon_sym_const, + anon_sym_DASH, + anon_sym_external, + anon_sym_type, + anon_sym_fn, + anon_sym_try, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + ACTIONS(609), 25, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [6355] = 33, ACTIONS(3), 1, sym_module_comment, ACTIONS(447), 1, @@ -11328,44 +11636,44 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(483), 1, sym__upname, - ACTIONS(605), 1, + ACTIONS(613), 1, anon_sym_RBRACE, STATE(68), 1, aux_sym__expression_seq, - STATE(141), 1, + STATE(133), 1, sym_identifier, - STATE(158), 1, + STATE(163), 1, sym_tuple, - STATE(164), 1, + STATE(175), 1, sym_anonymous_function, STATE(627), 1, sym_try, - STATE(1095), 1, + STATE(1100), 1, sym__maybe_function_expression, - STATE(1183), 1, + STATE(1199), 1, sym__maybe_record_expression, - STATE(1246), 1, + STATE(1231), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(109), 2, + STATE(121), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(164), 2, sym_record, sym_record_update, ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(140), 5, + STATE(151), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(285), 11, + STATE(290), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -11377,13 +11685,13 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [6144] = 4, + [6474] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(609), 24, + ACTIONS(617), 24, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -11408,7 +11716,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(607), 25, + ACTIONS(615), 25, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -11434,13 +11742,138 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [6205] = 4, + [6535] = 13, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(505), 1, + anon_sym_AMP_AMP, + ACTIONS(513), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(499), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(501), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(507), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(515), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(517), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(509), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(511), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(539), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(541), 16, + anon_sym_if, + anon_sym_import, + anon_sym_const, + anon_sym_external, + anon_sym_type, + anon_sym_fn, + anon_sym_try, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [6614] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(499), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(517), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(539), 22, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(541), 22, + anon_sym_if, + anon_sym_import, + anon_sym_const, + anon_sym_DASH, + anon_sym_external, + anon_sym_type, + anon_sym_fn, + anon_sym_try, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [6679] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(613), 24, + ACTIONS(621), 24, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -11465,7 +11898,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(611), 25, + ACTIONS(619), 25, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -11491,7 +11924,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [6266] = 33, + [6740] = 33, ACTIONS(3), 1, sym_module_comment, ACTIONS(447), 1, @@ -11528,44 +11961,44 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(483), 1, sym__upname, - ACTIONS(615), 1, + ACTIONS(623), 1, anon_sym_RBRACE, STATE(68), 1, aux_sym__expression_seq, - STATE(141), 1, + STATE(133), 1, sym_identifier, - STATE(158), 1, + STATE(163), 1, sym_tuple, - STATE(164), 1, + STATE(175), 1, sym_anonymous_function, STATE(627), 1, sym_try, - STATE(1095), 1, + STATE(1100), 1, sym__maybe_function_expression, - STATE(1183), 1, + STATE(1199), 1, sym__maybe_record_expression, - STATE(1246), 1, + STATE(1231), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(109), 2, + STATE(121), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(164), 2, sym_record, sym_record_update, ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(140), 5, + STATE(151), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(285), 11, + STATE(290), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -11577,7 +12010,7 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [6385] = 33, + [6859] = 33, ACTIONS(3), 1, sym_module_comment, ACTIONS(447), 1, @@ -11614,44 +12047,44 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(483), 1, sym__upname, - ACTIONS(617), 1, + ACTIONS(625), 1, anon_sym_RBRACE, STATE(68), 1, aux_sym__expression_seq, - STATE(141), 1, + STATE(133), 1, sym_identifier, - STATE(158), 1, + STATE(163), 1, sym_tuple, - STATE(164), 1, + STATE(175), 1, sym_anonymous_function, STATE(627), 1, sym_try, - STATE(1095), 1, + STATE(1100), 1, sym__maybe_function_expression, - STATE(1183), 1, + STATE(1199), 1, sym__maybe_record_expression, - STATE(1246), 1, + STATE(1231), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(109), 2, + STATE(121), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(164), 2, sym_record, sym_record_update, ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(140), 5, + STATE(151), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(285), 11, + STATE(290), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -11663,13 +12096,13 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [6504] = 4, + [6978] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(621), 24, + ACTIONS(541), 24, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -11694,7 +12127,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(619), 25, + ACTIONS(539), 25, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -11720,36 +12153,93 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [6565] = 33, + [7039] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, - anon_sym_LBRACE, - ACTIONS(451), 1, - anon_sym_POUND, - ACTIONS(453), 1, - anon_sym_LBRACK, - ACTIONS(455), 1, - anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(363), 17, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(459), 1, anon_sym_fn, - ACTIONS(461), 1, anon_sym_try, - ACTIONS(463), 1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(465), 1, anon_sym_case, - ACTIONS(467), 1, anon_sym_let, - ACTIONS(469), 1, anon_sym_assert, - ACTIONS(471), 1, anon_sym_BANG, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(475), 1, + sym__decimal, + sym__name, + ACTIONS(361), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_POUND, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [7100] = 33, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(447), 1, + anon_sym_LBRACE, + ACTIONS(451), 1, + anon_sym_POUND, + ACTIONS(453), 1, + anon_sym_LBRACK, + ACTIONS(455), 1, + anon_sym_LT_LT, + ACTIONS(457), 1, + anon_sym_DASH, + ACTIONS(459), 1, + anon_sym_fn, + ACTIONS(461), 1, + anon_sym_try, + ACTIONS(463), 1, + anon_sym_todo, + ACTIONS(465), 1, + anon_sym_case, + ACTIONS(467), 1, + anon_sym_let, + ACTIONS(469), 1, + anon_sym_assert, + ACTIONS(471), 1, + anon_sym_BANG, + ACTIONS(473), 1, + anon_sym_DQUOTE, + ACTIONS(475), 1, sym_float, ACTIONS(479), 1, sym__decimal, @@ -11757,44 +12247,44 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(483), 1, sym__upname, - ACTIONS(623), 1, + ACTIONS(627), 1, anon_sym_RBRACE, STATE(68), 1, aux_sym__expression_seq, - STATE(141), 1, + STATE(133), 1, sym_identifier, - STATE(158), 1, + STATE(163), 1, sym_tuple, - STATE(164), 1, + STATE(175), 1, sym_anonymous_function, STATE(627), 1, sym_try, - STATE(1095), 1, + STATE(1100), 1, sym__maybe_function_expression, - STATE(1183), 1, + STATE(1199), 1, sym__maybe_record_expression, - STATE(1246), 1, + STATE(1231), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(109), 2, + STATE(121), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(164), 2, sym_record, sym_record_update, ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(140), 5, + STATE(151), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(285), 11, + STATE(290), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -11806,13 +12296,13 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [6684] = 4, + [7219] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(282), 17, + ACTIONS(367), 17, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -11830,7 +12320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(280), 32, + ACTIONS(365), 32, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, @@ -11863,142 +12353,150 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [6745] = 4, + [7280] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(627), 24, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_const, + ACTIONS(447), 1, + anon_sym_LBRACE, + ACTIONS(451), 1, + anon_sym_POUND, + ACTIONS(453), 1, + anon_sym_LBRACK, + ACTIONS(455), 1, + anon_sym_LT_LT, + ACTIONS(457), 1, anon_sym_DASH, - anon_sym_external, - anon_sym_type, + ACTIONS(459), 1, anon_sym_fn, + ACTIONS(461), 1, anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(463), 1, anon_sym_todo, + ACTIONS(465), 1, anon_sym_case, + ACTIONS(467), 1, anon_sym_let, + ACTIONS(469), 1, anon_sym_assert, + ACTIONS(471), 1, anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(625), 25, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, + ACTIONS(473), 1, anon_sym_DQUOTE, + ACTIONS(475), 1, sym_float, + ACTIONS(479), 1, + sym__decimal, + ACTIONS(481), 1, + sym__name, + ACTIONS(483), 1, + sym__upname, + ACTIONS(629), 1, + anon_sym_RBRACE, + STATE(68), 1, + aux_sym__expression_seq, + STATE(133), 1, + sym_identifier, + STATE(163), 1, + sym_tuple, + STATE(175), 1, + sym_anonymous_function, + STATE(627), 1, + sym_try, + STATE(1100), 1, + sym__maybe_function_expression, + STATE(1199), 1, + sym__maybe_record_expression, + STATE(1231), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(121), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(164), 2, + sym_record, + sym_record_update, + ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [6806] = 4, + STATE(151), 5, + sym_expression_group, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(290), 11, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_list, + sym__expression_bit_string, + sym_let, + sym_assert, + sym_negation, + sym_string, + sym_integer, + [7399] = 14, ACTIONS(3), 1, sym_module_comment, + ACTIONS(503), 1, + anon_sym_PIPE_PIPE, + ACTIONS(505), 1, + anon_sym_AMP_AMP, + ACTIONS(513), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(631), 24, - anon_sym_if, - anon_sym_import, + ACTIONS(499), 2, anon_sym_SLASH, - anon_sym_const, + anon_sym_STAR, + ACTIONS(501), 2, anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, + anon_sym_PLUS, + ACTIONS(507), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(515), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(517), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(509), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(629), 25, + ACTIONS(511), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(631), 11, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [6867] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(635), 24, + ACTIONS(633), 16, anon_sym_if, anon_sym_import, - anon_sym_SLASH, anon_sym_const, - anon_sym_DASH, anon_sym_external, anon_sym_type, anon_sym_fn, anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, anon_sym_todo, anon_sym_case, anon_sym_let, @@ -12008,39 +12506,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(633), 25, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [6928] = 4, + [7480] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(639), 24, + ACTIONS(637), 24, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -12065,7 +12537,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(637), 25, + ACTIONS(635), 25, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -12091,131 +12563,45 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [6989] = 33, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(286), 1, - anon_sym_POUND, - ACTIONS(290), 1, - anon_sym_LBRACK, - ACTIONS(292), 1, - anon_sym_LT_LT, - ACTIONS(294), 1, - anon_sym_DASH, - ACTIONS(296), 1, - anon_sym_fn, - ACTIONS(298), 1, - anon_sym_todo, - ACTIONS(302), 1, - anon_sym_case, - ACTIONS(304), 1, - anon_sym_let, - ACTIONS(306), 1, - anon_sym_assert, - ACTIONS(308), 1, - anon_sym_BANG, - ACTIONS(310), 1, - anon_sym_DQUOTE, - ACTIONS(312), 1, - sym_float, - ACTIONS(316), 1, - sym__decimal, - ACTIONS(318), 1, - sym__discard_name, - ACTIONS(320), 1, - sym__name, - ACTIONS(322), 1, - sym__upname, - STATE(361), 1, - sym_identifier, - STATE(385), 1, - sym_tuple, - STATE(393), 1, - sym_anonymous_function, - STATE(1090), 1, - sym_hole, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1122), 1, - sym_argument, - STATE(1213), 1, - sym__maybe_record_expression, - STATE(1243), 1, - sym__maybe_tuple_expression, - STATE(1245), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(360), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(382), 2, - sym_record, - sym_record_update, - ACTIONS(314), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(367), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(577), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [7108] = 14, + [7541] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(519), 1, + ACTIONS(503), 1, anon_sym_PIPE_PIPE, - ACTIONS(521), 1, + ACTIONS(505), 1, anon_sym_AMP_AMP, - ACTIONS(529), 1, + ACTIONS(513), 1, anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(515), 2, + ACTIONS(499), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(517), 2, + ACTIONS(501), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(523), 2, + ACTIONS(507), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(531), 2, + ACTIONS(515), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(533), 3, + ACTIONS(517), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(525), 4, + ACTIONS(509), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(527), 4, + ACTIONS(511), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(641), 11, + ACTIONS(639), 11, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -12227,7 +12613,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(643), 16, + ACTIONS(641), 16, anon_sym_if, anon_sym_import, anon_sym_const, @@ -12244,80 +12630,99 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [7189] = 14, + [7622] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(519), 1, - anon_sym_PIPE_PIPE, - ACTIONS(521), 1, - anon_sym_AMP_AMP, - ACTIONS(529), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(515), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(517), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(523), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(531), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(533), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(525), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(527), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(645), 11, - ts_builtin_sym_end, + ACTIONS(447), 1, anon_sym_LBRACE, + ACTIONS(451), 1, anon_sym_POUND, + ACTIONS(453), 1, anon_sym_LBRACK, + ACTIONS(455), 1, anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(647), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, - anon_sym_external, - anon_sym_type, + ACTIONS(457), 1, + anon_sym_DASH, + ACTIONS(459), 1, anon_sym_fn, + ACTIONS(461), 1, anon_sym_try, + ACTIONS(463), 1, anon_sym_todo, + ACTIONS(465), 1, anon_sym_case, + ACTIONS(467), 1, anon_sym_let, + ACTIONS(469), 1, anon_sym_assert, + ACTIONS(471), 1, anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, + ACTIONS(473), 1, + anon_sym_DQUOTE, + ACTIONS(475), 1, + sym_float, + ACTIONS(479), 1, sym__decimal, + ACTIONS(481), 1, sym__name, - [7270] = 4, + ACTIONS(483), 1, + sym__upname, + ACTIONS(643), 1, + anon_sym_RBRACE, + STATE(68), 1, + aux_sym__expression_seq, + STATE(133), 1, + sym_identifier, + STATE(163), 1, + sym_tuple, + STATE(175), 1, + sym_anonymous_function, + STATE(627), 1, + sym_try, + STATE(1100), 1, + sym__maybe_function_expression, + STATE(1199), 1, + sym__maybe_record_expression, + STATE(1231), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(121), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(164), 2, + sym_record, + sym_record_update, + ACTIONS(477), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(151), 5, + sym_expression_group, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(290), 11, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_list, + sym__expression_bit_string, + sym_let, + sym_assert, + sym_negation, + sym_string, + sym_integer, + [7741] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(651), 24, + ACTIONS(647), 24, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -12342,7 +12747,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(649), 25, + ACTIONS(645), 25, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -12368,13 +12773,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [7331] = 4, + [7802] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(655), 24, + ACTIONS(651), 24, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -12399,7 +12804,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(653), 25, + ACTIONS(649), 25, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -12425,7 +12830,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [7392] = 33, + [7863] = 33, ACTIONS(3), 1, sym_module_comment, ACTIONS(447), 1, @@ -12462,44 +12867,44 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(483), 1, sym__upname, - ACTIONS(657), 1, + ACTIONS(653), 1, anon_sym_RBRACE, STATE(68), 1, aux_sym__expression_seq, - STATE(141), 1, + STATE(133), 1, sym_identifier, - STATE(158), 1, + STATE(163), 1, sym_tuple, - STATE(164), 1, + STATE(175), 1, sym_anonymous_function, STATE(627), 1, sym_try, - STATE(1095), 1, + STATE(1100), 1, sym__maybe_function_expression, - STATE(1183), 1, + STATE(1199), 1, sym__maybe_record_expression, - STATE(1246), 1, + STATE(1231), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(109), 2, + STATE(121), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(164), 2, sym_record, sym_record_update, ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(140), 5, + STATE(151), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(285), 11, + STATE(290), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -12511,20 +12916,38 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [7511] = 6, + [7982] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(515), 2, + ACTIONS(657), 24, + anon_sym_if, + anon_sym_import, anon_sym_SLASH, + anon_sym_const, + anon_sym_DASH, + anon_sym_external, + anon_sym_type, + anon_sym_fn, + anon_sym_try, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(533), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(653), 22, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + ACTIONS(655), 25, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -12541,49 +12964,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_GT, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - ACTIONS(655), 22, - anon_sym_if, - anon_sym_import, - anon_sym_const, - anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [7576] = 4, + [8043] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(661), 24, - anon_sym_if, - anon_sym_import, + ACTIONS(347), 17, anon_sym_SLASH, - anon_sym_const, anon_sym_DASH, - anon_sym_external, - anon_sym_type, anon_sym_fn, anon_sym_try, anon_sym_LT, @@ -12597,16 +12995,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_assert, anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(659), 25, - ts_builtin_sym_end, + ACTIONS(345), 32, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_COMMA, anon_sym_POUND, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -12627,64 +13030,28 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [7637] = 14, + [8104] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(519), 1, - anon_sym_PIPE_PIPE, - ACTIONS(521), 1, - anon_sym_AMP_AMP, - ACTIONS(529), 1, - anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(515), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(517), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(523), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(531), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(533), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(525), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(527), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(663), 11, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(665), 16, + ACTIONS(661), 24, anon_sym_if, anon_sym_import, + anon_sym_SLASH, anon_sym_const, + anon_sym_DASH, anon_sym_external, anon_sym_type, anon_sym_fn, anon_sym_try, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, anon_sym_case, anon_sym_let, @@ -12694,243 +13061,83 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [7718] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(521), 1, - anon_sym_AMP_AMP, - ACTIONS(529), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(515), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(517), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(523), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(531), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(533), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(525), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(527), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(653), 12, + ACTIONS(659), 25, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(655), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [7797] = 12, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(529), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(515), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(517), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(523), 2, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(531), 2, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(533), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(525), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(527), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(653), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - ACTIONS(655), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [7874] = 11, + [8165] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(529), 1, + ACTIONS(503), 1, + anon_sym_PIPE_PIPE, + ACTIONS(505), 1, + anon_sym_AMP_AMP, + ACTIONS(513), 1, anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(515), 2, + ACTIONS(499), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(517), 2, + ACTIONS(501), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(531), 2, + ACTIONS(507), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(515), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(533), 3, + ACTIONS(517), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(525), 4, + ACTIONS(509), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(527), 4, + ACTIONS(511), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(653), 15, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(655), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [7949] = 9, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(529), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(515), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(517), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(531), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(533), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(653), 19, + ACTIONS(663), 11, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - ACTIONS(655), 20, + ACTIONS(665), 16, anon_sym_if, anon_sym_import, anon_sym_const, @@ -12938,10 +13145,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_fn, anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, anon_sym_todo, anon_sym_case, anon_sym_let, @@ -12951,7 +13154,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [8020] = 33, + [8246] = 33, ACTIONS(3), 1, sym_module_comment, ACTIONS(447), 1, @@ -12992,40 +13195,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(68), 1, aux_sym__expression_seq, - STATE(141), 1, + STATE(133), 1, sym_identifier, - STATE(158), 1, + STATE(163), 1, sym_tuple, - STATE(164), 1, + STATE(175), 1, sym_anonymous_function, STATE(627), 1, sym_try, - STATE(1095), 1, + STATE(1100), 1, sym__maybe_function_expression, - STATE(1183), 1, + STATE(1199), 1, sym__maybe_record_expression, - STATE(1246), 1, + STATE(1231), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(109), 2, + STATE(121), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(164), 2, sym_record, sym_record_update, ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(140), 5, + STATE(151), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(285), 11, + STATE(290), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -13037,26 +13240,38 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [8139] = 8, + [8365] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(515), 2, + ACTIONS(671), 24, + anon_sym_if, + anon_sym_import, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(517), 2, + anon_sym_const, anon_sym_DASH, + anon_sym_external, + anon_sym_type, + anon_sym_fn, + anon_sym_try, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, anon_sym_PLUS, - ACTIONS(531), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(533), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(653), 20, + anon_sym_STAR, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + ACTIONS(669), 25, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -13071,34 +13286,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - ACTIONS(655), 20, - anon_sym_if, - anon_sym_import, - anon_sym_const, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [8208] = 33, + [8426] = 33, ACTIONS(3), 1, sym_module_comment, ACTIONS(447), 1, @@ -13135,44 +13334,44 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(483), 1, sym__upname, - ACTIONS(669), 1, + ACTIONS(673), 1, anon_sym_RBRACE, STATE(68), 1, aux_sym__expression_seq, - STATE(141), 1, + STATE(133), 1, sym_identifier, - STATE(158), 1, + STATE(163), 1, sym_tuple, - STATE(164), 1, + STATE(175), 1, sym_anonymous_function, STATE(627), 1, sym_try, - STATE(1095), 1, + STATE(1100), 1, sym__maybe_function_expression, - STATE(1183), 1, + STATE(1199), 1, sym__maybe_record_expression, - STATE(1246), 1, + STATE(1231), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(109), 2, + STATE(121), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(164), 2, sym_record, sym_record_update, ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(140), 5, + STATE(151), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(285), 11, + STATE(290), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -13184,7 +13383,7 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [8327] = 33, + [8545] = 33, ACTIONS(3), 1, sym_module_comment, ACTIONS(447), 1, @@ -13221,44 +13420,44 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(483), 1, sym__upname, - ACTIONS(671), 1, + ACTIONS(675), 1, anon_sym_RBRACE, STATE(68), 1, aux_sym__expression_seq, - STATE(141), 1, + STATE(133), 1, sym_identifier, - STATE(158), 1, + STATE(163), 1, sym_tuple, - STATE(164), 1, + STATE(175), 1, sym_anonymous_function, STATE(627), 1, sym_try, - STATE(1095), 1, + STATE(1100), 1, sym__maybe_function_expression, - STATE(1183), 1, + STATE(1199), 1, sym__maybe_record_expression, - STATE(1246), 1, + STATE(1231), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(109), 2, + STATE(121), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(164), 2, sym_record, sym_record_update, ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(140), 5, + STATE(151), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(285), 11, + STATE(290), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -13270,7 +13469,7 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [8446] = 33, + [8664] = 33, ACTIONS(3), 1, sym_module_comment, ACTIONS(447), 1, @@ -13307,44 +13506,44 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(483), 1, sym__upname, - ACTIONS(673), 1, + ACTIONS(677), 1, anon_sym_RBRACE, STATE(68), 1, aux_sym__expression_seq, - STATE(141), 1, + STATE(133), 1, sym_identifier, - STATE(158), 1, + STATE(163), 1, sym_tuple, - STATE(164), 1, + STATE(175), 1, sym_anonymous_function, STATE(627), 1, sym_try, - STATE(1095), 1, + STATE(1100), 1, sym__maybe_function_expression, - STATE(1183), 1, + STATE(1199), 1, sym__maybe_record_expression, - STATE(1246), 1, + STATE(1231), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(109), 2, + STATE(121), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(164), 2, sym_record, sym_record_update, ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(140), 5, + STATE(151), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(285), 11, + STATE(290), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -13356,7 +13555,74 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [8565] = 33, + [8783] = 14, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(503), 1, + anon_sym_PIPE_PIPE, + ACTIONS(505), 1, + anon_sym_AMP_AMP, + ACTIONS(513), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(499), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(501), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(507), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(515), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(517), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(509), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(511), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(679), 11, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(681), 16, + anon_sym_if, + anon_sym_import, + anon_sym_const, + anon_sym_external, + anon_sym_type, + anon_sym_fn, + anon_sym_try, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [8864] = 33, ACTIONS(3), 1, sym_module_comment, ACTIONS(447), 1, @@ -13393,44 +13659,44 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(483), 1, sym__upname, - ACTIONS(675), 1, + ACTIONS(683), 1, anon_sym_RBRACE, STATE(68), 1, aux_sym__expression_seq, - STATE(141), 1, + STATE(133), 1, sym_identifier, - STATE(158), 1, + STATE(163), 1, sym_tuple, - STATE(164), 1, + STATE(175), 1, sym_anonymous_function, STATE(627), 1, sym_try, - STATE(1095), 1, + STATE(1100), 1, sym__maybe_function_expression, - STATE(1183), 1, + STATE(1199), 1, sym__maybe_record_expression, - STATE(1246), 1, + STATE(1231), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(109), 2, + STATE(121), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(164), 2, sym_record, sym_record_update, ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(140), 5, + STATE(151), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(285), 11, + STATE(290), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -13442,7 +13708,7 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [8684] = 33, + [8983] = 32, ACTIONS(3), 1, sym_module_comment, ACTIONS(447), 1, @@ -13479,44 +13745,42 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(483), 1, sym__upname, - ACTIONS(677), 1, - anon_sym_RBRACE, - STATE(68), 1, + STATE(104), 1, aux_sym__expression_seq, - STATE(141), 1, + STATE(133), 1, sym_identifier, - STATE(158), 1, + STATE(163), 1, sym_tuple, - STATE(164), 1, + STATE(175), 1, sym_anonymous_function, STATE(627), 1, sym_try, - STATE(1095), 1, + STATE(1100), 1, sym__maybe_function_expression, - STATE(1183), 1, + STATE(1199), 1, sym__maybe_record_expression, - STATE(1246), 1, + STATE(1231), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(109), 2, + STATE(121), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(164), 2, sym_record, sym_record_update, ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(140), 5, + STATE(151), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(285), 11, + STATE(290), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -13528,64 +13792,7 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [8803] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(681), 24, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_const, - anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(679), 25, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [8864] = 33, + [9099] = 32, ACTIONS(3), 1, sym_module_comment, ACTIONS(447), 1, @@ -13622,44 +13829,42 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(483), 1, sym__upname, - ACTIONS(683), 1, - anon_sym_RBRACE, - STATE(68), 1, + STATE(63), 1, aux_sym__expression_seq, - STATE(141), 1, + STATE(133), 1, sym_identifier, - STATE(158), 1, + STATE(163), 1, sym_tuple, - STATE(164), 1, + STATE(175), 1, sym_anonymous_function, STATE(627), 1, sym_try, - STATE(1095), 1, + STATE(1100), 1, sym__maybe_function_expression, - STATE(1183), 1, + STATE(1199), 1, sym__maybe_record_expression, - STATE(1246), 1, + STATE(1231), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(109), 2, + STATE(121), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(164), 2, sym_record, sym_record_update, ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(140), 5, + STATE(151), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(285), 11, + STATE(290), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -13671,7 +13876,7 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [8983] = 32, + [9215] = 32, ACTIONS(3), 1, sym_module_comment, ACTIONS(447), 1, @@ -13708,42 +13913,42 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(483), 1, sym__upname, - STATE(107), 1, + STATE(78), 1, aux_sym__expression_seq, - STATE(141), 1, + STATE(133), 1, sym_identifier, - STATE(158), 1, + STATE(163), 1, sym_tuple, - STATE(164), 1, + STATE(175), 1, sym_anonymous_function, STATE(627), 1, sym_try, - STATE(1095), 1, + STATE(1100), 1, sym__maybe_function_expression, - STATE(1183), 1, + STATE(1199), 1, sym__maybe_record_expression, - STATE(1246), 1, + STATE(1231), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(109), 2, + STATE(121), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(164), 2, sym_record, sym_record_update, ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(140), 5, + STATE(151), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(285), 11, + STATE(290), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -13755,65 +13960,7 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [9099] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(685), 1, - anon_sym_LPAREN, - STATE(167), 1, - sym_arguments, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(256), 17, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(254), 29, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [9163] = 32, + [9331] = 32, ACTIONS(3), 1, sym_module_comment, ACTIONS(447), 1, @@ -13850,42 +13997,42 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(483), 1, sym__upname, - STATE(80), 1, + STATE(64), 1, aux_sym__expression_seq, - STATE(141), 1, + STATE(133), 1, sym_identifier, - STATE(158), 1, + STATE(163), 1, sym_tuple, - STATE(164), 1, + STATE(175), 1, sym_anonymous_function, STATE(627), 1, sym_try, - STATE(1095), 1, + STATE(1100), 1, sym__maybe_function_expression, - STATE(1183), 1, + STATE(1199), 1, sym__maybe_record_expression, - STATE(1246), 1, + STATE(1231), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(109), 2, + STATE(121), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(164), 2, sym_record, sym_record_update, ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(140), 5, + STATE(151), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(285), 11, + STATE(290), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -13897,7 +14044,7 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [9279] = 32, + [9447] = 32, ACTIONS(3), 1, sym_module_comment, ACTIONS(447), 1, @@ -13934,42 +14081,42 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(483), 1, sym__upname, - STATE(62), 1, + STATE(101), 1, aux_sym__expression_seq, - STATE(141), 1, + STATE(133), 1, sym_identifier, - STATE(158), 1, + STATE(163), 1, sym_tuple, - STATE(164), 1, + STATE(175), 1, sym_anonymous_function, STATE(627), 1, sym_try, - STATE(1095), 1, + STATE(1100), 1, sym__maybe_function_expression, - STATE(1183), 1, + STATE(1199), 1, sym__maybe_record_expression, - STATE(1246), 1, + STATE(1231), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(109), 2, + STATE(121), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(164), 2, sym_record, sym_record_update, ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(140), 5, + STATE(151), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(285), 11, + STATE(290), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -13981,7 +14128,7 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [9395] = 32, + [9563] = 32, ACTIONS(3), 1, sym_module_comment, ACTIONS(447), 1, @@ -14018,42 +14165,42 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(483), 1, sym__upname, - STATE(54), 1, + STATE(66), 1, aux_sym__expression_seq, - STATE(141), 1, + STATE(133), 1, sym_identifier, - STATE(158), 1, + STATE(163), 1, sym_tuple, - STATE(164), 1, + STATE(175), 1, sym_anonymous_function, STATE(627), 1, sym_try, - STATE(1095), 1, + STATE(1100), 1, sym__maybe_function_expression, - STATE(1183), 1, + STATE(1199), 1, sym__maybe_record_expression, - STATE(1246), 1, + STATE(1231), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(109), 2, + STATE(121), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(164), 2, sym_record, sym_record_update, ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(140), 5, + STATE(151), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(285), 11, + STATE(290), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -14065,7 +14212,7 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [9511] = 32, + [9679] = 32, ACTIONS(3), 1, sym_module_comment, ACTIONS(447), 1, @@ -14102,42 +14249,42 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(483), 1, sym__upname, - STATE(71), 1, + STATE(103), 1, aux_sym__expression_seq, - STATE(141), 1, + STATE(133), 1, sym_identifier, - STATE(158), 1, + STATE(163), 1, sym_tuple, - STATE(164), 1, + STATE(175), 1, sym_anonymous_function, STATE(627), 1, sym_try, - STATE(1095), 1, + STATE(1100), 1, sym__maybe_function_expression, - STATE(1183), 1, + STATE(1199), 1, sym__maybe_record_expression, - STATE(1246), 1, + STATE(1231), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(109), 2, + STATE(121), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(164), 2, sym_record, sym_record_update, ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(140), 5, + STATE(151), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(285), 11, + STATE(290), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -14149,7 +14296,7 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [9627] = 32, + [9795] = 32, ACTIONS(3), 1, sym_module_comment, ACTIONS(447), 1, @@ -14186,42 +14333,42 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(483), 1, sym__upname, - STATE(58), 1, + STATE(105), 1, aux_sym__expression_seq, - STATE(141), 1, + STATE(133), 1, sym_identifier, - STATE(158), 1, + STATE(163), 1, sym_tuple, - STATE(164), 1, + STATE(175), 1, sym_anonymous_function, STATE(627), 1, sym_try, - STATE(1095), 1, + STATE(1100), 1, sym__maybe_function_expression, - STATE(1183), 1, + STATE(1199), 1, sym__maybe_record_expression, - STATE(1246), 1, + STATE(1231), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(109), 2, + STATE(121), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(164), 2, sym_record, sym_record_update, ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(140), 5, + STATE(151), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(285), 11, + STATE(290), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -14233,7 +14380,7 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [9743] = 32, + [9911] = 32, ACTIONS(3), 1, sym_module_comment, ACTIONS(447), 1, @@ -14270,42 +14417,42 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(483), 1, sym__upname, - STATE(67), 1, + STATE(89), 1, aux_sym__expression_seq, - STATE(141), 1, + STATE(133), 1, sym_identifier, - STATE(158), 1, + STATE(163), 1, sym_tuple, - STATE(164), 1, + STATE(175), 1, sym_anonymous_function, STATE(627), 1, sym_try, - STATE(1095), 1, + STATE(1100), 1, sym__maybe_function_expression, - STATE(1183), 1, + STATE(1199), 1, sym__maybe_record_expression, - STATE(1246), 1, + STATE(1231), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(109), 2, + STATE(121), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(164), 2, sym_record, sym_record_update, ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(140), 5, + STATE(151), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(285), 11, + STATE(290), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -14317,7 +14464,7 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [9859] = 32, + [10027] = 32, ACTIONS(3), 1, sym_module_comment, ACTIONS(447), 1, @@ -14354,42 +14501,42 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(483), 1, sym__upname, - STATE(70), 1, + STATE(73), 1, aux_sym__expression_seq, - STATE(141), 1, + STATE(133), 1, sym_identifier, - STATE(158), 1, + STATE(163), 1, sym_tuple, - STATE(164), 1, + STATE(175), 1, sym_anonymous_function, STATE(627), 1, sym_try, - STATE(1095), 1, + STATE(1100), 1, sym__maybe_function_expression, - STATE(1183), 1, + STATE(1199), 1, sym__maybe_record_expression, - STATE(1246), 1, + STATE(1231), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(109), 2, + STATE(121), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(164), 2, sym_record, sym_record_update, ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(140), 5, + STATE(151), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(285), 11, + STATE(290), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -14401,7 +14548,7 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [9975] = 32, + [10143] = 32, ACTIONS(3), 1, sym_module_comment, ACTIONS(447), 1, @@ -14438,42 +14585,42 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(483), 1, sym__upname, - STATE(77), 1, + STATE(56), 1, aux_sym__expression_seq, - STATE(141), 1, + STATE(133), 1, sym_identifier, - STATE(158), 1, + STATE(163), 1, sym_tuple, - STATE(164), 1, + STATE(175), 1, sym_anonymous_function, STATE(627), 1, sym_try, - STATE(1095), 1, + STATE(1100), 1, sym__maybe_function_expression, - STATE(1183), 1, + STATE(1199), 1, sym__maybe_record_expression, - STATE(1246), 1, + STATE(1231), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(109), 2, + STATE(121), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(164), 2, sym_record, sym_record_update, ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(140), 5, + STATE(151), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(285), 11, + STATE(290), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -14485,7 +14632,7 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [10091] = 32, + [10259] = 32, ACTIONS(3), 1, sym_module_comment, ACTIONS(447), 1, @@ -14522,42 +14669,42 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(483), 1, sym__upname, - STATE(78), 1, + STATE(65), 1, aux_sym__expression_seq, - STATE(141), 1, + STATE(133), 1, sym_identifier, - STATE(158), 1, + STATE(163), 1, sym_tuple, - STATE(164), 1, + STATE(175), 1, sym_anonymous_function, STATE(627), 1, sym_try, - STATE(1095), 1, + STATE(1100), 1, sym__maybe_function_expression, - STATE(1183), 1, + STATE(1199), 1, sym__maybe_record_expression, - STATE(1246), 1, + STATE(1231), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(109), 2, + STATE(121), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(164), 2, sym_record, sym_record_update, ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(140), 5, + STATE(151), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(285), 11, + STATE(290), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -14569,7 +14716,7 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [10207] = 32, + [10375] = 32, ACTIONS(3), 1, sym_module_comment, ACTIONS(447), 1, @@ -14606,42 +14753,42 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(483), 1, sym__upname, - STATE(99), 1, + STATE(84), 1, aux_sym__expression_seq, - STATE(141), 1, + STATE(133), 1, sym_identifier, - STATE(158), 1, + STATE(163), 1, sym_tuple, - STATE(164), 1, + STATE(175), 1, sym_anonymous_function, STATE(627), 1, sym_try, - STATE(1095), 1, + STATE(1100), 1, sym__maybe_function_expression, - STATE(1183), 1, + STATE(1199), 1, sym__maybe_record_expression, - STATE(1246), 1, + STATE(1231), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(109), 2, + STATE(121), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(164), 2, sym_record, sym_record_update, ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(140), 5, + STATE(151), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(285), 11, + STATE(290), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -14653,174 +14800,64 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [10323] = 32, + [10491] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, - anon_sym_LBRACE, - ACTIONS(451), 1, - anon_sym_POUND, - ACTIONS(453), 1, - anon_sym_LBRACK, - ACTIONS(455), 1, - anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(685), 1, + anon_sym_LPAREN, + STATE(162), 1, + sym_arguments, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(256), 17, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(459), 1, anon_sym_fn, - ACTIONS(461), 1, anon_sym_try, - ACTIONS(463), 1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(465), 1, anon_sym_case, - ACTIONS(467), 1, anon_sym_let, - ACTIONS(469), 1, anon_sym_assert, - ACTIONS(471), 1, anon_sym_BANG, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(475), 1, - sym_float, - ACTIONS(479), 1, sym__decimal, - ACTIONS(481), 1, sym__name, - ACTIONS(483), 1, - sym__upname, - STATE(101), 1, - aux_sym__expression_seq, - STATE(141), 1, - sym_identifier, - STATE(158), 1, - sym_tuple, - STATE(164), 1, - sym_anonymous_function, - STATE(627), 1, - sym_try, - STATE(1095), 1, - sym__maybe_function_expression, - STATE(1183), 1, - sym__maybe_record_expression, - STATE(1246), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(109), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(169), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(140), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(285), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [10439] = 32, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(447), 1, + ACTIONS(254), 29, anon_sym_LBRACE, - ACTIONS(451), 1, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_COMMA, anon_sym_POUND, - ACTIONS(453), 1, anon_sym_LBRACK, - ACTIONS(455), 1, anon_sym_LT_LT, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(459), 1, - anon_sym_fn, - ACTIONS(461), 1, - anon_sym_try, - ACTIONS(463), 1, - anon_sym_todo, - ACTIONS(465), 1, - anon_sym_case, - ACTIONS(467), 1, - anon_sym_let, - ACTIONS(469), 1, - anon_sym_assert, - ACTIONS(471), 1, - anon_sym_BANG, - ACTIONS(473), 1, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, anon_sym_DQUOTE, - ACTIONS(475), 1, sym_float, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, - sym__upname, - STATE(102), 1, - aux_sym__expression_seq, - STATE(141), 1, - sym_identifier, - STATE(158), 1, - sym_tuple, - STATE(164), 1, - sym_anonymous_function, - STATE(627), 1, - sym_try, - STATE(1095), 1, - sym__maybe_function_expression, - STATE(1183), 1, - sym__maybe_record_expression, - STATE(1246), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(109), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(169), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(140), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(285), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, + sym__upname, [10555] = 32, ACTIONS(3), 1, sym_module_comment, @@ -14858,42 +14895,42 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(483), 1, sym__upname, - STATE(103), 1, + STATE(70), 1, aux_sym__expression_seq, - STATE(141), 1, + STATE(133), 1, sym_identifier, - STATE(158), 1, + STATE(163), 1, sym_tuple, - STATE(164), 1, + STATE(175), 1, sym_anonymous_function, STATE(627), 1, sym_try, - STATE(1095), 1, + STATE(1100), 1, sym__maybe_function_expression, - STATE(1183), 1, + STATE(1199), 1, sym__maybe_record_expression, - STATE(1246), 1, + STATE(1231), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(109), 2, + STATE(121), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(164), 2, sym_record, sym_record_update, ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(140), 5, + STATE(151), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(285), 11, + STATE(290), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -14942,42 +14979,42 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(483), 1, sym__upname, - STATE(104), 1, + STATE(83), 1, aux_sym__expression_seq, - STATE(141), 1, + STATE(133), 1, sym_identifier, - STATE(158), 1, + STATE(163), 1, sym_tuple, - STATE(164), 1, + STATE(175), 1, sym_anonymous_function, STATE(627), 1, sym_try, - STATE(1095), 1, + STATE(1100), 1, sym__maybe_function_expression, - STATE(1183), 1, + STATE(1199), 1, sym__maybe_record_expression, - STATE(1246), 1, + STATE(1231), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(109), 2, + STATE(121), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(164), 2, sym_record, sym_record_update, ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(140), 5, + STATE(151), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(285), 11, + STATE(290), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -15026,42 +15063,42 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(483), 1, sym__upname, - STATE(105), 1, + STATE(55), 1, aux_sym__expression_seq, - STATE(141), 1, + STATE(133), 1, sym_identifier, - STATE(158), 1, + STATE(163), 1, sym_tuple, - STATE(164), 1, + STATE(175), 1, sym_anonymous_function, STATE(627), 1, sym_try, - STATE(1095), 1, + STATE(1100), 1, sym__maybe_function_expression, - STATE(1183), 1, + STATE(1199), 1, sym__maybe_record_expression, - STATE(1246), 1, + STATE(1231), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(109), 2, + STATE(121), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(164), 2, sym_record, sym_record_update, ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(140), 5, + STATE(151), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(285), 11, + STATE(290), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -15110,42 +15147,42 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(483), 1, sym__upname, - STATE(91), 1, + STATE(87), 1, aux_sym__expression_seq, - STATE(141), 1, + STATE(133), 1, sym_identifier, - STATE(158), 1, + STATE(163), 1, sym_tuple, - STATE(164), 1, + STATE(175), 1, sym_anonymous_function, STATE(627), 1, sym_try, - STATE(1095), 1, + STATE(1100), 1, sym__maybe_function_expression, - STATE(1183), 1, + STATE(1199), 1, sym__maybe_record_expression, - STATE(1246), 1, + STATE(1231), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(109), 2, + STATE(121), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(164), 2, sym_record, sym_record_update, ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(140), 5, + STATE(151), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(285), 11, + STATE(290), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -15194,42 +15231,42 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(483), 1, sym__upname, - STATE(72), 1, + STATE(93), 1, aux_sym__expression_seq, - STATE(141), 1, + STATE(133), 1, sym_identifier, - STATE(158), 1, + STATE(163), 1, sym_tuple, - STATE(164), 1, + STATE(175), 1, sym_anonymous_function, STATE(627), 1, sym_try, - STATE(1095), 1, + STATE(1100), 1, sym__maybe_function_expression, - STATE(1183), 1, + STATE(1199), 1, sym__maybe_record_expression, - STATE(1246), 1, + STATE(1231), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(109), 2, + STATE(121), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(164), 2, sym_record, sym_record_update, ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(140), 5, + STATE(151), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(285), 11, + STATE(290), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -15278,42 +15315,42 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(483), 1, sym__upname, - STATE(63), 1, + STATE(96), 1, aux_sym__expression_seq, - STATE(141), 1, + STATE(133), 1, sym_identifier, - STATE(158), 1, + STATE(163), 1, sym_tuple, - STATE(164), 1, + STATE(175), 1, sym_anonymous_function, STATE(627), 1, sym_try, - STATE(1095), 1, + STATE(1100), 1, sym__maybe_function_expression, - STATE(1183), 1, + STATE(1199), 1, sym__maybe_record_expression, - STATE(1246), 1, + STATE(1231), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(109), 2, + STATE(121), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(164), 2, sym_record, sym_record_update, ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(140), 5, + STATE(151), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(285), 11, + STATE(290), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -15362,42 +15399,124 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(483), 1, sym__upname, - STATE(74), 1, + STATE(107), 1, aux_sym__expression_seq, - STATE(141), 1, + STATE(133), 1, sym_identifier, - STATE(158), 1, + STATE(163), 1, sym_tuple, - STATE(164), 1, + STATE(175), 1, sym_anonymous_function, STATE(627), 1, sym_try, - STATE(1095), 1, + STATE(1100), 1, sym__maybe_function_expression, - STATE(1183), 1, + STATE(1199), 1, sym__maybe_record_expression, - STATE(1246), 1, + STATE(1231), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(109), 2, + STATE(121), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(164), 2, sym_record, sym_record_update, ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(140), 5, + STATE(151), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(285), 11, + STATE(290), 11, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_list, + sym__expression_bit_string, + sym_let, + sym_assert, + sym_negation, + sym_string, + sym_integer, + [11367] = 31, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(277), 1, + anon_sym_LBRACE, + ACTIONS(279), 1, + anon_sym_POUND, + ACTIONS(283), 1, + anon_sym_LBRACK, + ACTIONS(285), 1, + anon_sym_LT_LT, + ACTIONS(287), 1, + anon_sym_DASH, + ACTIONS(289), 1, + anon_sym_fn, + ACTIONS(291), 1, + anon_sym_todo, + ACTIONS(295), 1, + anon_sym_case, + ACTIONS(297), 1, + anon_sym_let, + ACTIONS(299), 1, + anon_sym_assert, + ACTIONS(301), 1, + anon_sym_BANG, + ACTIONS(303), 1, + anon_sym_DQUOTE, + ACTIONS(309), 1, + sym__decimal, + ACTIONS(315), 1, + sym__upname, + ACTIONS(687), 1, + anon_sym_RBRACK, + ACTIONS(689), 1, + anon_sym_DOT_DOT, + ACTIONS(691), 1, + sym_float, + ACTIONS(693), 1, + sym__name, + STATE(375), 1, + sym_identifier, + STATE(380), 1, + sym_tuple, + STATE(387), 1, + sym_anonymous_function, + STATE(1116), 1, + sym__maybe_function_expression, + STATE(1218), 1, + sym__maybe_tuple_expression, + STATE(1229), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(359), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(392), 2, + sym_record, + sym_record_update, + ACTIONS(307), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(374), 5, + sym_expression_group, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(509), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -15409,13 +15528,13 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [11367] = 4, + [11480] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(330), 17, + ACTIONS(339), 17, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -15433,7 +15552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(328), 30, + ACTIONS(337), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, @@ -15464,95 +15583,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [11426] = 31, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(286), 1, - anon_sym_POUND, - ACTIONS(290), 1, - anon_sym_LBRACK, - ACTIONS(292), 1, - anon_sym_LT_LT, - ACTIONS(294), 1, - anon_sym_DASH, - ACTIONS(296), 1, - anon_sym_fn, - ACTIONS(298), 1, - anon_sym_todo, - ACTIONS(302), 1, - anon_sym_case, - ACTIONS(304), 1, - anon_sym_let, - ACTIONS(306), 1, - anon_sym_assert, - ACTIONS(308), 1, - anon_sym_BANG, - ACTIONS(310), 1, - anon_sym_DQUOTE, - ACTIONS(316), 1, - sym__decimal, - ACTIONS(318), 1, - sym__discard_name, - ACTIONS(322), 1, - sym__upname, - ACTIONS(687), 1, - sym_float, - ACTIONS(689), 1, - sym__name, - STATE(361), 1, - sym_identifier, - STATE(385), 1, - sym_tuple, - STATE(393), 1, - sym_anonymous_function, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1124), 1, - sym_hole, - STATE(1213), 1, - sym__maybe_record_expression, - STATE(1243), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(360), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(382), 2, - sym_record, - sym_record_update, - ACTIONS(314), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(367), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(576), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, [11539] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(262), 17, + ACTIONS(275), 17, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -15570,7 +15607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(260), 30, + ACTIONS(273), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, @@ -15604,74 +15641,74 @@ static const uint16_t ts_small_parse_table[] = { [11598] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(277), 1, anon_sym_LBRACE, - ACTIONS(286), 1, + ACTIONS(279), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(283), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(285), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(289), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(291), 1, anon_sym_todo, - ACTIONS(302), 1, + ACTIONS(295), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(297), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(299), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(301), 1, anon_sym_BANG, - ACTIONS(310), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(689), 1, - sym__name, ACTIONS(691), 1, - anon_sym_RBRACK, + sym_float, ACTIONS(693), 1, - anon_sym_DOT_DOT, + sym__name, ACTIONS(695), 1, - sym_float, - STATE(361), 1, + anon_sym_RBRACK, + ACTIONS(697), 1, + anon_sym_DOT_DOT, + STATE(375), 1, sym_identifier, - STATE(385), 1, + STATE(380), 1, sym_tuple, - STATE(393), 1, + STATE(387), 1, sym_anonymous_function, - STATE(1100), 1, + STATE(1116), 1, sym__maybe_function_expression, - STATE(1213), 1, - sym__maybe_record_expression, - STATE(1243), 1, + STATE(1218), 1, sym__maybe_tuple_expression, + STATE(1229), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(360), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(382), 2, + STATE(392), 2, sym_record, sym_record_update, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(367), 5, + STATE(374), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(520), 11, + STATE(509), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -15683,68 +15720,17 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [11711] = 4, + [11711] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(338), 17, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(336), 30, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_POUND, + ACTIONS(271), 1, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [11770] = 4, - ACTIONS(3), 1, - sym_module_comment, + ACTIONS(699), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(380), 17, + ACTIONS(266), 17, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -15762,13 +15748,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(378), 30, + ACTIONS(264), 28, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_COMMA, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_GT_GT, @@ -15793,77 +15777,77 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [11829] = 31, + [11774] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(277), 1, anon_sym_LBRACE, - ACTIONS(286), 1, + ACTIONS(279), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(283), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(285), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(289), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(291), 1, anon_sym_todo, - ACTIONS(302), 1, + ACTIONS(295), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(297), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(299), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(301), 1, anon_sym_BANG, - ACTIONS(310), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(689), 1, - sym__name, - ACTIONS(695), 1, + ACTIONS(691), 1, sym_float, - ACTIONS(697), 1, + ACTIONS(693), 1, + sym__name, + ACTIONS(703), 1, anon_sym_RBRACK, - ACTIONS(699), 1, + ACTIONS(705), 1, anon_sym_DOT_DOT, - STATE(361), 1, + STATE(375), 1, sym_identifier, - STATE(385), 1, + STATE(380), 1, sym_tuple, - STATE(393), 1, + STATE(387), 1, sym_anonymous_function, - STATE(1100), 1, + STATE(1116), 1, sym__maybe_function_expression, - STATE(1213), 1, - sym__maybe_record_expression, - STATE(1243), 1, + STATE(1218), 1, sym__maybe_tuple_expression, + STATE(1229), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(360), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(382), 2, + STATE(392), 2, sym_record, sym_record_update, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(367), 5, + STATE(374), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(520), 11, + STATE(509), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -15875,77 +15859,77 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [11942] = 31, + [11887] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(277), 1, anon_sym_LBRACE, - ACTIONS(286), 1, + ACTIONS(279), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(283), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(285), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(289), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(291), 1, anon_sym_todo, - ACTIONS(302), 1, + ACTIONS(295), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(297), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(299), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(301), 1, anon_sym_BANG, - ACTIONS(310), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(689), 1, - sym__name, - ACTIONS(695), 1, + ACTIONS(691), 1, sym_float, - ACTIONS(701), 1, + ACTIONS(693), 1, + sym__name, + ACTIONS(707), 1, anon_sym_RBRACK, - ACTIONS(703), 1, + ACTIONS(709), 1, anon_sym_DOT_DOT, - STATE(361), 1, + STATE(375), 1, sym_identifier, - STATE(385), 1, + STATE(380), 1, sym_tuple, - STATE(393), 1, + STATE(387), 1, sym_anonymous_function, - STATE(1100), 1, + STATE(1116), 1, sym__maybe_function_expression, - STATE(1213), 1, - sym__maybe_record_expression, - STATE(1243), 1, + STATE(1218), 1, sym__maybe_tuple_expression, + STATE(1229), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(360), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(382), 2, + STATE(392), 2, sym_record, sym_record_update, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(367), 5, + STATE(374), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(520), 11, + STATE(509), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -15957,77 +15941,77 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [12055] = 31, + [12000] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(277), 1, anon_sym_LBRACE, - ACTIONS(286), 1, + ACTIONS(279), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(283), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(285), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(289), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(291), 1, anon_sym_todo, - ACTIONS(302), 1, + ACTIONS(295), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(297), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(299), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(301), 1, anon_sym_BANG, - ACTIONS(310), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(689), 1, - sym__name, - ACTIONS(695), 1, + ACTIONS(691), 1, sym_float, - ACTIONS(705), 1, + ACTIONS(693), 1, + sym__name, + ACTIONS(711), 1, anon_sym_RBRACK, - ACTIONS(707), 1, + ACTIONS(713), 1, anon_sym_DOT_DOT, - STATE(361), 1, + STATE(375), 1, sym_identifier, - STATE(385), 1, + STATE(380), 1, sym_tuple, - STATE(393), 1, + STATE(387), 1, sym_anonymous_function, - STATE(1100), 1, + STATE(1116), 1, sym__maybe_function_expression, - STATE(1213), 1, - sym__maybe_record_expression, - STATE(1243), 1, + STATE(1218), 1, sym__maybe_tuple_expression, + STATE(1229), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(360), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(382), 2, + STATE(392), 2, sym_record, sym_record_update, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(367), 5, + STATE(374), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(520), 11, + STATE(509), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -16039,159 +16023,132 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [12168] = 31, + [12113] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(286), 1, - anon_sym_POUND, - ACTIONS(290), 1, - anon_sym_LBRACK, - ACTIONS(292), 1, - anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(621), 17, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(296), 1, anon_sym_fn, - ACTIONS(298), 1, + anon_sym_try, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(302), 1, anon_sym_case, - ACTIONS(304), 1, anon_sym_let, - ACTIONS(306), 1, anon_sym_assert, - ACTIONS(308), 1, anon_sym_BANG, - ACTIONS(310), 1, - anon_sym_DQUOTE, - ACTIONS(316), 1, sym__decimal, - ACTIONS(322), 1, - sym__upname, - ACTIONS(689), 1, sym__name, - ACTIONS(695), 1, - sym_float, - ACTIONS(709), 1, + ACTIONS(619), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_POUND, + anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, - ACTIONS(711), 1, - anon_sym_DOT_DOT, - STATE(361), 1, - sym_identifier, - STATE(385), 1, - sym_tuple, - STATE(393), 1, - sym_anonymous_function, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1213), 1, - sym__maybe_record_expression, - STATE(1243), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(360), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(382), 2, - sym_record, - sym_record_update, - ACTIONS(314), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DQUOTE, + sym_float, sym__hex, sym__octal, sym__binary, - STATE(367), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(520), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [12281] = 31, + sym__upname, + [12172] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(277), 1, anon_sym_LBRACE, - ACTIONS(286), 1, + ACTIONS(279), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(283), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(285), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(289), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(291), 1, anon_sym_todo, - ACTIONS(302), 1, + ACTIONS(295), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(297), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(299), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(301), 1, anon_sym_BANG, - ACTIONS(310), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(689), 1, - sym__name, - ACTIONS(695), 1, + ACTIONS(691), 1, sym_float, - ACTIONS(713), 1, - anon_sym_RBRACK, + ACTIONS(693), 1, + sym__name, ACTIONS(715), 1, + anon_sym_RBRACK, + ACTIONS(717), 1, anon_sym_DOT_DOT, - STATE(361), 1, + STATE(375), 1, sym_identifier, - STATE(385), 1, + STATE(380), 1, sym_tuple, - STATE(393), 1, + STATE(387), 1, sym_anonymous_function, - STATE(1100), 1, + STATE(1116), 1, sym__maybe_function_expression, - STATE(1213), 1, - sym__maybe_record_expression, - STATE(1243), 1, + STATE(1218), 1, sym__maybe_tuple_expression, + STATE(1229), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(360), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(382), 2, + STATE(392), 2, sym_record, sym_record_update, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(367), 5, + STATE(374), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(520), 11, + STATE(509), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -16203,17 +16160,13 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [12394] = 6, + [12285] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(360), 1, - anon_sym_LPAREN, - ACTIONS(382), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(354), 17, + ACTIONS(319), 17, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -16231,11 +16184,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(352), 28, + ACTIONS(317), 30, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_COMMA, anon_sym_POUND, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_GT_GT, @@ -16260,17 +16215,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [12457] = 6, + [12344] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(360), 1, - anon_sym_LPAREN, - ACTIONS(717), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(354), 17, + ACTIONS(323), 17, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -16288,11 +16239,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(352), 28, + ACTIONS(321), 30, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_COMMA, anon_sym_POUND, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_GT_GT, @@ -16317,95 +16270,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [12520] = 31, + [12403] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(286), 1, - anon_sym_POUND, - ACTIONS(290), 1, - anon_sym_LBRACK, - ACTIONS(292), 1, - anon_sym_LT_LT, - ACTIONS(294), 1, - anon_sym_DASH, - ACTIONS(296), 1, - anon_sym_fn, - ACTIONS(298), 1, - anon_sym_todo, - ACTIONS(302), 1, - anon_sym_case, - ACTIONS(304), 1, - anon_sym_let, - ACTIONS(306), 1, - anon_sym_assert, - ACTIONS(308), 1, - anon_sym_BANG, - ACTIONS(310), 1, - anon_sym_DQUOTE, - ACTIONS(316), 1, - sym__decimal, - ACTIONS(322), 1, - sym__upname, - ACTIONS(689), 1, - sym__name, - ACTIONS(695), 1, - sym_float, - ACTIONS(721), 1, - anon_sym_RBRACK, - ACTIONS(723), 1, - anon_sym_DOT_DOT, - STATE(361), 1, - sym_identifier, - STATE(385), 1, - sym_tuple, - STATE(393), 1, - sym_anonymous_function, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1213), 1, - sym__maybe_record_expression, - STATE(1243), 1, - sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(360), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(382), 2, - sym_record, - sym_record_update, - ACTIONS(314), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(367), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(520), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [12633] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(627), 17, + ACTIONS(262), 17, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -16423,14 +16294,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(625), 30, + ACTIONS(260), 30, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_COMMA, anon_sym_POUND, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_COLON, @@ -16454,13 +16325,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [12692] = 4, + [12462] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(372), 17, + ACTIONS(375), 17, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -16478,7 +16349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(370), 30, + ACTIONS(373), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, @@ -16509,77 +16380,241 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [12751] = 31, + [12521] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(277), 1, anon_sym_LBRACE, - ACTIONS(286), 1, + ACTIONS(279), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(283), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(285), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(289), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(291), 1, anon_sym_todo, - ACTIONS(302), 1, + ACTIONS(295), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(297), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(299), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(301), 1, anon_sym_BANG, - ACTIONS(310), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(322), 1, + ACTIONS(311), 1, + sym__discard_name, + ACTIONS(315), 1, sym__upname, - ACTIONS(689), 1, + ACTIONS(693), 1, sym__name, - ACTIONS(695), 1, + ACTIONS(719), 1, sym_float, + STATE(375), 1, + sym_identifier, + STATE(380), 1, + sym_tuple, + STATE(387), 1, + sym_anonymous_function, + STATE(1116), 1, + sym__maybe_function_expression, + STATE(1175), 1, + sym_hole, + STATE(1218), 1, + sym__maybe_tuple_expression, + STATE(1229), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(359), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(392), 2, + sym_record, + sym_record_update, + ACTIONS(307), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(374), 5, + sym_expression_group, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(579), 11, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_list, + sym__expression_bit_string, + sym_let, + sym_assert, + sym_negation, + sym_string, + sym_integer, + [12634] = 31, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(277), 1, + anon_sym_LBRACE, + ACTIONS(279), 1, + anon_sym_POUND, + ACTIONS(283), 1, + anon_sym_LBRACK, + ACTIONS(285), 1, + anon_sym_LT_LT, + ACTIONS(287), 1, + anon_sym_DASH, + ACTIONS(289), 1, + anon_sym_fn, + ACTIONS(291), 1, + anon_sym_todo, + ACTIONS(295), 1, + anon_sym_case, + ACTIONS(297), 1, + anon_sym_let, + ACTIONS(299), 1, + anon_sym_assert, + ACTIONS(301), 1, + anon_sym_BANG, + ACTIONS(303), 1, + anon_sym_DQUOTE, + ACTIONS(309), 1, + sym__decimal, + ACTIONS(315), 1, + sym__upname, + ACTIONS(691), 1, + sym_float, + ACTIONS(693), 1, + sym__name, + ACTIONS(721), 1, + anon_sym_RBRACK, + ACTIONS(723), 1, + anon_sym_DOT_DOT, + STATE(375), 1, + sym_identifier, + STATE(380), 1, + sym_tuple, + STATE(387), 1, + sym_anonymous_function, + STATE(1116), 1, + sym__maybe_function_expression, + STATE(1218), 1, + sym__maybe_tuple_expression, + STATE(1229), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(359), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(392), 2, + sym_record, + sym_record_update, + ACTIONS(307), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(374), 5, + sym_expression_group, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(509), 11, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_list, + sym__expression_bit_string, + sym_let, + sym_assert, + sym_negation, + sym_string, + sym_integer, + [12747] = 31, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(277), 1, + anon_sym_LBRACE, + ACTIONS(279), 1, + anon_sym_POUND, + ACTIONS(283), 1, + anon_sym_LBRACK, + ACTIONS(285), 1, + anon_sym_LT_LT, + ACTIONS(287), 1, + anon_sym_DASH, + ACTIONS(289), 1, + anon_sym_fn, + ACTIONS(291), 1, + anon_sym_todo, + ACTIONS(295), 1, + anon_sym_case, + ACTIONS(297), 1, + anon_sym_let, + ACTIONS(299), 1, + anon_sym_assert, + ACTIONS(301), 1, + anon_sym_BANG, + ACTIONS(303), 1, + anon_sym_DQUOTE, + ACTIONS(309), 1, + sym__decimal, + ACTIONS(315), 1, + sym__upname, + ACTIONS(691), 1, + sym_float, + ACTIONS(693), 1, + sym__name, ACTIONS(725), 1, anon_sym_RBRACK, ACTIONS(727), 1, anon_sym_DOT_DOT, - STATE(361), 1, + STATE(375), 1, sym_identifier, - STATE(385), 1, + STATE(380), 1, sym_tuple, - STATE(393), 1, + STATE(387), 1, sym_anonymous_function, - STATE(1100), 1, + STATE(1116), 1, sym__maybe_function_expression, - STATE(1213), 1, - sym__maybe_record_expression, - STATE(1243), 1, + STATE(1218), 1, sym__maybe_tuple_expression, + STATE(1229), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(360), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(382), 2, + STATE(392), 2, sym_record, sym_record_update, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(367), 5, + STATE(374), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(520), 11, + STATE(509), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -16591,13 +16626,13 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [12864] = 4, + [12860] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(350), 17, + ACTIONS(445), 17, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -16615,14 +16650,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(348), 30, + ACTIONS(443), 30, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_COMMA, anon_sym_POUND, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_COLON, @@ -16646,13 +16681,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [12923] = 4, + [12919] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(376), 17, + ACTIONS(383), 17, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -16670,7 +16705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(374), 30, + ACTIONS(381), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, @@ -16701,13 +16736,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [12982] = 4, + [12978] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(266), 17, + ACTIONS(343), 17, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -16725,7 +16760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(264), 30, + ACTIONS(341), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, @@ -16756,13 +16791,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [13041] = 4, + [13037] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(270), 17, + ACTIONS(355), 17, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -16780,7 +16815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(268), 30, + ACTIONS(353), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, @@ -16811,13 +16846,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [13100] = 4, + [13096] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(274), 17, + ACTIONS(359), 17, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -16835,7 +16870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(272), 30, + ACTIONS(357), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, @@ -16866,13 +16901,17 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [13159] = 4, + [13155] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(268), 1, + anon_sym_DOT, + ACTIONS(271), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(639), 17, + ACTIONS(266), 17, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -16890,14 +16929,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(637), 30, + ACTIONS(264), 28, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_POUND, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_COLON, @@ -16924,72 +16961,72 @@ static const uint16_t ts_small_parse_table[] = { [13218] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(277), 1, anon_sym_LBRACE, - ACTIONS(286), 1, + ACTIONS(279), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(283), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(285), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(289), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(291), 1, anon_sym_todo, - ACTIONS(302), 1, + ACTIONS(295), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(297), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(299), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(301), 1, anon_sym_BANG, - ACTIONS(310), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(689), 1, + ACTIONS(693), 1, sym__name, - ACTIONS(695), 1, - sym_float, ACTIONS(729), 1, - anon_sym_RPAREN, - STATE(361), 1, + sym_float, + STATE(375), 1, sym_identifier, - STATE(385), 1, + STATE(380), 1, sym_tuple, - STATE(393), 1, + STATE(387), 1, sym_anonymous_function, - STATE(1100), 1, + STATE(1116), 1, sym__maybe_function_expression, - STATE(1213), 1, - sym__maybe_record_expression, - STATE(1243), 1, + STATE(1218), 1, sym__maybe_tuple_expression, + STATE(1229), 1, + sym__maybe_record_expression, + STATE(1267), 1, + sym_case_subjects, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(360), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(382), 2, + STATE(392), 2, sym_record, sym_record_update, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(367), 5, + STATE(374), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(520), 11, + STATE(568), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -17004,72 +17041,72 @@ static const uint16_t ts_small_parse_table[] = { [13328] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(277), 1, anon_sym_LBRACE, - ACTIONS(286), 1, + ACTIONS(279), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(283), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(285), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(289), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(291), 1, anon_sym_todo, - ACTIONS(302), 1, + ACTIONS(295), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(297), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(299), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(301), 1, anon_sym_BANG, - ACTIONS(310), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(689), 1, + ACTIONS(693), 1, sym__name, - ACTIONS(695), 1, - sym_float, ACTIONS(731), 1, anon_sym_RPAREN, - STATE(361), 1, + ACTIONS(733), 1, + sym_float, + STATE(375), 1, sym_identifier, - STATE(385), 1, + STATE(380), 1, sym_tuple, - STATE(393), 1, + STATE(387), 1, sym_anonymous_function, - STATE(1100), 1, + STATE(1116), 1, sym__maybe_function_expression, - STATE(1213), 1, - sym__maybe_record_expression, - STATE(1243), 1, + STATE(1218), 1, sym__maybe_tuple_expression, + STATE(1229), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(360), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(382), 2, + STATE(392), 2, sym_record, sym_record_update, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(367), 5, + STATE(374), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(520), 11, + STATE(570), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -17081,155 +17118,129 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [13438] = 30, + [13438] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(286), 1, - anon_sym_POUND, - ACTIONS(290), 1, - anon_sym_LBRACK, - ACTIONS(292), 1, - anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(391), 17, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(296), 1, anon_sym_fn, - ACTIONS(298), 1, + anon_sym_try, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(302), 1, anon_sym_case, - ACTIONS(304), 1, anon_sym_let, - ACTIONS(306), 1, anon_sym_assert, - ACTIONS(308), 1, anon_sym_BANG, - ACTIONS(310), 1, - anon_sym_DQUOTE, - ACTIONS(316), 1, sym__decimal, - ACTIONS(322), 1, - sym__upname, - ACTIONS(689), 1, sym__name, - ACTIONS(733), 1, - anon_sym_RBRACK, - ACTIONS(735), 1, + ACTIONS(389), 29, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DQUOTE, sym_float, - STATE(361), 1, - sym_identifier, - STATE(385), 1, - sym_tuple, - STATE(393), 1, - sym_anonymous_function, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1213), 1, - sym__maybe_record_expression, - STATE(1243), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(360), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(382), 2, - sym_record, - sym_record_update, - ACTIONS(314), 3, sym__hex, sym__octal, sym__binary, - STATE(367), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(530), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [13548] = 30, + sym__upname, + [13496] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(277), 1, anon_sym_LBRACE, - ACTIONS(286), 1, + ACTIONS(279), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(283), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(285), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(289), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(291), 1, anon_sym_todo, - ACTIONS(302), 1, + ACTIONS(295), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(297), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(299), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(301), 1, anon_sym_BANG, - ACTIONS(310), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(689), 1, + ACTIONS(693), 1, sym__name, - ACTIONS(737), 1, + ACTIONS(735), 1, anon_sym_RBRACK, - ACTIONS(739), 1, + ACTIONS(737), 1, sym_float, - STATE(361), 1, + STATE(375), 1, sym_identifier, - STATE(385), 1, + STATE(380), 1, sym_tuple, - STATE(393), 1, + STATE(387), 1, sym_anonymous_function, - STATE(1100), 1, + STATE(1116), 1, sym__maybe_function_expression, - STATE(1213), 1, - sym__maybe_record_expression, - STATE(1243), 1, + STATE(1218), 1, sym__maybe_tuple_expression, + STATE(1229), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(360), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(382), 2, + STATE(392), 2, sym_record, sym_record_update, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(367), 5, + STATE(374), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(535), 11, + STATE(538), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -17241,75 +17252,75 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [13658] = 30, + [13606] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(277), 1, anon_sym_LBRACE, - ACTIONS(286), 1, + ACTIONS(279), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(283), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(285), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(289), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(291), 1, anon_sym_todo, - ACTIONS(302), 1, + ACTIONS(295), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(297), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(299), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(301), 1, anon_sym_BANG, - ACTIONS(310), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(689), 1, + ACTIONS(693), 1, sym__name, - ACTIONS(741), 1, + ACTIONS(739), 1, anon_sym_RPAREN, - ACTIONS(743), 1, + ACTIONS(741), 1, sym_float, - STATE(361), 1, + STATE(375), 1, sym_identifier, - STATE(385), 1, + STATE(380), 1, sym_tuple, - STATE(393), 1, + STATE(387), 1, sym_anonymous_function, - STATE(1100), 1, + STATE(1116), 1, sym__maybe_function_expression, - STATE(1213), 1, - sym__maybe_record_expression, - STATE(1243), 1, + STATE(1218), 1, sym__maybe_tuple_expression, + STATE(1229), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(360), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(382), 2, + STATE(392), 2, sym_record, sym_record_update, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(367), 5, + STATE(374), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(550), 11, + STATE(564), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -17321,13 +17332,13 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [13768] = 4, + [13716] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(399), 17, + ACTIONS(395), 17, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -17345,7 +17356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(397), 29, + ACTIONS(393), 29, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, @@ -17375,15 +17386,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [13826] = 5, + [13774] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(385), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(354), 17, + ACTIONS(415), 17, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -17401,11 +17410,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(352), 28, + ACTIONS(413), 29, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_POUND, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_GT_GT, @@ -17430,13 +17440,93 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [13886] = 4, + [13832] = 30, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(277), 1, + anon_sym_LBRACE, + ACTIONS(279), 1, + anon_sym_POUND, + ACTIONS(283), 1, + anon_sym_LBRACK, + ACTIONS(285), 1, + anon_sym_LT_LT, + ACTIONS(287), 1, + anon_sym_DASH, + ACTIONS(289), 1, + anon_sym_fn, + ACTIONS(291), 1, + anon_sym_todo, + ACTIONS(295), 1, + anon_sym_case, + ACTIONS(297), 1, + anon_sym_let, + ACTIONS(299), 1, + anon_sym_assert, + ACTIONS(301), 1, + anon_sym_BANG, + ACTIONS(303), 1, + anon_sym_DQUOTE, + ACTIONS(309), 1, + sym__decimal, + ACTIONS(315), 1, + sym__upname, + ACTIONS(693), 1, + sym__name, + ACTIONS(743), 1, + anon_sym_RBRACK, + ACTIONS(745), 1, + sym_float, + STATE(375), 1, + sym_identifier, + STATE(380), 1, + sym_tuple, + STATE(387), 1, + sym_anonymous_function, + STATE(1116), 1, + sym__maybe_function_expression, + STATE(1218), 1, + sym__maybe_tuple_expression, + STATE(1229), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(359), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(392), 2, + sym_record, + sym_record_update, + ACTIONS(307), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(374), 5, + sym_expression_group, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(521), 11, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_list, + sym__expression_bit_string, + sym_let, + sym_assert, + sym_negation, + sym_string, + sym_integer, + [13942] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(395), 17, + ACTIONS(403), 17, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -17454,7 +17544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(393), 29, + ACTIONS(401), 29, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, @@ -17484,13 +17574,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [13944] = 4, + [14000] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(391), 17, + ACTIONS(431), 17, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -17508,7 +17598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(389), 29, + ACTIONS(429), 29, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, @@ -17538,173 +17628,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [14002] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(286), 1, - anon_sym_POUND, - ACTIONS(290), 1, - anon_sym_LBRACK, - ACTIONS(292), 1, - anon_sym_LT_LT, - ACTIONS(294), 1, - anon_sym_DASH, - ACTIONS(296), 1, - anon_sym_fn, - ACTIONS(298), 1, - anon_sym_todo, - ACTIONS(302), 1, - anon_sym_case, - ACTIONS(304), 1, - anon_sym_let, - ACTIONS(306), 1, - anon_sym_assert, - ACTIONS(308), 1, - anon_sym_BANG, - ACTIONS(310), 1, - anon_sym_DQUOTE, - ACTIONS(316), 1, - sym__decimal, - ACTIONS(322), 1, - sym__upname, - ACTIONS(689), 1, - sym__name, - ACTIONS(745), 1, - anon_sym_RPAREN, - ACTIONS(747), 1, - sym_float, - STATE(361), 1, - sym_identifier, - STATE(385), 1, - sym_tuple, - STATE(393), 1, - sym_anonymous_function, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1213), 1, - sym__maybe_record_expression, - STATE(1243), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(360), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(382), 2, - sym_record, - sym_record_update, - ACTIONS(314), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(367), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(568), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [14112] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(286), 1, - anon_sym_POUND, - ACTIONS(290), 1, - anon_sym_LBRACK, - ACTIONS(292), 1, - anon_sym_LT_LT, - ACTIONS(294), 1, - anon_sym_DASH, - ACTIONS(296), 1, - anon_sym_fn, - ACTIONS(298), 1, - anon_sym_todo, - ACTIONS(302), 1, - anon_sym_case, - ACTIONS(304), 1, - anon_sym_let, - ACTIONS(306), 1, - anon_sym_assert, - ACTIONS(308), 1, - anon_sym_BANG, - ACTIONS(310), 1, - anon_sym_DQUOTE, - ACTIONS(316), 1, - sym__decimal, - ACTIONS(322), 1, - sym__upname, - ACTIONS(689), 1, - sym__name, - ACTIONS(695), 1, - sym_float, - ACTIONS(749), 1, - anon_sym_RPAREN, - STATE(361), 1, - sym_identifier, - STATE(385), 1, - sym_tuple, - STATE(393), 1, - sym_anonymous_function, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1213), 1, - sym__maybe_record_expression, - STATE(1243), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(360), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(382), 2, - sym_record, - sym_record_update, - ACTIONS(314), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(367), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(520), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [14222] = 4, + [14058] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(423), 17, + ACTIONS(407), 17, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -17722,12 +17652,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(421), 29, + ACTIONS(405), 29, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_COMMA, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_GT_GT, @@ -17752,15 +17682,15 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [14280] = 5, + [14116] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(360), 1, - anon_sym_LPAREN, + ACTIONS(411), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(354), 17, + ACTIONS(266), 17, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -17778,7 +17708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(352), 28, + ACTIONS(264), 28, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -17807,15 +17737,15 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [14340] = 5, + [14176] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(751), 1, - anon_sym_LPAREN, + ACTIONS(409), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(431), 17, + ACTIONS(266), 17, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -17833,7 +17763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(429), 28, + ACTIONS(264), 28, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -17862,93 +17792,15 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [14400] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(286), 1, - anon_sym_POUND, - ACTIONS(290), 1, - anon_sym_LBRACK, - ACTIONS(292), 1, - anon_sym_LT_LT, - ACTIONS(294), 1, - anon_sym_DASH, - ACTIONS(296), 1, - anon_sym_fn, - ACTIONS(298), 1, - anon_sym_todo, - ACTIONS(302), 1, - anon_sym_case, - ACTIONS(304), 1, - anon_sym_let, - ACTIONS(306), 1, - anon_sym_assert, - ACTIONS(308), 1, - anon_sym_BANG, - ACTIONS(310), 1, - anon_sym_DQUOTE, - ACTIONS(316), 1, - sym__decimal, - ACTIONS(322), 1, - sym__upname, - ACTIONS(689), 1, - sym__name, - ACTIONS(753), 1, - anon_sym_RPAREN, - ACTIONS(755), 1, - sym_float, - STATE(361), 1, - sym_identifier, - STATE(385), 1, - sym_tuple, - STATE(393), 1, - sym_anonymous_function, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1213), 1, - sym__maybe_record_expression, - STATE(1243), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(360), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(382), 2, - sym_record, - sym_record_update, - ACTIONS(314), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(367), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(567), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [14510] = 4, + [14236] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(747), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(441), 17, + ACTIONS(421), 17, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -17966,10 +17818,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(439), 29, + ACTIONS(419), 28, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_COMMA, anon_sym_POUND, anon_sym_LBRACK, @@ -17996,75 +17847,75 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [14568] = 30, + [14296] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(277), 1, anon_sym_LBRACE, - ACTIONS(286), 1, + ACTIONS(279), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(283), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(285), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(289), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(291), 1, anon_sym_todo, - ACTIONS(302), 1, + ACTIONS(295), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(297), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(299), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(301), 1, anon_sym_BANG, - ACTIONS(310), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(689), 1, - sym__name, - ACTIONS(695), 1, + ACTIONS(691), 1, sym_float, - ACTIONS(757), 1, + ACTIONS(693), 1, + sym__name, + ACTIONS(749), 1, anon_sym_RPAREN, - STATE(361), 1, + STATE(375), 1, sym_identifier, - STATE(385), 1, + STATE(380), 1, sym_tuple, - STATE(393), 1, + STATE(387), 1, sym_anonymous_function, - STATE(1100), 1, + STATE(1116), 1, sym__maybe_function_expression, - STATE(1213), 1, - sym__maybe_record_expression, - STATE(1243), 1, + STATE(1218), 1, sym__maybe_tuple_expression, + STATE(1229), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(360), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(382), 2, + STATE(392), 2, sym_record, sym_record_update, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(367), 5, + STATE(374), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(520), 11, + STATE(509), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -18076,130 +17927,155 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [14678] = 5, + [14406] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(413), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(354), 17, - anon_sym_SLASH, + ACTIONS(277), 1, + anon_sym_LBRACE, + ACTIONS(279), 1, + anon_sym_POUND, + ACTIONS(283), 1, + anon_sym_LBRACK, + ACTIONS(285), 1, + anon_sym_LT_LT, + ACTIONS(287), 1, anon_sym_DASH, + ACTIONS(289), 1, anon_sym_fn, - anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(291), 1, anon_sym_todo, + ACTIONS(295), 1, anon_sym_case, + ACTIONS(297), 1, anon_sym_let, + ACTIONS(299), 1, anon_sym_assert, + ACTIONS(301), 1, anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(352), 28, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, + ACTIONS(303), 1, anon_sym_DQUOTE, + ACTIONS(309), 1, + sym__decimal, + ACTIONS(315), 1, + sym__upname, + ACTIONS(691), 1, sym_float, + ACTIONS(693), 1, + sym__name, + ACTIONS(751), 1, + anon_sym_RPAREN, + STATE(375), 1, + sym_identifier, + STATE(380), 1, + sym_tuple, + STATE(387), 1, + sym_anonymous_function, + STATE(1116), 1, + sym__maybe_function_expression, + STATE(1218), 1, + sym__maybe_tuple_expression, + STATE(1229), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(359), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(392), 2, + sym_record, + sym_record_update, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [14738] = 30, + STATE(374), 5, + sym_expression_group, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(509), 11, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_list, + sym__expression_bit_string, + sym_let, + sym_assert, + sym_negation, + sym_string, + sym_integer, + [14516] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(277), 1, anon_sym_LBRACE, - ACTIONS(286), 1, + ACTIONS(279), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(283), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(285), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(289), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(291), 1, anon_sym_todo, - ACTIONS(302), 1, + ACTIONS(295), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(297), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(299), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(301), 1, anon_sym_BANG, - ACTIONS(310), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(689), 1, + ACTIONS(691), 1, + sym_float, + ACTIONS(693), 1, sym__name, - ACTIONS(759), 1, + ACTIONS(753), 1, anon_sym_RPAREN, - ACTIONS(761), 1, - sym_float, - STATE(361), 1, + STATE(375), 1, sym_identifier, - STATE(385), 1, + STATE(380), 1, sym_tuple, - STATE(393), 1, + STATE(387), 1, sym_anonymous_function, - STATE(1100), 1, + STATE(1116), 1, sym__maybe_function_expression, - STATE(1213), 1, - sym__maybe_record_expression, - STATE(1243), 1, + STATE(1218), 1, sym__maybe_tuple_expression, + STATE(1229), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(360), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(382), 2, + STATE(392), 2, sym_record, sym_record_update, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(367), 5, + STATE(374), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(551), 11, + STATE(509), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -18211,75 +18087,75 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [14848] = 30, + [14626] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(277), 1, anon_sym_LBRACE, - ACTIONS(286), 1, + ACTIONS(279), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(283), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(285), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(289), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(291), 1, anon_sym_todo, - ACTIONS(302), 1, + ACTIONS(295), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(297), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(299), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(301), 1, anon_sym_BANG, - ACTIONS(310), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(689), 1, + ACTIONS(693), 1, sym__name, - ACTIONS(763), 1, + ACTIONS(755), 1, + anon_sym_RBRACK, + ACTIONS(757), 1, sym_float, - STATE(361), 1, + STATE(375), 1, sym_identifier, - STATE(385), 1, + STATE(380), 1, sym_tuple, - STATE(393), 1, + STATE(387), 1, sym_anonymous_function, - STATE(1100), 1, + STATE(1116), 1, sym__maybe_function_expression, - STATE(1196), 1, - sym_case_subjects, - STATE(1213), 1, - sym__maybe_record_expression, - STATE(1243), 1, + STATE(1218), 1, sym__maybe_tuple_expression, + STATE(1229), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(360), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(382), 2, + STATE(392), 2, sym_record, sym_record_update, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(367), 5, + STATE(374), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(554), 11, + STATE(536), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -18291,75 +18167,75 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [14958] = 30, + [14736] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(277), 1, anon_sym_LBRACE, - ACTIONS(286), 1, + ACTIONS(279), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(283), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(285), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(289), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(291), 1, anon_sym_todo, - ACTIONS(302), 1, + ACTIONS(295), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(297), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(299), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(301), 1, anon_sym_BANG, - ACTIONS(310), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(689), 1, + ACTIONS(693), 1, sym__name, - ACTIONS(695), 1, - sym_float, - ACTIONS(765), 1, + ACTIONS(759), 1, anon_sym_RPAREN, - STATE(361), 1, + ACTIONS(761), 1, + sym_float, + STATE(375), 1, sym_identifier, - STATE(385), 1, + STATE(380), 1, sym_tuple, - STATE(393), 1, + STATE(387), 1, sym_anonymous_function, - STATE(1100), 1, + STATE(1116), 1, sym__maybe_function_expression, - STATE(1213), 1, - sym__maybe_record_expression, - STATE(1243), 1, + STATE(1218), 1, sym__maybe_tuple_expression, + STATE(1229), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(360), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(382), 2, + STATE(392), 2, sym_record, sym_record_update, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(367), 5, + STATE(374), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(520), 11, + STATE(563), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -18371,75 +18247,75 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [15068] = 30, + [14846] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(277), 1, anon_sym_LBRACE, - ACTIONS(286), 1, + ACTIONS(279), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(283), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(285), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(289), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(291), 1, anon_sym_todo, - ACTIONS(302), 1, + ACTIONS(295), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(297), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(299), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(301), 1, anon_sym_BANG, - ACTIONS(310), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(689), 1, - sym__name, - ACTIONS(695), 1, + ACTIONS(691), 1, sym_float, - ACTIONS(767), 1, + ACTIONS(693), 1, + sym__name, + ACTIONS(763), 1, anon_sym_RPAREN, - STATE(361), 1, + STATE(375), 1, sym_identifier, - STATE(385), 1, + STATE(380), 1, sym_tuple, - STATE(393), 1, + STATE(387), 1, sym_anonymous_function, - STATE(1100), 1, + STATE(1116), 1, sym__maybe_function_expression, - STATE(1213), 1, - sym__maybe_record_expression, - STATE(1243), 1, + STATE(1218), 1, sym__maybe_tuple_expression, + STATE(1229), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(360), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(382), 2, + STATE(392), 2, sym_record, sym_record_update, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(367), 5, + STATE(374), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(520), 11, + STATE(509), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -18451,75 +18327,75 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [15178] = 30, + [14956] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(277), 1, anon_sym_LBRACE, - ACTIONS(286), 1, + ACTIONS(279), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(283), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(285), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(289), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(291), 1, anon_sym_todo, - ACTIONS(302), 1, + ACTIONS(295), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(297), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(299), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(301), 1, anon_sym_BANG, - ACTIONS(310), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(689), 1, - sym__name, - ACTIONS(763), 1, + ACTIONS(691), 1, sym_float, - STATE(361), 1, + ACTIONS(693), 1, + sym__name, + ACTIONS(765), 1, + anon_sym_RPAREN, + STATE(375), 1, sym_identifier, - STATE(385), 1, + STATE(380), 1, sym_tuple, - STATE(393), 1, + STATE(387), 1, sym_anonymous_function, - STATE(1100), 1, + STATE(1116), 1, sym__maybe_function_expression, - STATE(1213), 1, - sym__maybe_record_expression, - STATE(1235), 1, - sym_case_subjects, - STATE(1243), 1, + STATE(1218), 1, sym__maybe_tuple_expression, + STATE(1229), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(360), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(382), 2, + STATE(392), 2, sym_record, sym_record_update, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(367), 5, + STATE(374), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(554), 11, + STATE(509), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -18531,75 +18407,75 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [15288] = 30, + [15066] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(277), 1, anon_sym_LBRACE, - ACTIONS(286), 1, + ACTIONS(279), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(283), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(285), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(289), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(291), 1, anon_sym_todo, - ACTIONS(302), 1, + ACTIONS(295), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(297), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(299), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(301), 1, anon_sym_BANG, - ACTIONS(310), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(689), 1, - sym__name, - ACTIONS(695), 1, + ACTIONS(691), 1, sym_float, - ACTIONS(769), 1, + ACTIONS(693), 1, + sym__name, + ACTIONS(767), 1, anon_sym_RPAREN, - STATE(361), 1, + STATE(375), 1, sym_identifier, - STATE(385), 1, + STATE(380), 1, sym_tuple, - STATE(393), 1, + STATE(387), 1, sym_anonymous_function, - STATE(1100), 1, + STATE(1116), 1, sym__maybe_function_expression, - STATE(1213), 1, - sym__maybe_record_expression, - STATE(1243), 1, + STATE(1218), 1, sym__maybe_tuple_expression, + STATE(1229), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(360), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(382), 2, + STATE(392), 2, sym_record, sym_record_update, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(367), 5, + STATE(374), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(520), 11, + STATE(509), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -18611,315 +18487,75 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [15398] = 30, + [15176] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(277), 1, anon_sym_LBRACE, - ACTIONS(286), 1, + ACTIONS(279), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(283), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(285), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(289), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(291), 1, anon_sym_todo, - ACTIONS(302), 1, + ACTIONS(295), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(297), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(299), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(301), 1, anon_sym_BANG, - ACTIONS(310), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(689), 1, - sym__name, - ACTIONS(771), 1, - anon_sym_RBRACK, - ACTIONS(773), 1, - sym_float, - STATE(361), 1, - sym_identifier, - STATE(385), 1, - sym_tuple, - STATE(393), 1, - sym_anonymous_function, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1213), 1, - sym__maybe_record_expression, - STATE(1243), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(360), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(382), 2, - sym_record, - sym_record_update, - ACTIONS(314), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(367), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(522), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [15508] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(286), 1, - anon_sym_POUND, - ACTIONS(290), 1, - anon_sym_LBRACK, - ACTIONS(292), 1, - anon_sym_LT_LT, - ACTIONS(294), 1, - anon_sym_DASH, - ACTIONS(296), 1, - anon_sym_fn, - ACTIONS(298), 1, - anon_sym_todo, - ACTIONS(302), 1, - anon_sym_case, - ACTIONS(304), 1, - anon_sym_let, - ACTIONS(306), 1, - anon_sym_assert, - ACTIONS(308), 1, - anon_sym_BANG, - ACTIONS(310), 1, - anon_sym_DQUOTE, - ACTIONS(316), 1, - sym__decimal, - ACTIONS(322), 1, - sym__upname, - ACTIONS(689), 1, - sym__name, - ACTIONS(763), 1, + ACTIONS(691), 1, sym_float, - STATE(361), 1, - sym_identifier, - STATE(385), 1, - sym_tuple, - STATE(393), 1, - sym_anonymous_function, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1213), 1, - sym__maybe_record_expression, - STATE(1243), 1, - sym__maybe_tuple_expression, - STATE(1247), 1, - sym_case_subjects, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(360), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(382), 2, - sym_record, - sym_record_update, - ACTIONS(314), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(367), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(554), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [15618] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(286), 1, - anon_sym_POUND, - ACTIONS(290), 1, - anon_sym_LBRACK, - ACTIONS(292), 1, - anon_sym_LT_LT, - ACTIONS(294), 1, - anon_sym_DASH, - ACTIONS(296), 1, - anon_sym_fn, - ACTIONS(298), 1, - anon_sym_todo, - ACTIONS(302), 1, - anon_sym_case, - ACTIONS(304), 1, - anon_sym_let, - ACTIONS(306), 1, - anon_sym_assert, - ACTIONS(308), 1, - anon_sym_BANG, - ACTIONS(310), 1, - anon_sym_DQUOTE, - ACTIONS(316), 1, - sym__decimal, - ACTIONS(322), 1, - sym__upname, - ACTIONS(689), 1, + ACTIONS(693), 1, sym__name, - ACTIONS(695), 1, - sym_float, - ACTIONS(775), 1, + ACTIONS(769), 1, anon_sym_RPAREN, - STATE(361), 1, + STATE(375), 1, sym_identifier, - STATE(385), 1, + STATE(380), 1, sym_tuple, - STATE(393), 1, + STATE(387), 1, sym_anonymous_function, - STATE(1100), 1, + STATE(1116), 1, sym__maybe_function_expression, - STATE(1213), 1, - sym__maybe_record_expression, - STATE(1243), 1, + STATE(1218), 1, sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(360), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(382), 2, - sym_record, - sym_record_update, - ACTIONS(314), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(367), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(520), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [15728] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(286), 1, - anon_sym_POUND, - ACTIONS(290), 1, - anon_sym_LBRACK, - ACTIONS(292), 1, - anon_sym_LT_LT, - ACTIONS(294), 1, - anon_sym_DASH, - ACTIONS(296), 1, - anon_sym_fn, - ACTIONS(298), 1, - anon_sym_todo, - ACTIONS(302), 1, - anon_sym_case, - ACTIONS(304), 1, - anon_sym_let, - ACTIONS(306), 1, - anon_sym_assert, - ACTIONS(308), 1, - anon_sym_BANG, - ACTIONS(310), 1, - anon_sym_DQUOTE, - ACTIONS(316), 1, - sym__decimal, - ACTIONS(322), 1, - sym__upname, - ACTIONS(689), 1, - sym__name, - ACTIONS(777), 1, - anon_sym_RBRACK, - ACTIONS(779), 1, - sym_float, - STATE(361), 1, - sym_identifier, - STATE(385), 1, - sym_tuple, - STATE(393), 1, - sym_anonymous_function, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1213), 1, + STATE(1229), 1, sym__maybe_record_expression, - STATE(1243), 1, - sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(360), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(382), 2, + STATE(392), 2, sym_record, sym_record_update, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(367), 5, + STATE(374), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(531), 11, + STATE(509), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -18931,13 +18567,15 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [15838] = 4, + [15286] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(271), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(437), 17, + ACTIONS(266), 17, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -18955,10 +18593,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(435), 29, + ACTIONS(264), 28, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_COMMA, anon_sym_POUND, anon_sym_LBRACK, @@ -18985,13 +18622,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [15896] = 4, + [15346] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(405), 17, + ACTIONS(437), 17, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -19009,12 +18646,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(403), 29, + ACTIONS(435), 29, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_COMMA, anon_sym_POUND, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_GT_GT, @@ -19039,13 +18676,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [15954] = 4, + [15404] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(419), 17, + ACTIONS(427), 17, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -19063,12 +18700,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(417), 29, + ACTIONS(425), 29, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_COMMA, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_GT_GT, @@ -19093,75 +18730,75 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [16012] = 30, + [15462] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(277), 1, anon_sym_LBRACE, - ACTIONS(286), 1, + ACTIONS(279), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(283), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(285), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(289), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(291), 1, anon_sym_todo, - ACTIONS(302), 1, + ACTIONS(295), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(297), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(299), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(301), 1, anon_sym_BANG, - ACTIONS(310), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(689), 1, + ACTIONS(693), 1, sym__name, - ACTIONS(763), 1, + ACTIONS(771), 1, + anon_sym_RPAREN, + ACTIONS(773), 1, sym_float, - STATE(361), 1, + STATE(375), 1, sym_identifier, - STATE(385), 1, + STATE(380), 1, sym_tuple, - STATE(393), 1, + STATE(387), 1, sym_anonymous_function, - STATE(1100), 1, + STATE(1116), 1, sym__maybe_function_expression, - STATE(1213), 1, - sym__maybe_record_expression, - STATE(1243), 1, + STATE(1218), 1, sym__maybe_tuple_expression, - STATE(1251), 1, - sym_case_subjects, + STATE(1229), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(360), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(382), 2, + STATE(392), 2, sym_record, sym_record_update, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(367), 5, + STATE(374), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(554), 11, + STATE(571), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -19173,73 +18810,75 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [16122] = 29, + [15572] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(781), 1, + ACTIONS(277), 1, anon_sym_LBRACE, - ACTIONS(783), 1, + ACTIONS(279), 1, anon_sym_POUND, - ACTIONS(785), 1, + ACTIONS(283), 1, anon_sym_LBRACK, - ACTIONS(787), 1, + ACTIONS(285), 1, anon_sym_LT_LT, - ACTIONS(789), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(791), 1, + ACTIONS(289), 1, anon_sym_fn, - ACTIONS(793), 1, + ACTIONS(291), 1, anon_sym_todo, - ACTIONS(795), 1, + ACTIONS(295), 1, anon_sym_case, - ACTIONS(797), 1, + ACTIONS(297), 1, anon_sym_let, - ACTIONS(799), 1, + ACTIONS(299), 1, anon_sym_assert, - ACTIONS(801), 1, + ACTIONS(301), 1, anon_sym_BANG, - ACTIONS(803), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(805), 1, - sym_float, - ACTIONS(809), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(811), 1, - sym__name, - ACTIONS(813), 1, + ACTIONS(315), 1, sym__upname, - STATE(301), 1, + ACTIONS(693), 1, + sym__name, + ACTIONS(729), 1, + sym_float, + STATE(375), 1, sym_identifier, - STATE(322), 1, + STATE(380), 1, sym_tuple, - STATE(325), 1, + STATE(387), 1, sym_anonymous_function, - STATE(1140), 1, + STATE(1116), 1, sym__maybe_function_expression, - STATE(1185), 1, + STATE(1198), 1, + sym_case_subjects, + STATE(1218), 1, sym__maybe_tuple_expression, - STATE(1224), 1, + STATE(1229), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(299), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(326), 2, + STATE(392), 2, sym_record, sym_record_update, - ACTIONS(807), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(302), 5, + STATE(374), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(333), 11, + STATE(568), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -19251,73 +18890,75 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [16229] = 29, + [15682] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(277), 1, anon_sym_LBRACE, - ACTIONS(451), 1, + ACTIONS(279), 1, anon_sym_POUND, - ACTIONS(453), 1, + ACTIONS(283), 1, anon_sym_LBRACK, - ACTIONS(455), 1, + ACTIONS(285), 1, anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(459), 1, + ACTIONS(289), 1, anon_sym_fn, - ACTIONS(463), 1, + ACTIONS(291), 1, anon_sym_todo, - ACTIONS(465), 1, + ACTIONS(295), 1, anon_sym_case, - ACTIONS(467), 1, + ACTIONS(297), 1, anon_sym_let, - ACTIONS(469), 1, + ACTIONS(299), 1, anon_sym_assert, - ACTIONS(471), 1, + ACTIONS(301), 1, anon_sym_BANG, - ACTIONS(473), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(815), 1, + ACTIONS(693), 1, + sym__name, + ACTIONS(729), 1, sym_float, - STATE(141), 1, + STATE(375), 1, sym_identifier, - STATE(158), 1, + STATE(380), 1, sym_tuple, - STATE(164), 1, + STATE(387), 1, sym_anonymous_function, - STATE(1095), 1, + STATE(1116), 1, sym__maybe_function_expression, - STATE(1183), 1, - sym__maybe_record_expression, - STATE(1246), 1, + STATE(1218), 1, sym__maybe_tuple_expression, + STATE(1229), 1, + sym__maybe_record_expression, + STATE(1251), 1, + sym_case_subjects, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(109), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(392), 2, sym_record, sym_record_update, - ACTIONS(477), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(140), 5, + STATE(374), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(287), 11, + STATE(568), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -19329,73 +18970,75 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [16336] = 29, + [15792] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(277), 1, anon_sym_LBRACE, - ACTIONS(286), 1, + ACTIONS(279), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(283), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(285), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(289), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(291), 1, anon_sym_todo, - ACTIONS(302), 1, + ACTIONS(295), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(297), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(299), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(301), 1, anon_sym_BANG, - ACTIONS(310), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(689), 1, + ACTIONS(693), 1, sym__name, - ACTIONS(817), 1, + ACTIONS(775), 1, + anon_sym_RBRACK, + ACTIONS(777), 1, sym_float, - STATE(361), 1, + STATE(375), 1, sym_identifier, - STATE(385), 1, + STATE(380), 1, sym_tuple, - STATE(393), 1, + STATE(387), 1, sym_anonymous_function, - STATE(1100), 1, + STATE(1116), 1, sym__maybe_function_expression, - STATE(1213), 1, - sym__maybe_record_expression, - STATE(1243), 1, + STATE(1218), 1, sym__maybe_tuple_expression, + STATE(1229), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(360), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(382), 2, + STATE(392), 2, sym_record, sym_record_update, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(367), 5, + STATE(374), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(413), 11, + STATE(543), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -19407,73 +19050,75 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [16443] = 29, + [15902] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(277), 1, anon_sym_LBRACE, - ACTIONS(286), 1, + ACTIONS(279), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(283), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(285), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(289), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(291), 1, anon_sym_todo, - ACTIONS(302), 1, + ACTIONS(295), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(297), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(299), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(301), 1, anon_sym_BANG, - ACTIONS(310), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(689), 1, - sym__name, - ACTIONS(819), 1, + ACTIONS(691), 1, sym_float, - STATE(361), 1, + ACTIONS(693), 1, + sym__name, + ACTIONS(779), 1, + anon_sym_RPAREN, + STATE(375), 1, sym_identifier, - STATE(385), 1, + STATE(380), 1, sym_tuple, - STATE(393), 1, + STATE(387), 1, sym_anonymous_function, - STATE(1100), 1, + STATE(1116), 1, sym__maybe_function_expression, - STATE(1213), 1, - sym__maybe_record_expression, - STATE(1243), 1, + STATE(1218), 1, sym__maybe_tuple_expression, + STATE(1229), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(360), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(382), 2, + STATE(392), 2, sym_record, sym_record_update, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(367), 5, + STATE(374), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(414), 11, + STATE(509), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -19485,73 +19130,75 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [16550] = 29, + [16012] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(277), 1, anon_sym_LBRACE, - ACTIONS(286), 1, + ACTIONS(279), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(283), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(285), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(289), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(291), 1, anon_sym_todo, - ACTIONS(302), 1, + ACTIONS(295), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(297), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(299), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(301), 1, anon_sym_BANG, - ACTIONS(310), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(689), 1, + ACTIONS(693), 1, sym__name, - ACTIONS(821), 1, + ACTIONS(729), 1, sym_float, - STATE(361), 1, + STATE(375), 1, sym_identifier, - STATE(385), 1, + STATE(380), 1, sym_tuple, - STATE(393), 1, + STATE(387), 1, sym_anonymous_function, - STATE(1100), 1, + STATE(1116), 1, sym__maybe_function_expression, - STATE(1213), 1, - sym__maybe_record_expression, - STATE(1243), 1, + STATE(1218), 1, sym__maybe_tuple_expression, + STATE(1229), 1, + sym__maybe_record_expression, + STATE(1263), 1, + sym_case_subjects, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(360), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(382), 2, + STATE(392), 2, sym_record, sym_record_update, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(367), 5, + STATE(374), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(613), 11, + STATE(568), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -19563,77 +19210,75 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [16657] = 31, + [16122] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(11), 1, anon_sym_LBRACE, - ACTIONS(451), 1, + ACTIONS(17), 1, anon_sym_POUND, - ACTIONS(453), 1, + ACTIONS(19), 1, anon_sym_LBRACK, - ACTIONS(455), 1, + ACTIONS(21), 1, anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(23), 1, anon_sym_DASH, - ACTIONS(459), 1, - anon_sym_fn, - ACTIONS(463), 1, + ACTIONS(33), 1, anon_sym_todo, - ACTIONS(465), 1, + ACTIONS(35), 1, anon_sym_case, - ACTIONS(473), 1, + ACTIONS(37), 1, + anon_sym_let, + ACTIONS(39), 1, + anon_sym_assert, + ACTIONS(41), 1, + anon_sym_BANG, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(53), 1, sym__decimal, - ACTIONS(481), 1, + ACTIONS(55), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(57), 1, sym__upname, - ACTIONS(823), 1, - anon_sym_GT_GT, - ACTIONS(825), 1, - anon_sym_let, - ACTIONS(827), 1, - anon_sym_assert, - ACTIONS(829), 1, - anon_sym_BANG, - ACTIONS(831), 1, + ACTIONS(781), 1, + anon_sym_fn, + ACTIONS(783), 1, sym_float, - STATE(141), 1, + STATE(25), 1, sym_identifier, - STATE(158), 1, - sym_tuple, - STATE(164), 1, + STATE(29), 1, sym_anonymous_function, - STATE(918), 1, - sym_expression_bit_string_segment, - STATE(1095), 1, + STATE(40), 1, + sym_tuple, + STATE(1051), 1, sym__maybe_function_expression, - STATE(1183), 1, - sym__maybe_record_expression, - STATE(1246), 1, + STATE(1178), 1, sym__maybe_tuple_expression, + STATE(1232), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(109), 2, + STATE(6), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(39), 2, sym_record, sym_record_update, - ACTIONS(477), 3, + ACTIONS(51), 3, sym__hex, sym__octal, sym__binary, - STATE(140), 5, + STATE(8), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(914), 9, + STATE(69), 11, + sym__expression, + sym_binary_expression, sym__expression_unit, sym_todo, sym_list, @@ -19643,73 +19288,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [16768] = 29, + [16229] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(286), 1, + ACTIONS(279), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(283), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(285), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(289), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(291), 1, anon_sym_todo, - ACTIONS(302), 1, + ACTIONS(295), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(297), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(299), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(301), 1, anon_sym_BANG, - ACTIONS(310), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(689), 1, - sym__name, - ACTIONS(833), 1, + ACTIONS(691), 1, sym_float, - STATE(361), 1, + ACTIONS(693), 1, + sym__name, + ACTIONS(785), 1, + anon_sym_LBRACE, + STATE(375), 1, sym_identifier, - STATE(385), 1, + STATE(380), 1, sym_tuple, - STATE(393), 1, + STATE(387), 1, sym_anonymous_function, - STATE(1100), 1, + STATE(1116), 1, sym__maybe_function_expression, - STATE(1213), 1, - sym__maybe_record_expression, - STATE(1243), 1, + STATE(1218), 1, sym__maybe_tuple_expression, + STATE(1229), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(360), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(382), 2, + STATE(392), 2, sym_record, sym_record_update, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(367), 5, + STATE(374), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(611), 11, + STATE(509), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -19721,73 +19366,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [16875] = 29, + [16336] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(277), 1, anon_sym_LBRACE, - ACTIONS(286), 1, + ACTIONS(279), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(283), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(285), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(289), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(291), 1, anon_sym_todo, - ACTIONS(302), 1, + ACTIONS(295), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(297), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(299), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(301), 1, anon_sym_BANG, - ACTIONS(310), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(689), 1, + ACTIONS(693), 1, sym__name, - ACTIONS(835), 1, + ACTIONS(788), 1, sym_float, - STATE(361), 1, + STATE(375), 1, sym_identifier, - STATE(385), 1, + STATE(380), 1, sym_tuple, - STATE(393), 1, + STATE(387), 1, sym_anonymous_function, - STATE(1100), 1, + STATE(1116), 1, sym__maybe_function_expression, - STATE(1213), 1, - sym__maybe_record_expression, - STATE(1243), 1, + STATE(1218), 1, sym__maybe_tuple_expression, + STATE(1229), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(360), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(382), 2, + STATE(392), 2, sym_record, sym_record_update, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(367), 5, + STATE(374), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(608), 11, + STATE(597), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -19799,73 +19444,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [16982] = 29, + [16443] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(277), 1, anon_sym_LBRACE, - ACTIONS(286), 1, + ACTIONS(279), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(283), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(285), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(289), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(291), 1, anon_sym_todo, - ACTIONS(302), 1, + ACTIONS(295), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(297), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(299), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(301), 1, anon_sym_BANG, - ACTIONS(310), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(689), 1, + ACTIONS(693), 1, sym__name, - ACTIONS(837), 1, + ACTIONS(790), 1, sym_float, - STATE(361), 1, + STATE(375), 1, sym_identifier, - STATE(385), 1, + STATE(380), 1, sym_tuple, - STATE(393), 1, + STATE(387), 1, sym_anonymous_function, - STATE(1100), 1, + STATE(1116), 1, sym__maybe_function_expression, - STATE(1213), 1, - sym__maybe_record_expression, - STATE(1243), 1, + STATE(1218), 1, sym__maybe_tuple_expression, + STATE(1229), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(360), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(382), 2, + STATE(392), 2, sym_record, sym_record_update, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(367), 5, + STATE(374), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(598), 11, + STATE(615), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -19877,75 +19522,77 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [17089] = 29, + [16550] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(447), 1, anon_sym_LBRACE, - ACTIONS(286), 1, + ACTIONS(451), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(453), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(455), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(457), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(459), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(463), 1, anon_sym_todo, - ACTIONS(302), 1, + ACTIONS(465), 1, anon_sym_case, - ACTIONS(304), 1, - anon_sym_let, - ACTIONS(306), 1, - anon_sym_assert, - ACTIONS(308), 1, - anon_sym_BANG, - ACTIONS(310), 1, + ACTIONS(473), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(479), 1, sym__decimal, - ACTIONS(322), 1, - sym__upname, - ACTIONS(689), 1, + ACTIONS(481), 1, sym__name, - ACTIONS(839), 1, + ACTIONS(483), 1, + sym__upname, + ACTIONS(792), 1, + anon_sym_GT_GT, + ACTIONS(794), 1, + anon_sym_let, + ACTIONS(796), 1, + anon_sym_assert, + ACTIONS(798), 1, + anon_sym_BANG, + ACTIONS(800), 1, sym_float, - STATE(361), 1, + STATE(133), 1, sym_identifier, - STATE(385), 1, + STATE(163), 1, sym_tuple, - STATE(393), 1, + STATE(175), 1, sym_anonymous_function, + STATE(930), 1, + sym_expression_bit_string_segment, STATE(1100), 1, sym__maybe_function_expression, - STATE(1213), 1, + STATE(1199), 1, sym__maybe_record_expression, - STATE(1243), 1, + STATE(1231), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(360), 2, + STATE(121), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(382), 2, + STATE(164), 2, sym_record, sym_record_update, - ACTIONS(314), 3, + ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(367), 5, + STATE(151), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(597), 11, - sym__expression, - sym_binary_expression, + STATE(927), 9, sym__expression_unit, sym_todo, sym_list, @@ -19955,73 +19602,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [17196] = 29, + [16661] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(802), 1, anon_sym_LBRACE, - ACTIONS(286), 1, + ACTIONS(804), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(806), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(808), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(810), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(812), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(814), 1, anon_sym_todo, - ACTIONS(302), 1, + ACTIONS(816), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(818), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(820), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(822), 1, anon_sym_BANG, - ACTIONS(310), 1, + ACTIONS(824), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(826), 1, + sym_float, + ACTIONS(830), 1, sym__decimal, - ACTIONS(322), 1, - sym__upname, - ACTIONS(689), 1, + ACTIONS(832), 1, sym__name, - ACTIONS(841), 1, - sym_float, - STATE(361), 1, + ACTIONS(834), 1, + sym__upname, + STATE(305), 1, sym_identifier, - STATE(385), 1, + STATE(327), 1, sym_tuple, - STATE(393), 1, + STATE(328), 1, sym_anonymous_function, - STATE(1100), 1, + STATE(1156), 1, sym__maybe_function_expression, - STATE(1213), 1, - sym__maybe_record_expression, - STATE(1243), 1, + STATE(1195), 1, sym__maybe_tuple_expression, + STATE(1240), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(360), 2, + STATE(299), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(382), 2, + STATE(325), 2, sym_record, sym_record_update, - ACTIONS(314), 3, + ACTIONS(828), 3, sym__hex, sym__octal, sym__binary, - STATE(367), 5, + STATE(304), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(604), 11, + STATE(347), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -20033,73 +19680,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [17303] = 29, + [16768] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(277), 1, anon_sym_LBRACE, - ACTIONS(286), 1, + ACTIONS(279), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(283), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(285), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(289), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(291), 1, anon_sym_todo, - ACTIONS(302), 1, + ACTIONS(295), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(297), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(299), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(301), 1, anon_sym_BANG, - ACTIONS(310), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(689), 1, + ACTIONS(693), 1, sym__name, - ACTIONS(843), 1, + ACTIONS(836), 1, sym_float, - STATE(361), 1, + STATE(375), 1, sym_identifier, - STATE(385), 1, + STATE(380), 1, sym_tuple, - STATE(393), 1, + STATE(387), 1, sym_anonymous_function, - STATE(1100), 1, + STATE(1116), 1, sym__maybe_function_expression, - STATE(1213), 1, - sym__maybe_record_expression, - STATE(1243), 1, + STATE(1218), 1, sym__maybe_tuple_expression, + STATE(1229), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(360), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(382), 2, + STATE(392), 2, sym_record, sym_record_update, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(367), 5, + STATE(374), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(612), 11, + STATE(590), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -20111,126 +19758,151 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [17410] = 4, + [16875] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(651), 17, - anon_sym_SLASH, + ACTIONS(277), 1, + anon_sym_LBRACE, + ACTIONS(279), 1, + anon_sym_POUND, + ACTIONS(283), 1, + anon_sym_LBRACK, + ACTIONS(285), 1, + anon_sym_LT_LT, + ACTIONS(287), 1, anon_sym_DASH, + ACTIONS(289), 1, anon_sym_fn, - anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(291), 1, anon_sym_todo, + ACTIONS(295), 1, anon_sym_case, + ACTIONS(297), 1, anon_sym_let, + ACTIONS(299), 1, anon_sym_assert, + ACTIONS(301), 1, anon_sym_BANG, + ACTIONS(303), 1, + anon_sym_DQUOTE, + ACTIONS(309), 1, sym__decimal, + ACTIONS(315), 1, + sym__upname, + ACTIONS(693), 1, sym__name, - ACTIONS(649), 28, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DQUOTE, + ACTIONS(838), 1, sym_float, + STATE(375), 1, + sym_identifier, + STATE(380), 1, + sym_tuple, + STATE(387), 1, + sym_anonymous_function, + STATE(1116), 1, + sym__maybe_function_expression, + STATE(1218), 1, + sym__maybe_tuple_expression, + STATE(1229), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(359), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(392), 2, + sym_record, + sym_record_update, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [17467] = 29, + STATE(374), 5, + sym_expression_group, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(611), 11, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_list, + sym__expression_bit_string, + sym_let, + sym_assert, + sym_negation, + sym_string, + sym_integer, + [16982] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(277), 1, anon_sym_LBRACE, - ACTIONS(286), 1, + ACTIONS(279), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(283), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(285), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(289), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(291), 1, anon_sym_todo, - ACTIONS(302), 1, + ACTIONS(295), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(297), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(299), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(301), 1, anon_sym_BANG, - ACTIONS(310), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(689), 1, + ACTIONS(693), 1, sym__name, - ACTIONS(845), 1, + ACTIONS(840), 1, sym_float, - STATE(361), 1, + STATE(375), 1, sym_identifier, - STATE(385), 1, + STATE(380), 1, sym_tuple, - STATE(393), 1, + STATE(387), 1, sym_anonymous_function, - STATE(1100), 1, + STATE(1116), 1, sym__maybe_function_expression, - STATE(1213), 1, - sym__maybe_record_expression, - STATE(1243), 1, + STATE(1218), 1, sym__maybe_tuple_expression, + STATE(1229), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(360), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(382), 2, + STATE(392), 2, sym_record, sym_record_update, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(367), 5, + STATE(374), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(410), 11, + STATE(616), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -20242,126 +19914,229 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [17574] = 4, + [17089] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(497), 17, - anon_sym_SLASH, + ACTIONS(277), 1, + anon_sym_LBRACE, + ACTIONS(279), 1, + anon_sym_POUND, + ACTIONS(283), 1, + anon_sym_LBRACK, + ACTIONS(285), 1, + anon_sym_LT_LT, + ACTIONS(287), 1, anon_sym_DASH, + ACTIONS(289), 1, anon_sym_fn, - anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(291), 1, anon_sym_todo, + ACTIONS(295), 1, anon_sym_case, + ACTIONS(297), 1, anon_sym_let, + ACTIONS(299), 1, anon_sym_assert, + ACTIONS(301), 1, anon_sym_BANG, + ACTIONS(303), 1, + anon_sym_DQUOTE, + ACTIONS(309), 1, sym__decimal, + ACTIONS(315), 1, + sym__upname, + ACTIONS(693), 1, sym__name, - ACTIONS(495), 28, + ACTIONS(842), 1, + sym_float, + STATE(375), 1, + sym_identifier, + STATE(380), 1, + sym_tuple, + STATE(387), 1, + sym_anonymous_function, + STATE(1116), 1, + sym__maybe_function_expression, + STATE(1218), 1, + sym__maybe_tuple_expression, + STATE(1229), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(359), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(392), 2, + sym_record, + sym_record_update, + ACTIONS(307), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(374), 5, + sym_expression_group, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(588), 11, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_list, + sym__expression_bit_string, + sym_let, + sym_assert, + sym_negation, + sym_string, + sym_integer, + [17196] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(277), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(279), 1, anon_sym_POUND, + ACTIONS(283), 1, anon_sym_LBRACK, + ACTIONS(285), 1, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, + ACTIONS(287), 1, + anon_sym_DASH, + ACTIONS(289), 1, + anon_sym_fn, + ACTIONS(291), 1, + anon_sym_todo, + ACTIONS(295), 1, + anon_sym_case, + ACTIONS(297), 1, + anon_sym_let, + ACTIONS(299), 1, + anon_sym_assert, + ACTIONS(301), 1, + anon_sym_BANG, + ACTIONS(303), 1, anon_sym_DQUOTE, + ACTIONS(309), 1, + sym__decimal, + ACTIONS(315), 1, + sym__upname, + ACTIONS(693), 1, + sym__name, + ACTIONS(844), 1, sym_float, + STATE(375), 1, + sym_identifier, + STATE(380), 1, + sym_tuple, + STATE(387), 1, + sym_anonymous_function, + STATE(1116), 1, + sym__maybe_function_expression, + STATE(1218), 1, + sym__maybe_tuple_expression, + STATE(1229), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(359), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(392), 2, + sym_record, + sym_record_update, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [17631] = 29, + STATE(374), 5, + sym_expression_group, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(607), 11, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_list, + sym__expression_bit_string, + sym_let, + sym_assert, + sym_negation, + sym_string, + sym_integer, + [17303] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(802), 1, anon_sym_LBRACE, - ACTIONS(286), 1, + ACTIONS(804), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(806), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(808), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(810), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(812), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(814), 1, anon_sym_todo, - ACTIONS(302), 1, + ACTIONS(816), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(818), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(820), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(822), 1, anon_sym_BANG, - ACTIONS(310), 1, + ACTIONS(824), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(830), 1, sym__decimal, - ACTIONS(322), 1, - sym__upname, - ACTIONS(689), 1, + ACTIONS(832), 1, sym__name, - ACTIONS(847), 1, + ACTIONS(834), 1, + sym__upname, + ACTIONS(846), 1, sym_float, - STATE(361), 1, + STATE(305), 1, sym_identifier, - STATE(385), 1, + STATE(327), 1, sym_tuple, - STATE(393), 1, + STATE(328), 1, sym_anonymous_function, - STATE(1100), 1, + STATE(1156), 1, sym__maybe_function_expression, - STATE(1213), 1, - sym__maybe_record_expression, - STATE(1243), 1, + STATE(1195), 1, sym__maybe_tuple_expression, + STATE(1240), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(360), 2, + STATE(299), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(382), 2, + STATE(325), 2, sym_record, sym_record_update, - ACTIONS(314), 3, + ACTIONS(828), 3, sym__hex, sym__octal, sym__binary, - STATE(367), 5, + STATE(304), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(407), 11, + STATE(332), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -20373,73 +20148,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [17738] = 29, + [17410] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(277), 1, anon_sym_LBRACE, - ACTIONS(286), 1, + ACTIONS(279), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(283), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(285), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(289), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(291), 1, anon_sym_todo, - ACTIONS(302), 1, + ACTIONS(295), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(297), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(299), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(301), 1, anon_sym_BANG, - ACTIONS(310), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(689), 1, + ACTIONS(693), 1, sym__name, - ACTIONS(849), 1, + ACTIONS(848), 1, sym_float, - STATE(361), 1, + STATE(375), 1, sym_identifier, - STATE(385), 1, + STATE(380), 1, sym_tuple, - STATE(393), 1, + STATE(387), 1, sym_anonymous_function, - STATE(1100), 1, + STATE(1116), 1, sym__maybe_function_expression, - STATE(1213), 1, - sym__maybe_record_expression, - STATE(1243), 1, + STATE(1218), 1, sym__maybe_tuple_expression, + STATE(1229), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(360), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(382), 2, + STATE(392), 2, sym_record, sym_record_update, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(367), 5, + STATE(374), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(406), 11, + STATE(592), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -20451,73 +20226,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [17845] = 29, + [17517] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(781), 1, + ACTIONS(277), 1, anon_sym_LBRACE, - ACTIONS(783), 1, + ACTIONS(279), 1, anon_sym_POUND, - ACTIONS(785), 1, + ACTIONS(283), 1, anon_sym_LBRACK, - ACTIONS(787), 1, + ACTIONS(285), 1, anon_sym_LT_LT, - ACTIONS(789), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(791), 1, + ACTIONS(289), 1, anon_sym_fn, - ACTIONS(793), 1, + ACTIONS(291), 1, anon_sym_todo, - ACTIONS(795), 1, + ACTIONS(295), 1, anon_sym_case, - ACTIONS(797), 1, + ACTIONS(297), 1, anon_sym_let, - ACTIONS(799), 1, + ACTIONS(299), 1, anon_sym_assert, - ACTIONS(801), 1, + ACTIONS(301), 1, anon_sym_BANG, - ACTIONS(803), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(809), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(811), 1, - sym__name, - ACTIONS(813), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(851), 1, + ACTIONS(693), 1, + sym__name, + ACTIONS(850), 1, sym_float, - STATE(301), 1, + STATE(375), 1, sym_identifier, - STATE(322), 1, + STATE(380), 1, sym_tuple, - STATE(325), 1, + STATE(387), 1, sym_anonymous_function, - STATE(1140), 1, + STATE(1116), 1, sym__maybe_function_expression, - STATE(1185), 1, + STATE(1218), 1, sym__maybe_tuple_expression, - STATE(1224), 1, + STATE(1229), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(299), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(326), 2, + STATE(392), 2, sym_record, sym_record_update, - ACTIONS(807), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(302), 5, + STATE(374), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(330), 11, + STATE(602), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -20529,73 +20304,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [17952] = 29, + [17624] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(802), 1, anon_sym_LBRACE, - ACTIONS(286), 1, + ACTIONS(804), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(806), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(808), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(810), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(812), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(814), 1, anon_sym_todo, - ACTIONS(302), 1, + ACTIONS(816), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(818), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(820), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(822), 1, anon_sym_BANG, - ACTIONS(310), 1, + ACTIONS(824), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(830), 1, sym__decimal, - ACTIONS(322), 1, - sym__upname, - ACTIONS(689), 1, + ACTIONS(832), 1, sym__name, - ACTIONS(853), 1, + ACTIONS(834), 1, + sym__upname, + ACTIONS(852), 1, sym_float, - STATE(361), 1, + STATE(305), 1, sym_identifier, - STATE(385), 1, + STATE(327), 1, sym_tuple, - STATE(393), 1, + STATE(328), 1, sym_anonymous_function, - STATE(1100), 1, + STATE(1156), 1, sym__maybe_function_expression, - STATE(1213), 1, - sym__maybe_record_expression, - STATE(1243), 1, + STATE(1195), 1, sym__maybe_tuple_expression, + STATE(1240), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(360), 2, + STATE(299), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(382), 2, + STATE(325), 2, sym_record, sym_record_update, - ACTIONS(314), 3, + ACTIONS(828), 3, sym__hex, sym__octal, sym__binary, - STATE(367), 5, + STATE(304), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(404), 11, + STATE(339), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -20607,73 +20382,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [18059] = 29, + [17731] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(277), 1, anon_sym_LBRACE, - ACTIONS(286), 1, + ACTIONS(279), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(283), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(285), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(289), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(291), 1, anon_sym_todo, - ACTIONS(302), 1, + ACTIONS(295), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(297), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(299), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(301), 1, anon_sym_BANG, - ACTIONS(310), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(689), 1, + ACTIONS(693), 1, sym__name, - ACTIONS(855), 1, + ACTIONS(854), 1, sym_float, - STATE(361), 1, + STATE(375), 1, sym_identifier, - STATE(385), 1, + STATE(380), 1, sym_tuple, - STATE(393), 1, + STATE(387), 1, sym_anonymous_function, - STATE(1100), 1, + STATE(1116), 1, sym__maybe_function_expression, - STATE(1213), 1, - sym__maybe_record_expression, - STATE(1243), 1, + STATE(1218), 1, sym__maybe_tuple_expression, + STATE(1229), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(360), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(382), 2, + STATE(392), 2, sym_record, sym_record_update, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(367), 5, + STATE(374), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(605), 11, + STATE(614), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -20685,73 +20460,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [18166] = 29, + [17838] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(277), 1, anon_sym_LBRACE, - ACTIONS(286), 1, + ACTIONS(279), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(283), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(285), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(289), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(291), 1, anon_sym_todo, - ACTIONS(302), 1, + ACTIONS(295), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(297), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(299), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(301), 1, anon_sym_BANG, - ACTIONS(310), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(689), 1, + ACTIONS(693), 1, sym__name, - ACTIONS(857), 1, + ACTIONS(856), 1, sym_float, - STATE(361), 1, + STATE(375), 1, sym_identifier, - STATE(385), 1, + STATE(380), 1, sym_tuple, - STATE(393), 1, + STATE(387), 1, sym_anonymous_function, - STATE(1100), 1, + STATE(1116), 1, sym__maybe_function_expression, - STATE(1213), 1, - sym__maybe_record_expression, - STATE(1243), 1, + STATE(1218), 1, sym__maybe_tuple_expression, + STATE(1229), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(360), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(382), 2, + STATE(392), 2, sym_record, sym_record_update, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(367), 5, + STATE(374), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(431), 11, + STATE(604), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -20763,73 +20538,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [18273] = 29, + [17945] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(277), 1, anon_sym_LBRACE, - ACTIONS(286), 1, + ACTIONS(279), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(283), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(285), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(289), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(291), 1, anon_sym_todo, - ACTIONS(302), 1, + ACTIONS(295), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(297), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(299), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(301), 1, anon_sym_BANG, - ACTIONS(310), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(689), 1, + ACTIONS(693), 1, sym__name, - ACTIONS(859), 1, + ACTIONS(858), 1, sym_float, - STATE(361), 1, + STATE(375), 1, sym_identifier, - STATE(385), 1, + STATE(380), 1, sym_tuple, - STATE(393), 1, + STATE(387), 1, sym_anonymous_function, - STATE(1100), 1, + STATE(1116), 1, sym__maybe_function_expression, - STATE(1213), 1, - sym__maybe_record_expression, - STATE(1243), 1, + STATE(1218), 1, sym__maybe_tuple_expression, + STATE(1229), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(360), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(382), 2, + STATE(392), 2, sym_record, sym_record_update, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(367), 5, + STATE(374), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(615), 11, + STATE(596), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -20841,73 +20616,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [18380] = 29, + [18052] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(802), 1, anon_sym_LBRACE, - ACTIONS(286), 1, + ACTIONS(804), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(806), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(808), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(810), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(812), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(814), 1, anon_sym_todo, - ACTIONS(302), 1, + ACTIONS(816), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(818), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(820), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(822), 1, anon_sym_BANG, - ACTIONS(310), 1, + ACTIONS(824), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(830), 1, sym__decimal, - ACTIONS(322), 1, - sym__upname, - ACTIONS(689), 1, + ACTIONS(832), 1, sym__name, - ACTIONS(861), 1, + ACTIONS(834), 1, + sym__upname, + ACTIONS(860), 1, sym_float, - STATE(361), 1, + STATE(305), 1, sym_identifier, - STATE(385), 1, + STATE(327), 1, sym_tuple, - STATE(393), 1, + STATE(328), 1, sym_anonymous_function, - STATE(1100), 1, + STATE(1156), 1, sym__maybe_function_expression, - STATE(1213), 1, - sym__maybe_record_expression, - STATE(1243), 1, + STATE(1195), 1, sym__maybe_tuple_expression, + STATE(1240), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(360), 2, + STATE(299), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(382), 2, + STATE(325), 2, sym_record, sym_record_update, - ACTIONS(314), 3, + ACTIONS(828), 3, sym__hex, sym__octal, sym__binary, - STATE(367), 5, + STATE(304), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(588), 11, + STATE(331), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -20919,73 +20694,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [18487] = 29, + [18159] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(802), 1, anon_sym_LBRACE, - ACTIONS(286), 1, + ACTIONS(804), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(806), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(808), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(810), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(812), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(814), 1, anon_sym_todo, - ACTIONS(302), 1, + ACTIONS(816), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(818), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(820), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(822), 1, anon_sym_BANG, - ACTIONS(310), 1, + ACTIONS(824), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(830), 1, sym__decimal, - ACTIONS(322), 1, - sym__upname, - ACTIONS(689), 1, + ACTIONS(832), 1, sym__name, - ACTIONS(863), 1, + ACTIONS(834), 1, + sym__upname, + ACTIONS(862), 1, sym_float, - STATE(361), 1, + STATE(305), 1, sym_identifier, - STATE(385), 1, + STATE(327), 1, sym_tuple, - STATE(393), 1, + STATE(328), 1, sym_anonymous_function, - STATE(1100), 1, + STATE(1156), 1, sym__maybe_function_expression, - STATE(1213), 1, - sym__maybe_record_expression, - STATE(1243), 1, + STATE(1195), 1, sym__maybe_tuple_expression, + STATE(1240), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(360), 2, + STATE(299), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(382), 2, + STATE(325), 2, sym_record, sym_record_update, - ACTIONS(314), 3, + ACTIONS(828), 3, sym__hex, sym__octal, sym__binary, - STATE(367), 5, + STATE(304), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(426), 11, + STATE(346), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -20997,73 +20772,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [18594] = 29, + [18266] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(802), 1, anon_sym_LBRACE, - ACTIONS(286), 1, + ACTIONS(804), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(806), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(808), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(810), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(812), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(814), 1, anon_sym_todo, - ACTIONS(302), 1, + ACTIONS(816), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(818), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(820), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(822), 1, anon_sym_BANG, - ACTIONS(310), 1, + ACTIONS(824), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(830), 1, sym__decimal, - ACTIONS(322), 1, - sym__upname, - ACTIONS(689), 1, + ACTIONS(832), 1, sym__name, - ACTIONS(865), 1, + ACTIONS(834), 1, + sym__upname, + ACTIONS(864), 1, sym_float, - STATE(361), 1, + STATE(305), 1, sym_identifier, - STATE(385), 1, + STATE(327), 1, sym_tuple, - STATE(393), 1, + STATE(328), 1, sym_anonymous_function, - STATE(1100), 1, + STATE(1156), 1, sym__maybe_function_expression, - STATE(1213), 1, - sym__maybe_record_expression, - STATE(1243), 1, + STATE(1195), 1, sym__maybe_tuple_expression, + STATE(1240), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(360), 2, + STATE(299), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(382), 2, + STATE(325), 2, sym_record, sym_record_update, - ACTIONS(314), 3, + ACTIONS(828), 3, sym__hex, sym__octal, sym__binary, - STATE(367), 5, + STATE(304), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(590), 11, + STATE(348), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -21075,179 +20850,151 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [18701] = 4, + [18373] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(661), 17, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(659), 28, + ACTIONS(802), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(804), 1, anon_sym_POUND, + ACTIONS(806), 1, anon_sym_LBRACK, + ACTIONS(808), 1, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [18758] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(487), 17, - anon_sym_SLASH, + ACTIONS(810), 1, anon_sym_DASH, + ACTIONS(812), 1, anon_sym_fn, - anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(814), 1, anon_sym_todo, + ACTIONS(816), 1, anon_sym_case, + ACTIONS(818), 1, anon_sym_let, + ACTIONS(820), 1, anon_sym_assert, + ACTIONS(822), 1, anon_sym_BANG, + ACTIONS(824), 1, + anon_sym_DQUOTE, + ACTIONS(830), 1, sym__decimal, + ACTIONS(832), 1, sym__name, - ACTIONS(485), 28, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DQUOTE, + ACTIONS(834), 1, + sym__upname, + ACTIONS(866), 1, sym_float, + STATE(305), 1, + sym_identifier, + STATE(327), 1, + sym_tuple, + STATE(328), 1, + sym_anonymous_function, + STATE(1156), 1, + sym__maybe_function_expression, + STATE(1195), 1, + sym__maybe_tuple_expression, + STATE(1240), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(299), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(325), 2, + sym_record, + sym_record_update, + ACTIONS(828), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [18815] = 29, + STATE(304), 5, + sym_expression_group, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(354), 11, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_list, + sym__expression_bit_string, + sym_let, + sym_assert, + sym_negation, + sym_string, + sym_integer, + [18480] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(802), 1, anon_sym_LBRACE, - ACTIONS(286), 1, + ACTIONS(804), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(806), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(808), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(810), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(812), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(814), 1, anon_sym_todo, - ACTIONS(302), 1, + ACTIONS(816), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(818), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(820), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(822), 1, anon_sym_BANG, - ACTIONS(310), 1, + ACTIONS(824), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(830), 1, sym__decimal, - ACTIONS(322), 1, - sym__upname, - ACTIONS(689), 1, + ACTIONS(832), 1, sym__name, - ACTIONS(695), 1, + ACTIONS(834), 1, + sym__upname, + ACTIONS(868), 1, sym_float, - STATE(361), 1, + STATE(305), 1, sym_identifier, - STATE(385), 1, + STATE(327), 1, sym_tuple, - STATE(393), 1, + STATE(328), 1, sym_anonymous_function, - STATE(1100), 1, + STATE(1156), 1, sym__maybe_function_expression, - STATE(1213), 1, - sym__maybe_record_expression, - STATE(1243), 1, + STATE(1195), 1, sym__maybe_tuple_expression, + STATE(1240), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(360), 2, + STATE(299), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(382), 2, + STATE(325), 2, sym_record, sym_record_update, - ACTIONS(314), 3, + ACTIONS(828), 3, sym__hex, sym__octal, sym__binary, - STATE(367), 5, + STATE(304), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(520), 11, + STATE(355), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -21259,126 +21006,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [18922] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(681), 17, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(679), 28, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [18979] = 29, + [18587] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(802), 1, anon_sym_LBRACE, - ACTIONS(286), 1, + ACTIONS(804), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(806), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(808), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(810), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(812), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(814), 1, anon_sym_todo, - ACTIONS(302), 1, + ACTIONS(816), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(818), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(820), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(822), 1, anon_sym_BANG, - ACTIONS(310), 1, + ACTIONS(824), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(830), 1, sym__decimal, - ACTIONS(322), 1, - sym__upname, - ACTIONS(689), 1, + ACTIONS(832), 1, sym__name, - ACTIONS(867), 1, + ACTIONS(834), 1, + sym__upname, + ACTIONS(870), 1, sym_float, - STATE(361), 1, + STATE(305), 1, sym_identifier, - STATE(385), 1, + STATE(327), 1, sym_tuple, - STATE(393), 1, + STATE(328), 1, sym_anonymous_function, - STATE(1100), 1, + STATE(1156), 1, sym__maybe_function_expression, - STATE(1213), 1, - sym__maybe_record_expression, - STATE(1243), 1, + STATE(1195), 1, sym__maybe_tuple_expression, + STATE(1240), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(360), 2, + STATE(299), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(382), 2, + STATE(325), 2, sym_record, sym_record_update, - ACTIONS(314), 3, + ACTIONS(828), 3, sym__hex, sym__octal, sym__binary, - STATE(367), 5, + STATE(304), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(591), 11, + STATE(352), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -21390,73 +21084,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [19086] = 29, + [18694] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(277), 1, anon_sym_LBRACE, - ACTIONS(286), 1, + ACTIONS(279), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(283), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(285), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(289), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(291), 1, anon_sym_todo, - ACTIONS(302), 1, + ACTIONS(295), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(297), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(299), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(301), 1, anon_sym_BANG, - ACTIONS(310), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(689), 1, + ACTIONS(693), 1, sym__name, - ACTIONS(869), 1, + ACTIONS(872), 1, sym_float, - STATE(361), 1, + STATE(375), 1, sym_identifier, - STATE(385), 1, + STATE(380), 1, sym_tuple, - STATE(393), 1, + STATE(387), 1, sym_anonymous_function, - STATE(1100), 1, + STATE(1116), 1, sym__maybe_function_expression, - STATE(1213), 1, - sym__maybe_record_expression, - STATE(1243), 1, + STATE(1218), 1, sym__maybe_tuple_expression, + STATE(1229), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(360), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(382), 2, + STATE(392), 2, sym_record, sym_record_update, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(367), 5, + STATE(374), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(587), 11, + STATE(600), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -21468,73 +21162,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [19193] = 29, + [18801] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(802), 1, anon_sym_LBRACE, - ACTIONS(451), 1, + ACTIONS(804), 1, anon_sym_POUND, - ACTIONS(453), 1, + ACTIONS(806), 1, anon_sym_LBRACK, - ACTIONS(455), 1, + ACTIONS(808), 1, anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(810), 1, anon_sym_DASH, - ACTIONS(459), 1, + ACTIONS(812), 1, anon_sym_fn, - ACTIONS(463), 1, + ACTIONS(814), 1, anon_sym_todo, - ACTIONS(465), 1, + ACTIONS(816), 1, anon_sym_case, - ACTIONS(467), 1, + ACTIONS(818), 1, anon_sym_let, - ACTIONS(469), 1, + ACTIONS(820), 1, anon_sym_assert, - ACTIONS(471), 1, + ACTIONS(822), 1, anon_sym_BANG, - ACTIONS(473), 1, + ACTIONS(824), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(830), 1, sym__decimal, - ACTIONS(481), 1, + ACTIONS(832), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(834), 1, sym__upname, - ACTIONS(871), 1, + ACTIONS(874), 1, sym_float, - STATE(141), 1, + STATE(305), 1, sym_identifier, - STATE(158), 1, + STATE(327), 1, sym_tuple, - STATE(164), 1, + STATE(328), 1, sym_anonymous_function, - STATE(1095), 1, + STATE(1156), 1, sym__maybe_function_expression, - STATE(1183), 1, - sym__maybe_record_expression, - STATE(1246), 1, + STATE(1195), 1, sym__maybe_tuple_expression, + STATE(1240), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(109), 2, + STATE(299), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(325), 2, sym_record, sym_record_update, - ACTIONS(477), 3, + ACTIONS(828), 3, sym__hex, sym__octal, sym__binary, - STATE(140), 5, + STATE(304), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(281), 11, + STATE(351), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -21546,75 +21240,77 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [19300] = 29, + [18908] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(447), 1, anon_sym_LBRACE, - ACTIONS(286), 1, + ACTIONS(451), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(453), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(455), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(457), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(459), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(463), 1, anon_sym_todo, - ACTIONS(302), 1, + ACTIONS(465), 1, anon_sym_case, - ACTIONS(304), 1, - anon_sym_let, - ACTIONS(306), 1, - anon_sym_assert, - ACTIONS(308), 1, - anon_sym_BANG, - ACTIONS(310), 1, + ACTIONS(473), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(479), 1, sym__decimal, - ACTIONS(322), 1, - sym__upname, - ACTIONS(689), 1, + ACTIONS(481), 1, sym__name, - ACTIONS(873), 1, + ACTIONS(483), 1, + sym__upname, + ACTIONS(794), 1, + anon_sym_let, + ACTIONS(796), 1, + anon_sym_assert, + ACTIONS(798), 1, + anon_sym_BANG, + ACTIONS(800), 1, sym_float, - STATE(361), 1, + ACTIONS(876), 1, + anon_sym_GT_GT, + STATE(133), 1, sym_identifier, - STATE(385), 1, + STATE(163), 1, sym_tuple, - STATE(393), 1, + STATE(175), 1, sym_anonymous_function, STATE(1100), 1, sym__maybe_function_expression, - STATE(1213), 1, + STATE(1120), 1, + sym_expression_bit_string_segment, + STATE(1199), 1, sym__maybe_record_expression, - STATE(1243), 1, + STATE(1231), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(360), 2, + STATE(121), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(382), 2, + STATE(164), 2, sym_record, sym_record_update, - ACTIONS(314), 3, + ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(367), 5, + STATE(151), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(603), 11, - sym__expression, - sym_binary_expression, + STATE(927), 9, sym__expression_unit, sym_todo, sym_list, @@ -21624,60 +21320,7 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [19407] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(445), 17, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(443), 28, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [19464] = 31, + [19019] = 31, ACTIONS(3), 1, sym_module_comment, ACTIONS(447), 1, @@ -21704,50 +21347,50 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(483), 1, sym__upname, - ACTIONS(825), 1, + ACTIONS(794), 1, anon_sym_let, - ACTIONS(827), 1, + ACTIONS(796), 1, anon_sym_assert, - ACTIONS(829), 1, + ACTIONS(798), 1, anon_sym_BANG, - ACTIONS(831), 1, + ACTIONS(800), 1, sym_float, - ACTIONS(875), 1, + ACTIONS(878), 1, anon_sym_GT_GT, - STATE(141), 1, + STATE(133), 1, sym_identifier, - STATE(158), 1, + STATE(163), 1, sym_tuple, - STATE(164), 1, + STATE(175), 1, sym_anonymous_function, - STATE(1095), 1, + STATE(1100), 1, sym__maybe_function_expression, - STATE(1141), 1, + STATE(1120), 1, sym_expression_bit_string_segment, - STATE(1183), 1, + STATE(1199), 1, sym__maybe_record_expression, - STATE(1246), 1, + STATE(1231), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(109), 2, + STATE(121), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(164), 2, sym_record, sym_record_update, ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(140), 5, + STATE(151), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(914), 9, + STATE(927), 9, sym__expression_unit, sym_todo, sym_list, @@ -21757,7 +21400,7 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [19575] = 29, + [19130] = 31, ACTIONS(3), 1, sym_module_comment, ACTIONS(447), 1, @@ -21776,12 +21419,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_todo, ACTIONS(465), 1, anon_sym_case, - ACTIONS(467), 1, - anon_sym_let, - ACTIONS(469), 1, - anon_sym_assert, - ACTIONS(471), 1, - anon_sym_BANG, ACTIONS(473), 1, anon_sym_DQUOTE, ACTIONS(479), 1, @@ -21790,42 +21427,50 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(483), 1, sym__upname, - ACTIONS(877), 1, + ACTIONS(794), 1, + anon_sym_let, + ACTIONS(796), 1, + anon_sym_assert, + ACTIONS(798), 1, + anon_sym_BANG, + ACTIONS(800), 1, sym_float, - STATE(141), 1, + ACTIONS(880), 1, + anon_sym_GT_GT, + STATE(133), 1, sym_identifier, - STATE(158), 1, + STATE(163), 1, sym_tuple, - STATE(164), 1, + STATE(175), 1, sym_anonymous_function, - STATE(1095), 1, + STATE(961), 1, + sym_expression_bit_string_segment, + STATE(1100), 1, sym__maybe_function_expression, - STATE(1183), 1, + STATE(1199), 1, sym__maybe_record_expression, - STATE(1246), 1, + STATE(1231), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(109), 2, + STATE(121), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(164), 2, sym_record, sym_record_update, ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(140), 5, + STATE(151), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(284), 11, - sym__expression, - sym_binary_expression, + STATE(927), 9, sym__expression_unit, sym_todo, sym_list, @@ -21835,7 +21480,7 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [19682] = 31, + [19241] = 31, ACTIONS(3), 1, sym_module_comment, ACTIONS(447), 1, @@ -21862,50 +21507,50 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(483), 1, sym__upname, - ACTIONS(825), 1, + ACTIONS(794), 1, anon_sym_let, - ACTIONS(827), 1, + ACTIONS(796), 1, anon_sym_assert, - ACTIONS(829), 1, + ACTIONS(798), 1, anon_sym_BANG, - ACTIONS(831), 1, + ACTIONS(800), 1, sym_float, - ACTIONS(879), 1, + ACTIONS(882), 1, anon_sym_GT_GT, - STATE(141), 1, + STATE(133), 1, sym_identifier, - STATE(158), 1, + STATE(163), 1, sym_tuple, - STATE(164), 1, + STATE(175), 1, sym_anonymous_function, - STATE(1095), 1, + STATE(1100), 1, sym__maybe_function_expression, - STATE(1141), 1, + STATE(1120), 1, sym_expression_bit_string_segment, - STATE(1183), 1, + STATE(1199), 1, sym__maybe_record_expression, - STATE(1246), 1, + STATE(1231), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(109), 2, + STATE(121), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(164), 2, sym_record, sym_record_update, ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(140), 5, + STATE(151), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(914), 9, + STATE(927), 9, sym__expression_unit, sym_todo, sym_list, @@ -21915,7 +21560,7 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [19793] = 31, + [19352] = 31, ACTIONS(3), 1, sym_module_comment, ACTIONS(447), 1, @@ -21942,50 +21587,50 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(483), 1, sym__upname, - ACTIONS(825), 1, + ACTIONS(794), 1, anon_sym_let, - ACTIONS(827), 1, + ACTIONS(796), 1, anon_sym_assert, - ACTIONS(829), 1, + ACTIONS(798), 1, anon_sym_BANG, - ACTIONS(831), 1, + ACTIONS(800), 1, sym_float, - ACTIONS(881), 1, + ACTIONS(884), 1, anon_sym_GT_GT, - STATE(141), 1, + STATE(133), 1, sym_identifier, - STATE(158), 1, + STATE(163), 1, sym_tuple, - STATE(164), 1, + STATE(175), 1, sym_anonymous_function, - STATE(1095), 1, + STATE(1100), 1, sym__maybe_function_expression, - STATE(1141), 1, + STATE(1120), 1, sym_expression_bit_string_segment, - STATE(1183), 1, + STATE(1199), 1, sym__maybe_record_expression, - STATE(1246), 1, + STATE(1231), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(109), 2, + STATE(121), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(164), 2, sym_record, sym_record_update, ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(140), 5, + STATE(151), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(914), 9, + STATE(927), 9, sym__expression_unit, sym_todo, sym_list, @@ -21995,179 +21640,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [19904] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(631), 17, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(629), 28, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [19961] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(635), 17, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(633), 28, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [20018] = 29, + [19463] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(277), 1, anon_sym_LBRACE, - ACTIONS(286), 1, + ACTIONS(279), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(283), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(285), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(289), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(291), 1, anon_sym_todo, - ACTIONS(302), 1, + ACTIONS(295), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(297), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(299), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(301), 1, anon_sym_BANG, - ACTIONS(310), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(689), 1, + ACTIONS(693), 1, sym__name, - ACTIONS(883), 1, + ACTIONS(886), 1, sym_float, - STATE(361), 1, + STATE(375), 1, sym_identifier, - STATE(385), 1, + STATE(380), 1, sym_tuple, - STATE(393), 1, + STATE(387), 1, sym_anonymous_function, - STATE(1100), 1, + STATE(1116), 1, sym__maybe_function_expression, - STATE(1213), 1, - sym__maybe_record_expression, - STATE(1243), 1, + STATE(1218), 1, sym__maybe_tuple_expression, + STATE(1229), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(360), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(382), 2, + STATE(392), 2, sym_record, sym_record_update, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(367), 5, + STATE(374), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(606), 11, + STATE(583), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -22179,7 +21718,7 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [20125] = 29, + [19570] = 29, ACTIONS(3), 1, sym_module_comment, ACTIONS(11), 1, @@ -22210,42 +21749,42 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(57), 1, sym__upname, - ACTIONS(885), 1, + ACTIONS(781), 1, anon_sym_fn, - ACTIONS(887), 1, + ACTIONS(888), 1, sym_float, - STATE(21), 1, + STATE(25), 1, sym_identifier, STATE(29), 1, - sym_tuple, - STATE(31), 1, sym_anonymous_function, - STATE(1118), 1, + STATE(40), 1, + sym_tuple, + STATE(1051), 1, sym__maybe_function_expression, - STATE(1216), 1, - sym__maybe_record_expression, - STATE(1218), 1, + STATE(1178), 1, sym__maybe_tuple_expression, + STATE(1232), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, STATE(6), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(40), 2, + STATE(39), 2, sym_record, sym_record_update, ACTIONS(51), 3, sym__hex, sym__octal, sym__binary, - STATE(28), 5, + STATE(8), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(69), 11, + STATE(85), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -22257,73 +21796,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [20232] = 29, + [19677] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(781), 1, + ACTIONS(11), 1, anon_sym_LBRACE, - ACTIONS(783), 1, + ACTIONS(17), 1, anon_sym_POUND, - ACTIONS(785), 1, + ACTIONS(19), 1, anon_sym_LBRACK, - ACTIONS(787), 1, + ACTIONS(21), 1, anon_sym_LT_LT, - ACTIONS(789), 1, + ACTIONS(23), 1, anon_sym_DASH, - ACTIONS(791), 1, - anon_sym_fn, - ACTIONS(793), 1, + ACTIONS(33), 1, anon_sym_todo, - ACTIONS(795), 1, + ACTIONS(35), 1, anon_sym_case, - ACTIONS(797), 1, + ACTIONS(37), 1, anon_sym_let, - ACTIONS(799), 1, + ACTIONS(39), 1, anon_sym_assert, - ACTIONS(801), 1, + ACTIONS(41), 1, anon_sym_BANG, - ACTIONS(803), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(809), 1, + ACTIONS(53), 1, sym__decimal, - ACTIONS(811), 1, + ACTIONS(55), 1, sym__name, - ACTIONS(813), 1, + ACTIONS(57), 1, sym__upname, - ACTIONS(889), 1, + ACTIONS(781), 1, + anon_sym_fn, + ACTIONS(890), 1, sym_float, - STATE(301), 1, + STATE(25), 1, sym_identifier, - STATE(322), 1, - sym_tuple, - STATE(325), 1, + STATE(29), 1, sym_anonymous_function, - STATE(1140), 1, + STATE(40), 1, + sym_tuple, + STATE(1051), 1, sym__maybe_function_expression, - STATE(1185), 1, + STATE(1178), 1, sym__maybe_tuple_expression, - STATE(1224), 1, + STATE(1232), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(299), 2, + STATE(6), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(326), 2, + STATE(39), 2, sym_record, sym_record_update, - ACTIONS(807), 3, + ACTIONS(51), 3, sym__hex, sym__octal, sym__binary, - STATE(302), 5, + STATE(8), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(334), 11, + STATE(81), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -22335,73 +21874,153 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [20339] = 29, + [19784] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(781), 1, + ACTIONS(447), 1, anon_sym_LBRACE, - ACTIONS(783), 1, + ACTIONS(451), 1, anon_sym_POUND, - ACTIONS(785), 1, + ACTIONS(453), 1, anon_sym_LBRACK, - ACTIONS(787), 1, + ACTIONS(455), 1, anon_sym_LT_LT, - ACTIONS(789), 1, + ACTIONS(457), 1, anon_sym_DASH, - ACTIONS(791), 1, + ACTIONS(459), 1, anon_sym_fn, - ACTIONS(793), 1, + ACTIONS(463), 1, + anon_sym_todo, + ACTIONS(465), 1, + anon_sym_case, + ACTIONS(473), 1, + anon_sym_DQUOTE, + ACTIONS(479), 1, + sym__decimal, + ACTIONS(481), 1, + sym__name, + ACTIONS(483), 1, + sym__upname, + ACTIONS(794), 1, + anon_sym_let, + ACTIONS(796), 1, + anon_sym_assert, + ACTIONS(798), 1, + anon_sym_BANG, + ACTIONS(800), 1, + sym_float, + ACTIONS(892), 1, + anon_sym_GT_GT, + STATE(133), 1, + sym_identifier, + STATE(163), 1, + sym_tuple, + STATE(175), 1, + sym_anonymous_function, + STATE(1100), 1, + sym__maybe_function_expression, + STATE(1120), 1, + sym_expression_bit_string_segment, + STATE(1199), 1, + sym__maybe_record_expression, + STATE(1231), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(121), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(164), 2, + sym_record, + sym_record_update, + ACTIONS(477), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(151), 5, + sym_expression_group, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(927), 9, + sym__expression_unit, + sym_todo, + sym_list, + sym__expression_bit_string, + sym_let, + sym_assert, + sym_negation, + sym_string, + sym_integer, + [19895] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + anon_sym_POUND, + ACTIONS(19), 1, + anon_sym_LBRACK, + ACTIONS(21), 1, + anon_sym_LT_LT, + ACTIONS(23), 1, + anon_sym_DASH, + ACTIONS(33), 1, anon_sym_todo, - ACTIONS(795), 1, + ACTIONS(35), 1, anon_sym_case, - ACTIONS(797), 1, + ACTIONS(37), 1, anon_sym_let, - ACTIONS(799), 1, + ACTIONS(39), 1, anon_sym_assert, - ACTIONS(801), 1, + ACTIONS(41), 1, anon_sym_BANG, - ACTIONS(803), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(809), 1, + ACTIONS(53), 1, sym__decimal, - ACTIONS(811), 1, + ACTIONS(55), 1, sym__name, - ACTIONS(813), 1, + ACTIONS(57), 1, sym__upname, - ACTIONS(891), 1, + ACTIONS(781), 1, + anon_sym_fn, + ACTIONS(894), 1, sym_float, - STATE(301), 1, + STATE(25), 1, sym_identifier, - STATE(322), 1, - sym_tuple, - STATE(325), 1, + STATE(29), 1, sym_anonymous_function, - STATE(1140), 1, + STATE(40), 1, + sym_tuple, + STATE(1051), 1, sym__maybe_function_expression, - STATE(1185), 1, + STATE(1178), 1, sym__maybe_tuple_expression, - STATE(1224), 1, + STATE(1232), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(299), 2, + STATE(6), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(326), 2, + STATE(39), 2, sym_record, sym_record_update, - ACTIONS(807), 3, + ACTIONS(51), 3, sym__hex, sym__octal, sym__binary, - STATE(302), 5, + STATE(8), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(336), 11, + STATE(80), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -22413,73 +22032,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [20446] = 29, + [20002] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(286), 1, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(19), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(21), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(23), 1, anon_sym_DASH, - ACTIONS(296), 1, - anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(33), 1, anon_sym_todo, - ACTIONS(302), 1, + ACTIONS(35), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(37), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(39), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(41), 1, anon_sym_BANG, - ACTIONS(310), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(53), 1, sym__decimal, - ACTIONS(322), 1, - sym__upname, - ACTIONS(689), 1, + ACTIONS(55), 1, sym__name, - ACTIONS(695), 1, + ACTIONS(57), 1, + sym__upname, + ACTIONS(781), 1, + anon_sym_fn, + ACTIONS(896), 1, sym_float, - ACTIONS(893), 1, - anon_sym_LBRACE, - STATE(361), 1, + STATE(25), 1, sym_identifier, - STATE(385), 1, - sym_tuple, - STATE(393), 1, + STATE(29), 1, sym_anonymous_function, - STATE(1100), 1, + STATE(40), 1, + sym_tuple, + STATE(1051), 1, sym__maybe_function_expression, - STATE(1213), 1, - sym__maybe_record_expression, - STATE(1243), 1, + STATE(1178), 1, sym__maybe_tuple_expression, + STATE(1232), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(360), 2, + STATE(6), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(382), 2, + STATE(39), 2, sym_record, sym_record_update, - ACTIONS(314), 3, + ACTIONS(51), 3, sym__hex, sym__octal, sym__binary, - STATE(367), 5, + STATE(8), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(520), 11, + STATE(75), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -22491,73 +22110,151 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [20553] = 29, + [20109] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(781), 1, + ACTIONS(11), 1, anon_sym_LBRACE, - ACTIONS(783), 1, + ACTIONS(17), 1, anon_sym_POUND, - ACTIONS(785), 1, + ACTIONS(19), 1, anon_sym_LBRACK, - ACTIONS(787), 1, + ACTIONS(21), 1, anon_sym_LT_LT, - ACTIONS(789), 1, + ACTIONS(23), 1, anon_sym_DASH, - ACTIONS(791), 1, - anon_sym_fn, - ACTIONS(793), 1, + ACTIONS(33), 1, anon_sym_todo, - ACTIONS(795), 1, + ACTIONS(35), 1, anon_sym_case, - ACTIONS(797), 1, + ACTIONS(37), 1, anon_sym_let, - ACTIONS(799), 1, + ACTIONS(39), 1, anon_sym_assert, - ACTIONS(801), 1, + ACTIONS(41), 1, anon_sym_BANG, - ACTIONS(803), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(809), 1, + ACTIONS(53), 1, sym__decimal, - ACTIONS(811), 1, + ACTIONS(55), 1, sym__name, - ACTIONS(813), 1, + ACTIONS(57), 1, sym__upname, - ACTIONS(896), 1, + ACTIONS(781), 1, + anon_sym_fn, + ACTIONS(898), 1, sym_float, - STATE(301), 1, + STATE(25), 1, sym_identifier, - STATE(322), 1, + STATE(29), 1, + sym_anonymous_function, + STATE(40), 1, sym_tuple, - STATE(325), 1, + STATE(1051), 1, + sym__maybe_function_expression, + STATE(1178), 1, + sym__maybe_tuple_expression, + STATE(1232), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(6), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(39), 2, + sym_record, + sym_record_update, + ACTIONS(51), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(8), 5, + sym_expression_group, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(72), 11, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_list, + sym__expression_bit_string, + sym_let, + sym_assert, + sym_negation, + sym_string, + sym_integer, + [20216] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + anon_sym_POUND, + ACTIONS(19), 1, + anon_sym_LBRACK, + ACTIONS(21), 1, + anon_sym_LT_LT, + ACTIONS(23), 1, + anon_sym_DASH, + ACTIONS(33), 1, + anon_sym_todo, + ACTIONS(35), 1, + anon_sym_case, + ACTIONS(37), 1, + anon_sym_let, + ACTIONS(39), 1, + anon_sym_assert, + ACTIONS(41), 1, + anon_sym_BANG, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym__decimal, + ACTIONS(55), 1, + sym__name, + ACTIONS(57), 1, + sym__upname, + ACTIONS(781), 1, + anon_sym_fn, + ACTIONS(900), 1, + sym_float, + STATE(25), 1, + sym_identifier, + STATE(29), 1, sym_anonymous_function, - STATE(1140), 1, + STATE(40), 1, + sym_tuple, + STATE(1051), 1, sym__maybe_function_expression, - STATE(1185), 1, + STATE(1178), 1, sym__maybe_tuple_expression, - STATE(1224), 1, + STATE(1232), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(299), 2, + STATE(6), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(326), 2, + STATE(39), 2, sym_record, sym_record_update, - ACTIONS(807), 3, + ACTIONS(51), 3, sym__hex, sym__octal, sym__binary, - STATE(302), 5, + STATE(8), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(338), 11, + STATE(67), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -22569,7 +22266,7 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [20660] = 31, + [20323] = 31, ACTIONS(3), 1, sym_module_comment, ACTIONS(447), 1, @@ -22596,50 +22293,50 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(483), 1, sym__upname, - ACTIONS(825), 1, + ACTIONS(794), 1, anon_sym_let, - ACTIONS(827), 1, + ACTIONS(796), 1, anon_sym_assert, - ACTIONS(829), 1, + ACTIONS(798), 1, anon_sym_BANG, - ACTIONS(831), 1, + ACTIONS(800), 1, sym_float, - ACTIONS(898), 1, + ACTIONS(902), 1, anon_sym_GT_GT, - STATE(141), 1, + STATE(133), 1, sym_identifier, - STATE(158), 1, + STATE(163), 1, sym_tuple, - STATE(164), 1, + STATE(175), 1, sym_anonymous_function, - STATE(943), 1, + STATE(989), 1, sym_expression_bit_string_segment, - STATE(1095), 1, + STATE(1100), 1, sym__maybe_function_expression, - STATE(1183), 1, + STATE(1199), 1, sym__maybe_record_expression, - STATE(1246), 1, + STATE(1231), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(109), 2, + STATE(121), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(164), 2, sym_record, sym_record_update, ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(140), 5, + STATE(151), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(914), 9, + STATE(927), 9, sym__expression_unit, sym_todo, sym_list, @@ -22649,77 +22346,75 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [20771] = 31, + [20434] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(277), 1, anon_sym_LBRACE, - ACTIONS(451), 1, + ACTIONS(279), 1, anon_sym_POUND, - ACTIONS(453), 1, + ACTIONS(283), 1, anon_sym_LBRACK, - ACTIONS(455), 1, + ACTIONS(285), 1, anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(459), 1, + ACTIONS(289), 1, anon_sym_fn, - ACTIONS(463), 1, + ACTIONS(291), 1, anon_sym_todo, - ACTIONS(465), 1, + ACTIONS(295), 1, anon_sym_case, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(825), 1, + ACTIONS(297), 1, anon_sym_let, - ACTIONS(827), 1, + ACTIONS(299), 1, anon_sym_assert, - ACTIONS(829), 1, + ACTIONS(301), 1, anon_sym_BANG, - ACTIONS(831), 1, + ACTIONS(303), 1, + anon_sym_DQUOTE, + ACTIONS(309), 1, + sym__decimal, + ACTIONS(315), 1, + sym__upname, + ACTIONS(693), 1, + sym__name, + ACTIONS(904), 1, sym_float, - ACTIONS(900), 1, - anon_sym_GT_GT, - STATE(141), 1, + STATE(375), 1, sym_identifier, - STATE(158), 1, + STATE(380), 1, sym_tuple, - STATE(164), 1, + STATE(387), 1, sym_anonymous_function, - STATE(1095), 1, + STATE(1116), 1, sym__maybe_function_expression, - STATE(1141), 1, - sym_expression_bit_string_segment, - STATE(1183), 1, - sym__maybe_record_expression, - STATE(1246), 1, + STATE(1218), 1, sym__maybe_tuple_expression, + STATE(1229), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(109), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(392), 2, sym_record, sym_record_update, - ACTIONS(477), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(140), 5, + STATE(374), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(914), 9, + STATE(424), 11, + sym__expression, + sym_binary_expression, sym__expression_unit, sym_todo, sym_list, @@ -22729,73 +22424,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [20882] = 29, + [20541] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(781), 1, + ACTIONS(277), 1, anon_sym_LBRACE, - ACTIONS(783), 1, + ACTIONS(279), 1, anon_sym_POUND, - ACTIONS(785), 1, + ACTIONS(283), 1, anon_sym_LBRACK, - ACTIONS(787), 1, + ACTIONS(285), 1, anon_sym_LT_LT, - ACTIONS(789), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(791), 1, + ACTIONS(289), 1, anon_sym_fn, - ACTIONS(793), 1, + ACTIONS(291), 1, anon_sym_todo, - ACTIONS(795), 1, + ACTIONS(295), 1, anon_sym_case, - ACTIONS(797), 1, + ACTIONS(297), 1, anon_sym_let, - ACTIONS(799), 1, + ACTIONS(299), 1, anon_sym_assert, - ACTIONS(801), 1, + ACTIONS(301), 1, anon_sym_BANG, - ACTIONS(803), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(809), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(811), 1, - sym__name, - ACTIONS(813), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(902), 1, + ACTIONS(693), 1, + sym__name, + ACTIONS(906), 1, sym_float, - STATE(301), 1, + STATE(375), 1, sym_identifier, - STATE(322), 1, + STATE(380), 1, sym_tuple, - STATE(325), 1, + STATE(387), 1, sym_anonymous_function, - STATE(1140), 1, + STATE(1116), 1, sym__maybe_function_expression, - STATE(1185), 1, + STATE(1218), 1, sym__maybe_tuple_expression, - STATE(1224), 1, + STATE(1229), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(299), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(326), 2, + STATE(392), 2, sym_record, sym_record_update, - ACTIONS(807), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(302), 5, + STATE(374), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(351), 11, + STATE(610), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -22807,7 +22502,7 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [20989] = 31, + [20648] = 31, ACTIONS(3), 1, sym_module_comment, ACTIONS(447), 1, @@ -22834,50 +22529,50 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(483), 1, sym__upname, - ACTIONS(825), 1, + ACTIONS(794), 1, anon_sym_let, - ACTIONS(827), 1, + ACTIONS(796), 1, anon_sym_assert, - ACTIONS(829), 1, + ACTIONS(798), 1, anon_sym_BANG, - ACTIONS(831), 1, + ACTIONS(800), 1, sym_float, - ACTIONS(904), 1, + ACTIONS(908), 1, anon_sym_GT_GT, - STATE(141), 1, + STATE(133), 1, sym_identifier, - STATE(158), 1, + STATE(163), 1, sym_tuple, - STATE(164), 1, + STATE(175), 1, sym_anonymous_function, - STATE(1095), 1, + STATE(1100), 1, sym__maybe_function_expression, - STATE(1141), 1, + STATE(1120), 1, sym_expression_bit_string_segment, - STATE(1183), 1, + STATE(1199), 1, sym__maybe_record_expression, - STATE(1246), 1, + STATE(1231), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(109), 2, + STATE(121), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(164), 2, sym_record, sym_record_update, ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(140), 5, + STATE(151), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(914), 9, + STATE(927), 9, sym__expression_unit, sym_todo, sym_list, @@ -22887,73 +22582,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [21100] = 29, + [20759] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(11), 1, + ACTIONS(277), 1, anon_sym_LBRACE, - ACTIONS(17), 1, + ACTIONS(279), 1, anon_sym_POUND, - ACTIONS(19), 1, + ACTIONS(283), 1, anon_sym_LBRACK, - ACTIONS(21), 1, + ACTIONS(285), 1, anon_sym_LT_LT, - ACTIONS(23), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(33), 1, + ACTIONS(289), 1, + anon_sym_fn, + ACTIONS(291), 1, anon_sym_todo, - ACTIONS(35), 1, + ACTIONS(295), 1, anon_sym_case, - ACTIONS(37), 1, + ACTIONS(297), 1, anon_sym_let, - ACTIONS(39), 1, + ACTIONS(299), 1, anon_sym_assert, - ACTIONS(41), 1, + ACTIONS(301), 1, anon_sym_BANG, - ACTIONS(47), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(55), 1, - sym__name, - ACTIONS(57), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(885), 1, - anon_sym_fn, - ACTIONS(906), 1, + ACTIONS(693), 1, + sym__name, + ACTIONS(910), 1, sym_float, - STATE(21), 1, + STATE(375), 1, sym_identifier, - STATE(29), 1, + STATE(380), 1, sym_tuple, - STATE(31), 1, + STATE(387), 1, sym_anonymous_function, - STATE(1118), 1, + STATE(1116), 1, sym__maybe_function_expression, - STATE(1216), 1, - sym__maybe_record_expression, STATE(1218), 1, sym__maybe_tuple_expression, + STATE(1229), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(6), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(40), 2, + STATE(392), 2, sym_record, sym_record_update, - ACTIONS(51), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(28), 5, + STATE(374), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(90), 11, + STATE(413), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -22965,73 +22660,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [21207] = 29, + [20866] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(11), 1, + ACTIONS(277), 1, anon_sym_LBRACE, - ACTIONS(17), 1, + ACTIONS(279), 1, anon_sym_POUND, - ACTIONS(19), 1, + ACTIONS(283), 1, anon_sym_LBRACK, - ACTIONS(21), 1, + ACTIONS(285), 1, anon_sym_LT_LT, - ACTIONS(23), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(33), 1, + ACTIONS(289), 1, + anon_sym_fn, + ACTIONS(291), 1, anon_sym_todo, - ACTIONS(35), 1, + ACTIONS(295), 1, anon_sym_case, - ACTIONS(37), 1, + ACTIONS(297), 1, anon_sym_let, - ACTIONS(39), 1, + ACTIONS(299), 1, anon_sym_assert, - ACTIONS(41), 1, + ACTIONS(301), 1, anon_sym_BANG, - ACTIONS(47), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(55), 1, - sym__name, - ACTIONS(57), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(885), 1, - anon_sym_fn, - ACTIONS(908), 1, + ACTIONS(693), 1, + sym__name, + ACTIONS(912), 1, sym_float, - STATE(21), 1, + STATE(375), 1, sym_identifier, - STATE(29), 1, + STATE(380), 1, sym_tuple, - STATE(31), 1, + STATE(387), 1, sym_anonymous_function, - STATE(1118), 1, + STATE(1116), 1, sym__maybe_function_expression, - STATE(1216), 1, - sym__maybe_record_expression, STATE(1218), 1, sym__maybe_tuple_expression, + STATE(1229), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(6), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(40), 2, + STATE(392), 2, sym_record, sym_record_update, - ACTIONS(51), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(28), 5, + STATE(374), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(92), 11, + STATE(403), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -23043,73 +22738,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [21314] = 29, + [20973] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(11), 1, + ACTIONS(277), 1, anon_sym_LBRACE, - ACTIONS(17), 1, + ACTIONS(279), 1, anon_sym_POUND, - ACTIONS(19), 1, + ACTIONS(283), 1, anon_sym_LBRACK, - ACTIONS(21), 1, + ACTIONS(285), 1, anon_sym_LT_LT, - ACTIONS(23), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(33), 1, + ACTIONS(289), 1, + anon_sym_fn, + ACTIONS(291), 1, anon_sym_todo, - ACTIONS(35), 1, + ACTIONS(295), 1, anon_sym_case, - ACTIONS(37), 1, + ACTIONS(297), 1, anon_sym_let, - ACTIONS(39), 1, + ACTIONS(299), 1, anon_sym_assert, - ACTIONS(41), 1, + ACTIONS(301), 1, anon_sym_BANG, - ACTIONS(47), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(55), 1, - sym__name, - ACTIONS(57), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(885), 1, - anon_sym_fn, - ACTIONS(910), 1, + ACTIONS(693), 1, + sym__name, + ACTIONS(914), 1, sym_float, - STATE(21), 1, + STATE(375), 1, sym_identifier, - STATE(29), 1, + STATE(380), 1, sym_tuple, - STATE(31), 1, + STATE(387), 1, sym_anonymous_function, - STATE(1118), 1, + STATE(1116), 1, sym__maybe_function_expression, - STATE(1216), 1, - sym__maybe_record_expression, STATE(1218), 1, sym__maybe_tuple_expression, + STATE(1229), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(6), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(40), 2, + STATE(392), 2, sym_record, sym_record_update, - ACTIONS(51), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(28), 5, + STATE(374), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(95), 11, + STATE(402), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -23121,73 +22816,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [21421] = 29, + [21080] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(781), 1, + ACTIONS(277), 1, anon_sym_LBRACE, - ACTIONS(783), 1, + ACTIONS(279), 1, anon_sym_POUND, - ACTIONS(785), 1, + ACTIONS(283), 1, anon_sym_LBRACK, - ACTIONS(787), 1, + ACTIONS(285), 1, anon_sym_LT_LT, - ACTIONS(789), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(791), 1, + ACTIONS(289), 1, anon_sym_fn, - ACTIONS(793), 1, + ACTIONS(291), 1, anon_sym_todo, - ACTIONS(795), 1, + ACTIONS(295), 1, anon_sym_case, - ACTIONS(797), 1, + ACTIONS(297), 1, anon_sym_let, - ACTIONS(799), 1, + ACTIONS(299), 1, anon_sym_assert, - ACTIONS(801), 1, + ACTIONS(301), 1, anon_sym_BANG, - ACTIONS(803), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(809), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(811), 1, - sym__name, - ACTIONS(813), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(912), 1, + ACTIONS(693), 1, + sym__name, + ACTIONS(916), 1, sym_float, - STATE(301), 1, + STATE(375), 1, sym_identifier, - STATE(322), 1, + STATE(380), 1, sym_tuple, - STATE(325), 1, + STATE(387), 1, sym_anonymous_function, - STATE(1140), 1, + STATE(1116), 1, sym__maybe_function_expression, - STATE(1185), 1, + STATE(1218), 1, sym__maybe_tuple_expression, - STATE(1224), 1, + STATE(1229), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(299), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(326), 2, + STATE(392), 2, sym_record, sym_record_update, - ACTIONS(807), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(302), 5, + STATE(374), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(342), 11, + STATE(422), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -23199,73 +22894,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [21528] = 29, + [21187] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(277), 1, anon_sym_LBRACE, - ACTIONS(451), 1, + ACTIONS(279), 1, anon_sym_POUND, - ACTIONS(453), 1, + ACTIONS(283), 1, anon_sym_LBRACK, - ACTIONS(455), 1, + ACTIONS(285), 1, anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(459), 1, + ACTIONS(289), 1, anon_sym_fn, - ACTIONS(463), 1, + ACTIONS(291), 1, anon_sym_todo, - ACTIONS(465), 1, + ACTIONS(295), 1, anon_sym_case, - ACTIONS(467), 1, + ACTIONS(297), 1, anon_sym_let, - ACTIONS(469), 1, + ACTIONS(299), 1, anon_sym_assert, - ACTIONS(471), 1, + ACTIONS(301), 1, anon_sym_BANG, - ACTIONS(473), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(914), 1, + ACTIONS(693), 1, + sym__name, + ACTIONS(918), 1, sym_float, - STATE(141), 1, + STATE(375), 1, sym_identifier, - STATE(158), 1, + STATE(380), 1, sym_tuple, - STATE(164), 1, + STATE(387), 1, sym_anonymous_function, - STATE(1095), 1, + STATE(1116), 1, sym__maybe_function_expression, - STATE(1183), 1, - sym__maybe_record_expression, - STATE(1246), 1, + STATE(1218), 1, sym__maybe_tuple_expression, + STATE(1229), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(109), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(392), 2, sym_record, sym_record_update, - ACTIONS(477), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(140), 5, + STATE(374), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(289), 11, + STATE(405), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -23277,73 +22972,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [21635] = 29, + [21294] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(277), 1, anon_sym_LBRACE, - ACTIONS(451), 1, + ACTIONS(279), 1, anon_sym_POUND, - ACTIONS(453), 1, + ACTIONS(283), 1, anon_sym_LBRACK, - ACTIONS(455), 1, + ACTIONS(285), 1, anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(459), 1, + ACTIONS(289), 1, anon_sym_fn, - ACTIONS(463), 1, + ACTIONS(291), 1, anon_sym_todo, - ACTIONS(465), 1, + ACTIONS(295), 1, anon_sym_case, - ACTIONS(467), 1, + ACTIONS(297), 1, anon_sym_let, - ACTIONS(469), 1, + ACTIONS(299), 1, anon_sym_assert, - ACTIONS(471), 1, + ACTIONS(301), 1, anon_sym_BANG, - ACTIONS(473), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(916), 1, + ACTIONS(693), 1, + sym__name, + ACTIONS(920), 1, sym_float, - STATE(141), 1, + STATE(375), 1, sym_identifier, - STATE(158), 1, + STATE(380), 1, sym_tuple, - STATE(164), 1, + STATE(387), 1, sym_anonymous_function, - STATE(1095), 1, + STATE(1116), 1, sym__maybe_function_expression, - STATE(1183), 1, - sym__maybe_record_expression, - STATE(1246), 1, + STATE(1218), 1, sym__maybe_tuple_expression, + STATE(1229), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(109), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(392), 2, sym_record, sym_record_update, - ACTIONS(477), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(140), 5, + STATE(374), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(283), 11, + STATE(406), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -23355,179 +23050,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [21742] = 4, + [21401] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(621), 17, - anon_sym_SLASH, + ACTIONS(277), 1, + anon_sym_LBRACE, + ACTIONS(279), 1, + anon_sym_POUND, + ACTIONS(283), 1, + anon_sym_LBRACK, + ACTIONS(285), 1, + anon_sym_LT_LT, + ACTIONS(287), 1, anon_sym_DASH, + ACTIONS(289), 1, anon_sym_fn, - anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(291), 1, anon_sym_todo, + ACTIONS(295), 1, anon_sym_case, + ACTIONS(297), 1, anon_sym_let, + ACTIONS(299), 1, anon_sym_assert, + ACTIONS(301), 1, anon_sym_BANG, + ACTIONS(303), 1, + anon_sym_DQUOTE, + ACTIONS(309), 1, sym__decimal, + ACTIONS(315), 1, + sym__upname, + ACTIONS(693), 1, sym__name, - ACTIONS(619), 28, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [21799] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(491), 17, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(489), 28, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [21856] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(781), 1, - anon_sym_LBRACE, - ACTIONS(783), 1, - anon_sym_POUND, - ACTIONS(785), 1, - anon_sym_LBRACK, - ACTIONS(787), 1, - anon_sym_LT_LT, - ACTIONS(789), 1, - anon_sym_DASH, - ACTIONS(791), 1, - anon_sym_fn, - ACTIONS(793), 1, - anon_sym_todo, - ACTIONS(795), 1, - anon_sym_case, - ACTIONS(797), 1, - anon_sym_let, - ACTIONS(799), 1, - anon_sym_assert, - ACTIONS(801), 1, - anon_sym_BANG, - ACTIONS(803), 1, - anon_sym_DQUOTE, - ACTIONS(809), 1, - sym__decimal, - ACTIONS(811), 1, - sym__name, - ACTIONS(813), 1, - sym__upname, - ACTIONS(918), 1, + ACTIONS(922), 1, sym_float, - STATE(301), 1, + STATE(375), 1, sym_identifier, - STATE(322), 1, + STATE(380), 1, sym_tuple, - STATE(325), 1, + STATE(387), 1, sym_anonymous_function, - STATE(1140), 1, + STATE(1116), 1, sym__maybe_function_expression, - STATE(1185), 1, + STATE(1218), 1, sym__maybe_tuple_expression, - STATE(1224), 1, + STATE(1229), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(299), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(326), 2, + STATE(392), 2, sym_record, sym_record_update, - ACTIONS(807), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(302), 5, + STATE(374), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(345), 11, + STATE(407), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -23539,73 +23128,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [21963] = 29, + [21508] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(781), 1, + ACTIONS(277), 1, anon_sym_LBRACE, - ACTIONS(783), 1, + ACTIONS(279), 1, anon_sym_POUND, - ACTIONS(785), 1, + ACTIONS(283), 1, anon_sym_LBRACK, - ACTIONS(787), 1, + ACTIONS(285), 1, anon_sym_LT_LT, - ACTIONS(789), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(791), 1, + ACTIONS(289), 1, anon_sym_fn, - ACTIONS(793), 1, + ACTIONS(291), 1, anon_sym_todo, - ACTIONS(795), 1, + ACTIONS(295), 1, anon_sym_case, - ACTIONS(797), 1, + ACTIONS(297), 1, anon_sym_let, - ACTIONS(799), 1, + ACTIONS(299), 1, anon_sym_assert, - ACTIONS(801), 1, + ACTIONS(301), 1, anon_sym_BANG, - ACTIONS(803), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(809), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(811), 1, - sym__name, - ACTIONS(813), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(920), 1, + ACTIONS(693), 1, + sym__name, + ACTIONS(924), 1, sym_float, - STATE(301), 1, + STATE(375), 1, sym_identifier, - STATE(322), 1, + STATE(380), 1, sym_tuple, - STATE(325), 1, + STATE(387), 1, sym_anonymous_function, - STATE(1140), 1, + STATE(1116), 1, sym__maybe_function_expression, - STATE(1185), 1, + STATE(1218), 1, sym__maybe_tuple_expression, - STATE(1224), 1, + STATE(1229), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(299), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(326), 2, + STATE(392), 2, sym_record, sym_record_update, - ACTIONS(807), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(302), 5, + STATE(374), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(335), 11, + STATE(408), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -23617,153 +23206,77 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [22070] = 29, + [21615] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(11), 1, + ACTIONS(447), 1, anon_sym_LBRACE, - ACTIONS(17), 1, + ACTIONS(451), 1, anon_sym_POUND, - ACTIONS(19), 1, + ACTIONS(453), 1, anon_sym_LBRACK, - ACTIONS(21), 1, + ACTIONS(455), 1, anon_sym_LT_LT, - ACTIONS(23), 1, + ACTIONS(457), 1, anon_sym_DASH, - ACTIONS(33), 1, + ACTIONS(459), 1, + anon_sym_fn, + ACTIONS(463), 1, anon_sym_todo, - ACTIONS(35), 1, + ACTIONS(465), 1, anon_sym_case, - ACTIONS(37), 1, - anon_sym_let, - ACTIONS(39), 1, - anon_sym_assert, - ACTIONS(41), 1, - anon_sym_BANG, - ACTIONS(47), 1, + ACTIONS(473), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(479), 1, sym__decimal, - ACTIONS(55), 1, + ACTIONS(481), 1, sym__name, - ACTIONS(57), 1, + ACTIONS(483), 1, sym__upname, - ACTIONS(885), 1, - anon_sym_fn, - ACTIONS(922), 1, - sym_float, - STATE(21), 1, - sym_identifier, - STATE(29), 1, - sym_tuple, - STATE(31), 1, - sym_anonymous_function, - STATE(1118), 1, - sym__maybe_function_expression, - STATE(1216), 1, - sym__maybe_record_expression, - STATE(1218), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(6), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(40), 2, - sym_record, - sym_record_update, - ACTIONS(51), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(28), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(96), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [22177] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - anon_sym_POUND, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(21), 1, - anon_sym_LT_LT, - ACTIONS(23), 1, - anon_sym_DASH, - ACTIONS(33), 1, - anon_sym_todo, - ACTIONS(35), 1, - anon_sym_case, - ACTIONS(37), 1, + ACTIONS(794), 1, anon_sym_let, - ACTIONS(39), 1, + ACTIONS(796), 1, anon_sym_assert, - ACTIONS(41), 1, + ACTIONS(798), 1, anon_sym_BANG, - ACTIONS(47), 1, - anon_sym_DQUOTE, - ACTIONS(53), 1, - sym__decimal, - ACTIONS(55), 1, - sym__name, - ACTIONS(57), 1, - sym__upname, - ACTIONS(885), 1, - anon_sym_fn, - ACTIONS(924), 1, + ACTIONS(800), 1, sym_float, - STATE(21), 1, + ACTIONS(926), 1, + anon_sym_GT_GT, + STATE(133), 1, sym_identifier, - STATE(29), 1, + STATE(163), 1, sym_tuple, - STATE(31), 1, + STATE(175), 1, sym_anonymous_function, - STATE(1118), 1, + STATE(1100), 1, sym__maybe_function_expression, - STATE(1216), 1, + STATE(1120), 1, + sym_expression_bit_string_segment, + STATE(1199), 1, sym__maybe_record_expression, - STATE(1218), 1, + STATE(1231), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(6), 2, + STATE(121), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(40), 2, + STATE(164), 2, sym_record, sym_record_update, - ACTIONS(51), 3, + ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(28), 5, + STATE(151), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(65), 11, - sym__expression, - sym_binary_expression, + STATE(927), 9, sym__expression_unit, sym_todo, sym_list, @@ -23773,75 +23286,77 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [22284] = 29, + [21726] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(11), 1, + ACTIONS(447), 1, anon_sym_LBRACE, - ACTIONS(17), 1, + ACTIONS(451), 1, anon_sym_POUND, - ACTIONS(19), 1, + ACTIONS(453), 1, anon_sym_LBRACK, - ACTIONS(21), 1, + ACTIONS(455), 1, anon_sym_LT_LT, - ACTIONS(23), 1, + ACTIONS(457), 1, anon_sym_DASH, - ACTIONS(33), 1, + ACTIONS(459), 1, + anon_sym_fn, + ACTIONS(463), 1, anon_sym_todo, - ACTIONS(35), 1, + ACTIONS(465), 1, anon_sym_case, - ACTIONS(37), 1, - anon_sym_let, - ACTIONS(39), 1, - anon_sym_assert, - ACTIONS(41), 1, - anon_sym_BANG, - ACTIONS(47), 1, + ACTIONS(473), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(479), 1, sym__decimal, - ACTIONS(55), 1, + ACTIONS(481), 1, sym__name, - ACTIONS(57), 1, + ACTIONS(483), 1, sym__upname, - ACTIONS(885), 1, - anon_sym_fn, - ACTIONS(926), 1, + ACTIONS(794), 1, + anon_sym_let, + ACTIONS(796), 1, + anon_sym_assert, + ACTIONS(798), 1, + anon_sym_BANG, + ACTIONS(800), 1, sym_float, - STATE(21), 1, + ACTIONS(928), 1, + anon_sym_GT_GT, + STATE(133), 1, sym_identifier, - STATE(29), 1, + STATE(163), 1, sym_tuple, - STATE(31), 1, + STATE(175), 1, sym_anonymous_function, - STATE(1118), 1, + STATE(1100), 1, sym__maybe_function_expression, - STATE(1216), 1, + STATE(1120), 1, + sym_expression_bit_string_segment, + STATE(1199), 1, sym__maybe_record_expression, - STATE(1218), 1, + STATE(1231), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(6), 2, + STATE(121), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(40), 2, + STATE(164), 2, sym_record, sym_record_update, - ACTIONS(51), 3, + ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(28), 5, + STATE(151), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(97), 11, - sym__expression, - sym_binary_expression, + STATE(927), 9, sym__expression_unit, sym_todo, sym_list, @@ -23851,73 +23366,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [22391] = 29, + [21837] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(781), 1, + ACTIONS(277), 1, anon_sym_LBRACE, - ACTIONS(783), 1, + ACTIONS(279), 1, anon_sym_POUND, - ACTIONS(785), 1, + ACTIONS(283), 1, anon_sym_LBRACK, - ACTIONS(787), 1, + ACTIONS(285), 1, anon_sym_LT_LT, - ACTIONS(789), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(791), 1, + ACTIONS(289), 1, anon_sym_fn, - ACTIONS(793), 1, + ACTIONS(291), 1, anon_sym_todo, - ACTIONS(795), 1, + ACTIONS(295), 1, anon_sym_case, - ACTIONS(797), 1, + ACTIONS(297), 1, anon_sym_let, - ACTIONS(799), 1, + ACTIONS(299), 1, anon_sym_assert, - ACTIONS(801), 1, + ACTIONS(301), 1, anon_sym_BANG, - ACTIONS(803), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(809), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(811), 1, - sym__name, - ACTIONS(813), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(928), 1, + ACTIONS(693), 1, + sym__name, + ACTIONS(930), 1, sym_float, - STATE(301), 1, + STATE(375), 1, sym_identifier, - STATE(322), 1, + STATE(380), 1, sym_tuple, - STATE(325), 1, + STATE(387), 1, sym_anonymous_function, - STATE(1140), 1, + STATE(1116), 1, sym__maybe_function_expression, - STATE(1185), 1, + STATE(1218), 1, sym__maybe_tuple_expression, - STATE(1224), 1, + STATE(1229), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(299), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(326), 2, + STATE(392), 2, sym_record, sym_record_update, - ACTIONS(807), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(302), 5, + STATE(374), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(355), 11, + STATE(591), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -23929,73 +23444,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [22498] = 29, + [21944] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(277), 1, anon_sym_LBRACE, - ACTIONS(451), 1, + ACTIONS(279), 1, anon_sym_POUND, - ACTIONS(453), 1, + ACTIONS(283), 1, anon_sym_LBRACK, - ACTIONS(455), 1, + ACTIONS(285), 1, anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(459), 1, + ACTIONS(289), 1, anon_sym_fn, - ACTIONS(463), 1, + ACTIONS(291), 1, anon_sym_todo, - ACTIONS(465), 1, + ACTIONS(295), 1, anon_sym_case, - ACTIONS(467), 1, + ACTIONS(297), 1, anon_sym_let, - ACTIONS(469), 1, + ACTIONS(299), 1, anon_sym_assert, - ACTIONS(471), 1, + ACTIONS(301), 1, anon_sym_BANG, - ACTIONS(473), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(930), 1, + ACTIONS(691), 1, sym_float, - STATE(141), 1, + ACTIONS(693), 1, + sym__name, + STATE(375), 1, sym_identifier, - STATE(158), 1, + STATE(380), 1, sym_tuple, - STATE(164), 1, + STATE(387), 1, sym_anonymous_function, - STATE(1095), 1, + STATE(1116), 1, sym__maybe_function_expression, - STATE(1183), 1, - sym__maybe_record_expression, - STATE(1246), 1, + STATE(1218), 1, sym__maybe_tuple_expression, + STATE(1229), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(109), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(392), 2, sym_record, sym_record_update, - ACTIONS(477), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(140), 5, + STATE(374), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(282), 11, + STATE(509), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -24007,7 +23522,7 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [22605] = 29, + [22051] = 31, ACTIONS(3), 1, sym_module_comment, ACTIONS(447), 1, @@ -24026,12 +23541,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_todo, ACTIONS(465), 1, anon_sym_case, - ACTIONS(467), 1, - anon_sym_let, - ACTIONS(469), 1, - anon_sym_assert, - ACTIONS(471), 1, - anon_sym_BANG, ACTIONS(473), 1, anon_sym_DQUOTE, ACTIONS(479), 1, @@ -24040,42 +23549,50 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(483), 1, sym__upname, - ACTIONS(932), 1, + ACTIONS(794), 1, + anon_sym_let, + ACTIONS(796), 1, + anon_sym_assert, + ACTIONS(798), 1, + anon_sym_BANG, + ACTIONS(800), 1, sym_float, - STATE(141), 1, + ACTIONS(932), 1, + anon_sym_GT_GT, + STATE(133), 1, sym_identifier, - STATE(158), 1, + STATE(163), 1, sym_tuple, - STATE(164), 1, + STATE(175), 1, sym_anonymous_function, - STATE(1095), 1, + STATE(1004), 1, + sym_expression_bit_string_segment, + STATE(1100), 1, sym__maybe_function_expression, - STATE(1183), 1, + STATE(1199), 1, sym__maybe_record_expression, - STATE(1246), 1, + STATE(1231), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(109), 2, + STATE(121), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(164), 2, sym_record, sym_record_update, ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(140), 5, + STATE(151), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(288), 11, - sym__expression, - sym_binary_expression, + STATE(927), 9, sym__expression_unit, sym_todo, sym_list, @@ -24085,73 +23602,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [22712] = 29, + [22162] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(277), 1, anon_sym_LBRACE, - ACTIONS(451), 1, + ACTIONS(279), 1, anon_sym_POUND, - ACTIONS(453), 1, + ACTIONS(283), 1, anon_sym_LBRACK, - ACTIONS(455), 1, + ACTIONS(285), 1, anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(459), 1, + ACTIONS(289), 1, anon_sym_fn, - ACTIONS(463), 1, + ACTIONS(291), 1, anon_sym_todo, - ACTIONS(465), 1, + ACTIONS(295), 1, anon_sym_case, - ACTIONS(467), 1, + ACTIONS(297), 1, anon_sym_let, - ACTIONS(469), 1, + ACTIONS(299), 1, anon_sym_assert, - ACTIONS(471), 1, + ACTIONS(301), 1, anon_sym_BANG, - ACTIONS(473), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, + ACTIONS(315), 1, sym__upname, + ACTIONS(693), 1, + sym__name, ACTIONS(934), 1, sym_float, - STATE(141), 1, + STATE(375), 1, sym_identifier, - STATE(158), 1, + STATE(380), 1, sym_tuple, - STATE(164), 1, + STATE(387), 1, sym_anonymous_function, - STATE(1095), 1, + STATE(1116), 1, sym__maybe_function_expression, - STATE(1183), 1, - sym__maybe_record_expression, - STATE(1246), 1, + STATE(1218), 1, sym__maybe_tuple_expression, + STATE(1229), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(109), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(392), 2, sym_record, sym_record_update, - ACTIONS(477), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(140), 5, + STATE(374), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(286), 11, + STATE(593), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -24163,73 +23680,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [22819] = 29, + [22269] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(277), 1, anon_sym_LBRACE, - ACTIONS(286), 1, + ACTIONS(279), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(283), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(285), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(289), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(291), 1, anon_sym_todo, - ACTIONS(302), 1, + ACTIONS(295), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(297), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(299), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(301), 1, anon_sym_BANG, - ACTIONS(310), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(689), 1, + ACTIONS(693), 1, sym__name, ACTIONS(936), 1, sym_float, - STATE(361), 1, + STATE(375), 1, sym_identifier, - STATE(385), 1, + STATE(380), 1, sym_tuple, - STATE(393), 1, + STATE(387), 1, sym_anonymous_function, - STATE(1100), 1, + STATE(1116), 1, sym__maybe_function_expression, - STATE(1213), 1, - sym__maybe_record_expression, - STATE(1243), 1, + STATE(1218), 1, sym__maybe_tuple_expression, + STATE(1229), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(360), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(382), 2, + STATE(392), 2, sym_record, sym_record_update, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(367), 5, + STATE(374), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(411), 11, + STATE(598), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -24241,403 +23758,119 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [22926] = 29, + [22376] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, - anon_sym_LBRACE, - ACTIONS(451), 1, - anon_sym_POUND, - ACTIONS(453), 1, - anon_sym_LBRACK, - ACTIONS(455), 1, - anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(493), 17, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(459), 1, anon_sym_fn, - ACTIONS(463), 1, + anon_sym_try, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(465), 1, anon_sym_case, - ACTIONS(467), 1, anon_sym_let, - ACTIONS(469), 1, anon_sym_assert, - ACTIONS(471), 1, anon_sym_BANG, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, sym__decimal, - ACTIONS(481), 1, sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(938), 1, + ACTIONS(491), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DQUOTE, sym_float, - STATE(141), 1, - sym_identifier, - STATE(158), 1, - sym_tuple, - STATE(164), 1, - sym_anonymous_function, - STATE(1095), 1, - sym__maybe_function_expression, - STATE(1183), 1, - sym__maybe_record_expression, - STATE(1246), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(109), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(169), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(140), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(280), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [23033] = 29, + sym__upname, + [22433] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, - anon_sym_LBRACE, - ACTIONS(451), 1, - anon_sym_POUND, - ACTIONS(453), 1, - anon_sym_LBRACK, - ACTIONS(455), 1, - anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(521), 17, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(459), 1, anon_sym_fn, - ACTIONS(463), 1, + anon_sym_try, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(465), 1, anon_sym_case, - ACTIONS(467), 1, anon_sym_let, - ACTIONS(469), 1, anon_sym_assert, - ACTIONS(471), 1, anon_sym_BANG, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, sym__decimal, - ACTIONS(481), 1, sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(940), 1, - sym_float, - STATE(141), 1, - sym_identifier, - STATE(158), 1, - sym_tuple, - STATE(164), 1, - sym_anonymous_function, - STATE(1095), 1, - sym__maybe_function_expression, - STATE(1183), 1, - sym__maybe_record_expression, - STATE(1246), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(109), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(169), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(140), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(291), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [23140] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(447), 1, - anon_sym_LBRACE, - ACTIONS(451), 1, - anon_sym_POUND, - ACTIONS(453), 1, - anon_sym_LBRACK, - ACTIONS(455), 1, - anon_sym_LT_LT, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(459), 1, - anon_sym_fn, - ACTIONS(463), 1, - anon_sym_todo, - ACTIONS(465), 1, - anon_sym_case, - ACTIONS(467), 1, - anon_sym_let, - ACTIONS(469), 1, - anon_sym_assert, - ACTIONS(471), 1, - anon_sym_BANG, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(942), 1, - sym_float, - STATE(141), 1, - sym_identifier, - STATE(158), 1, - sym_tuple, - STATE(164), 1, - sym_anonymous_function, - STATE(1095), 1, - sym__maybe_function_expression, - STATE(1183), 1, - sym__maybe_record_expression, - STATE(1246), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(109), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(169), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(140), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(290), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [23247] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(11), 1, + ACTIONS(519), 28, anon_sym_LBRACE, - ACTIONS(17), 1, + anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_POUND, - ACTIONS(19), 1, anon_sym_LBRACK, - ACTIONS(21), 1, anon_sym_LT_LT, - ACTIONS(23), 1, - anon_sym_DASH, - ACTIONS(33), 1, - anon_sym_todo, - ACTIONS(35), 1, - anon_sym_case, - ACTIONS(37), 1, - anon_sym_let, - ACTIONS(39), 1, - anon_sym_assert, - ACTIONS(41), 1, - anon_sym_BANG, - ACTIONS(47), 1, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, anon_sym_DQUOTE, - ACTIONS(53), 1, - sym__decimal, - ACTIONS(55), 1, - sym__name, - ACTIONS(57), 1, - sym__upname, - ACTIONS(885), 1, - anon_sym_fn, - ACTIONS(944), 1, sym_float, - STATE(21), 1, - sym_identifier, - STATE(29), 1, - sym_tuple, - STATE(31), 1, - sym_anonymous_function, - STATE(1118), 1, - sym__maybe_function_expression, - STATE(1216), 1, - sym__maybe_record_expression, - STATE(1218), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(6), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(40), 2, - sym_record, - sym_record_update, - ACTIONS(51), 3, sym__hex, sym__octal, sym__binary, - STATE(28), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(98), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [23354] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - anon_sym_POUND, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(21), 1, - anon_sym_LT_LT, - ACTIONS(23), 1, - anon_sym_DASH, - ACTIONS(33), 1, - anon_sym_todo, - ACTIONS(35), 1, - anon_sym_case, - ACTIONS(37), 1, - anon_sym_let, - ACTIONS(39), 1, - anon_sym_assert, - ACTIONS(41), 1, - anon_sym_BANG, - ACTIONS(47), 1, - anon_sym_DQUOTE, - ACTIONS(53), 1, - sym__decimal, - ACTIONS(55), 1, - sym__name, - ACTIONS(57), 1, sym__upname, - ACTIONS(885), 1, - anon_sym_fn, - ACTIONS(946), 1, - sym_float, - STATE(21), 1, - sym_identifier, - STATE(29), 1, - sym_tuple, - STATE(31), 1, - sym_anonymous_function, - STATE(1118), 1, - sym__maybe_function_expression, - STATE(1216), 1, - sym__maybe_record_expression, - STATE(1218), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(6), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(40), 2, - sym_record, - sym_record_update, - ACTIONS(51), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(28), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(100), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [23461] = 4, + [22490] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(613), 17, + ACTIONS(603), 17, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -24655,7 +23888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(611), 28, + ACTIONS(601), 28, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -24684,13 +23917,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [23518] = 4, + [22547] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(609), 17, + ACTIONS(529), 17, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -24708,7 +23941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(607), 28, + ACTIONS(527), 28, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -24737,13 +23970,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [23575] = 4, + [22604] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(603), 17, + ACTIONS(607), 17, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -24761,7 +23994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(601), 28, + ACTIONS(605), 28, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -24790,93 +24023,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [23632] = 31, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(447), 1, - anon_sym_LBRACE, - ACTIONS(451), 1, - anon_sym_POUND, - ACTIONS(453), 1, - anon_sym_LBRACK, - ACTIONS(455), 1, - anon_sym_LT_LT, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(459), 1, - anon_sym_fn, - ACTIONS(463), 1, - anon_sym_todo, - ACTIONS(465), 1, - anon_sym_case, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(825), 1, - anon_sym_let, - ACTIONS(827), 1, - anon_sym_assert, - ACTIONS(829), 1, - anon_sym_BANG, - ACTIONS(831), 1, - sym_float, - ACTIONS(948), 1, - anon_sym_GT_GT, - STATE(141), 1, - sym_identifier, - STATE(158), 1, - sym_tuple, - STATE(164), 1, - sym_anonymous_function, - STATE(977), 1, - sym_expression_bit_string_segment, - STATE(1095), 1, - sym__maybe_function_expression, - STATE(1183), 1, - sym__maybe_record_expression, - STATE(1246), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(109), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(169), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(140), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(914), 9, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [23743] = 4, + [22661] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(501), 17, + ACTIONS(525), 17, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -24894,7 +24047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(499), 28, + ACTIONS(523), 28, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -24923,91 +24076,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [23800] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(286), 1, - anon_sym_POUND, - ACTIONS(290), 1, - anon_sym_LBRACK, - ACTIONS(292), 1, - anon_sym_LT_LT, - ACTIONS(294), 1, - anon_sym_DASH, - ACTIONS(296), 1, - anon_sym_fn, - ACTIONS(298), 1, - anon_sym_todo, - ACTIONS(302), 1, - anon_sym_case, - ACTIONS(304), 1, - anon_sym_let, - ACTIONS(306), 1, - anon_sym_assert, - ACTIONS(308), 1, - anon_sym_BANG, - ACTIONS(310), 1, - anon_sym_DQUOTE, - ACTIONS(316), 1, - sym__decimal, - ACTIONS(322), 1, - sym__upname, - ACTIONS(689), 1, - sym__name, - ACTIONS(950), 1, - sym_float, - STATE(361), 1, - sym_identifier, - STATE(385), 1, - sym_tuple, - STATE(393), 1, - sym_anonymous_function, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1213), 1, - sym__maybe_record_expression, - STATE(1243), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(360), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(382), 2, - sym_record, - sym_record_update, - ACTIONS(314), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(367), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(594), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [23907] = 4, + [22718] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(509), 17, + ACTIONS(611), 17, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -25025,7 +24100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(507), 28, + ACTIONS(609), 28, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -25054,73 +24129,73 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [23964] = 29, + [22775] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(11), 1, + ACTIONS(447), 1, anon_sym_LBRACE, - ACTIONS(17), 1, + ACTIONS(451), 1, anon_sym_POUND, - ACTIONS(19), 1, + ACTIONS(453), 1, anon_sym_LBRACK, - ACTIONS(21), 1, + ACTIONS(455), 1, anon_sym_LT_LT, - ACTIONS(23), 1, + ACTIONS(457), 1, anon_sym_DASH, - ACTIONS(33), 1, + ACTIONS(459), 1, + anon_sym_fn, + ACTIONS(463), 1, anon_sym_todo, - ACTIONS(35), 1, + ACTIONS(465), 1, anon_sym_case, - ACTIONS(37), 1, + ACTIONS(467), 1, anon_sym_let, - ACTIONS(39), 1, + ACTIONS(469), 1, anon_sym_assert, - ACTIONS(41), 1, + ACTIONS(471), 1, anon_sym_BANG, - ACTIONS(47), 1, + ACTIONS(473), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(479), 1, sym__decimal, - ACTIONS(55), 1, + ACTIONS(481), 1, sym__name, - ACTIONS(57), 1, + ACTIONS(483), 1, sym__upname, - ACTIONS(885), 1, - anon_sym_fn, - ACTIONS(952), 1, + ACTIONS(938), 1, sym_float, - STATE(21), 1, + STATE(133), 1, sym_identifier, - STATE(29), 1, + STATE(163), 1, sym_tuple, - STATE(31), 1, + STATE(175), 1, sym_anonymous_function, - STATE(1118), 1, + STATE(1100), 1, sym__maybe_function_expression, - STATE(1216), 1, + STATE(1199), 1, sym__maybe_record_expression, - STATE(1218), 1, + STATE(1231), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(6), 2, + STATE(121), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(40), 2, + STATE(164), 2, sym_record, sym_record_update, - ACTIONS(51), 3, + ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(28), 5, + STATE(151), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(94), 11, + STATE(284), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -25132,73 +24207,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [24071] = 29, + [22882] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(781), 1, + ACTIONS(447), 1, anon_sym_LBRACE, - ACTIONS(783), 1, + ACTIONS(451), 1, anon_sym_POUND, - ACTIONS(785), 1, + ACTIONS(453), 1, anon_sym_LBRACK, - ACTIONS(787), 1, + ACTIONS(455), 1, anon_sym_LT_LT, - ACTIONS(789), 1, + ACTIONS(457), 1, anon_sym_DASH, - ACTIONS(791), 1, + ACTIONS(459), 1, anon_sym_fn, - ACTIONS(793), 1, + ACTIONS(463), 1, anon_sym_todo, - ACTIONS(795), 1, + ACTIONS(465), 1, anon_sym_case, - ACTIONS(797), 1, + ACTIONS(467), 1, anon_sym_let, - ACTIONS(799), 1, + ACTIONS(469), 1, anon_sym_assert, - ACTIONS(801), 1, + ACTIONS(471), 1, anon_sym_BANG, - ACTIONS(803), 1, + ACTIONS(473), 1, anon_sym_DQUOTE, - ACTIONS(809), 1, + ACTIONS(479), 1, sym__decimal, - ACTIONS(811), 1, + ACTIONS(481), 1, sym__name, - ACTIONS(813), 1, + ACTIONS(483), 1, sym__upname, - ACTIONS(954), 1, + ACTIONS(940), 1, sym_float, - STATE(301), 1, + STATE(133), 1, sym_identifier, - STATE(322), 1, + STATE(163), 1, sym_tuple, - STATE(325), 1, + STATE(175), 1, sym_anonymous_function, - STATE(1140), 1, + STATE(1100), 1, sym__maybe_function_expression, - STATE(1185), 1, - sym__maybe_tuple_expression, - STATE(1224), 1, + STATE(1199), 1, sym__maybe_record_expression, + STATE(1231), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(299), 2, + STATE(121), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(326), 2, + STATE(164), 2, sym_record, sym_record_update, - ACTIONS(807), 3, + ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(302), 5, + STATE(151), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(344), 11, + STATE(280), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -25210,7 +24285,7 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [24178] = 31, + [22989] = 29, ACTIONS(3), 1, sym_module_comment, ACTIONS(447), 1, @@ -25229,6 +24304,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_todo, ACTIONS(465), 1, anon_sym_case, + ACTIONS(467), 1, + anon_sym_let, + ACTIONS(469), 1, + anon_sym_assert, + ACTIONS(471), 1, + anon_sym_BANG, ACTIONS(473), 1, anon_sym_DQUOTE, ACTIONS(479), 1, @@ -25237,50 +24318,42 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(483), 1, sym__upname, - ACTIONS(825), 1, - anon_sym_let, - ACTIONS(827), 1, - anon_sym_assert, - ACTIONS(829), 1, - anon_sym_BANG, - ACTIONS(831), 1, + ACTIONS(942), 1, sym_float, - ACTIONS(956), 1, - anon_sym_GT_GT, - STATE(141), 1, + STATE(133), 1, sym_identifier, - STATE(158), 1, + STATE(163), 1, sym_tuple, - STATE(164), 1, + STATE(175), 1, sym_anonymous_function, - STATE(1095), 1, + STATE(1100), 1, sym__maybe_function_expression, - STATE(1141), 1, - sym_expression_bit_string_segment, - STATE(1183), 1, + STATE(1199), 1, sym__maybe_record_expression, - STATE(1246), 1, + STATE(1231), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(109), 2, + STATE(121), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(164), 2, sym_record, sym_record_update, ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(140), 5, + STATE(151), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(914), 9, + STATE(283), 11, + sym__expression, + sym_binary_expression, sym__expression_unit, sym_todo, sym_list, @@ -25290,73 +24363,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [24289] = 29, + [23096] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(447), 1, anon_sym_LBRACE, - ACTIONS(286), 1, + ACTIONS(451), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(453), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(455), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(457), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(459), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(463), 1, anon_sym_todo, - ACTIONS(302), 1, + ACTIONS(465), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(467), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(469), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(471), 1, anon_sym_BANG, - ACTIONS(310), 1, + ACTIONS(473), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(479), 1, sym__decimal, - ACTIONS(322), 1, - sym__upname, - ACTIONS(689), 1, + ACTIONS(481), 1, sym__name, - ACTIONS(958), 1, + ACTIONS(483), 1, + sym__upname, + ACTIONS(944), 1, sym_float, - STATE(361), 1, + STATE(133), 1, sym_identifier, - STATE(385), 1, + STATE(163), 1, sym_tuple, - STATE(393), 1, + STATE(175), 1, sym_anonymous_function, STATE(1100), 1, sym__maybe_function_expression, - STATE(1213), 1, + STATE(1199), 1, sym__maybe_record_expression, - STATE(1243), 1, + STATE(1231), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(360), 2, + STATE(121), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(382), 2, + STATE(164), 2, sym_record, sym_record_update, - ACTIONS(314), 3, + ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(367), 5, + STATE(151), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(575), 11, + STATE(282), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -25368,7 +24441,7 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [24396] = 31, + [23203] = 29, ACTIONS(3), 1, sym_module_comment, ACTIONS(447), 1, @@ -25387,6 +24460,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_todo, ACTIONS(465), 1, anon_sym_case, + ACTIONS(467), 1, + anon_sym_let, + ACTIONS(469), 1, + anon_sym_assert, + ACTIONS(471), 1, + anon_sym_BANG, ACTIONS(473), 1, anon_sym_DQUOTE, ACTIONS(479), 1, @@ -25395,50 +24474,42 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(483), 1, sym__upname, - ACTIONS(825), 1, - anon_sym_let, - ACTIONS(827), 1, - anon_sym_assert, - ACTIONS(829), 1, - anon_sym_BANG, - ACTIONS(831), 1, + ACTIONS(946), 1, sym_float, - ACTIONS(960), 1, - anon_sym_GT_GT, - STATE(141), 1, + STATE(133), 1, sym_identifier, - STATE(158), 1, + STATE(163), 1, sym_tuple, - STATE(164), 1, + STATE(175), 1, sym_anonymous_function, - STATE(1095), 1, + STATE(1100), 1, sym__maybe_function_expression, - STATE(1141), 1, - sym_expression_bit_string_segment, - STATE(1183), 1, + STATE(1199), 1, sym__maybe_record_expression, - STATE(1246), 1, + STATE(1231), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(109), 2, + STATE(121), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(164), 2, sym_record, sym_record_update, ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(140), 5, + STATE(151), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(914), 9, + STATE(281), 11, + sym__expression, + sym_binary_expression, sym__expression_unit, sym_todo, sym_list, @@ -25448,7 +24519,7 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [24507] = 31, + [23310] = 29, ACTIONS(3), 1, sym_module_comment, ACTIONS(447), 1, @@ -25467,6 +24538,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_todo, ACTIONS(465), 1, anon_sym_case, + ACTIONS(467), 1, + anon_sym_let, + ACTIONS(469), 1, + anon_sym_assert, + ACTIONS(471), 1, + anon_sym_BANG, ACTIONS(473), 1, anon_sym_DQUOTE, ACTIONS(479), 1, @@ -25475,50 +24552,42 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(483), 1, sym__upname, - ACTIONS(825), 1, - anon_sym_let, - ACTIONS(827), 1, - anon_sym_assert, - ACTIONS(829), 1, - anon_sym_BANG, - ACTIONS(831), 1, + ACTIONS(948), 1, sym_float, - ACTIONS(962), 1, - anon_sym_GT_GT, - STATE(141), 1, + STATE(133), 1, sym_identifier, - STATE(158), 1, + STATE(163), 1, sym_tuple, - STATE(164), 1, + STATE(175), 1, sym_anonymous_function, - STATE(1095), 1, + STATE(1100), 1, sym__maybe_function_expression, - STATE(1141), 1, - sym_expression_bit_string_segment, - STATE(1183), 1, + STATE(1199), 1, sym__maybe_record_expression, - STATE(1246), 1, + STATE(1231), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(109), 2, + STATE(121), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(164), 2, sym_record, sym_record_update, ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(140), 5, + STATE(151), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(914), 9, + STATE(287), 11, + sym__expression, + sym_binary_expression, sym__expression_unit, sym_todo, sym_list, @@ -25528,73 +24597,232 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [24618] = 29, + [23417] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(11), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(671), 17, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_fn, + anon_sym_try, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(669), 28, anon_sym_LBRACE, - ACTIONS(17), 1, + anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_POUND, - ACTIONS(19), 1, anon_sym_LBRACK, - ACTIONS(21), 1, anon_sym_LT_LT, - ACTIONS(23), 1, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [23474] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(637), 17, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(33), 1, + anon_sym_fn, + anon_sym_try, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(35), 1, anon_sym_case, - ACTIONS(37), 1, anon_sym_let, - ACTIONS(39), 1, anon_sym_assert, - ACTIONS(41), 1, anon_sym_BANG, - ACTIONS(47), 1, + sym__decimal, + sym__name, + ACTIONS(635), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, anon_sym_DQUOTE, - ACTIONS(53), 1, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [23531] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(617), 17, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_fn, + anon_sym_try, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_BANG, sym__decimal, - ACTIONS(55), 1, sym__name, - ACTIONS(57), 1, + ACTIONS(615), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, sym__upname, - ACTIONS(885), 1, + [23588] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(802), 1, + anon_sym_LBRACE, + ACTIONS(804), 1, + anon_sym_POUND, + ACTIONS(806), 1, + anon_sym_LBRACK, + ACTIONS(808), 1, + anon_sym_LT_LT, + ACTIONS(810), 1, + anon_sym_DASH, + ACTIONS(812), 1, anon_sym_fn, - ACTIONS(964), 1, + ACTIONS(814), 1, + anon_sym_todo, + ACTIONS(816), 1, + anon_sym_case, + ACTIONS(818), 1, + anon_sym_let, + ACTIONS(820), 1, + anon_sym_assert, + ACTIONS(822), 1, + anon_sym_BANG, + ACTIONS(824), 1, + anon_sym_DQUOTE, + ACTIONS(830), 1, + sym__decimal, + ACTIONS(832), 1, + sym__name, + ACTIONS(834), 1, + sym__upname, + ACTIONS(950), 1, sym_float, - STATE(21), 1, + STATE(305), 1, sym_identifier, - STATE(29), 1, + STATE(327), 1, sym_tuple, - STATE(31), 1, + STATE(328), 1, sym_anonymous_function, - STATE(1118), 1, + STATE(1156), 1, sym__maybe_function_expression, - STATE(1216), 1, - sym__maybe_record_expression, - STATE(1218), 1, + STATE(1195), 1, sym__maybe_tuple_expression, + STATE(1240), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(6), 2, + STATE(299), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(40), 2, + STATE(325), 2, sym_record, sym_record_update, - ACTIONS(51), 3, + ACTIONS(828), 3, sym__hex, sym__octal, sym__binary, - STATE(28), 5, + STATE(304), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(88), 11, + STATE(356), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -25606,7 +24834,7 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [24725] = 31, + [23695] = 29, ACTIONS(3), 1, sym_module_comment, ACTIONS(447), 1, @@ -25625,6 +24853,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_todo, ACTIONS(465), 1, anon_sym_case, + ACTIONS(467), 1, + anon_sym_let, + ACTIONS(469), 1, + anon_sym_assert, + ACTIONS(471), 1, + anon_sym_BANG, ACTIONS(473), 1, anon_sym_DQUOTE, ACTIONS(479), 1, @@ -25633,50 +24867,42 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(483), 1, sym__upname, - ACTIONS(825), 1, - anon_sym_let, - ACTIONS(827), 1, - anon_sym_assert, - ACTIONS(829), 1, - anon_sym_BANG, - ACTIONS(831), 1, + ACTIONS(952), 1, sym_float, - ACTIONS(966), 1, - anon_sym_GT_GT, - STATE(141), 1, + STATE(133), 1, sym_identifier, - STATE(158), 1, + STATE(163), 1, sym_tuple, - STATE(164), 1, + STATE(175), 1, sym_anonymous_function, - STATE(988), 1, - sym_expression_bit_string_segment, - STATE(1095), 1, + STATE(1100), 1, sym__maybe_function_expression, - STATE(1183), 1, + STATE(1199), 1, sym__maybe_record_expression, - STATE(1246), 1, + STATE(1231), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(109), 2, + STATE(121), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(164), 2, sym_record, sym_record_update, ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(140), 5, + STATE(151), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(914), 9, + STATE(291), 11, + sym__expression, + sym_binary_expression, sym__expression_unit, sym_todo, sym_list, @@ -25686,73 +24912,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [24836] = 29, + [23802] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(286), 1, + ACTIONS(447), 1, + anon_sym_LBRACE, + ACTIONS(451), 1, anon_sym_POUND, - ACTIONS(290), 1, + ACTIONS(453), 1, anon_sym_LBRACK, - ACTIONS(292), 1, + ACTIONS(455), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + ACTIONS(457), 1, anon_sym_DASH, - ACTIONS(296), 1, + ACTIONS(459), 1, anon_sym_fn, - ACTIONS(298), 1, + ACTIONS(463), 1, anon_sym_todo, - ACTIONS(302), 1, + ACTIONS(465), 1, anon_sym_case, - ACTIONS(304), 1, + ACTIONS(467), 1, anon_sym_let, - ACTIONS(306), 1, + ACTIONS(469), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(471), 1, anon_sym_BANG, - ACTIONS(310), 1, + ACTIONS(473), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(479), 1, sym__decimal, - ACTIONS(322), 1, - sym__upname, - ACTIONS(689), 1, + ACTIONS(481), 1, sym__name, - ACTIONS(695), 1, + ACTIONS(483), 1, + sym__upname, + ACTIONS(954), 1, sym_float, - ACTIONS(968), 1, - anon_sym_LBRACE, - STATE(361), 1, + STATE(133), 1, sym_identifier, - STATE(385), 1, + STATE(163), 1, sym_tuple, - STATE(393), 1, + STATE(175), 1, sym_anonymous_function, STATE(1100), 1, sym__maybe_function_expression, - STATE(1213), 1, + STATE(1199), 1, sym__maybe_record_expression, - STATE(1243), 1, + STATE(1231), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(360), 2, + STATE(121), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(382), 2, + STATE(164), 2, sym_record, sym_record_update, - ACTIONS(314), 3, + ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(367), 5, + STATE(151), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(520), 11, + STATE(285), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -25764,85 +24990,166 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [24943] = 29, + [23909] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(661), 17, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_fn, + anon_sym_try, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(659), 28, anon_sym_LBRACE, - ACTIONS(286), 1, + anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_POUND, - ACTIONS(290), 1, anon_sym_LBRACK, - ACTIONS(292), 1, anon_sym_LT_LT, - ACTIONS(294), 1, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [23966] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(489), 17, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(296), 1, anon_sym_fn, - ACTIONS(298), 1, + anon_sym_try, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(302), 1, anon_sym_case, - ACTIONS(304), 1, anon_sym_let, - ACTIONS(306), 1, anon_sym_assert, - ACTIONS(308), 1, anon_sym_BANG, - ACTIONS(310), 1, - anon_sym_DQUOTE, - ACTIONS(316), 1, sym__decimal, - ACTIONS(322), 1, - sym__upname, - ACTIONS(689), 1, sym__name, - ACTIONS(971), 1, + ACTIONS(487), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DQUOTE, sym_float, - STATE(361), 1, - sym_identifier, - STATE(385), 1, - sym_tuple, - STATE(393), 1, - sym_anonymous_function, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1213), 1, - sym__maybe_record_expression, - STATE(1243), 1, - sym__maybe_tuple_expression, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [24023] = 4, + ACTIONS(3), 1, + sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(360), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(382), 2, - sym_record, - sym_record_update, - ACTIONS(314), 3, + ACTIONS(647), 17, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_fn, + anon_sym_try, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(645), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DQUOTE, + sym_float, sym__hex, sym__octal, sym__binary, - STATE(367), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(614), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [25050] = 30, + sym__upname, + [24080] = 29, ACTIONS(3), 1, sym_module_comment, ACTIONS(447), 1, @@ -25861,6 +25168,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_todo, ACTIONS(465), 1, anon_sym_case, + ACTIONS(467), 1, + anon_sym_let, + ACTIONS(469), 1, + anon_sym_assert, + ACTIONS(471), 1, + anon_sym_BANG, ACTIONS(473), 1, anon_sym_DQUOTE, ACTIONS(479), 1, @@ -25869,48 +25182,42 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(483), 1, sym__upname, - ACTIONS(825), 1, - anon_sym_let, - ACTIONS(827), 1, - anon_sym_assert, - ACTIONS(829), 1, - anon_sym_BANG, - ACTIONS(831), 1, + ACTIONS(956), 1, sym_float, - STATE(141), 1, + STATE(133), 1, sym_identifier, - STATE(158), 1, + STATE(163), 1, sym_tuple, - STATE(164), 1, + STATE(175), 1, sym_anonymous_function, - STATE(1095), 1, + STATE(1100), 1, sym__maybe_function_expression, - STATE(1141), 1, - sym_expression_bit_string_segment, - STATE(1183), 1, + STATE(1199), 1, sym__maybe_record_expression, - STATE(1246), 1, + STATE(1231), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(109), 2, + STATE(121), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(164), 2, sym_record, sym_record_update, ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(140), 5, + STATE(151), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(914), 9, + STATE(289), 11, + sym__expression, + sym_binary_expression, sym__expression_unit, sym_todo, sym_list, @@ -25920,73 +25227,75 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [25158] = 29, + [24187] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(11), 1, anon_sym_LBRACE, - ACTIONS(451), 1, + ACTIONS(17), 1, anon_sym_POUND, - ACTIONS(453), 1, + ACTIONS(19), 1, anon_sym_LBRACK, - ACTIONS(455), 1, + ACTIONS(21), 1, anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(23), 1, anon_sym_DASH, - ACTIONS(459), 1, - anon_sym_fn, - ACTIONS(463), 1, + ACTIONS(33), 1, anon_sym_todo, - ACTIONS(465), 1, + ACTIONS(35), 1, anon_sym_case, - ACTIONS(473), 1, + ACTIONS(37), 1, + anon_sym_let, + ACTIONS(39), 1, + anon_sym_assert, + ACTIONS(41), 1, + anon_sym_BANG, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(53), 1, sym__decimal, - ACTIONS(481), 1, + ACTIONS(55), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(57), 1, sym__upname, - ACTIONS(825), 1, - anon_sym_let, - ACTIONS(827), 1, - anon_sym_assert, - ACTIONS(829), 1, - anon_sym_BANG, - ACTIONS(973), 1, + ACTIONS(781), 1, + anon_sym_fn, + ACTIONS(958), 1, sym_float, - STATE(141), 1, + STATE(25), 1, sym_identifier, - STATE(158), 1, - sym_tuple, - STATE(164), 1, + STATE(29), 1, sym_anonymous_function, - STATE(1095), 1, + STATE(40), 1, + sym_tuple, + STATE(1051), 1, sym__maybe_function_expression, - STATE(1183), 1, - sym__maybe_record_expression, - STATE(1246), 1, + STATE(1178), 1, sym__maybe_tuple_expression, + STATE(1232), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(109), 2, + STATE(6), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(39), 2, sym_record, sym_record_update, - ACTIONS(477), 3, + ACTIONS(51), 3, sym__hex, sym__octal, sym__binary, - STATE(140), 5, + STATE(8), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(257), 9, + STATE(90), 11, + sym__expression, + sym_binary_expression, sym__expression_unit, sym_todo, sym_list, @@ -25996,7 +25305,7 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [25263] = 29, + [24294] = 29, ACTIONS(3), 1, sym_module_comment, ACTIONS(11), 1, @@ -26027,42 +25336,44 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(57), 1, sym__upname, - ACTIONS(885), 1, + ACTIONS(781), 1, anon_sym_fn, - ACTIONS(975), 1, + ACTIONS(960), 1, sym_float, - STATE(21), 1, + STATE(25), 1, sym_identifier, STATE(29), 1, - sym_tuple, - STATE(31), 1, sym_anonymous_function, - STATE(1118), 1, + STATE(40), 1, + sym_tuple, + STATE(1051), 1, sym__maybe_function_expression, - STATE(1216), 1, - sym__maybe_record_expression, - STATE(1218), 1, + STATE(1178), 1, sym__maybe_tuple_expression, + STATE(1232), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, STATE(6), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(40), 2, + STATE(39), 2, sym_record, sym_record_update, ACTIONS(51), 3, sym__hex, sym__octal, sym__binary, - STATE(28), 5, + STATE(8), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(76), 9, + STATE(92), 11, + sym__expression, + sym_binary_expression, sym__expression_unit, sym_todo, sym_list, @@ -26072,73 +25383,799 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [25368] = 29, + [24401] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(286), 1, - anon_sym_POUND, - ACTIONS(290), 1, - anon_sym_LBRACK, - ACTIONS(292), 1, - anon_sym_LT_LT, - ACTIONS(294), 1, - anon_sym_DASH, - ACTIONS(296), 1, - anon_sym_fn, - ACTIONS(298), 1, - anon_sym_todo, - ACTIONS(302), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(651), 17, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_fn, + anon_sym_try, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, anon_sym_case, - ACTIONS(304), 1, anon_sym_let, - ACTIONS(306), 1, anon_sym_assert, - ACTIONS(308), 1, anon_sym_BANG, - ACTIONS(310), 1, + sym__decimal, + sym__name, + ACTIONS(649), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, anon_sym_DQUOTE, - ACTIONS(316), 1, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [24458] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(657), 17, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_fn, + anon_sym_try, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_BANG, sym__decimal, - ACTIONS(322), 1, + sym__name, + ACTIONS(655), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, sym__upname, - ACTIONS(689), 1, + [24515] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(447), 1, + anon_sym_LBRACE, + ACTIONS(451), 1, + anon_sym_POUND, + ACTIONS(453), 1, + anon_sym_LBRACK, + ACTIONS(455), 1, + anon_sym_LT_LT, + ACTIONS(457), 1, + anon_sym_DASH, + ACTIONS(459), 1, + anon_sym_fn, + ACTIONS(463), 1, + anon_sym_todo, + ACTIONS(465), 1, + anon_sym_case, + ACTIONS(467), 1, + anon_sym_let, + ACTIONS(469), 1, + anon_sym_assert, + ACTIONS(471), 1, + anon_sym_BANG, + ACTIONS(473), 1, + anon_sym_DQUOTE, + ACTIONS(479), 1, + sym__decimal, + ACTIONS(481), 1, sym__name, - ACTIONS(977), 1, + ACTIONS(483), 1, + sym__upname, + ACTIONS(962), 1, sym_float, - STATE(361), 1, + STATE(133), 1, sym_identifier, - STATE(385), 1, + STATE(163), 1, sym_tuple, - STATE(393), 1, + STATE(175), 1, sym_anonymous_function, STATE(1100), 1, sym__maybe_function_expression, - STATE(1213), 1, + STATE(1199), 1, sym__maybe_record_expression, - STATE(1243), 1, + STATE(1231), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(360), 2, + STATE(121), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(382), 2, + STATE(164), 2, sym_record, sym_record_update, - ACTIONS(314), 3, + ACTIONS(477), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(151), 5, + sym_expression_group, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(286), 11, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_list, + sym__expression_bit_string, + sym_let, + sym_assert, + sym_negation, + sym_string, + sym_integer, + [24622] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + anon_sym_POUND, + ACTIONS(19), 1, + anon_sym_LBRACK, + ACTIONS(21), 1, + anon_sym_LT_LT, + ACTIONS(23), 1, + anon_sym_DASH, + ACTIONS(33), 1, + anon_sym_todo, + ACTIONS(35), 1, + anon_sym_case, + ACTIONS(37), 1, + anon_sym_let, + ACTIONS(39), 1, + anon_sym_assert, + ACTIONS(41), 1, + anon_sym_BANG, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym__decimal, + ACTIONS(55), 1, + sym__name, + ACTIONS(57), 1, + sym__upname, + ACTIONS(781), 1, + anon_sym_fn, + ACTIONS(964), 1, + sym_float, + STATE(25), 1, + sym_identifier, + STATE(29), 1, + sym_anonymous_function, + STATE(40), 1, + sym_tuple, + STATE(1051), 1, + sym__maybe_function_expression, + STATE(1178), 1, + sym__maybe_tuple_expression, + STATE(1232), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(6), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(39), 2, + sym_record, + sym_record_update, + ACTIONS(51), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(8), 5, + sym_expression_group, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(59), 11, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_list, + sym__expression_bit_string, + sym_let, + sym_assert, + sym_negation, + sym_string, + sym_integer, + [24729] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(447), 1, + anon_sym_LBRACE, + ACTIONS(451), 1, + anon_sym_POUND, + ACTIONS(453), 1, + anon_sym_LBRACK, + ACTIONS(455), 1, + anon_sym_LT_LT, + ACTIONS(457), 1, + anon_sym_DASH, + ACTIONS(459), 1, + anon_sym_fn, + ACTIONS(463), 1, + anon_sym_todo, + ACTIONS(465), 1, + anon_sym_case, + ACTIONS(467), 1, + anon_sym_let, + ACTIONS(469), 1, + anon_sym_assert, + ACTIONS(471), 1, + anon_sym_BANG, + ACTIONS(473), 1, + anon_sym_DQUOTE, + ACTIONS(479), 1, + sym__decimal, + ACTIONS(481), 1, + sym__name, + ACTIONS(483), 1, + sym__upname, + ACTIONS(966), 1, + sym_float, + STATE(133), 1, + sym_identifier, + STATE(163), 1, + sym_tuple, + STATE(175), 1, + sym_anonymous_function, + STATE(1100), 1, + sym__maybe_function_expression, + STATE(1199), 1, + sym__maybe_record_expression, + STATE(1231), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(121), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(164), 2, + sym_record, + sym_record_update, + ACTIONS(477), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(151), 5, + sym_expression_group, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(288), 11, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_list, + sym__expression_bit_string, + sym_let, + sym_assert, + sym_negation, + sym_string, + sym_integer, + [24836] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + anon_sym_POUND, + ACTIONS(19), 1, + anon_sym_LBRACK, + ACTIONS(21), 1, + anon_sym_LT_LT, + ACTIONS(23), 1, + anon_sym_DASH, + ACTIONS(33), 1, + anon_sym_todo, + ACTIONS(35), 1, + anon_sym_case, + ACTIONS(37), 1, + anon_sym_let, + ACTIONS(39), 1, + anon_sym_assert, + ACTIONS(41), 1, + anon_sym_BANG, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym__decimal, + ACTIONS(55), 1, + sym__name, + ACTIONS(57), 1, + sym__upname, + ACTIONS(781), 1, + anon_sym_fn, + ACTIONS(968), 1, + sym_float, + STATE(25), 1, + sym_identifier, + STATE(29), 1, + sym_anonymous_function, + STATE(40), 1, + sym_tuple, + STATE(1051), 1, + sym__maybe_function_expression, + STATE(1178), 1, + sym__maybe_tuple_expression, + STATE(1232), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(6), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(39), 2, + sym_record, + sym_record_update, + ACTIONS(51), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(8), 5, + sym_expression_group, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(100), 11, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_list, + sym__expression_bit_string, + sym_let, + sym_assert, + sym_negation, + sym_string, + sym_integer, + [24943] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(279), 1, + anon_sym_POUND, + ACTIONS(283), 1, + anon_sym_LBRACK, + ACTIONS(285), 1, + anon_sym_LT_LT, + ACTIONS(287), 1, + anon_sym_DASH, + ACTIONS(289), 1, + anon_sym_fn, + ACTIONS(291), 1, + anon_sym_todo, + ACTIONS(295), 1, + anon_sym_case, + ACTIONS(297), 1, + anon_sym_let, + ACTIONS(299), 1, + anon_sym_assert, + ACTIONS(301), 1, + anon_sym_BANG, + ACTIONS(303), 1, + anon_sym_DQUOTE, + ACTIONS(309), 1, + sym__decimal, + ACTIONS(315), 1, + sym__upname, + ACTIONS(691), 1, + sym_float, + ACTIONS(693), 1, + sym__name, + ACTIONS(970), 1, + anon_sym_LBRACE, + STATE(375), 1, + sym_identifier, + STATE(380), 1, + sym_tuple, + STATE(387), 1, + sym_anonymous_function, + STATE(1116), 1, + sym__maybe_function_expression, + STATE(1218), 1, + sym__maybe_tuple_expression, + STATE(1229), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(359), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(392), 2, + sym_record, + sym_record_update, + ACTIONS(307), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(374), 5, + sym_expression_group, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(509), 11, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_list, + sym__expression_bit_string, + sym_let, + sym_assert, + sym_negation, + sym_string, + sym_integer, + [25050] = 30, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(447), 1, + anon_sym_LBRACE, + ACTIONS(451), 1, + anon_sym_POUND, + ACTIONS(453), 1, + anon_sym_LBRACK, + ACTIONS(455), 1, + anon_sym_LT_LT, + ACTIONS(457), 1, + anon_sym_DASH, + ACTIONS(459), 1, + anon_sym_fn, + ACTIONS(463), 1, + anon_sym_todo, + ACTIONS(465), 1, + anon_sym_case, + ACTIONS(473), 1, + anon_sym_DQUOTE, + ACTIONS(479), 1, + sym__decimal, + ACTIONS(481), 1, + sym__name, + ACTIONS(483), 1, + sym__upname, + ACTIONS(794), 1, + anon_sym_let, + ACTIONS(796), 1, + anon_sym_assert, + ACTIONS(798), 1, + anon_sym_BANG, + ACTIONS(800), 1, + sym_float, + STATE(133), 1, + sym_identifier, + STATE(163), 1, + sym_tuple, + STATE(175), 1, + sym_anonymous_function, + STATE(1100), 1, + sym__maybe_function_expression, + STATE(1120), 1, + sym_expression_bit_string_segment, + STATE(1199), 1, + sym__maybe_record_expression, + STATE(1231), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(121), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(164), 2, + sym_record, + sym_record_update, + ACTIONS(477), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(151), 5, + sym_expression_group, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(927), 9, + sym__expression_unit, + sym_todo, + sym_list, + sym__expression_bit_string, + sym_let, + sym_assert, + sym_negation, + sym_string, + sym_integer, + [25158] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(447), 1, + anon_sym_LBRACE, + ACTIONS(451), 1, + anon_sym_POUND, + ACTIONS(453), 1, + anon_sym_LBRACK, + ACTIONS(455), 1, + anon_sym_LT_LT, + ACTIONS(457), 1, + anon_sym_DASH, + ACTIONS(459), 1, + anon_sym_fn, + ACTIONS(463), 1, + anon_sym_todo, + ACTIONS(465), 1, + anon_sym_case, + ACTIONS(473), 1, + anon_sym_DQUOTE, + ACTIONS(479), 1, + sym__decimal, + ACTIONS(481), 1, + sym__name, + ACTIONS(483), 1, + sym__upname, + ACTIONS(794), 1, + anon_sym_let, + ACTIONS(796), 1, + anon_sym_assert, + ACTIONS(798), 1, + anon_sym_BANG, + ACTIONS(973), 1, + sym_float, + STATE(133), 1, + sym_identifier, + STATE(163), 1, + sym_tuple, + STATE(175), 1, + sym_anonymous_function, + STATE(1100), 1, + sym__maybe_function_expression, + STATE(1199), 1, + sym__maybe_record_expression, + STATE(1231), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(121), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(164), 2, + sym_record, + sym_record_update, + ACTIONS(477), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(151), 5, + sym_expression_group, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(248), 9, + sym__expression_unit, + sym_todo, + sym_list, + sym__expression_bit_string, + sym_let, + sym_assert, + sym_negation, + sym_string, + sym_integer, + [25263] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(802), 1, + anon_sym_LBRACE, + ACTIONS(804), 1, + anon_sym_POUND, + ACTIONS(806), 1, + anon_sym_LBRACK, + ACTIONS(808), 1, + anon_sym_LT_LT, + ACTIONS(810), 1, + anon_sym_DASH, + ACTIONS(812), 1, + anon_sym_fn, + ACTIONS(814), 1, + anon_sym_todo, + ACTIONS(816), 1, + anon_sym_case, + ACTIONS(818), 1, + anon_sym_let, + ACTIONS(820), 1, + anon_sym_assert, + ACTIONS(822), 1, + anon_sym_BANG, + ACTIONS(824), 1, + anon_sym_DQUOTE, + ACTIONS(830), 1, + sym__decimal, + ACTIONS(832), 1, + sym__name, + ACTIONS(834), 1, + sym__upname, + ACTIONS(975), 1, + sym_float, + STATE(305), 1, + sym_identifier, + STATE(327), 1, + sym_tuple, + STATE(328), 1, + sym_anonymous_function, + STATE(1156), 1, + sym__maybe_function_expression, + STATE(1195), 1, + sym__maybe_tuple_expression, + STATE(1240), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(299), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(325), 2, + sym_record, + sym_record_update, + ACTIONS(828), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(304), 5, + sym_expression_group, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(342), 9, + sym__expression_unit, + sym_todo, + sym_list, + sym__expression_bit_string, + sym_let, + sym_assert, + sym_negation, + sym_string, + sym_integer, + [25368] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(447), 1, + anon_sym_LBRACE, + ACTIONS(451), 1, + anon_sym_POUND, + ACTIONS(453), 1, + anon_sym_LBRACK, + ACTIONS(455), 1, + anon_sym_LT_LT, + ACTIONS(457), 1, + anon_sym_DASH, + ACTIONS(459), 1, + anon_sym_fn, + ACTIONS(463), 1, + anon_sym_todo, + ACTIONS(465), 1, + anon_sym_case, + ACTIONS(467), 1, + anon_sym_let, + ACTIONS(469), 1, + anon_sym_assert, + ACTIONS(471), 1, + anon_sym_BANG, + ACTIONS(473), 1, + anon_sym_DQUOTE, + ACTIONS(479), 1, + sym__decimal, + ACTIONS(481), 1, + sym__name, + ACTIONS(483), 1, + sym__upname, + ACTIONS(973), 1, + sym_float, + STATE(133), 1, + sym_identifier, + STATE(163), 1, + sym_tuple, + STATE(175), 1, + sym_anonymous_function, + STATE(1100), 1, + sym__maybe_function_expression, + STATE(1199), 1, + sym__maybe_record_expression, + STATE(1231), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(121), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(164), 2, + sym_record, + sym_record_update, + ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(367), 5, + STATE(151), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(432), 9, + STATE(248), 9, sym__expression_unit, sym_todo, sym_list, @@ -26151,70 +26188,70 @@ static const uint16_t ts_small_parse_table[] = { [25473] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(277), 1, anon_sym_LBRACE, - ACTIONS(451), 1, + ACTIONS(279), 1, anon_sym_POUND, - ACTIONS(453), 1, + ACTIONS(283), 1, anon_sym_LBRACK, - ACTIONS(455), 1, + ACTIONS(285), 1, anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(459), 1, + ACTIONS(289), 1, anon_sym_fn, - ACTIONS(463), 1, + ACTIONS(291), 1, anon_sym_todo, - ACTIONS(465), 1, + ACTIONS(295), 1, anon_sym_case, - ACTIONS(467), 1, + ACTIONS(297), 1, anon_sym_let, - ACTIONS(469), 1, + ACTIONS(299), 1, anon_sym_assert, - ACTIONS(471), 1, + ACTIONS(301), 1, anon_sym_BANG, - ACTIONS(473), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(973), 1, + ACTIONS(693), 1, + sym__name, + ACTIONS(977), 1, sym_float, - STATE(141), 1, + STATE(375), 1, sym_identifier, - STATE(158), 1, + STATE(380), 1, sym_tuple, - STATE(164), 1, + STATE(387), 1, sym_anonymous_function, - STATE(1095), 1, + STATE(1116), 1, sym__maybe_function_expression, - STATE(1183), 1, - sym__maybe_record_expression, - STATE(1246), 1, + STATE(1218), 1, sym__maybe_tuple_expression, + STATE(1229), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(109), 2, + STATE(359), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(392), 2, sym_record, sym_record_update, - ACTIONS(477), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(140), 5, + STATE(374), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(257), 9, + STATE(426), 9, sym__expression_unit, sym_todo, sym_list, @@ -26227,70 +26264,70 @@ static const uint16_t ts_small_parse_table[] = { [25578] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(781), 1, + ACTIONS(11), 1, anon_sym_LBRACE, - ACTIONS(783), 1, + ACTIONS(17), 1, anon_sym_POUND, - ACTIONS(785), 1, + ACTIONS(19), 1, anon_sym_LBRACK, - ACTIONS(787), 1, + ACTIONS(21), 1, anon_sym_LT_LT, - ACTIONS(789), 1, + ACTIONS(23), 1, anon_sym_DASH, - ACTIONS(791), 1, - anon_sym_fn, - ACTIONS(793), 1, + ACTIONS(33), 1, anon_sym_todo, - ACTIONS(795), 1, + ACTIONS(35), 1, anon_sym_case, - ACTIONS(797), 1, + ACTIONS(37), 1, anon_sym_let, - ACTIONS(799), 1, + ACTIONS(39), 1, anon_sym_assert, - ACTIONS(801), 1, + ACTIONS(41), 1, anon_sym_BANG, - ACTIONS(803), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(809), 1, + ACTIONS(53), 1, sym__decimal, - ACTIONS(811), 1, + ACTIONS(55), 1, sym__name, - ACTIONS(813), 1, + ACTIONS(57), 1, sym__upname, + ACTIONS(781), 1, + anon_sym_fn, ACTIONS(979), 1, sym_float, - STATE(301), 1, + STATE(25), 1, sym_identifier, - STATE(322), 1, - sym_tuple, - STATE(325), 1, + STATE(29), 1, sym_anonymous_function, - STATE(1140), 1, + STATE(40), 1, + sym_tuple, + STATE(1051), 1, sym__maybe_function_expression, - STATE(1185), 1, + STATE(1178), 1, sym__maybe_tuple_expression, - STATE(1224), 1, + STATE(1232), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(299), 2, + STATE(6), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(326), 2, + STATE(39), 2, sym_record, sym_record_update, - ACTIONS(807), 3, + ACTIONS(51), 3, sym__hex, sym__octal, sym__binary, - STATE(302), 5, + STATE(8), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(329), 9, + STATE(77), 9, sym__expression_unit, sym_todo, sym_list, @@ -26300,45 +26337,28 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [25683] = 13, + [25683] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(985), 1, - anon_sym_AMP_AMP, - ACTIONS(993), 1, - anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, ACTIONS(981), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(983), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(987), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(995), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(997), 3, + ACTIONS(983), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(989), 4, + ACTIONS(541), 15, + anon_sym_DASH, + anon_sym_fn, + anon_sym_try, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(991), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(655), 9, - anon_sym_fn, - anon_sym_try, + anon_sym_PLUS, anon_sym_todo, anon_sym_case, anon_sym_let, @@ -26346,58 +26366,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(653), 12, + ACTIONS(539), 22, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [25755] = 14, + [25741] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(985), 1, - anon_sym_AMP_AMP, - ACTIONS(993), 1, + ACTIONS(991), 1, anon_sym_PIPE_GT, - ACTIONS(999), 1, - anon_sym_PIPE_PIPE, ACTIONS(5), 2, sym_statement_comment, sym_comment, ACTIONS(981), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(983), 2, + ACTIONS(985), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(987), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(995), 2, + ACTIONS(993), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(997), 3, + ACTIONS(983), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(989), 4, + ACTIONS(987), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(991), 4, + ACTIONS(989), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(647), 9, + ACTIONS(541), 9, anon_sym_fn, anon_sym_try, anon_sym_todo, @@ -26407,44 +26430,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(645), 11, + ACTIONS(539), 15, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [25829] = 8, + [25809] = 12, ACTIONS(3), 1, sym_module_comment, + ACTIONS(991), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, ACTIONS(981), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(983), 2, + ACTIONS(985), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(995), 2, + ACTIONS(993), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(997), 3, + ACTIONS(995), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(983), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(655), 13, - anon_sym_fn, - anon_sym_try, + ACTIONS(987), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, + ACTIONS(989), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(541), 9, + anon_sym_fn, + anon_sym_try, anon_sym_todo, anon_sym_case, anon_sym_let, @@ -26452,7 +26490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(653), 20, + ACTIONS(539), 13, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, @@ -26460,58 +26498,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [25891] = 14, + [25879] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(985), 1, - anon_sym_AMP_AMP, - ACTIONS(993), 1, + ACTIONS(991), 1, anon_sym_PIPE_GT, - ACTIONS(999), 1, - anon_sym_PIPE_PIPE, + ACTIONS(997), 1, + anon_sym_AMP_AMP, ACTIONS(5), 2, sym_statement_comment, sym_comment, ACTIONS(981), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(983), 2, + ACTIONS(985), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(987), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(995), 2, + ACTIONS(993), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(997), 3, + ACTIONS(995), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(983), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(989), 4, + ACTIONS(987), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(991), 4, + ACTIONS(989), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(513), 9, + ACTIONS(541), 9, anon_sym_fn, anon_sym_try, anon_sym_todo, @@ -26521,25 +26550,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(511), 11, + ACTIONS(539), 12, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, + anon_sym_PIPE_PIPE, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [25965] = 14, + [25951] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(985), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(541), 17, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_fn, + anon_sym_try, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(539), 25, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(993), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [26005] = 14, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(991), 1, + anon_sym_PIPE_GT, + ACTIONS(997), 1, + anon_sym_AMP_AMP, ACTIONS(999), 1, anon_sym_PIPE_PIPE, ACTIONS(5), 2, @@ -26548,25 +26628,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(981), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(983), 2, + ACTIONS(985), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(987), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(995), 2, + ACTIONS(993), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(997), 3, + ACTIONS(995), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(983), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(989), 4, + ACTIONS(987), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(991), 4, + ACTIONS(989), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, @@ -26593,13 +26673,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [26039] = 14, + [26079] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(985), 1, - anon_sym_AMP_AMP, - ACTIONS(993), 1, + ACTIONS(991), 1, anon_sym_PIPE_GT, + ACTIONS(997), 1, + anon_sym_AMP_AMP, ACTIONS(999), 1, anon_sym_PIPE_PIPE, ACTIONS(5), 2, @@ -26608,30 +26688,30 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(981), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(983), 2, + ACTIONS(985), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(987), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(995), 2, + ACTIONS(993), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(997), 3, + ACTIONS(995), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(983), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(989), 4, + ACTIONS(987), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(991), 4, + ACTIONS(989), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(643), 9, + ACTIONS(641), 9, anon_sym_fn, anon_sym_try, anon_sym_todo, @@ -26641,7 +26721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(641), 11, + ACTIONS(639), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, @@ -26653,10 +26733,10 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [26113] = 11, + [26153] = 9, ACTIONS(3), 1, sym_module_comment, - ACTIONS(993), 1, + ACTIONS(991), 1, anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, @@ -26664,29 +26744,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(981), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(983), 2, + ACTIONS(985), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(995), 2, + ACTIONS(993), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(997), 3, + ACTIONS(983), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(989), 4, + ACTIONS(541), 13, + anon_sym_fn, + anon_sym_try, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(991), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(655), 9, - anon_sym_fn, - anon_sym_try, anon_sym_todo, anon_sym_case, anon_sym_let, @@ -26694,7 +26768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(653), 15, + ACTIONS(539), 19, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, @@ -26704,47 +26778,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [26181] = 12, + [26217] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(993), 1, + ACTIONS(991), 1, anon_sym_PIPE_GT, + ACTIONS(997), 1, + anon_sym_AMP_AMP, + ACTIONS(999), 1, + anon_sym_PIPE_PIPE, ACTIONS(5), 2, sym_statement_comment, sym_comment, ACTIONS(981), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(983), 2, + ACTIONS(985), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(987), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(995), 2, + ACTIONS(993), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(997), 3, + ACTIONS(995), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(983), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(989), 4, + ACTIONS(987), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(991), 4, + ACTIONS(989), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(655), 9, + ACTIONS(497), 9, anon_sym_fn, anon_sym_try, anon_sym_todo, @@ -26754,48 +26836,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(653), 13, + ACTIONS(495), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [26251] = 9, + [26291] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(993), 1, + ACTIONS(991), 1, anon_sym_PIPE_GT, + ACTIONS(997), 1, + anon_sym_AMP_AMP, + ACTIONS(999), 1, + anon_sym_PIPE_PIPE, ACTIONS(5), 2, sym_statement_comment, sym_comment, ACTIONS(981), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(983), 2, + ACTIONS(985), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(995), 2, + ACTIONS(993), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(997), 3, + ACTIONS(995), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(983), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(655), 13, - anon_sym_fn, - anon_sym_try, + ACTIONS(987), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, + ACTIONS(989), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(633), 9, + anon_sym_fn, + anon_sym_try, anon_sym_todo, anon_sym_case, anon_sym_let, @@ -26803,33 +26896,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(653), 19, + ACTIONS(631), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [26315] = 14, + [26365] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(985), 1, - anon_sym_AMP_AMP, - ACTIONS(993), 1, + ACTIONS(991), 1, anon_sym_PIPE_GT, + ACTIONS(997), 1, + anon_sym_AMP_AMP, ACTIONS(999), 1, anon_sym_PIPE_PIPE, ACTIONS(5), 2, @@ -26838,30 +26923,30 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(981), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(983), 2, + ACTIONS(985), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(987), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(995), 2, + ACTIONS(993), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(997), 3, + ACTIONS(995), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(983), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(989), 4, + ACTIONS(987), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(991), 4, + ACTIONS(989), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(593), 9, + ACTIONS(681), 9, anon_sym_fn, anon_sym_try, anon_sym_todo, @@ -26871,7 +26956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(591), 11, + ACTIONS(679), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, @@ -26883,23 +26968,32 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [26389] = 4, + [26439] = 8, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(655), 17, + ACTIONS(981), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(985), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(993), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(983), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(541), 13, anon_sym_fn, anon_sym_try, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, anon_sym_todo, anon_sym_case, anon_sym_let, @@ -26907,7 +27001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(653), 25, + ACTIONS(539), 20, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, @@ -26922,52 +27016,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [26443] = 6, + [26501] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(981), 2, + ACTIONS(367), 10, + anon_sym_DOT, anon_sym_SLASH, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(997), 3, + ACTIONS(365), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_as, + anon_sym_COMMA, + anon_sym_const, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_external, + anon_sym_type, + anon_sym_fn, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(655), 15, + anon_sym_DOT_DOT, + sym_visibility_modifier, + sym_opacity_modifier, + [26554] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(331), 10, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_EQ, anon_sym_DASH, - anon_sym_fn, - anon_sym_try, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_PLUS, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(653), 22, + anon_sym_STAR, + ACTIONS(329), 31, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, + anon_sym_import, + anon_sym_as, + anon_sym_COMMA, + anon_sym_const, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_external, + anon_sym_type, + anon_sym_fn, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -26979,19 +27114,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_GT, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [26501] = 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DOT_DOT, + sym_visibility_modifier, + sym_opacity_modifier, + [26607] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(364), 10, + ACTIONS(351), 10, anon_sym_DOT, anon_sym_SLASH, anon_sym_EQ, @@ -27002,7 +27137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(362), 31, + ACTIONS(349), 31, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -27034,13 +27169,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, sym_visibility_modifier, sym_opacity_modifier, - [26554] = 4, + [26660] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(368), 10, + ACTIONS(363), 10, anon_sym_DOT, anon_sym_SLASH, anon_sym_EQ, @@ -27051,7 +27186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(366), 31, + ACTIONS(361), 31, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -27083,13 +27218,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, sym_visibility_modifier, sym_opacity_modifier, - [26607] = 4, + [26713] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(326), 10, + ACTIONS(347), 10, anon_sym_DOT, anon_sym_SLASH, anon_sym_EQ, @@ -27100,7 +27235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(324), 31, + ACTIONS(345), 31, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -27132,14 +27267,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, sym_visibility_modifier, sym_opacity_modifier, - [26660] = 4, + [26766] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(282), 10, - anon_sym_DOT, + ACTIONS(621), 9, anon_sym_SLASH, anon_sym_EQ, anon_sym_DASH, @@ -27149,14 +27283,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(280), 31, + ACTIONS(619), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, anon_sym_as, anon_sym_COMMA, anon_sym_const, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_GT_GT, @@ -27181,14 +27314,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, sym_visibility_modifier, sym_opacity_modifier, - [26713] = 4, + [26817] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(278), 10, - anon_sym_DOT, + ACTIONS(445), 9, anon_sym_SLASH, anon_sym_EQ, anon_sym_DASH, @@ -27198,14 +27330,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(276), 31, + ACTIONS(443), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, anon_sym_as, anon_sym_COMMA, anon_sym_const, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_GT_GT, @@ -27230,15 +27361,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, sym_visibility_modifier, sym_opacity_modifier, - [26766] = 4, + [26868] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1001), 1, + anon_sym_LPAREN, + STATE(320), 1, + sym_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(639), 9, + ACTIONS(256), 11, anon_sym_SLASH, - anon_sym_EQ, anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, @@ -27246,20 +27380,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(637), 30, - anon_sym_LBRACE, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(254), 25, anon_sym_RBRACE, - anon_sym_import, - anon_sym_as, - anon_sym_COMMA, - anon_sym_const, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_external, - anon_sym_type, - anon_sym_fn, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -27274,18 +27403,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - anon_sym_DOT_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [26817] = 4, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [26922] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(627), 9, + ACTIONS(383), 11, anon_sym_SLASH, - anon_sym_EQ, anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, @@ -27293,20 +27424,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(625), 30, - anon_sym_LBRACE, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(381), 26, anon_sym_RBRACE, - anon_sym_import, - anon_sym_as, - anon_sym_COMMA, - anon_sym_const, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_external, - anon_sym_type, - anon_sym_fn, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT_LT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -27321,20 +27448,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - anon_sym_DOT_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [26868] = 6, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [26971] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1001), 1, - anon_sym_LPAREN, - STATE(320), 1, - sym_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(256), 11, + ACTIONS(343), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -27346,10 +27472,11 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(254), 25, + ACTIONS(341), 26, anon_sym_RBRACE, anon_sym_DOT, anon_sym_POUND, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, @@ -27372,13 +27499,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [26922] = 4, + [27020] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(278), 11, + ACTIONS(375), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -27390,7 +27517,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(276), 26, + ACTIONS(373), 26, anon_sym_RBRACE, anon_sym_DOT, anon_sym_POUND, @@ -27417,17 +27544,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [26971] = 6, + [27069] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(360), 1, - anon_sym_LPAREN, - ACTIONS(1003), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(354), 11, + ACTIONS(275), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -27439,9 +27562,11 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(352), 24, + ACTIONS(273), 26, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_POUND, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, @@ -27464,17 +27589,17 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [27024] = 6, + [27118] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(360), 1, - anon_sym_LPAREN, - ACTIONS(382), 1, + ACTIONS(268), 1, anon_sym_DOT, + ACTIONS(271), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(354), 11, + ACTIONS(266), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -27486,7 +27611,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(352), 24, + ACTIONS(264), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -27511,13 +27636,17 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [27077] = 4, + [27171] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(271), 1, + anon_sym_LPAREN, + ACTIONS(1003), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(330), 11, + ACTIONS(266), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -27529,11 +27658,9 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(328), 26, + ACTIONS(264), 24, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, @@ -27556,13 +27683,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [27126] = 4, + [27224] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(270), 11, + ACTIONS(363), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -27574,7 +27701,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(268), 26, + ACTIONS(361), 26, anon_sym_RBRACE, anon_sym_DOT, anon_sym_POUND, @@ -27601,13 +27728,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [27175] = 4, + [27273] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(368), 11, + ACTIONS(331), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -27619,7 +27746,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(366), 26, + ACTIONS(329), 26, anon_sym_RBRACE, anon_sym_DOT, anon_sym_POUND, @@ -27646,13 +27773,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [27224] = 4, + [27322] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(274), 11, + ACTIONS(339), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -27664,7 +27791,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(272), 26, + ACTIONS(337), 26, anon_sym_RBRACE, anon_sym_DOT, anon_sym_POUND, @@ -27691,13 +27818,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [27273] = 4, + [27371] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(266), 11, + ACTIONS(359), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -27709,7 +27836,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(264), 26, + ACTIONS(357), 26, anon_sym_RBRACE, anon_sym_DOT, anon_sym_POUND, @@ -27736,13 +27863,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [27322] = 4, + [27420] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(282), 11, + ACTIONS(367), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -27754,7 +27881,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(280), 26, + ACTIONS(365), 26, anon_sym_RBRACE, anon_sym_DOT, anon_sym_POUND, @@ -27781,13 +27908,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [27371] = 4, + [27469] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(376), 11, + ACTIONS(355), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -27799,7 +27926,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(374), 26, + ACTIONS(353), 26, anon_sym_RBRACE, anon_sym_DOT, anon_sym_POUND, @@ -27826,13 +27953,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [27420] = 4, + [27518] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(350), 11, + ACTIONS(319), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -27844,7 +27971,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(348), 26, + ACTIONS(317), 26, anon_sym_RBRACE, anon_sym_DOT, anon_sym_POUND, @@ -27871,13 +27998,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [27469] = 4, + [27567] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(372), 11, + ACTIONS(351), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -27889,7 +28016,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(370), 26, + ACTIONS(349), 26, anon_sym_RBRACE, anon_sym_DOT, anon_sym_POUND, @@ -27916,13 +28043,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [27518] = 4, + [27616] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(380), 11, + ACTIONS(323), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -27934,7 +28061,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(378), 26, + ACTIONS(321), 26, anon_sym_RBRACE, anon_sym_DOT, anon_sym_POUND, @@ -27961,13 +28088,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [27567] = 4, + [27665] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(338), 11, + ACTIONS(262), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -27979,7 +28106,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(336), 26, + ACTIONS(260), 26, anon_sym_RBRACE, anon_sym_DOT, anon_sym_POUND, @@ -28006,13 +28133,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [27616] = 4, + [27714] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(262), 11, + ACTIONS(347), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -28024,7 +28151,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(260), 26, + ACTIONS(345), 26, anon_sym_RBRACE, anon_sym_DOT, anon_sym_POUND, @@ -28051,13 +28178,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [27665] = 4, + [27763] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(364), 11, + ACTIONS(437), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -28069,9 +28196,8 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(362), 26, + ACTIONS(435), 25, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_POUND, anon_sym_LPAREN, anon_sym_LBRACK, @@ -28096,13 +28222,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [27714] = 4, + [27811] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(326), 11, + ACTIONS(427), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -28114,11 +28240,10 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(324), 26, + ACTIONS(425), 25, anon_sym_RBRACE, anon_sym_DOT, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, @@ -28141,13 +28266,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [27763] = 4, + [27859] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(423), 11, + ACTIONS(403), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -28159,10 +28284,10 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(421), 25, + ACTIONS(401), 25, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, @@ -28185,13 +28310,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [27811] = 4, + [27907] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(395), 11, + ACTIONS(407), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -28203,7 +28328,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(393), 25, + ACTIONS(405), 25, anon_sym_RBRACE, anon_sym_DOT, anon_sym_POUND, @@ -28229,15 +28354,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [27859] = 5, + [27955] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1007), 1, - anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(431), 11, + ACTIONS(415), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -28249,9 +28372,10 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(429), 24, + ACTIONS(413), 25, anon_sym_RBRACE, anon_sym_POUND, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, @@ -28274,13 +28398,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [27909] = 4, + [28003] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(441), 11, + ACTIONS(391), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -28292,7 +28416,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(439), 25, + ACTIONS(389), 25, anon_sym_RBRACE, anon_sym_DOT, anon_sym_POUND, @@ -28318,13 +28442,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [27957] = 4, + [28051] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(405), 11, + ACTIONS(431), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -28336,7 +28460,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(403), 25, + ACTIONS(429), 25, anon_sym_RBRACE, anon_sym_DOT, anon_sym_POUND, @@ -28362,15 +28486,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [28005] = 5, + [28099] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(385), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(354), 11, + ACTIONS(395), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -28382,8 +28504,9 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(352), 24, + ACTIONS(393), 25, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -28407,13 +28530,15 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [28055] = 4, + [28147] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(409), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(419), 11, + ACTIONS(266), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -28425,10 +28550,9 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(417), 25, + ACTIONS(264), 24, anon_sym_RBRACE, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, @@ -28451,13 +28575,15 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [28103] = 4, + [28197] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1007), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(399), 11, + ACTIONS(421), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -28469,9 +28595,8 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(397), 25, + ACTIONS(419), 24, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -28495,15 +28620,15 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [28151] = 5, + [28247] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(360), 1, - anon_sym_LPAREN, + ACTIONS(411), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(354), 11, + ACTIONS(266), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -28515,7 +28640,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(352), 24, + ACTIONS(264), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -28540,15 +28665,15 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [28201] = 5, + [28297] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(413), 1, - anon_sym_DOT, + ACTIONS(271), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(354), 11, + ACTIONS(266), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -28560,7 +28685,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(352), 24, + ACTIONS(264), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -28585,13 +28710,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [28251] = 4, + [28347] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(391), 11, + ACTIONS(521), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -28603,9 +28728,8 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(389), 25, + ACTIONS(519), 24, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -28629,13 +28753,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [28299] = 4, + [28394] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(437), 11, + ACTIONS(621), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -28647,9 +28771,8 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(435), 25, + ACTIONS(619), 24, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -28673,25 +28796,34 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [28347] = 4, + [28441] = 8, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(613), 11, + ACTIONS(1009), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1011), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1013), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1015), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(541), 7, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, sym__decimal, sym__discard_name, sym__name, - ACTIONS(611), 24, + ACTIONS(539), 19, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -28705,120 +28837,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [28394] = 14, + [28496] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1015), 1, - anon_sym_PIPE_PIPE, ACTIONS(1017), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1019), 1, anon_sym_AMP_AMP, - ACTIONS(1025), 1, + ACTIONS(1027), 1, anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1011), 2, + ACTIONS(1009), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1013), 2, + ACTIONS(1011), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1019), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1027), 2, + ACTIONS(1013), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1029), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(1031), 3, + ACTIONS(1021), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(497), 3, sym__decimal, sym__discard_name, sym__name, - ACTIONS(1021), 4, + ACTIONS(1015), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(1023), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1023), 4, + ACTIONS(1025), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1009), 10, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [28461] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(661), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(659), 24, + ACTIONS(495), 10, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [28508] = 4, + [28563] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(621), 11, + ACTIONS(529), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -28830,7 +28914,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(619), 24, + ACTIONS(527), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -28855,13 +28939,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [28555] = 4, + [28610] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(655), 11, + ACTIONS(525), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -28873,7 +28957,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(653), 24, + ACTIONS(523), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -28898,30 +28982,25 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [28602] = 6, + [28657] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1011), 2, + ACTIONS(445), 11, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1029), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(655), 9, anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_PLUS, + anon_sym_STAR, sym__decimal, sym__discard_name, sym__name, - ACTIONS(653), 21, + ACTIONS(443), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -28937,40 +29016,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_GT, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [28653] = 8, + [28704] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1011), 2, + ACTIONS(651), 11, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1013), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1027), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1029), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(655), 7, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, sym__decimal, sym__discard_name, sym__name, - ACTIONS(653), 19, + ACTIONS(649), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -28984,71 +29057,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [28708] = 13, + [28751] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1017), 1, - anon_sym_AMP_AMP, - ACTIONS(1025), 1, - anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1011), 2, + ACTIONS(493), 11, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1013), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1019), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1027), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(655), 3, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(1029), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(1021), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1023), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(653), 11, + anon_sym_PLUS, + anon_sym_STAR, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(491), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [28773] = 4, + [28798] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(501), 11, + ACTIONS(657), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -29060,7 +29129,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(499), 24, + ACTIONS(655), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -29085,64 +29154,66 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [28820] = 12, + [28845] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1025), 1, + ACTIONS(1017), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1019), 1, + anon_sym_AMP_AMP, + ACTIONS(1027), 1, anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1011), 2, + ACTIONS(1009), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1013), 2, + ACTIONS(1011), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1019), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1027), 2, + ACTIONS(1013), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(655), 3, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(1029), 3, + ACTIONS(1021), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1015), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(1021), 4, + ACTIONS(1031), 3, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(1023), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1023), 4, + ACTIONS(1025), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(653), 12, + ACTIONS(1029), 10, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [28883] = 4, + [28912] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(651), 11, + ACTIONS(603), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -29154,7 +29225,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(649), 24, + ACTIONS(601), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -29179,13 +29250,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [28930] = 4, + [28959] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(497), 11, + ACTIONS(607), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -29197,7 +29268,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(495), 24, + ACTIONS(605), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -29222,13 +29293,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [28977] = 4, + [29006] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(487), 11, + ACTIONS(611), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -29240,7 +29311,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(485), 24, + ACTIONS(609), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -29265,42 +29336,25 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [29024] = 11, + [29053] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1025), 1, - anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1011), 2, + ACTIONS(617), 11, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1013), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1027), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(655), 3, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(1029), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(1021), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1023), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(653), 14, + anon_sym_PLUS, + anon_sym_STAR, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(615), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -29309,19 +29363,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [29085] = 4, + [29100] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(627), 11, + ACTIONS(489), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -29333,7 +29397,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(625), 24, + ACTIONS(487), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -29358,81 +29422,71 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [29132] = 14, + [29147] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1015), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1017), 1, - anon_sym_AMP_AMP, - ACTIONS(1025), 1, - anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1011), 2, + ACTIONS(637), 11, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1013), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1019), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1027), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(647), 3, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(1029), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(1021), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1023), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(645), 10, + anon_sym_PLUS, + anon_sym_STAR, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(635), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [29199] = 9, + [29194] = 9, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1025), 1, + ACTIONS(1027), 1, anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1011), 2, + ACTIONS(1009), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1013), 2, + ACTIONS(1011), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1027), 2, + ACTIONS(1013), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1029), 3, + ACTIONS(1015), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(655), 7, + ACTIONS(541), 7, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -29440,7 +29494,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(653), 18, + ACTIONS(539), 18, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -29459,99 +29513,116 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [29256] = 4, + [29251] = 14, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1017), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1019), 1, + anon_sym_AMP_AMP, + ACTIONS(1027), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(681), 11, + ACTIONS(1009), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1011), 2, anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(1013), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1021), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1015), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(1035), 3, sym__decimal, sym__discard_name, sym__name, - ACTIONS(679), 24, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(1023), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1025), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, + ACTIONS(1033), 10, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [29303] = 4, + [29318] = 11, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1027), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(491), 11, + ACTIONS(1009), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1011), 2, anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(1013), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(541), 3, sym__decimal, sym__discard_name, sym__name, - ACTIONS(489), 24, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(1015), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(1023), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1025), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, + ACTIONS(539), 14, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [29350] = 4, + [29379] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(639), 11, + ACTIONS(661), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -29563,7 +29634,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(637), 24, + ACTIONS(659), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -29588,13 +29659,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [29397] = 4, + [29426] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(635), 11, + ACTIONS(647), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -29606,7 +29677,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(633), 24, + ACTIONS(645), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -29631,13 +29702,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [29444] = 4, + [29473] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(631), 11, + ACTIONS(541), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -29649,7 +29720,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(629), 24, + ACTIONS(539), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -29674,78 +29745,30 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [29491] = 14, + [29520] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1015), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1017), 1, - anon_sym_AMP_AMP, - ACTIONS(1025), 1, - anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1011), 2, + ACTIONS(1009), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1013), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1019), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1027), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1029), 3, + ACTIONS(1015), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(1035), 3, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(1021), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1023), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(1033), 10, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [29558] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(603), 11, - anon_sym_SLASH, + ACTIONS(541), 9, anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_PLUS, - anon_sym_STAR, sym__decimal, sym__discard_name, sym__name, - ACTIONS(601), 24, + ACTIONS(539), 21, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -29761,22 +29784,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_GT, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [29605] = 4, + [29571] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(509), 11, + ACTIONS(671), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -29788,7 +29808,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(507), 24, + ACTIONS(669), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -29813,139 +29833,156 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [29652] = 4, + [29618] = 12, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1027), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(445), 11, + ACTIONS(1009), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1011), 2, anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(1013), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1021), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(541), 3, sym__decimal, sym__discard_name, sym__name, - ACTIONS(443), 24, + ACTIONS(1015), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(1023), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1025), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(539), 12, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [29699] = 14, + [29681] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1015), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1017), 1, + ACTIONS(1019), 1, anon_sym_AMP_AMP, - ACTIONS(1025), 1, + ACTIONS(1027), 1, anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1011), 2, + ACTIONS(1009), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1013), 2, + ACTIONS(1011), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1019), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1027), 2, + ACTIONS(1013), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(593), 3, + ACTIONS(1021), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(541), 3, sym__decimal, sym__discard_name, sym__name, - ACTIONS(1029), 3, + ACTIONS(1015), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(1021), 4, + ACTIONS(1023), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1023), 4, + ACTIONS(1025), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(591), 10, + ACTIONS(539), 11, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, + anon_sym_PIPE_PIPE, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [29766] = 4, + [29746] = 14, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1017), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1019), 1, + anon_sym_AMP_AMP, + ACTIONS(1027), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(609), 11, + ACTIONS(1009), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1011), 2, anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(1013), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1021), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(665), 3, sym__decimal, sym__discard_name, sym__name, - ACTIONS(607), 24, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(1015), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(1023), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1025), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, + ACTIONS(663), 10, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, anon_sym_DQUOTE, sym_float, sym__hex, @@ -29999,7 +30036,7 @@ static const uint16_t ts_small_parse_table[] = { sym_module_comment, ACTIONS(1048), 1, anon_sym_SLASH, - STATE(359), 1, + STATE(360), 1, aux_sym_module_repeat1, ACTIONS(5), 2, sym_statement_comment, @@ -30037,6 +30074,48 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__name, [29909] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1050), 1, + anon_sym_LPAREN, + STATE(385), 1, + sym_arguments, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(256), 9, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(254), 21, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DOT_DOT, + [29957] = 6, ACTIONS(3), 1, sym_module_comment, ACTIONS(1048), 1, @@ -30046,7 +30125,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1050), 13, + ACTIONS(1052), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_DOT, @@ -30060,7 +30139,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1052), 17, + ACTIONS(1054), 17, anon_sym_if, anon_sym_import, anon_sym_as, @@ -30078,96 +30157,105 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [29957] = 6, + [30005] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1054), 1, - anon_sym_LPAREN, - STATE(386), 1, - sym_arguments, + ACTIONS(309), 1, + sym__decimal, + ACTIONS(1058), 1, + anon_sym_DASH, + ACTIONS(1060), 1, + anon_sym_size, + ACTIONS(1066), 1, + anon_sym_unit, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(256), 9, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(254), 21, - anon_sym_LBRACE, + ACTIONS(1056), 2, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DOT_DOT, - [30005] = 6, + ACTIONS(307), 3, + sym__hex, + sym__octal, + sym__binary, + ACTIONS(1064), 3, + anon_sym_utf8, + anon_sym_utf16, + anon_sym_utf32, + STATE(991), 5, + sym__expression_bit_string_segment_option, + sym__expression_bit_string_named_segment_option, + sym__expression_bit_string_segment_option_size, + sym_integer, + sym__bit_string_segment_option, + ACTIONS(1062), 14, + anon_sym_binary, + anon_sym_bytes, + anon_sym_int, + anon_sym_float, + anon_sym_bit_string, + anon_sym_bits, + anon_sym_utf8_codepoint, + anon_sym_utf16_codepoint, + anon_sym_utf32_codepoint, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_big, + anon_sym_little, + anon_sym_native, + [30062] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(360), 1, - anon_sym_LPAREN, - ACTIONS(1056), 1, - anon_sym_DOT, + ACTIONS(309), 1, + sym__decimal, + ACTIONS(1058), 1, + anon_sym_DASH, + ACTIONS(1066), 1, + anon_sym_unit, + ACTIONS(1070), 1, + anon_sym_size, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(354), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(352), 21, - anon_sym_LBRACE, + ACTIONS(1068), 2, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DOT_DOT, - [30052] = 4, + ACTIONS(307), 3, + sym__hex, + sym__octal, + sym__binary, + ACTIONS(1064), 3, + anon_sym_utf8, + anon_sym_utf16, + anon_sym_utf32, + STATE(1018), 5, + sym__constant_bit_string_segment_option, + sym__constant_bit_string_named_segment_option, + sym__constant_bit_string_segment_option_size, + sym_integer, + sym__bit_string_segment_option, + ACTIONS(1062), 14, + anon_sym_binary, + anon_sym_bytes, + anon_sym_int, + anon_sym_float, + anon_sym_bit_string, + anon_sym_bits, + anon_sym_utf8_codepoint, + anon_sym_utf16_codepoint, + anon_sym_utf32_codepoint, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_big, + anon_sym_little, + anon_sym_native, + [30119] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(262), 9, + ACTIONS(355), 9, anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, @@ -30177,7 +30265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(260), 22, + ACTIONS(353), 22, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -30200,13 +30288,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [30095] = 4, + [30162] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(372), 9, + ACTIONS(359), 9, anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, @@ -30216,7 +30304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(370), 22, + ACTIONS(357), 22, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -30239,38 +30327,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [30138] = 11, + [30205] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(1062), 1, + ACTIONS(1058), 1, anon_sym_DASH, - ACTIONS(1064), 1, + ACTIONS(1060), 1, anon_sym_size, - ACTIONS(1070), 1, + ACTIONS(1066), 1, anon_sym_unit, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1060), 2, + ACTIONS(1072), 2, anon_sym_COMMA, anon_sym_GT_GT, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - ACTIONS(1068), 3, + ACTIONS(1064), 3, anon_sym_utf8, anon_sym_utf16, anon_sym_utf32, - STATE(973), 5, - sym__constant_bit_string_segment_option, - sym__constant_bit_string_named_segment_option, - sym__constant_bit_string_segment_option_size, + STATE(991), 5, + sym__expression_bit_string_segment_option, + sym__expression_bit_string_named_segment_option, + sym__expression_bit_string_segment_option_size, sym_integer, sym__bit_string_segment_option, - ACTIONS(1066), 14, + ACTIONS(1062), 14, anon_sym_binary, anon_sym_bytes, anon_sym_int, @@ -30285,84 +30373,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_big, anon_sym_little, anon_sym_native, - [30195] = 11, + [30262] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(316), 1, - sym__decimal, - ACTIONS(1062), 1, - anon_sym_DASH, - ACTIONS(1070), 1, - anon_sym_unit, - ACTIONS(1074), 1, - anon_sym_size, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1072), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - ACTIONS(314), 3, + ACTIONS(1037), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, sym__hex, sym__octal, sym__binary, - ACTIONS(1068), 3, - anon_sym_utf8, - anon_sym_utf16, - anon_sym_utf32, - STATE(1034), 5, - sym__pattern_bit_string_segment_option, - sym__pattern_bit_string_named_segment_option, - sym__pattern_bit_string_segment_option_size, - sym_integer, - sym__bit_string_segment_option, - ACTIONS(1066), 14, - anon_sym_binary, - anon_sym_bytes, - anon_sym_int, - anon_sym_float, - anon_sym_bit_string, - anon_sym_bits, - anon_sym_utf8_codepoint, - anon_sym_utf16_codepoint, - anon_sym_utf32_codepoint, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_big, - anon_sym_little, - anon_sym_native, - [30252] = 11, + sym__upname, + ACTIONS(1039), 18, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_SLASH, + anon_sym_const, + anon_sym_DASH, + anon_sym_external, + anon_sym_type, + anon_sym_fn, + anon_sym_try, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [30305] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(339), 9, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(337), 22, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DOT_DOT, + [30348] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(1062), 1, + ACTIONS(1058), 1, anon_sym_DASH, - ACTIONS(1064), 1, - anon_sym_size, - ACTIONS(1070), 1, + ACTIONS(1066), 1, anon_sym_unit, + ACTIONS(1070), 1, + anon_sym_size, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1076), 2, + ACTIONS(1074), 2, anon_sym_COMMA, anon_sym_GT_GT, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - ACTIONS(1068), 3, + ACTIONS(1064), 3, anon_sym_utf8, anon_sym_utf16, anon_sym_utf32, - STATE(973), 5, + STATE(1018), 5, sym__constant_bit_string_segment_option, sym__constant_bit_string_named_segment_option, sym__constant_bit_string_segment_option_size, sym_integer, sym__bit_string_segment_option, - ACTIONS(1066), 14, + ACTIONS(1062), 14, anon_sym_binary, anon_sym_bytes, anon_sym_int, @@ -30377,17 +30497,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_big, anon_sym_little, anon_sym_native, - [30309] = 6, + [30405] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(360), 1, - anon_sym_LPAREN, - ACTIONS(1078), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(354), 8, + ACTIONS(383), 9, + anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -30396,9 +30513,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(352), 21, + ACTIONS(381), 22, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_GT_GT, @@ -30418,13 +30536,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [30356] = 4, + [30448] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(330), 9, + ACTIONS(262), 9, anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, @@ -30434,7 +30552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(328), 22, + ACTIONS(260), 22, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -30457,59 +30575,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [30399] = 11, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(316), 1, - sym__decimal, - ACTIONS(1062), 1, - anon_sym_DASH, - ACTIONS(1070), 1, - anon_sym_unit, - ACTIONS(1083), 1, - anon_sym_size, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1081), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - ACTIONS(314), 3, - sym__hex, - sym__octal, - sym__binary, - ACTIONS(1068), 3, - anon_sym_utf8, - anon_sym_utf16, - anon_sym_utf32, - STATE(928), 5, - sym__expression_bit_string_segment_option, - sym__expression_bit_string_named_segment_option, - sym__expression_bit_string_segment_option_size, - sym_integer, - sym__bit_string_segment_option, - ACTIONS(1066), 14, - anon_sym_binary, - anon_sym_bytes, - anon_sym_int, - anon_sym_float, - anon_sym_bit_string, - anon_sym_bits, - anon_sym_utf8_codepoint, - anon_sym_utf16_codepoint, - anon_sym_utf32_codepoint, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_big, - anon_sym_little, - anon_sym_native, - [30456] = 4, + [30491] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(270), 9, + ACTIONS(343), 9, anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, @@ -30519,7 +30591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(268), 22, + ACTIONS(341), 22, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -30542,13 +30614,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [30499] = 4, + [30534] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(274), 9, + ACTIONS(375), 9, anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, @@ -30558,7 +30630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(272), 22, + ACTIONS(373), 22, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -30581,52 +30653,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [30542] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1037), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1039), 18, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_SLASH, - anon_sym_const, - anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [30585] = 4, + [30577] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(380), 9, + ACTIONS(319), 9, anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, @@ -30636,7 +30669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(378), 22, + ACTIONS(317), 22, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -30659,14 +30692,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [30628] = 4, + [30620] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(271), 1, + anon_sym_LPAREN, + ACTIONS(1076), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(266), 9, - anon_sym_DOT, + ACTIONS(266), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -30675,10 +30711,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(264), 22, + ACTIONS(264), 21, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_GT_GT, @@ -30698,14 +30733,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [30671] = 4, + [30667] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(271), 1, + anon_sym_LPAREN, + ACTIONS(1079), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(350), 9, - anon_sym_DOT, + ACTIONS(266), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -30714,10 +30752,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(348), 22, + ACTIONS(264), 21, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_GT_GT, @@ -30743,7 +30780,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(338), 9, + ACTIONS(323), 9, anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, @@ -30753,7 +30790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(336), 22, + ACTIONS(321), 22, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -30782,7 +30819,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(376), 9, + ACTIONS(275), 9, anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, @@ -30792,7 +30829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(374), 22, + ACTIONS(273), 22, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -30818,35 +30855,35 @@ static const uint16_t ts_small_parse_table[] = { [30800] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(1062), 1, + ACTIONS(1058), 1, anon_sym_DASH, - ACTIONS(1070), 1, + ACTIONS(1066), 1, anon_sym_unit, - ACTIONS(1083), 1, + ACTIONS(1085), 1, anon_sym_size, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1085), 2, + ACTIONS(1083), 2, anon_sym_COMMA, anon_sym_GT_GT, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - ACTIONS(1068), 3, + ACTIONS(1064), 3, anon_sym_utf8, anon_sym_utf16, anon_sym_utf32, - STATE(928), 5, - sym__expression_bit_string_segment_option, - sym__expression_bit_string_named_segment_option, - sym__expression_bit_string_segment_option_size, + STATE(910), 5, + sym__pattern_bit_string_segment_option, + sym__pattern_bit_string_named_segment_option, + sym__pattern_bit_string_segment_option_size, sym_integer, sym__bit_string_segment_option, - ACTIONS(1066), 14, + ACTIONS(1062), 14, anon_sym_binary, anon_sym_bytes, anon_sym_int, @@ -30864,13 +30901,13 @@ static const uint16_t ts_small_parse_table[] = { [30857] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(1062), 1, + ACTIONS(1058), 1, anon_sym_DASH, - ACTIONS(1070), 1, + ACTIONS(1066), 1, anon_sym_unit, - ACTIONS(1074), 1, + ACTIONS(1085), 1, anon_sym_size, ACTIONS(5), 2, sym_statement_comment, @@ -30878,21 +30915,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1087), 2, anon_sym_COMMA, anon_sym_GT_GT, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - ACTIONS(1068), 3, + ACTIONS(1064), 3, anon_sym_utf8, anon_sym_utf16, anon_sym_utf32, - STATE(1034), 5, + STATE(910), 5, sym__pattern_bit_string_segment_option, sym__pattern_bit_string_named_segment_option, sym__pattern_bit_string_segment_option_size, sym_integer, sym__bit_string_segment_option, - ACTIONS(1066), 14, + ACTIONS(1062), 14, anon_sym_binary, anon_sym_bytes, anon_sym_int, @@ -30907,37 +30944,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_big, anon_sym_little, anon_sym_native, - [30914] = 11, + [30914] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(316), 1, + ACTIONS(1089), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(266), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(264), 21, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DOT_DOT, + [30958] = 11, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(309), 1, sym__decimal, - ACTIONS(1062), 1, + ACTIONS(1058), 1, anon_sym_DASH, - ACTIONS(1070), 1, + ACTIONS(1066), 1, anon_sym_unit, - ACTIONS(1074), 1, + ACTIONS(1085), 1, anon_sym_size, - STATE(1112), 1, + STATE(1077), 1, sym_pattern_bit_string_segment_options, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - ACTIONS(1068), 3, + ACTIONS(1064), 3, anon_sym_utf8, anon_sym_utf16, anon_sym_utf32, - STATE(880), 5, + STATE(903), 5, sym__pattern_bit_string_segment_option, sym__pattern_bit_string_named_segment_option, sym__pattern_bit_string_segment_option_size, sym_integer, sym__bit_string_segment_option, - ACTIONS(1066), 14, + ACTIONS(1062), 14, anon_sym_binary, anon_sym_bytes, anon_sym_int, @@ -30952,13 +31028,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_big, anon_sym_little, anon_sym_native, - [30970] = 4, + [31014] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(437), 9, + ACTIONS(431), 9, anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, @@ -30968,46 +31044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(435), 21, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DOT_DOT, - [31012] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1089), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(354), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(352), 21, + ACTIONS(429), 21, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -31033,9 +31070,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 1, sym_module_comment, ACTIONS(1095), 1, - anon_sym_DOT, - ACTIONS(1097), 1, - anon_sym_as, + anon_sym_LPAREN, + STATE(446), 1, + sym_type_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, @@ -31075,7 +31112,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(423), 8, + ACTIONS(437), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -31084,7 +31121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(421), 22, + ACTIONS(435), 22, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -31107,52 +31144,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [31144] = 5, + [31144] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1099), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(354), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(352), 21, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DOT_DOT, - [31188] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(441), 9, + ACTIONS(407), 9, anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, @@ -31162,7 +31160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(439), 21, + ACTIONS(405), 21, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -31184,37 +31182,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [31230] = 11, + [31186] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(1062), 1, + ACTIONS(1058), 1, anon_sym_DASH, - ACTIONS(1064), 1, - anon_sym_size, - ACTIONS(1070), 1, + ACTIONS(1066), 1, anon_sym_unit, - STATE(1089), 1, + ACTIONS(1070), 1, + anon_sym_size, + STATE(1161), 1, sym_constant_bit_string_segment_options, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - ACTIONS(1068), 3, + ACTIONS(1064), 3, anon_sym_utf8, anon_sym_utf16, anon_sym_utf32, - STATE(873), 5, + STATE(891), 5, sym__constant_bit_string_segment_option, sym__constant_bit_string_named_segment_option, sym__constant_bit_string_segment_option_size, sym_integer, sym__bit_string_segment_option, - ACTIONS(1066), 14, + ACTIONS(1062), 14, anon_sym_binary, anon_sym_bytes, anon_sym_int, @@ -31229,15 +31227,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_big, anon_sym_little, anon_sym_native, - [31286] = 5, + [31242] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1101), 1, + ACTIONS(271), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(431), 8, + ACTIONS(266), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -31246,7 +31244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(429), 21, + ACTIONS(264), 21, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -31268,13 +31266,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [31330] = 4, + [31286] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(395), 9, + ACTIONS(427), 9, anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, @@ -31284,7 +31282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(393), 21, + ACTIONS(425), 21, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -31306,14 +31304,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [31372] = 4, + [31328] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(399), 9, - anon_sym_DOT, + ACTIONS(415), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -31322,9 +31319,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(397), 21, + ACTIONS(413), 22, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_GT_GT, @@ -31344,95 +31342,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [31414] = 6, + [31370] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1107), 1, - anon_sym_LPAREN, - STATE(475), 1, - sym_type_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1103), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1105), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, + ACTIONS(403), 9, + anon_sym_DOT, + anon_sym_SLASH, anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [31460] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1113), 1, - anon_sym_LPAREN, - STATE(479), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1109), 12, - ts_builtin_sym_end, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(401), 21, anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1111), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, - anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [31506] = 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DOT_DOT, + [31412] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(360), 1, - anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(354), 8, + ACTIONS(395), 9, + anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -31441,7 +31396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(352), 21, + ACTIONS(393), 21, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -31463,14 +31418,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [31550] = 4, + [31454] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1097), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(391), 9, - anon_sym_DOT, + ACTIONS(266), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -31479,7 +31435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(389), 21, + ACTIONS(264), 21, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -31501,14 +31457,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [31592] = 4, + [31498] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1099), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(405), 9, - anon_sym_DOT, + ACTIONS(421), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -31517,7 +31474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(403), 21, + ACTIONS(419), 21, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -31539,13 +31496,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [31634] = 4, + [31542] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(419), 8, + ACTIONS(391), 9, + anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -31554,10 +31512,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(417), 22, + ACTIONS(389), 21, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_GT_GT, @@ -31577,37 +31534,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, + [31584] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1105), 1, + anon_sym_LPAREN, + STATE(493), 1, + sym_constant_record_arguments, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1101), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1103), 16, + anon_sym_if, + anon_sym_import, + anon_sym_const, + anon_sym_DASH, + anon_sym_external, + anon_sym_type, + anon_sym_fn, + anon_sym_try, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [31630] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1111), 1, + anon_sym_LPAREN, + STATE(474), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1107), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1109), 16, + anon_sym_if, + anon_sym_import, + anon_sym_const, + anon_sym_DASH, + anon_sym_external, + anon_sym_type, + anon_sym_fn, + anon_sym_try, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, [31676] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(1062), 1, + ACTIONS(1058), 1, anon_sym_DASH, - ACTIONS(1070), 1, - anon_sym_unit, - ACTIONS(1083), 1, + ACTIONS(1060), 1, anon_sym_size, - STATE(1139), 1, + ACTIONS(1066), 1, + anon_sym_unit, + STATE(1128), 1, sym_expression_bit_string_segment_options, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - ACTIONS(1068), 3, + ACTIONS(1064), 3, anon_sym_utf8, anon_sym_utf16, anon_sym_utf32, - STATE(895), 5, + STATE(896), 5, sym__expression_bit_string_segment_option, sym__expression_bit_string_named_segment_option, sym__expression_bit_string_segment_option_size, sym_integer, sym__bit_string_segment_option, - ACTIONS(1066), 14, + ACTIONS(1062), 14, anon_sym_binary, anon_sym_bytes, anon_sym_int, @@ -31625,14 +31662,14 @@ static const uint16_t ts_small_parse_table[] = { [31732] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1117), 1, + anon_sym_DOT, ACTIONS(1119), 1, - anon_sym_LPAREN, - STATE(468), 1, - sym_constant_record_arguments, + anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1115), 12, + ACTIONS(1113), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -31645,7 +31682,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1117), 16, + ACTIONS(1115), 16, anon_sym_if, anon_sym_import, anon_sym_const, @@ -31665,15 +31702,15 @@ static const uint16_t ts_small_parse_table[] = { [31778] = 22, ACTIONS(3), 1, sym_module_comment, - ACTIONS(294), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(310), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(320), 1, + ACTIONS(313), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__upname, ACTIONS(1121), 1, anon_sym_POUND, @@ -31689,23 +31726,23 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(1133), 1, sym__discard_name, - STATE(777), 1, + STATE(772), 1, sym_identifier, - STATE(957), 1, + STATE(908), 1, sym__pattern, - STATE(961), 1, + STATE(1046), 1, sym_record_pattern_argument, - STATE(1200), 1, + STATE(1191), 1, sym_label, - STATE(1214), 1, + STATE(1290), 1, sym_pattern_spread, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(699), 2, + STATE(702), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, @@ -31717,90 +31754,53 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [31855] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(445), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(443), 21, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DOT_DOT, - [31896] = 21, + [31855] = 21, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1135), 1, - anon_sym_RBRACE, - ACTIONS(1137), 1, + ACTIONS(1121), 1, anon_sym_POUND, - ACTIONS(1140), 1, + ACTIONS(1125), 1, anon_sym_LBRACK, - ACTIONS(1143), 1, + ACTIONS(1127), 1, anon_sym_LT_LT, - ACTIONS(1146), 1, + ACTIONS(1133), 1, + sym__discard_name, + ACTIONS(1135), 1, anon_sym_DASH, - ACTIONS(1149), 1, + ACTIONS(1137), 1, anon_sym_DQUOTE, - ACTIONS(1152), 1, + ACTIONS(1139), 1, sym_float, - ACTIONS(1158), 1, + ACTIONS(1143), 1, sym__decimal, - ACTIONS(1161), 1, - sym__discard_name, - ACTIONS(1164), 1, + ACTIONS(1145), 1, sym__name, - ACTIONS(1167), 1, + ACTIONS(1147), 1, sym__upname, - STATE(819), 1, + STATE(826), 1, sym_identifier, - STATE(828), 1, + STATE(850), 1, sym__pattern, - STATE(894), 1, + STATE(893), 1, sym_case_clause_pattern, - STATE(962), 1, + STATE(919), 1, sym_case_clause_patterns, + STATE(1204), 1, + sym_case_clauses, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(401), 2, + STATE(443), 2, sym_case_clause, aux_sym_case_clauses_repeat1, - STATE(699), 2, + STATE(702), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1155), 3, + ACTIONS(1141), 3, sym__hex, sym__octal, sym__binary, - STATE(843), 7, + STATE(833), 7, sym_record_pattern, sym_tuple_pattern, sym__pattern_bit_string, @@ -31808,50 +31808,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [31971] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(316), 1, - sym__decimal, - ACTIONS(1062), 1, - anon_sym_DASH, - ACTIONS(1070), 1, - anon_sym_unit, - ACTIONS(1083), 1, - anon_sym_size, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(314), 3, - sym__hex, - sym__octal, - sym__binary, - ACTIONS(1068), 3, - anon_sym_utf8, - anon_sym_utf16, - anon_sym_utf32, - STATE(928), 5, - sym__expression_bit_string_segment_option, - sym__expression_bit_string_named_segment_option, - sym__expression_bit_string_segment_option_size, - sym_integer, - sym__bit_string_segment_option, - ACTIONS(1066), 14, - anon_sym_binary, - anon_sym_bytes, - anon_sym_int, - anon_sym_float, - anon_sym_bit_string, - anon_sym_bits, - anon_sym_utf8_codepoint, - anon_sym_utf16_codepoint, - anon_sym_utf32_codepoint, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_big, - anon_sym_little, - anon_sym_native, - [32024] = 21, + [31930] = 21, ACTIONS(3), 1, sym_module_comment, ACTIONS(1121), 1, @@ -31862,155 +31819,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, ACTIONS(1133), 1, sym__discard_name, - ACTIONS(1170), 1, + ACTIONS(1135), 1, anon_sym_DASH, - ACTIONS(1172), 1, + ACTIONS(1137), 1, anon_sym_DQUOTE, - ACTIONS(1174), 1, + ACTIONS(1139), 1, sym_float, - ACTIONS(1178), 1, + ACTIONS(1143), 1, sym__decimal, - ACTIONS(1180), 1, + ACTIONS(1145), 1, sym__name, - ACTIONS(1182), 1, + ACTIONS(1147), 1, sym__upname, - STATE(819), 1, + STATE(826), 1, sym_identifier, - STATE(828), 1, + STATE(850), 1, sym__pattern, - STATE(894), 1, + STATE(893), 1, sym_case_clause_pattern, - STATE(962), 1, + STATE(919), 1, sym_case_clause_patterns, - STATE(1205), 1, + STATE(1292), 1, sym_case_clauses, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(427), 2, + STATE(443), 2, sym_case_clause, aux_sym_case_clauses_repeat1, - STATE(699), 2, + STATE(702), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1176), 3, + ACTIONS(1141), 3, sym__hex, sym__octal, sym__binary, - STATE(843), 7, + STATE(833), 7, sym_record_pattern, sym_tuple_pattern, sym__pattern_bit_string, - sym_list_pattern, - sym_string, - sym_integer, - sym_discard, - [32099] = 8, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1184), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1186), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1188), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1190), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(655), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(653), 16, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_DOT_DOT, - [32148] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(324), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1192), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1194), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, - anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [32191] = 9, + sym_list_pattern, + sym_string, + sym_integer, + sym_discard, + [32005] = 9, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1196), 1, + ACTIONS(1153), 1, anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1184), 2, + ACTIONS(1149), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1186), 2, + ACTIONS(1151), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1188), 2, + ACTIONS(1155), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1190), 3, + ACTIONS(1157), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(655), 4, + ACTIONS(541), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(653), 15, + ACTIONS(539), 15, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -32026,38 +31904,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, anon_sym_DOT_DOT, - [32242] = 10, + [32056] = 8, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1196), 1, - anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1184), 2, + ACTIONS(1149), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1186), 2, + ACTIONS(1151), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1188), 2, + ACTIONS(1155), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1190), 3, + ACTIONS(1157), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(1198), 4, + ACTIONS(541), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1200), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(653), 11, + ACTIONS(539), 16, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -32068,14 +31939,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, anon_sym_DOT_DOT, - [32295] = 4, + [32105] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1202), 13, + ACTIONS(1159), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -32089,46 +31965,9 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1204), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, - anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [32336] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1206), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1208), 17, + ACTIONS(1161), 16, anon_sym_if, anon_sym_import, - anon_sym_as, anon_sym_const, anon_sym_DASH, anon_sym_external, @@ -32143,41 +31982,41 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [32377] = 11, + [32146] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1196), 1, + ACTIONS(1153), 1, anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1184), 2, + ACTIONS(1149), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1186), 2, + ACTIONS(1151), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1188), 2, + ACTIONS(1155), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1210), 2, + ACTIONS(1163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1190), 3, + ACTIONS(1157), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(1198), 4, + ACTIONS(1165), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1200), 4, + ACTIONS(1167), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(653), 9, + ACTIONS(539), 9, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -32187,43 +32026,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_DOT_DOT, - [32432] = 12, + [32201] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1196), 1, + ACTIONS(1153), 1, anon_sym_PIPE_GT, - ACTIONS(1212), 1, + ACTIONS(1169), 1, anon_sym_AMP_AMP, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1184), 2, + ACTIONS(1149), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1186), 2, + ACTIONS(1151), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1188), 2, + ACTIONS(1155), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1210), 2, + ACTIONS(1163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1190), 3, + ACTIONS(1157), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(1198), 4, + ACTIONS(1165), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1200), 4, + ACTIONS(1167), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(653), 8, + ACTIONS(539), 8, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -32232,64 +32071,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PIPE_PIPE, anon_sym_DOT_DOT, - [32489] = 4, + [32258] = 6, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1214), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1216), 17, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_const, + ACTIONS(1149), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1157), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(541), 6, anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [32530] = 6, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + ACTIONS(539), 18, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_DOT_DOT, + [32303] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1184), 2, + ACTIONS(541), 8, anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(1190), 3, + ACTIONS(539), 21, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(655), 6, + anon_sym_DOT_DOT, + [32344] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(657), 8, + anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_PLUS, - ACTIONS(653), 18, + anon_sym_STAR, + ACTIONS(655), 21, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -32307,14 +32180,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_GT, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, anon_sym_DOT_DOT, - [32575] = 4, + [32385] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(655), 8, + ACTIONS(651), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -32323,7 +32199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(653), 21, + ACTIONS(649), 21, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -32345,13 +32221,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [32616] = 4, + [32426] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(651), 8, + ACTIONS(489), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -32360,7 +32236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(649), 21, + ACTIONS(487), 21, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -32382,13 +32258,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [32657] = 4, + [32467] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1218), 12, + ACTIONS(1171), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -32401,7 +32277,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1220), 17, + ACTIONS(1173), 17, anon_sym_if, anon_sym_import, anon_sym_as, @@ -32419,90 +32295,99 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [32698] = 4, + [32508] = 13, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1153), 1, + anon_sym_PIPE_GT, + ACTIONS(1169), 1, + anon_sym_AMP_AMP, + ACTIONS(1175), 1, + anon_sym_PIPE_PIPE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(497), 8, + ACTIONS(1149), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1151), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1155), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1163), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1157), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(1165), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(495), 21, + ACTIONS(1167), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(495), 7, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_GT_GT, anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, anon_sym_DOT_DOT, - [32739] = 21, + [32567] = 21, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1121), 1, + ACTIONS(1177), 1, + anon_sym_RBRACE, + ACTIONS(1179), 1, anon_sym_POUND, - ACTIONS(1125), 1, + ACTIONS(1182), 1, anon_sym_LBRACK, - ACTIONS(1127), 1, + ACTIONS(1185), 1, anon_sym_LT_LT, - ACTIONS(1133), 1, - sym__discard_name, - ACTIONS(1170), 1, + ACTIONS(1188), 1, anon_sym_DASH, - ACTIONS(1172), 1, + ACTIONS(1191), 1, anon_sym_DQUOTE, - ACTIONS(1174), 1, + ACTIONS(1194), 1, sym_float, - ACTIONS(1178), 1, + ACTIONS(1200), 1, sym__decimal, - ACTIONS(1180), 1, + ACTIONS(1203), 1, + sym__discard_name, + ACTIONS(1206), 1, sym__name, - ACTIONS(1182), 1, + ACTIONS(1209), 1, sym__upname, - STATE(819), 1, + STATE(826), 1, sym_identifier, - STATE(828), 1, + STATE(850), 1, sym__pattern, - STATE(894), 1, + STATE(893), 1, sym_case_clause_pattern, - STATE(962), 1, + STATE(919), 1, sym_case_clause_patterns, - STATE(1273), 1, - sym_case_clauses, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(427), 2, + STATE(414), 2, sym_case_clause, aux_sym_case_clauses_repeat1, - STATE(699), 2, + STATE(702), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1176), 3, + ACTIONS(1197), 3, sym__hex, sym__octal, sym__binary, - STATE(843), 7, + STATE(833), 7, sym_record_pattern, sym_tuple_pattern, sym__pattern_bit_string, @@ -32510,13 +32395,15 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [32814] = 4, + [32642] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(329), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1222), 12, + ACTIONS(1212), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -32529,10 +32416,9 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1224), 17, + ACTIONS(1214), 16, anon_sym_if, anon_sym_import, - anon_sym_as, anon_sym_const, anon_sym_DASH, anon_sym_external, @@ -32547,13 +32433,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [32855] = 4, + [32685] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(621), 8, + ACTIONS(647), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -32562,7 +32448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(619), 21, + ACTIONS(645), 21, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -32584,106 +32470,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [32896] = 5, + [32726] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(264), 1, - anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(326), 9, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(324), 19, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DOT_DOT, - [32939] = 22, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(294), 1, - anon_sym_DASH, - ACTIONS(310), 1, - anon_sym_DQUOTE, - ACTIONS(316), 1, - sym__decimal, - ACTIONS(320), 1, - sym__name, - ACTIONS(322), 1, - sym__upname, - ACTIONS(1121), 1, + ACTIONS(1216), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, anon_sym_POUND, - ACTIONS(1125), 1, anon_sym_LBRACK, - ACTIONS(1127), 1, anon_sym_LT_LT, - ACTIONS(1129), 1, - anon_sym_DOT_DOT, - ACTIONS(1131), 1, + anon_sym_BANG, + anon_sym_DQUOTE, sym_float, - ACTIONS(1133), 1, - sym__discard_name, - ACTIONS(1226), 1, - anon_sym_RPAREN, - STATE(777), 1, - sym_identifier, - STATE(957), 1, - sym__pattern, - STATE(961), 1, - sym_record_pattern_argument, - STATE(1169), 1, - sym_pattern_spread, - STATE(1200), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(699), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(314), 3, sym__hex, sym__octal, sym__binary, - STATE(788), 7, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_string, - sym_integer, - sym_discard, - [33016] = 4, + sym__upname, + ACTIONS(1218), 17, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_const, + anon_sym_DASH, + anon_sym_external, + anon_sym_type, + anon_sym_fn, + anon_sym_try, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [32767] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(491), 8, + ACTIONS(617), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -32692,7 +32522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(489), 21, + ACTIONS(615), 21, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -32714,237 +32544,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [33057] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(316), 1, - sym__decimal, - ACTIONS(1062), 1, - anon_sym_DASH, - ACTIONS(1070), 1, - anon_sym_unit, - ACTIONS(1074), 1, - anon_sym_size, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(314), 3, - sym__hex, - sym__octal, - sym__binary, - ACTIONS(1068), 3, - anon_sym_utf8, - anon_sym_utf16, - anon_sym_utf32, - STATE(1034), 5, - sym__pattern_bit_string_segment_option, - sym__pattern_bit_string_named_segment_option, - sym__pattern_bit_string_segment_option_size, - sym_integer, - sym__bit_string_segment_option, - ACTIONS(1066), 14, - anon_sym_binary, - anon_sym_bytes, - anon_sym_int, - anon_sym_float, - anon_sym_bit_string, - anon_sym_bits, - anon_sym_utf8_codepoint, - anon_sym_utf16_codepoint, - anon_sym_utf32_codepoint, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_big, - anon_sym_little, - anon_sym_native, - [33110] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1232), 1, - anon_sym_as, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1228), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1230), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, - anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [33153] = 13, + [32808] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1196), 1, - anon_sym_PIPE_GT, - ACTIONS(1212), 1, - anon_sym_AMP_AMP, - ACTIONS(1234), 1, - anon_sym_PIPE_PIPE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1184), 2, + ACTIONS(637), 8, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1186), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1188), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1210), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1190), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(1198), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1200), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(645), 7, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(635), 21, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_GT_GT, anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, anon_sym_DOT_DOT, - [33212] = 21, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1121), 1, - anon_sym_POUND, - ACTIONS(1125), 1, - anon_sym_LBRACK, - ACTIONS(1127), 1, - anon_sym_LT_LT, - ACTIONS(1133), 1, - sym__discard_name, - ACTIONS(1170), 1, - anon_sym_DASH, - ACTIONS(1172), 1, - anon_sym_DQUOTE, - ACTIONS(1174), 1, - sym_float, - ACTIONS(1178), 1, - sym__decimal, - ACTIONS(1180), 1, - sym__name, - ACTIONS(1182), 1, - sym__upname, - ACTIONS(1236), 1, - anon_sym_RBRACE, - STATE(819), 1, - sym_identifier, - STATE(828), 1, - sym__pattern, - STATE(894), 1, - sym_case_clause_pattern, - STATE(962), 1, - sym_case_clause_patterns, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(401), 2, - sym_case_clause, - aux_sym_case_clauses_repeat1, - STATE(699), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1176), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(843), 7, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_string, - sym_integer, - sym_discard, - [33287] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(316), 1, - sym__decimal, - ACTIONS(1062), 1, - anon_sym_DASH, - ACTIONS(1064), 1, - anon_sym_size, - ACTIONS(1070), 1, - anon_sym_unit, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(314), 3, - sym__hex, - sym__octal, - sym__binary, - ACTIONS(1068), 3, - anon_sym_utf8, - anon_sym_utf16, - anon_sym_utf32, - STATE(973), 5, - sym__constant_bit_string_segment_option, - sym__constant_bit_string_named_segment_option, - sym__constant_bit_string_segment_option_size, - sym_integer, - sym__bit_string_segment_option, - ACTIONS(1066), 14, - anon_sym_binary, - anon_sym_bytes, - anon_sym_int, - anon_sym_float, - anon_sym_bit_string, - anon_sym_bits, - anon_sym_utf8_codepoint, - anon_sym_utf16_codepoint, - anon_sym_utf32_codepoint, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_big, - anon_sym_little, - anon_sym_native, - [33340] = 4, + [32849] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(661), 8, + ACTIONS(671), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -32953,7 +32596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(659), 21, + ACTIONS(669), 21, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -32975,13 +32618,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [33381] = 4, + [32890] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(509), 8, + ACTIONS(661), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -32990,7 +32633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(507), 21, + ACTIONS(659), 21, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -33012,137 +32655,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [33422] = 13, + [32931] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1196), 1, + ACTIONS(1153), 1, anon_sym_PIPE_GT, - ACTIONS(1212), 1, - anon_sym_AMP_AMP, - ACTIONS(1234), 1, - anon_sym_PIPE_PIPE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1184), 2, + ACTIONS(1149), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1186), 2, + ACTIONS(1151), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1188), 2, + ACTIONS(1155), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1210), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1190), 3, + ACTIONS(1157), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(1198), 4, + ACTIONS(1165), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1200), 4, + ACTIONS(1167), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(591), 7, + ACTIONS(539), 11, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_GT_GT, anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_DOT_DOT, - [33481] = 4, + [32984] = 10, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(309), 1, + sym__decimal, + ACTIONS(1058), 1, + anon_sym_DASH, + ACTIONS(1066), 1, + anon_sym_unit, + ACTIONS(1085), 1, + anon_sym_size, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(307), 3, + sym__hex, + sym__octal, + sym__binary, + ACTIONS(1064), 3, + anon_sym_utf8, + anon_sym_utf16, + anon_sym_utf32, + STATE(910), 5, + sym__pattern_bit_string_segment_option, + sym__pattern_bit_string_named_segment_option, + sym__pattern_bit_string_segment_option_size, + sym_integer, + sym__bit_string_segment_option, + ACTIONS(1062), 14, + anon_sym_binary, + anon_sym_bytes, + anon_sym_int, + anon_sym_float, + anon_sym_bit_string, + anon_sym_bits, + anon_sym_utf8_codepoint, + anon_sym_utf16_codepoint, + anon_sym_utf32_codepoint, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_big, + anon_sym_little, + anon_sym_native, + [33037] = 13, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1153), 1, + anon_sym_PIPE_GT, + ACTIONS(1169), 1, + anon_sym_AMP_AMP, + ACTIONS(1175), 1, + anon_sym_PIPE_PIPE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(613), 8, + ACTIONS(1149), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1151), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1155), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1163), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1157), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(1165), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(611), 21, + ACTIONS(1167), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(663), 7, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_GT_GT, anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, anon_sym_DOT_DOT, - [33522] = 22, + [33096] = 21, ACTIONS(3), 1, sym_module_comment, - ACTIONS(294), 1, - anon_sym_DASH, - ACTIONS(310), 1, - anon_sym_DQUOTE, - ACTIONS(316), 1, - sym__decimal, - ACTIONS(320), 1, - sym__name, - ACTIONS(322), 1, - sym__upname, ACTIONS(1121), 1, anon_sym_POUND, ACTIONS(1125), 1, anon_sym_LBRACK, ACTIONS(1127), 1, anon_sym_LT_LT, - ACTIONS(1129), 1, - anon_sym_DOT_DOT, - ACTIONS(1131), 1, - sym_float, ACTIONS(1133), 1, sym__discard_name, - ACTIONS(1238), 1, - anon_sym_RPAREN, - STATE(777), 1, + ACTIONS(1135), 1, + anon_sym_DASH, + ACTIONS(1137), 1, + anon_sym_DQUOTE, + ACTIONS(1139), 1, + sym_float, + ACTIONS(1143), 1, + sym__decimal, + ACTIONS(1145), 1, + sym__name, + ACTIONS(1147), 1, + sym__upname, + STATE(826), 1, sym_identifier, - STATE(829), 1, - sym_record_pattern_argument, - STATE(957), 1, + STATE(850), 1, sym__pattern, - STATE(1192), 1, - sym_pattern_spread, - STATE(1200), 1, - sym_label, + STATE(893), 1, + sym_case_clause_pattern, + STATE(919), 1, + sym_case_clause_patterns, + STATE(1180), 1, + sym_case_clauses, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(699), 2, + STATE(443), 2, + sym_case_clause, + aux_sym_case_clauses_repeat1, + STATE(702), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(314), 3, + ACTIONS(1141), 3, sym__hex, sym__octal, sym__binary, - STATE(788), 7, + STATE(833), 7, sym_record_pattern, sym_tuple_pattern, sym__pattern_bit_string, @@ -33150,13 +32841,13 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [33599] = 4, + [33171] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(487), 8, + ACTIONS(611), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -33165,7 +32856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(485), 21, + ACTIONS(609), 21, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -33187,104 +32878,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [33640] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1240), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1242), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, - anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [33681] = 21, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1121), 1, - anon_sym_POUND, - ACTIONS(1125), 1, - anon_sym_LBRACK, - ACTIONS(1127), 1, - anon_sym_LT_LT, - ACTIONS(1133), 1, - sym__discard_name, - ACTIONS(1170), 1, - anon_sym_DASH, - ACTIONS(1172), 1, - anon_sym_DQUOTE, - ACTIONS(1174), 1, - sym_float, - ACTIONS(1178), 1, - sym__decimal, - ACTIONS(1180), 1, - sym__name, - ACTIONS(1182), 1, - sym__upname, - STATE(819), 1, - sym_identifier, - STATE(828), 1, - sym__pattern, - STATE(894), 1, - sym_case_clause_pattern, - STATE(962), 1, - sym_case_clause_patterns, - STATE(1164), 1, - sym_case_clauses, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(427), 2, - sym_case_clause, - aux_sym_case_clauses_repeat1, - STATE(699), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1176), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(843), 7, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_string, - sym_integer, - sym_discard, - [33756] = 4, + [33212] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(609), 8, + ACTIONS(607), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -33293,7 +32893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(607), 21, + ACTIONS(605), 21, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -33315,13 +32915,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [33797] = 4, + [33253] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(635), 8, + ACTIONS(525), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -33330,7 +32930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(633), 21, + ACTIONS(523), 21, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -33352,7 +32952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [33838] = 4, + [33294] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, @@ -33389,13 +32989,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [33879] = 4, + [33335] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(681), 8, + ACTIONS(529), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -33404,7 +33004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(679), 21, + ACTIONS(527), 21, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -33426,13 +33026,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [33920] = 4, + [33376] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(501), 8, + ACTIONS(521), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -33441,7 +33041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(499), 21, + ACTIONS(519), 21, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -33463,13 +33063,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [33961] = 4, + [33417] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(631), 8, + ACTIONS(493), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -33478,7 +33078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(629), 21, + ACTIONS(491), 21, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -33500,7 +33100,206 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [34002] = 21, + [33458] = 10, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(309), 1, + sym__decimal, + ACTIONS(1058), 1, + anon_sym_DASH, + ACTIONS(1060), 1, + anon_sym_size, + ACTIONS(1066), 1, + anon_sym_unit, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(307), 3, + sym__hex, + sym__octal, + sym__binary, + ACTIONS(1064), 3, + anon_sym_utf8, + anon_sym_utf16, + anon_sym_utf32, + STATE(991), 5, + sym__expression_bit_string_segment_option, + sym__expression_bit_string_named_segment_option, + sym__expression_bit_string_segment_option_size, + sym_integer, + sym__bit_string_segment_option, + ACTIONS(1062), 14, + anon_sym_binary, + anon_sym_bytes, + anon_sym_int, + anon_sym_float, + anon_sym_bit_string, + anon_sym_bits, + anon_sym_utf8_codepoint, + anon_sym_utf16_codepoint, + anon_sym_utf32_codepoint, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_big, + anon_sym_little, + anon_sym_native, + [33511] = 10, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(309), 1, + sym__decimal, + ACTIONS(1058), 1, + anon_sym_DASH, + ACTIONS(1066), 1, + anon_sym_unit, + ACTIONS(1070), 1, + anon_sym_size, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(307), 3, + sym__hex, + sym__octal, + sym__binary, + ACTIONS(1064), 3, + anon_sym_utf8, + anon_sym_utf16, + anon_sym_utf32, + STATE(1018), 5, + sym__constant_bit_string_segment_option, + sym__constant_bit_string_named_segment_option, + sym__constant_bit_string_segment_option_size, + sym_integer, + sym__bit_string_segment_option, + ACTIONS(1062), 14, + anon_sym_binary, + anon_sym_bytes, + anon_sym_int, + anon_sym_float, + anon_sym_bit_string, + anon_sym_bits, + anon_sym_utf8_codepoint, + anon_sym_utf16_codepoint, + anon_sym_utf32_codepoint, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_big, + anon_sym_little, + anon_sym_native, + [33564] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1224), 1, + anon_sym_as, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1220), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1222), 16, + anon_sym_if, + anon_sym_import, + anon_sym_const, + anon_sym_DASH, + anon_sym_external, + anon_sym_type, + anon_sym_fn, + anon_sym_try, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [33607] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1226), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_POUND, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1228), 16, + anon_sym_if, + anon_sym_import, + anon_sym_const, + anon_sym_DASH, + anon_sym_external, + anon_sym_type, + anon_sym_fn, + anon_sym_try, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [33648] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(353), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(331), 9, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(329), 19, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DOT_DOT, + [33691] = 21, ACTIONS(3), 1, sym_module_comment, ACTIONS(1121), 1, @@ -33511,42 +33310,280 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, ACTIONS(1133), 1, sym__discard_name, - ACTIONS(1170), 1, + ACTIONS(1135), 1, anon_sym_DASH, - ACTIONS(1172), 1, + ACTIONS(1137), 1, anon_sym_DQUOTE, - ACTIONS(1174), 1, + ACTIONS(1139), 1, sym_float, - ACTIONS(1178), 1, + ACTIONS(1143), 1, sym__decimal, - ACTIONS(1180), 1, + ACTIONS(1145), 1, sym__name, - ACTIONS(1182), 1, + ACTIONS(1147), 1, sym__upname, - STATE(819), 1, + STATE(826), 1, sym_identifier, - STATE(828), 1, + STATE(850), 1, sym__pattern, - STATE(894), 1, + STATE(893), 1, sym_case_clause_pattern, - STATE(962), 1, + STATE(919), 1, sym_case_clause_patterns, - STATE(1202), 1, + STATE(1237), 1, sym_case_clauses, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(427), 2, + STATE(443), 2, + sym_case_clause, + aux_sym_case_clauses_repeat1, + STATE(702), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(1141), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(833), 7, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_string, + sym_integer, + sym_discard, + [33766] = 22, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(287), 1, + anon_sym_DASH, + ACTIONS(303), 1, + anon_sym_DQUOTE, + ACTIONS(309), 1, + sym__decimal, + ACTIONS(313), 1, + sym__name, + ACTIONS(315), 1, + sym__upname, + ACTIONS(1121), 1, + anon_sym_POUND, + ACTIONS(1125), 1, + anon_sym_LBRACK, + ACTIONS(1127), 1, + anon_sym_LT_LT, + ACTIONS(1129), 1, + anon_sym_DOT_DOT, + ACTIONS(1131), 1, + sym_float, + ACTIONS(1133), 1, + sym__discard_name, + ACTIONS(1230), 1, + anon_sym_RPAREN, + STATE(772), 1, + sym_identifier, + STATE(844), 1, + sym_record_pattern_argument, + STATE(908), 1, + sym__pattern, + STATE(1191), 1, + sym_label, + STATE(1248), 1, + sym_pattern_spread, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(702), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(307), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(788), 7, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_string, + sym_integer, + sym_discard, + [33843] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1232), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1234), 17, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_const, + anon_sym_DASH, + anon_sym_external, + anon_sym_type, + anon_sym_fn, + anon_sym_try, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [33884] = 22, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(287), 1, + anon_sym_DASH, + ACTIONS(303), 1, + anon_sym_DQUOTE, + ACTIONS(309), 1, + sym__decimal, + ACTIONS(313), 1, + sym__name, + ACTIONS(315), 1, + sym__upname, + ACTIONS(1121), 1, + anon_sym_POUND, + ACTIONS(1125), 1, + anon_sym_LBRACK, + ACTIONS(1127), 1, + anon_sym_LT_LT, + ACTIONS(1129), 1, + anon_sym_DOT_DOT, + ACTIONS(1131), 1, + sym_float, + ACTIONS(1133), 1, + sym__discard_name, + ACTIONS(1236), 1, + anon_sym_RPAREN, + STATE(772), 1, + sym_identifier, + STATE(908), 1, + sym__pattern, + STATE(1046), 1, + sym_record_pattern_argument, + STATE(1191), 1, + sym_label, + STATE(1280), 1, + sym_pattern_spread, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(702), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(307), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(788), 7, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_string, + sym_integer, + sym_discard, + [33961] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1238), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1240), 17, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_const, + anon_sym_DASH, + anon_sym_external, + anon_sym_type, + anon_sym_fn, + anon_sym_try, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [34002] = 21, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1121), 1, + anon_sym_POUND, + ACTIONS(1125), 1, + anon_sym_LBRACK, + ACTIONS(1127), 1, + anon_sym_LT_LT, + ACTIONS(1133), 1, + sym__discard_name, + ACTIONS(1135), 1, + anon_sym_DASH, + ACTIONS(1137), 1, + anon_sym_DQUOTE, + ACTIONS(1139), 1, + sym_float, + ACTIONS(1143), 1, + sym__decimal, + ACTIONS(1145), 1, + sym__name, + ACTIONS(1147), 1, + sym__upname, + ACTIONS(1242), 1, + anon_sym_RBRACE, + STATE(826), 1, + sym_identifier, + STATE(850), 1, + sym__pattern, + STATE(893), 1, + sym_case_clause_pattern, + STATE(919), 1, + sym_case_clause_patterns, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(414), 2, sym_case_clause, aux_sym_case_clauses_repeat1, - STATE(699), 2, + STATE(702), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1176), 3, + ACTIONS(1141), 3, sym__hex, sym__octal, sym__binary, - STATE(843), 7, + STATE(833), 7, sym_record_pattern, sym_tuple_pattern, sym__pattern_bit_string, @@ -33842,51 +33879,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [34397] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1276), 1, - anon_sym_LPAREN, - STATE(534), 1, - sym_constant_record_arguments, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1117), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1115), 22, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_COMMA, - anon_sym_const, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [34441] = 4, + [34397] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1278), 12, + ACTIONS(1276), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -33899,7 +33898,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1280), 16, + ACTIONS(1278), 16, anon_sym_if, anon_sym_import, anon_sym_const, @@ -33916,6 +33915,44 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, + [34437] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1280), 1, + anon_sym_LPAREN, + STATE(542), 1, + sym_constant_record_arguments, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1103), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1101), 22, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_COMMA, + anon_sym_const, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_external, + anon_sym_type, + anon_sym_fn, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + sym_visibility_modifier, + sym_opacity_modifier, [34481] = 4, ACTIONS(3), 1, sym_module_comment, @@ -33958,7 +33995,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1286), 12, + ACTIONS(679), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -33971,7 +34008,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1288), 16, + ACTIONS(681), 16, anon_sym_if, anon_sym_import, anon_sym_const, @@ -33994,7 +34031,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1290), 12, + ACTIONS(1286), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -34007,7 +34044,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1292), 16, + ACTIONS(1288), 16, anon_sym_if, anon_sym_import, anon_sym_const, @@ -34030,7 +34067,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1294), 12, + ACTIONS(1290), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -34043,7 +34080,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1296), 16, + ACTIONS(1292), 16, anon_sym_if, anon_sym_import, anon_sym_const, @@ -34066,7 +34103,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(641), 12, + ACTIONS(1294), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -34079,7 +34116,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(643), 16, + ACTIONS(1296), 16, anon_sym_if, anon_sym_import, anon_sym_const, @@ -35683,47 +35720,47 @@ static const uint16_t ts_small_parse_table[] = { [36441] = 20, ACTIONS(3), 1, sym_module_comment, - ACTIONS(294), 1, - anon_sym_DASH, - ACTIONS(310), 1, - anon_sym_DQUOTE, - ACTIONS(316), 1, - sym__decimal, - ACTIONS(322), 1, - sym__upname, - ACTIONS(689), 1, - sym__name, ACTIONS(1121), 1, anon_sym_POUND, ACTIONS(1125), 1, anon_sym_LBRACK, ACTIONS(1127), 1, anon_sym_LT_LT, - ACTIONS(1131), 1, - sym_float, ACTIONS(1133), 1, sym__discard_name, + ACTIONS(1135), 1, + anon_sym_DASH, + ACTIONS(1137), 1, + anon_sym_DQUOTE, + ACTIONS(1139), 1, + sym_float, + ACTIONS(1143), 1, + sym__decimal, + ACTIONS(1145), 1, + sym__name, + ACTIONS(1147), 1, + sym__upname, ACTIONS(1474), 1, - anon_sym_RBRACK, + anon_sym_if, ACTIONS(1476), 1, - anon_sym_DOT_DOT, - STATE(777), 1, + anon_sym_DASH_GT, + STATE(826), 1, sym_identifier, - STATE(802), 1, + STATE(850), 1, sym__pattern, - STATE(1230), 1, - sym_list_pattern_tail, + STATE(1036), 1, + sym_case_clause_pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(699), 2, + STATE(702), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(314), 3, + ACTIONS(1141), 3, sym__hex, sym__octal, sym__binary, - STATE(788), 7, + STATE(833), 7, sym_record_pattern, sym_tuple_pattern, sym__pattern_bit_string, @@ -35734,15 +35771,15 @@ static const uint16_t ts_small_parse_table[] = { [36512] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1170), 1, + ACTIONS(1135), 1, anon_sym_DASH, - ACTIONS(1172), 1, + ACTIONS(1137), 1, anon_sym_DQUOTE, - ACTIONS(1178), 1, + ACTIONS(1143), 1, sym__decimal, - ACTIONS(1180), 1, + ACTIONS(1145), 1, sym__name, - ACTIONS(1182), 1, + ACTIONS(1147), 1, sym__upname, ACTIONS(1478), 1, anon_sym_LBRACE, @@ -35754,23 +35791,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, ACTIONS(1486), 1, sym_float, - STATE(677), 1, + STATE(684), 1, + sym__case_clause_guard_binary_expression, + STATE(695), 1, sym_identifier, - STATE(678), 1, + STATE(696), 1, sym__case_clause_tuple_access, - STATE(686), 1, - sym__case_clause_guard_binary_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(452), 2, + STATE(453), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1176), 3, + ACTIONS(1141), 3, sym__hex, sym__octal, sym__binary, - STATE(691), 9, + STATE(703), 9, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -35780,7 +35817,7 @@ static const uint16_t ts_small_parse_table[] = { sym__case_clause_guard_unit, sym_string, sym_integer, - [36579] = 20, + [36579] = 19, ACTIONS(3), 1, sym_module_comment, ACTIONS(1121), 1, @@ -35791,39 +35828,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, ACTIONS(1133), 1, sym__discard_name, - ACTIONS(1170), 1, + ACTIONS(1135), 1, anon_sym_DASH, - ACTIONS(1172), 1, + ACTIONS(1137), 1, anon_sym_DQUOTE, - ACTIONS(1174), 1, + ACTIONS(1139), 1, sym_float, - ACTIONS(1178), 1, + ACTIONS(1143), 1, sym__decimal, - ACTIONS(1180), 1, + ACTIONS(1145), 1, sym__name, - ACTIONS(1182), 1, + ACTIONS(1147), 1, sym__upname, ACTIONS(1488), 1, anon_sym_if, - ACTIONS(1490), 1, - anon_sym_DASH_GT, - STATE(819), 1, - sym_identifier, - STATE(828), 1, + STATE(806), 1, sym__pattern, - STATE(974), 1, - sym_case_clause_pattern, + STATE(826), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(699), 2, + ACTIONS(1490), 2, + anon_sym_DASH_GT, + anon_sym_PIPE, + STATE(702), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1176), 3, + ACTIONS(1141), 3, sym__hex, sym__octal, sym__binary, - STATE(843), 7, + STATE(833), 7, sym_record_pattern, sym_tuple_pattern, sym__pattern_bit_string, @@ -35831,19 +35867,19 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [36650] = 18, + [36648] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1170), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(1172), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(1178), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(1180), 1, - sym__name, - ACTIONS(1182), 1, + ACTIONS(315), 1, sym__upname, + ACTIONS(693), 1, + sym__name, ACTIONS(1478), 1, anon_sym_LBRACE, ACTIONS(1480), 1, @@ -35854,23 +35890,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, ACTIONS(1492), 1, sym_float, - STATE(677), 1, + STATE(662), 1, sym_identifier, - STATE(678), 1, - sym__case_clause_tuple_access, - STATE(686), 1, + STATE(684), 1, sym__case_clause_guard_binary_expression, + STATE(696), 1, + sym__case_clause_tuple_access, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(452), 2, + STATE(453), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1176), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(707), 9, + STATE(706), 9, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -35880,7 +35916,7 @@ static const uint16_t ts_small_parse_table[] = { sym__case_clause_guard_unit, sym_string, sym_integer, - [36717] = 19, + [36715] = 19, ACTIONS(3), 1, sym_module_comment, ACTIONS(1121), 1, @@ -35891,23 +35927,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, ACTIONS(1133), 1, sym__discard_name, - ACTIONS(1170), 1, + ACTIONS(1135), 1, anon_sym_DASH, - ACTIONS(1172), 1, + ACTIONS(1137), 1, anon_sym_DQUOTE, - ACTIONS(1174), 1, + ACTIONS(1139), 1, sym_float, - ACTIONS(1178), 1, + ACTIONS(1143), 1, sym__decimal, - ACTIONS(1180), 1, + ACTIONS(1145), 1, sym__name, - ACTIONS(1182), 1, + ACTIONS(1147), 1, sym__upname, ACTIONS(1494), 1, anon_sym_if, - STATE(802), 1, + STATE(806), 1, sym__pattern, - STATE(819), 1, + STATE(826), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, @@ -35915,14 +35951,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1496), 2, anon_sym_DASH_GT, anon_sym_PIPE, - STATE(699), 2, + STATE(702), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1176), 3, + ACTIONS(1141), 3, sym__hex, sym__octal, sym__binary, - STATE(843), 7, + STATE(833), 7, sym_record_pattern, sym_tuple_pattern, sym__pattern_bit_string, @@ -35930,18 +35966,18 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [36786] = 20, + [36784] = 20, ACTIONS(3), 1, sym_module_comment, - ACTIONS(294), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(310), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(689), 1, + ACTIONS(693), 1, sym__name, ACTIONS(1121), 1, anon_sym_POUND, @@ -35953,23 +35989,23 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(1133), 1, sym__discard_name, - ACTIONS(1476), 1, - anon_sym_DOT_DOT, ACTIONS(1498), 1, anon_sym_RBRACK, - STATE(777), 1, + ACTIONS(1500), 1, + anon_sym_DOT_DOT, + STATE(772), 1, sym_identifier, - STATE(834), 1, + STATE(806), 1, sym__pattern, - STATE(1181), 1, + STATE(1288), 1, sym_list_pattern_tail, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(699), 2, + STATE(702), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, @@ -35981,49 +36017,94 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [36857] = 19, + [36855] = 13, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1153), 1, + anon_sym_PIPE_GT, + ACTIONS(1169), 1, + anon_sym_AMP_AMP, + ACTIONS(1175), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1149), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1151), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1155), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1163), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1157), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(1165), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1167), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(1502), 5, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [36912] = 20, ACTIONS(3), 1, sym_module_comment, + ACTIONS(287), 1, + anon_sym_DASH, + ACTIONS(303), 1, + anon_sym_DQUOTE, + ACTIONS(309), 1, + sym__decimal, + ACTIONS(315), 1, + sym__upname, + ACTIONS(693), 1, + sym__name, ACTIONS(1121), 1, anon_sym_POUND, ACTIONS(1125), 1, anon_sym_LBRACK, ACTIONS(1127), 1, anon_sym_LT_LT, + ACTIONS(1131), 1, + sym_float, ACTIONS(1133), 1, sym__discard_name, - ACTIONS(1170), 1, - anon_sym_DASH, - ACTIONS(1172), 1, - anon_sym_DQUOTE, - ACTIONS(1174), 1, - sym_float, - ACTIONS(1178), 1, - sym__decimal, - ACTIONS(1180), 1, - sym__name, - ACTIONS(1182), 1, - sym__upname, ACTIONS(1500), 1, - anon_sym_if, - STATE(802), 1, - sym__pattern, - STATE(819), 1, + anon_sym_DOT_DOT, + ACTIONS(1504), 1, + anon_sym_RBRACK, + STATE(772), 1, sym_identifier, + STATE(839), 1, + sym__pattern, + STATE(1206), 1, + sym_list_pattern_tail, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1502), 2, - anon_sym_DASH_GT, - anon_sym_PIPE, - STATE(699), 2, + STATE(702), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1176), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(843), 7, + STATE(788), 7, sym_record_pattern, sym_tuple_pattern, sym__pattern_bit_string, @@ -36031,18 +36112,18 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [36926] = 18, + [36983] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1170), 1, + ACTIONS(1135), 1, anon_sym_DASH, - ACTIONS(1172), 1, + ACTIONS(1137), 1, anon_sym_DQUOTE, - ACTIONS(1178), 1, + ACTIONS(1143), 1, sym__decimal, - ACTIONS(1180), 1, + ACTIONS(1145), 1, sym__name, - ACTIONS(1182), 1, + ACTIONS(1147), 1, sym__upname, ACTIONS(1478), 1, anon_sym_LBRACE, @@ -36052,25 +36133,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1484), 1, anon_sym_LT_LT, - ACTIONS(1504), 1, + ACTIONS(1506), 1, sym_float, - STATE(677), 1, + STATE(684), 1, + sym__case_clause_guard_binary_expression, + STATE(695), 1, sym_identifier, - STATE(678), 1, + STATE(696), 1, sym__case_clause_tuple_access, - STATE(686), 1, - sym__case_clause_guard_binary_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(452), 2, + STATE(453), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1176), 3, + ACTIONS(1141), 3, sym__hex, sym__octal, sym__binary, - STATE(710), 9, + STATE(698), 9, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -36080,70 +36161,19 @@ static const uint16_t ts_small_parse_table[] = { sym__case_clause_guard_unit, sym_string, sym_integer, - [36993] = 20, + [37050] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1121), 1, - anon_sym_POUND, - ACTIONS(1125), 1, - anon_sym_LBRACK, - ACTIONS(1127), 1, - anon_sym_LT_LT, - ACTIONS(1133), 1, - sym__discard_name, - ACTIONS(1170), 1, + ACTIONS(1135), 1, anon_sym_DASH, - ACTIONS(1172), 1, + ACTIONS(1137), 1, anon_sym_DQUOTE, - ACTIONS(1174), 1, - sym_float, - ACTIONS(1178), 1, + ACTIONS(1143), 1, sym__decimal, - ACTIONS(1180), 1, + ACTIONS(1145), 1, sym__name, - ACTIONS(1182), 1, + ACTIONS(1147), 1, sym__upname, - ACTIONS(1506), 1, - anon_sym_if, - ACTIONS(1508), 1, - anon_sym_DASH_GT, - STATE(819), 1, - sym_identifier, - STATE(828), 1, - sym__pattern, - STATE(974), 1, - sym_case_clause_pattern, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(699), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1176), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(843), 7, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_string, - sym_integer, - sym_discard, - [37064] = 18, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(294), 1, - anon_sym_DASH, - ACTIONS(310), 1, - anon_sym_DQUOTE, - ACTIONS(316), 1, - sym__decimal, - ACTIONS(322), 1, - sym__upname, - ACTIONS(689), 1, - sym__name, ACTIONS(1478), 1, anon_sym_LBRACE, ACTIONS(1480), 1, @@ -36152,25 +36182,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1484), 1, anon_sym_LT_LT, - ACTIONS(1510), 1, + ACTIONS(1508), 1, sym_float, - STATE(662), 1, + STATE(684), 1, + sym__case_clause_guard_binary_expression, + STATE(695), 1, sym_identifier, - STATE(678), 1, + STATE(696), 1, sym__case_clause_tuple_access, - STATE(686), 1, - sym__case_clause_guard_binary_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(452), 2, + STATE(453), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(314), 3, + ACTIONS(1141), 3, sym__hex, sym__octal, sym__binary, - STATE(708), 9, + STATE(700), 9, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -36180,18 +36210,18 @@ static const uint16_t ts_small_parse_table[] = { sym__case_clause_guard_unit, sym_string, sym_integer, - [37131] = 18, + [37117] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(294), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(310), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(689), 1, + ACTIONS(693), 1, sym__name, ACTIONS(1478), 1, anon_sym_LBRACE, @@ -36201,25 +36231,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1484), 1, anon_sym_LT_LT, - ACTIONS(1512), 1, + ACTIONS(1510), 1, sym_float, STATE(662), 1, sym_identifier, - STATE(678), 1, - sym__case_clause_tuple_access, - STATE(686), 1, + STATE(684), 1, sym__case_clause_guard_binary_expression, + STATE(696), 1, + sym__case_clause_tuple_access, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(452), 2, + STATE(453), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(705), 9, + STATE(707), 9, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -36229,18 +36259,18 @@ static const uint16_t ts_small_parse_table[] = { sym__case_clause_guard_unit, sym_string, sym_integer, - [37198] = 18, + [37184] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(294), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(310), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(689), 1, + ACTIONS(693), 1, sym__name, ACTIONS(1478), 1, anon_sym_LBRACE, @@ -36250,25 +36280,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1484), 1, anon_sym_LT_LT, - ACTIONS(1514), 1, + ACTIONS(1512), 1, sym_float, STATE(662), 1, sym_identifier, - STATE(678), 1, - sym__case_clause_tuple_access, - STATE(686), 1, + STATE(684), 1, sym__case_clause_guard_binary_expression, + STATE(696), 1, + sym__case_clause_tuple_access, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(452), 2, + STATE(453), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(700), 9, + STATE(708), 9, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -36278,18 +36308,18 @@ static const uint16_t ts_small_parse_table[] = { sym__case_clause_guard_unit, sym_string, sym_integer, - [37265] = 18, + [37251] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(294), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(310), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(689), 1, + ACTIONS(693), 1, sym__name, ACTIONS(1478), 1, anon_sym_LBRACE, @@ -36299,25 +36329,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1484), 1, anon_sym_LT_LT, - ACTIONS(1486), 1, + ACTIONS(1514), 1, sym_float, STATE(662), 1, sym_identifier, - STATE(678), 1, - sym__case_clause_tuple_access, - STATE(686), 1, + STATE(684), 1, sym__case_clause_guard_binary_expression, + STATE(696), 1, + sym__case_clause_tuple_access, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(452), 2, + STATE(453), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(691), 9, + STATE(699), 9, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -36327,67 +36357,69 @@ static const uint16_t ts_small_parse_table[] = { sym__case_clause_guard_unit, sym_string, sym_integer, - [37332] = 18, + [37318] = 20, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1170), 1, + ACTIONS(1121), 1, + anon_sym_POUND, + ACTIONS(1125), 1, + anon_sym_LBRACK, + ACTIONS(1127), 1, + anon_sym_LT_LT, + ACTIONS(1133), 1, + sym__discard_name, + ACTIONS(1135), 1, anon_sym_DASH, - ACTIONS(1172), 1, + ACTIONS(1137), 1, anon_sym_DQUOTE, - ACTIONS(1178), 1, + ACTIONS(1139), 1, + sym_float, + ACTIONS(1143), 1, sym__decimal, - ACTIONS(1180), 1, + ACTIONS(1145), 1, sym__name, - ACTIONS(1182), 1, + ACTIONS(1147), 1, sym__upname, - ACTIONS(1478), 1, - anon_sym_LBRACE, - ACTIONS(1480), 1, - anon_sym_POUND, - ACTIONS(1482), 1, - anon_sym_LBRACK, - ACTIONS(1484), 1, - anon_sym_LT_LT, ACTIONS(1516), 1, - sym_float, - STATE(677), 1, + anon_sym_if, + ACTIONS(1518), 1, + anon_sym_DASH_GT, + STATE(826), 1, sym_identifier, - STATE(678), 1, - sym__case_clause_tuple_access, - STATE(686), 1, - sym__case_clause_guard_binary_expression, + STATE(850), 1, + sym__pattern, + STATE(1036), 1, + sym_case_clause_pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(452), 2, + STATE(702), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1176), 3, + ACTIONS(1141), 3, sym__hex, sym__octal, sym__binary, - STATE(702), 9, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym__case_clause_guard_expression, - sym__case_clause_guard_unit, + STATE(833), 7, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, sym_string, sym_integer, - [37399] = 18, + sym_discard, + [37389] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(294), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(310), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(689), 1, + ACTIONS(693), 1, sym__name, ACTIONS(1478), 1, anon_sym_LBRACE, @@ -36397,25 +36429,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1484), 1, anon_sym_LT_LT, - ACTIONS(1518), 1, + ACTIONS(1520), 1, sym_float, STATE(662), 1, sym_identifier, - STATE(678), 1, - sym__case_clause_tuple_access, - STATE(686), 1, + STATE(684), 1, sym__case_clause_guard_binary_expression, + STATE(696), 1, + sym__case_clause_tuple_access, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(452), 2, + STATE(453), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(698), 9, + STATE(683), 9, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -36425,18 +36457,18 @@ static const uint16_t ts_small_parse_table[] = { sym__case_clause_guard_unit, sym_string, sym_integer, - [37466] = 18, + [37456] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1170), 1, + ACTIONS(1135), 1, anon_sym_DASH, - ACTIONS(1172), 1, + ACTIONS(1137), 1, anon_sym_DQUOTE, - ACTIONS(1178), 1, + ACTIONS(1143), 1, sym__decimal, - ACTIONS(1180), 1, + ACTIONS(1145), 1, sym__name, - ACTIONS(1182), 1, + ACTIONS(1147), 1, sym__upname, ACTIONS(1478), 1, anon_sym_LBRACE, @@ -36446,21 +36478,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1484), 1, anon_sym_LT_LT, - ACTIONS(1520), 1, + ACTIONS(1522), 1, sym_float, - STATE(677), 1, + STATE(684), 1, + sym__case_clause_guard_binary_expression, + STATE(695), 1, sym_identifier, - STATE(678), 1, + STATE(696), 1, sym__case_clause_tuple_access, - STATE(686), 1, - sym__case_clause_guard_binary_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(452), 2, + STATE(453), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1176), 3, + ACTIONS(1141), 3, sym__hex, sym__octal, sym__binary, @@ -36474,18 +36506,18 @@ static const uint16_t ts_small_parse_table[] = { sym__case_clause_guard_unit, sym_string, sym_integer, - [37533] = 20, + [37523] = 20, ACTIONS(3), 1, sym_module_comment, - ACTIONS(294), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(310), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(689), 1, + ACTIONS(693), 1, sym__name, ACTIONS(1121), 1, anon_sym_POUND, @@ -36497,23 +36529,23 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(1133), 1, sym__discard_name, - ACTIONS(1476), 1, + ACTIONS(1500), 1, anon_sym_DOT_DOT, - ACTIONS(1522), 1, + ACTIONS(1524), 1, anon_sym_RBRACK, - STATE(777), 1, + STATE(772), 1, sym_identifier, - STATE(802), 1, + STATE(806), 1, sym__pattern, - STATE(1197), 1, + STATE(1282), 1, sym_list_pattern_tail, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(699), 2, + STATE(702), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, @@ -36525,62 +36557,113 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [37604] = 13, + [37594] = 18, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1135), 1, + anon_sym_DASH, + ACTIONS(1137), 1, + anon_sym_DQUOTE, + ACTIONS(1143), 1, + sym__decimal, + ACTIONS(1145), 1, + sym__name, + ACTIONS(1147), 1, + sym__upname, + ACTIONS(1478), 1, + anon_sym_LBRACE, + ACTIONS(1480), 1, + anon_sym_POUND, + ACTIONS(1482), 1, + anon_sym_LBRACK, + ACTIONS(1484), 1, + anon_sym_LT_LT, + ACTIONS(1520), 1, + sym_float, + STATE(684), 1, + sym__case_clause_guard_binary_expression, + STATE(695), 1, + sym_identifier, + STATE(696), 1, + sym__case_clause_tuple_access, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(453), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(1141), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(683), 9, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym__case_clause_guard_expression, + sym__case_clause_guard_unit, + sym_string, + sym_integer, + [37661] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1196), 1, + ACTIONS(1153), 1, anon_sym_PIPE_GT, - ACTIONS(1212), 1, + ACTIONS(1169), 1, anon_sym_AMP_AMP, - ACTIONS(1234), 1, + ACTIONS(1175), 1, anon_sym_PIPE_PIPE, + ACTIONS(1526), 1, + anon_sym_COMMA, + ACTIONS(1528), 1, + anon_sym_RBRACK, + ACTIONS(1530), 1, + anon_sym_DOT_DOT, + STATE(856), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1184), 2, + ACTIONS(1149), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1186), 2, + ACTIONS(1151), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1188), 2, + ACTIONS(1155), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1210), 2, + ACTIONS(1163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1190), 3, + ACTIONS(1157), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(1198), 4, + ACTIONS(1165), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1200), 4, + ACTIONS(1167), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1524), 5, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [37661] = 4, + [37723] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1360), 4, + ACTIONS(1388), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1358), 22, + ACTIONS(1386), 22, anon_sym_RBRACE, anon_sym_import, anon_sym_COMMA, @@ -36603,113 +36686,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ_DOT, sym_visibility_modifier, sym_opacity_modifier, - [37699] = 16, + [37761] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1196), 1, - anon_sym_PIPE_GT, - ACTIONS(1212), 1, - anon_sym_AMP_AMP, - ACTIONS(1234), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1526), 1, - anon_sym_COMMA, - ACTIONS(1528), 1, - anon_sym_RBRACK, - ACTIONS(1530), 1, - anon_sym_DOT_DOT, - STATE(875), 1, - aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1184), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1186), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1188), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1210), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1190), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(1198), 4, + ACTIONS(1396), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1200), 4, + ACTIONS(1394), 22, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_COMMA, + anon_sym_const, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_external, + anon_sym_type, + anon_sym_fn, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [37761] = 19, + sym_visibility_modifier, + sym_opacity_modifier, + [37799] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(294), 1, - anon_sym_DASH, - ACTIONS(310), 1, - anon_sym_DQUOTE, - ACTIONS(316), 1, - sym__decimal, - ACTIONS(322), 1, - sym__upname, - ACTIONS(689), 1, - sym__name, - ACTIONS(1121), 1, - anon_sym_POUND, - ACTIONS(1125), 1, - anon_sym_LBRACK, - ACTIONS(1127), 1, - anon_sym_LT_LT, - ACTIONS(1131), 1, - sym_float, - ACTIONS(1133), 1, - sym__discard_name, - ACTIONS(1532), 1, - anon_sym_GT_GT, - STATE(777), 1, - sym_identifier, - STATE(942), 1, - sym__pattern, - STATE(1116), 1, - sym_pattern_bit_string_segment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(699), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(314), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(788), 7, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_string, - sym_integer, - sym_discard, - [37829] = 4, + ACTIONS(1340), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1338), 22, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_COMMA, + anon_sym_const, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_external, + anon_sym_type, + anon_sym_fn, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + sym_visibility_modifier, + sym_opacity_modifier, + [37837] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1376), 4, + ACTIONS(1328), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1374), 22, + ACTIONS(1326), 22, anon_sym_RBRACE, anon_sym_import, anon_sym_COMMA, @@ -36732,18 +36788,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ_DOT, sym_visibility_modifier, sym_opacity_modifier, - [37867] = 4, + [37875] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1348), 4, + ACTIONS(1316), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1346), 22, + ACTIONS(1314), 22, anon_sym_RBRACE, anon_sym_import, anon_sym_COMMA, @@ -36766,18 +36822,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ_DOT, sym_visibility_modifier, sym_opacity_modifier, - [37905] = 19, + [37913] = 19, ACTIONS(3), 1, sym_module_comment, - ACTIONS(294), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(310), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(322), 1, + ACTIONS(313), 1, + sym__name, + ACTIONS(315), 1, sym__upname, - ACTIONS(689), 1, + ACTIONS(1121), 1, + anon_sym_POUND, + ACTIONS(1125), 1, + anon_sym_LBRACK, + ACTIONS(1127), 1, + anon_sym_LT_LT, + ACTIONS(1131), 1, + sym_float, + ACTIONS(1133), 1, + sym__discard_name, + STATE(772), 1, + sym_identifier, + STATE(908), 1, + sym__pattern, + STATE(1046), 1, + sym_record_pattern_argument, + STATE(1191), 1, + sym_label, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(702), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(307), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(788), 7, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_string, + sym_integer, + sym_discard, + [37981] = 19, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(287), 1, + anon_sym_DASH, + ACTIONS(303), 1, + anon_sym_DQUOTE, + ACTIONS(309), 1, + sym__decimal, + ACTIONS(315), 1, + sym__upname, + ACTIONS(693), 1, sym__name, ACTIONS(1121), 1, anon_sym_POUND, @@ -36789,21 +36894,21 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(1133), 1, sym__discard_name, - ACTIONS(1534), 1, + ACTIONS(1532), 1, anon_sym_GT_GT, - STATE(777), 1, + STATE(772), 1, sym_identifier, - STATE(942), 1, + STATE(981), 1, sym__pattern, - STATE(1116), 1, + STATE(1083), 1, sym_pattern_bit_string_segment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(699), 2, + STATE(702), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, @@ -36815,18 +36920,18 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [37973] = 4, + [38049] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1428), 4, + ACTIONS(1320), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1426), 22, + ACTIONS(1318), 22, anon_sym_RBRACE, anon_sym_import, anon_sym_COMMA, @@ -36849,18 +36954,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ_DOT, sym_visibility_modifier, sym_opacity_modifier, - [38011] = 4, + [38087] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1332), 4, + ACTIONS(1408), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1330), 22, + ACTIONS(1406), 22, anon_sym_RBRACE, anon_sym_import, anon_sym_COMMA, @@ -36883,18 +36988,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ_DOT, sym_visibility_modifier, sym_opacity_modifier, - [38049] = 4, + [38125] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1412), 4, + ACTIONS(1270), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1410), 22, + ACTIONS(1268), 22, anon_sym_RBRACE, anon_sym_import, anon_sym_COMMA, @@ -36917,110 +37022,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ_DOT, sym_visibility_modifier, sym_opacity_modifier, - [38087] = 16, + [38163] = 19, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1196), 1, - anon_sym_PIPE_GT, - ACTIONS(1212), 1, - anon_sym_AMP_AMP, - ACTIONS(1234), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1536), 1, - anon_sym_COMMA, - ACTIONS(1538), 1, - anon_sym_RBRACK, - ACTIONS(1540), 1, - anon_sym_DOT_DOT, - STATE(851), 1, - aux_sym_tuple_repeat1, + ACTIONS(287), 1, + anon_sym_DASH, + ACTIONS(303), 1, + anon_sym_DQUOTE, + ACTIONS(309), 1, + sym__decimal, + ACTIONS(315), 1, + sym__upname, + ACTIONS(693), 1, + sym__name, + ACTIONS(1121), 1, + anon_sym_POUND, + ACTIONS(1125), 1, + anon_sym_LBRACK, + ACTIONS(1127), 1, + anon_sym_LT_LT, + ACTIONS(1131), 1, + sym_float, + ACTIONS(1133), 1, + sym__discard_name, + ACTIONS(1534), 1, + anon_sym_GT_GT, + STATE(772), 1, + sym_identifier, + STATE(981), 1, + sym__pattern, + STATE(1083), 1, + sym_pattern_bit_string_segment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1184), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1186), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1188), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1210), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1190), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(1198), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1200), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [38149] = 16, + STATE(702), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(307), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(788), 7, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_string, + sym_integer, + sym_discard, + [38231] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1196), 1, - anon_sym_PIPE_GT, - ACTIONS(1212), 1, - anon_sym_AMP_AMP, - ACTIONS(1234), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1542), 1, - anon_sym_COMMA, - ACTIONS(1544), 1, - anon_sym_RBRACK, - ACTIONS(1546), 1, - anon_sym_DOT_DOT, - STATE(884), 1, - aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1184), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1186), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1188), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1210), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1190), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(1198), 4, + ACTIONS(1258), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1200), 4, + ACTIONS(1256), 22, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_COMMA, + anon_sym_const, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_external, + anon_sym_type, + anon_sym_fn, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [38211] = 4, + sym_visibility_modifier, + sym_opacity_modifier, + [38269] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1444), 4, + ACTIONS(1296), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1442), 22, + ACTIONS(1294), 22, anon_sym_RBRACE, anon_sym_import, anon_sym_COMMA, @@ -37043,67 +37139,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ_DOT, sym_visibility_modifier, sym_opacity_modifier, - [38249] = 19, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(294), 1, - anon_sym_DASH, - ACTIONS(310), 1, - anon_sym_DQUOTE, - ACTIONS(316), 1, - sym__decimal, - ACTIONS(322), 1, - sym__upname, - ACTIONS(689), 1, - sym__name, - ACTIONS(1121), 1, - anon_sym_POUND, - ACTIONS(1125), 1, - anon_sym_LBRACK, - ACTIONS(1127), 1, - anon_sym_LT_LT, - ACTIONS(1131), 1, - sym_float, - ACTIONS(1133), 1, - sym__discard_name, - ACTIONS(1548), 1, - anon_sym_GT_GT, - STATE(777), 1, - sym_identifier, - STATE(941), 1, - sym_pattern_bit_string_segment, - STATE(942), 1, - sym__pattern, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(699), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(314), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(788), 7, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_string, - sym_integer, - sym_discard, - [38317] = 4, + [38307] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1336), 4, + ACTIONS(1392), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1334), 22, + ACTIONS(1390), 22, anon_sym_RBRACE, anon_sym_import, anon_sym_COMMA, @@ -37126,64 +37173,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ_DOT, sym_visibility_modifier, sym_opacity_modifier, - [38355] = 16, + [38345] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1196), 1, + ACTIONS(1153), 1, anon_sym_PIPE_GT, - ACTIONS(1212), 1, + ACTIONS(1169), 1, anon_sym_AMP_AMP, - ACTIONS(1234), 1, + ACTIONS(1175), 1, anon_sym_PIPE_PIPE, - ACTIONS(1550), 1, + ACTIONS(1536), 1, anon_sym_COMMA, - ACTIONS(1552), 1, + ACTIONS(1538), 1, anon_sym_RBRACK, - ACTIONS(1554), 1, + ACTIONS(1540), 1, anon_sym_DOT_DOT, - STATE(867), 1, + STATE(866), 1, aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1184), 2, + ACTIONS(1149), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1186), 2, + ACTIONS(1151), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1188), 2, + ACTIONS(1155), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1210), 2, + ACTIONS(1163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1190), 3, + ACTIONS(1157), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(1198), 4, + ACTIONS(1165), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1200), 4, + ACTIONS(1167), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [38417] = 4, + [38407] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1464), 4, + ACTIONS(1356), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1462), 22, + ACTIONS(1354), 22, anon_sym_RBRACE, anon_sym_import, anon_sym_COMMA, @@ -37206,52 +37253,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ_DOT, sym_visibility_modifier, sym_opacity_modifier, - [38455] = 4, + [38445] = 16, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1153), 1, + anon_sym_PIPE_GT, + ACTIONS(1169), 1, + anon_sym_AMP_AMP, + ACTIONS(1175), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1542), 1, + anon_sym_COMMA, + ACTIONS(1544), 1, + anon_sym_RBRACK, + ACTIONS(1546), 1, + anon_sym_DOT_DOT, + STATE(876), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1316), 4, + ACTIONS(1149), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1151), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1155), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1163), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1157), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(1165), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1314), 22, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_COMMA, - anon_sym_const, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(1167), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [38493] = 4, + [38507] = 19, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(287), 1, + anon_sym_DASH, + ACTIONS(303), 1, + anon_sym_DQUOTE, + ACTIONS(309), 1, + sym__decimal, + ACTIONS(315), 1, + sym__upname, + ACTIONS(693), 1, + sym__name, + ACTIONS(1121), 1, + anon_sym_POUND, + ACTIONS(1125), 1, + anon_sym_LBRACK, + ACTIONS(1127), 1, + anon_sym_LT_LT, + ACTIONS(1131), 1, + sym_float, + ACTIONS(1133), 1, + sym__discard_name, + ACTIONS(1548), 1, + anon_sym_GT_GT, + STATE(772), 1, + sym_identifier, + STATE(980), 1, + sym_pattern_bit_string_segment, + STATE(981), 1, + sym__pattern, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(702), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(307), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(788), 7, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_string, + sym_integer, + sym_discard, + [38575] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1452), 4, + ACTIONS(1368), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1450), 22, + ACTIONS(1366), 22, anon_sym_RBRACE, anon_sym_import, anon_sym_COMMA, @@ -37274,18 +37382,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ_DOT, sym_visibility_modifier, sym_opacity_modifier, - [38531] = 4, + [38613] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1368), 4, + ACTIONS(1278), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1366), 22, + ACTIONS(1276), 22, anon_sym_RBRACE, anon_sym_import, anon_sym_COMMA, @@ -37308,18 +37416,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ_DOT, sym_visibility_modifier, sym_opacity_modifier, - [38569] = 4, + [38651] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1472), 4, + ACTIONS(1436), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1470), 22, + ACTIONS(1434), 22, anon_sym_RBRACE, anon_sym_import, anon_sym_COMMA, @@ -37342,52 +37450,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ_DOT, sym_visibility_modifier, sym_opacity_modifier, - [38607] = 4, + [38689] = 16, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1153), 1, + anon_sym_PIPE_GT, + ACTIONS(1169), 1, + anon_sym_AMP_AMP, + ACTIONS(1175), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1550), 1, + anon_sym_COMMA, + ACTIONS(1552), 1, + anon_sym_RBRACK, + ACTIONS(1554), 1, + anon_sym_DOT_DOT, + STATE(867), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1416), 4, + ACTIONS(1149), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1151), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1155), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1163), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1157), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(1165), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1414), 22, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_COMMA, - anon_sym_const, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(1167), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [38645] = 4, + [38751] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1404), 4, + ACTIONS(1376), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1402), 22, + ACTIONS(1374), 22, anon_sym_RBRACE, anon_sym_import, anon_sym_COMMA, @@ -37410,18 +37530,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ_DOT, sym_visibility_modifier, sym_opacity_modifier, - [38683] = 4, + [38789] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1324), 4, + ACTIONS(1284), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1322), 22, + ACTIONS(1282), 22, anon_sym_RBRACE, anon_sym_import, anon_sym_COMMA, @@ -37444,19 +37564,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ_DOT, sym_visibility_modifier, sym_opacity_modifier, - [38721] = 19, + [38827] = 18, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(313), 1, + sym__name, + ACTIONS(457), 1, + anon_sym_DASH, + ACTIONS(473), 1, + anon_sym_DQUOTE, + ACTIONS(479), 1, + sym__decimal, + ACTIONS(483), 1, + sym__upname, + ACTIONS(1480), 1, + anon_sym_POUND, + ACTIONS(1482), 1, + anon_sym_LBRACK, + ACTIONS(1484), 1, + anon_sym_LT_LT, + ACTIONS(1556), 1, + anon_sym_RPAREN, + ACTIONS(1558), 1, + sym_float, + STATE(1098), 1, + sym_constant_record_argument, + STATE(1196), 1, + sym_label, + STATE(1243), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(453), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(477), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1153), 7, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_string, + sym_integer, + [38892] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(294), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(310), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(320), 1, - sym__name, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__upname, + ACTIONS(693), 1, + sym__name, ACTIONS(1121), 1, anon_sym_POUND, ACTIONS(1125), 1, @@ -37467,21 +37634,19 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(1133), 1, sym__discard_name, - STATE(777), 1, + STATE(341), 1, + sym__assignment, + STATE(772), 1, sym_identifier, - STATE(957), 1, + STATE(958), 1, sym__pattern, - STATE(961), 1, - sym_record_pattern_argument, - STATE(1200), 1, - sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(699), 2, + STATE(702), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, @@ -37493,52 +37658,65 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [38789] = 4, + [38957] = 18, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1121), 1, + anon_sym_POUND, + ACTIONS(1125), 1, + anon_sym_LBRACK, + ACTIONS(1127), 1, + anon_sym_LT_LT, + ACTIONS(1133), 1, + sym__discard_name, + ACTIONS(1135), 1, + anon_sym_DASH, + ACTIONS(1137), 1, + anon_sym_DQUOTE, + ACTIONS(1139), 1, + sym_float, + ACTIONS(1143), 1, + sym__decimal, + ACTIONS(1145), 1, + sym__name, + ACTIONS(1147), 1, + sym__upname, + STATE(826), 1, + sym_identifier, + STATE(850), 1, + sym__pattern, + STATE(1036), 1, + sym_case_clause_pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1424), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1422), 22, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_COMMA, - anon_sym_const, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [38827] = 18, + STATE(702), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(1141), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(833), 7, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_string, + sym_integer, + sym_discard, + [39022] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(294), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(310), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(689), 1, + ACTIONS(693), 1, sym__name, ACTIONS(1121), 1, anon_sym_POUND, @@ -37550,19 +37728,19 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(1133), 1, sym__discard_name, - STATE(259), 1, + STATE(244), 1, sym__assignment, - STATE(777), 1, + STATE(772), 1, sym_identifier, - STATE(994), 1, + STATE(988), 1, sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(699), 2, + STATE(702), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, @@ -37574,10 +37752,57 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [38892] = 18, + [39087] = 18, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(287), 1, + anon_sym_DASH, + ACTIONS(303), 1, + anon_sym_DQUOTE, + ACTIONS(309), 1, + sym__decimal, + ACTIONS(315), 1, + sym__upname, + ACTIONS(693), 1, + sym__name, + ACTIONS(1121), 1, + anon_sym_POUND, + ACTIONS(1125), 1, + anon_sym_LBRACK, + ACTIONS(1127), 1, + anon_sym_LT_LT, + ACTIONS(1131), 1, + sym_float, + ACTIONS(1133), 1, + sym__discard_name, + ACTIONS(1560), 1, + anon_sym_RPAREN, + STATE(772), 1, + sym_identifier, + STATE(913), 1, + sym__pattern, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(702), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(307), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(788), 7, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_string, + sym_integer, + sym_discard, + [39152] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(320), 1, + ACTIONS(313), 1, sym__name, ACTIONS(457), 1, anon_sym_DASH, @@ -37593,27 +37818,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1484), 1, anon_sym_LT_LT, - ACTIONS(1556), 1, - anon_sym_RPAREN, ACTIONS(1558), 1, sym_float, - STATE(1044), 1, + ACTIONS(1562), 1, + anon_sym_RPAREN, + STATE(967), 1, sym_constant_record_argument, - STATE(1166), 1, - sym_identifier, - STATE(1184), 1, + STATE(1196), 1, sym_label, + STATE(1243), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(452), 2, + STATE(453), 2, sym_constructor_name, sym_remote_constructor_name, ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(1132), 7, + STATE(1153), 7, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -37621,10 +37846,10 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_record, sym_string, sym_integer, - [38957] = 18, + [39217] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(320), 1, + ACTIONS(313), 1, sym__name, ACTIONS(457), 1, anon_sym_DASH, @@ -37642,25 +37867,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, ACTIONS(1558), 1, sym_float, - ACTIONS(1560), 1, + ACTIONS(1564), 1, anon_sym_RPAREN, - STATE(921), 1, + STATE(1025), 1, sym_constant_record_argument, - STATE(1166), 1, - sym_identifier, - STATE(1184), 1, + STATE(1196), 1, sym_label, + STATE(1243), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(452), 2, + STATE(453), 2, sym_constructor_name, sym_remote_constructor_name, ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(1132), 7, + STATE(1153), 7, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -37668,18 +37893,18 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_record, sym_string, sym_integer, - [39022] = 18, + [39282] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(294), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(310), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(689), 1, + ACTIONS(693), 1, sym__name, ACTIONS(1121), 1, anon_sym_POUND, @@ -37691,19 +37916,19 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(1133), 1, sym__discard_name, - STATE(258), 1, - sym__assignment, - STATE(777), 1, + STATE(772), 1, sym_identifier, - STATE(994), 1, + STATE(981), 1, sym__pattern, + STATE(1083), 1, + sym_pattern_bit_string_segment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(699), 2, + STATE(702), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, @@ -37715,153 +37940,65 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [39087] = 15, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1196), 1, - anon_sym_PIPE_GT, - ACTIONS(1212), 1, - anon_sym_AMP_AMP, - ACTIONS(1234), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1562), 1, - anon_sym_COMMA, - ACTIONS(1564), 1, - anon_sym_RPAREN, - STATE(963), 1, - aux_sym_tuple_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1184), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1186), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1188), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1210), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1190), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(1198), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1200), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [39146] = 15, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1196), 1, - anon_sym_PIPE_GT, - ACTIONS(1212), 1, - anon_sym_AMP_AMP, - ACTIONS(1234), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1566), 1, - anon_sym_COMMA, - ACTIONS(1568), 1, - anon_sym_RPAREN, - STATE(1020), 1, - aux_sym_tuple_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1184), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1186), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1188), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1210), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1190), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(1198), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1200), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [39205] = 18, + [39347] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(294), 1, + ACTIONS(313), 1, + sym__name, + ACTIONS(457), 1, anon_sym_DASH, - ACTIONS(310), 1, + ACTIONS(473), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(479), 1, sym__decimal, - ACTIONS(322), 1, + ACTIONS(483), 1, sym__upname, - ACTIONS(689), 1, - sym__name, - ACTIONS(1121), 1, + ACTIONS(1480), 1, anon_sym_POUND, - ACTIONS(1125), 1, + ACTIONS(1482), 1, anon_sym_LBRACK, - ACTIONS(1127), 1, + ACTIONS(1484), 1, anon_sym_LT_LT, - ACTIONS(1131), 1, + ACTIONS(1558), 1, sym_float, - ACTIONS(1133), 1, - sym__discard_name, - STATE(777), 1, + ACTIONS(1566), 1, + anon_sym_RPAREN, + STATE(1098), 1, + sym_constant_record_argument, + STATE(1196), 1, + sym_label, + STATE(1243), 1, sym_identifier, - STATE(942), 1, - sym__pattern, - STATE(1116), 1, - sym_pattern_bit_string_segment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(699), 2, + STATE(453), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(314), 3, + ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(788), 7, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, + STATE(1153), 7, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, sym_string, sym_integer, - sym_discard, - [39270] = 18, + [39412] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(294), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(310), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(689), 1, + ACTIONS(693), 1, sym__name, ACTIONS(1121), 1, anon_sym_POUND, @@ -37873,19 +38010,19 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(1133), 1, sym__discard_name, - ACTIONS(1570), 1, - anon_sym_RPAREN, - STATE(777), 1, + STATE(76), 1, + sym__assignment, + STATE(772), 1, sym_identifier, - STATE(802), 1, + STATE(969), 1, sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(699), 2, + STATE(702), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, @@ -37897,62 +38034,18 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [39335] = 15, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1196), 1, - anon_sym_PIPE_GT, - ACTIONS(1212), 1, - anon_sym_AMP_AMP, - ACTIONS(1234), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1572), 1, - anon_sym_LBRACE, - ACTIONS(1574), 1, - anon_sym_COMMA, - STATE(920), 1, - aux_sym_tuple_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1184), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1186), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1188), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1210), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1190), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(1198), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1200), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [39394] = 18, + [39477] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(294), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(310), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(689), 1, + ACTIONS(693), 1, sym__name, ACTIONS(1121), 1, anon_sym_POUND, @@ -37964,19 +38057,19 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(1133), 1, sym__discard_name, - ACTIONS(1576), 1, - anon_sym_RPAREN, - STATE(777), 1, + STATE(74), 1, + sym__assignment, + STATE(772), 1, sym_identifier, - STATE(802), 1, + STATE(969), 1, sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(699), 2, + STATE(702), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, @@ -37988,10 +38081,10 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [39459] = 18, + [39542] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(320), 1, + ACTIONS(313), 1, sym__name, ACTIONS(457), 1, anon_sym_DASH, @@ -38009,25 +38102,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, ACTIONS(1558), 1, sym_float, - ACTIONS(1578), 1, + ACTIONS(1568), 1, anon_sym_RPAREN, - STATE(1044), 1, + STATE(1098), 1, sym_constant_record_argument, - STATE(1166), 1, - sym_identifier, - STATE(1184), 1, + STATE(1196), 1, sym_label, + STATE(1243), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(452), 2, + STATE(453), 2, sym_constructor_name, sym_remote_constructor_name, ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(1132), 7, + STATE(1153), 7, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -38035,65 +38128,65 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_record, sym_string, sym_integer, - [39524] = 18, + [39607] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(294), 1, + ACTIONS(313), 1, + sym__name, + ACTIONS(457), 1, anon_sym_DASH, - ACTIONS(310), 1, + ACTIONS(473), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(479), 1, sym__decimal, - ACTIONS(322), 1, + ACTIONS(483), 1, sym__upname, - ACTIONS(689), 1, - sym__name, - ACTIONS(1121), 1, + ACTIONS(1480), 1, anon_sym_POUND, - ACTIONS(1125), 1, + ACTIONS(1482), 1, anon_sym_LBRACK, - ACTIONS(1127), 1, + ACTIONS(1484), 1, anon_sym_LT_LT, - ACTIONS(1131), 1, + ACTIONS(1558), 1, sym_float, - ACTIONS(1133), 1, - sym__discard_name, - STATE(437), 1, - sym__assignment, - STATE(777), 1, + ACTIONS(1570), 1, + anon_sym_RPAREN, + STATE(1098), 1, + sym_constant_record_argument, + STATE(1196), 1, + sym_label, + STATE(1243), 1, sym_identifier, - STATE(975), 1, - sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(699), 2, + STATE(453), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(314), 3, + ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(788), 7, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, + STATE(1153), 7, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, sym_string, sym_integer, - sym_discard, - [39589] = 18, + [39672] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(294), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(310), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(689), 1, + ACTIONS(693), 1, sym__name, ACTIONS(1121), 1, anon_sym_POUND, @@ -38105,19 +38198,19 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(1133), 1, sym__discard_name, - STATE(73), 1, + STATE(246), 1, sym__assignment, - STATE(777), 1, + STATE(772), 1, sym_identifier, - STATE(959), 1, + STATE(988), 1, sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(699), 2, + STATE(702), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, @@ -38129,112 +38222,65 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [39654] = 18, + [39737] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(320), 1, - sym__name, - ACTIONS(457), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(473), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(483), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(1480), 1, - anon_sym_POUND, - ACTIONS(1482), 1, - anon_sym_LBRACK, - ACTIONS(1484), 1, - anon_sym_LT_LT, - ACTIONS(1558), 1, - sym_float, - ACTIONS(1580), 1, - anon_sym_RPAREN, - STATE(1044), 1, - sym_constant_record_argument, - STATE(1166), 1, - sym_identifier, - STATE(1184), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(452), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1132), 7, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_string, - sym_integer, - [39719] = 18, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(320), 1, + ACTIONS(693), 1, sym__name, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(483), 1, - sym__upname, - ACTIONS(1480), 1, + ACTIONS(1121), 1, anon_sym_POUND, - ACTIONS(1482), 1, + ACTIONS(1125), 1, anon_sym_LBRACK, - ACTIONS(1484), 1, + ACTIONS(1127), 1, anon_sym_LT_LT, - ACTIONS(1558), 1, + ACTIONS(1131), 1, sym_float, - ACTIONS(1582), 1, - anon_sym_RPAREN, - STATE(1023), 1, - sym_constant_record_argument, - STATE(1166), 1, + ACTIONS(1133), 1, + sym__discard_name, + STATE(427), 1, + sym__assignment, + STATE(772), 1, sym_identifier, - STATE(1184), 1, - sym_label, + STATE(988), 1, + sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(452), 2, + STATE(702), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(477), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(1132), 7, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, + STATE(788), 7, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, sym_string, sym_integer, - [39784] = 18, + sym_discard, + [39802] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(294), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(310), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(689), 1, + ACTIONS(693), 1, sym__name, ACTIONS(1121), 1, anon_sym_POUND, @@ -38246,19 +38292,19 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(1133), 1, sym__discard_name, - STATE(75), 1, - sym__assignment, - STATE(777), 1, + ACTIONS(1572), 1, + anon_sym_RPAREN, + STATE(772), 1, sym_identifier, - STATE(959), 1, + STATE(806), 1, sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(699), 2, + STATE(702), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, @@ -38270,18 +38316,18 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [39849] = 18, + [39867] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(294), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(310), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(689), 1, + ACTIONS(693), 1, sym__name, ACTIONS(1121), 1, anon_sym_POUND, @@ -38293,19 +38339,19 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(1133), 1, sym__discard_name, - STATE(258), 1, - sym__assignment, - STATE(777), 1, + ACTIONS(1574), 1, + anon_sym_RPAREN, + STATE(772), 1, sym_identifier, - STATE(975), 1, + STATE(806), 1, sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(699), 2, + STATE(702), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, @@ -38317,18 +38363,106 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [39914] = 18, + [39932] = 15, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1153), 1, + anon_sym_PIPE_GT, + ACTIONS(1169), 1, + anon_sym_AMP_AMP, + ACTIONS(1175), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1576), 1, + anon_sym_COMMA, + ACTIONS(1578), 1, + anon_sym_RPAREN, + STATE(948), 1, + aux_sym_tuple_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1149), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1151), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1155), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1163), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1157), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(1165), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1167), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [39991] = 15, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1153), 1, + anon_sym_PIPE_GT, + ACTIONS(1169), 1, + anon_sym_AMP_AMP, + ACTIONS(1175), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1580), 1, + anon_sym_COMMA, + ACTIONS(1582), 1, + anon_sym_RPAREN, + STATE(1035), 1, + aux_sym_tuple_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1149), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1151), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1155), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1163), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1157), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(1165), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1167), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [40050] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(294), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(310), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(689), 1, + ACTIONS(693), 1, sym__name, ACTIONS(1121), 1, anon_sym_POUND, @@ -38340,19 +38474,19 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(1133), 1, sym__discard_name, - STATE(439), 1, + STATE(429), 1, sym__assignment, - STATE(777), 1, + STATE(772), 1, sym_identifier, - STATE(975), 1, + STATE(988), 1, sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(699), 2, + STATE(702), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, @@ -38364,18 +38498,18 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [39979] = 18, + [40115] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(294), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(310), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(689), 1, + ACTIONS(693), 1, sym__name, ACTIONS(1121), 1, anon_sym_POUND, @@ -38387,19 +38521,19 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(1133), 1, sym__discard_name, - STATE(352), 1, + STATE(340), 1, sym__assignment, - STATE(777), 1, + STATE(772), 1, sym_identifier, - STATE(940), 1, + STATE(958), 1, sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(699), 2, + STATE(702), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, @@ -38411,18 +38545,18 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [40044] = 18, + [40180] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(294), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(310), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(689), 1, + ACTIONS(693), 1, sym__name, ACTIONS(1121), 1, anon_sym_POUND, @@ -38434,19 +38568,19 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(1133), 1, sym__discard_name, - STATE(356), 1, + STATE(246), 1, sym__assignment, - STATE(777), 1, + STATE(772), 1, sym_identifier, - STATE(940), 1, + STATE(1010), 1, sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(699), 2, + STATE(702), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, @@ -38458,18 +38592,62 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [40109] = 18, + [40245] = 15, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1153), 1, + anon_sym_PIPE_GT, + ACTIONS(1169), 1, + anon_sym_AMP_AMP, + ACTIONS(1175), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1584), 1, + anon_sym_LBRACE, + ACTIONS(1586), 1, + anon_sym_COMMA, + STATE(973), 1, + aux_sym_tuple_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1149), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1151), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1155), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1163), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1157), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(1165), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1167), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [40304] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(294), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(310), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(689), 1, + ACTIONS(693), 1, sym__name, ACTIONS(1121), 1, anon_sym_POUND, @@ -38481,19 +38659,19 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(1133), 1, sym__discard_name, - STATE(259), 1, + STATE(244), 1, sym__assignment, - STATE(777), 1, + STATE(772), 1, sym_identifier, - STATE(975), 1, + STATE(1010), 1, sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(699), 2, + STATE(702), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, @@ -38505,95 +38683,95 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [40174] = 15, + [40369] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1196), 1, + ACTIONS(1153), 1, anon_sym_PIPE_GT, - ACTIONS(1212), 1, + ACTIONS(1169), 1, anon_sym_AMP_AMP, - ACTIONS(1234), 1, + ACTIONS(1175), 1, anon_sym_PIPE_PIPE, - ACTIONS(1584), 1, + ACTIONS(1588), 1, anon_sym_COMMA, - ACTIONS(1586), 1, + ACTIONS(1590), 1, anon_sym_RPAREN, - STATE(932), 1, + STATE(979), 1, aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1184), 2, + ACTIONS(1149), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1186), 2, + ACTIONS(1151), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1188), 2, + ACTIONS(1155), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1210), 2, + ACTIONS(1163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1190), 3, + ACTIONS(1157), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(1198), 4, + ACTIONS(1165), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1200), 4, + ACTIONS(1167), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [40233] = 15, + [40428] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1196), 1, + ACTIONS(1153), 1, anon_sym_PIPE_GT, - ACTIONS(1212), 1, + ACTIONS(1169), 1, anon_sym_AMP_AMP, - ACTIONS(1234), 1, + ACTIONS(1175), 1, anon_sym_PIPE_PIPE, - ACTIONS(1588), 1, + ACTIONS(1592), 1, anon_sym_COMMA, - ACTIONS(1590), 1, + ACTIONS(1594), 1, anon_sym_RPAREN, - STATE(913), 1, + STATE(935), 1, aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1184), 2, + ACTIONS(1149), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1186), 2, + ACTIONS(1151), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1188), 2, + ACTIONS(1155), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1210), 2, + ACTIONS(1163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1190), 3, + ACTIONS(1157), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(1198), 4, + ACTIONS(1165), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1200), 4, + ACTIONS(1167), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [40292] = 18, + [40487] = 17, ACTIONS(3), 1, sym_module_comment, ACTIONS(1121), 1, @@ -38604,35 +38782,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, ACTIONS(1133), 1, sym__discard_name, - ACTIONS(1170), 1, + ACTIONS(1135), 1, anon_sym_DASH, - ACTIONS(1172), 1, + ACTIONS(1137), 1, anon_sym_DQUOTE, - ACTIONS(1174), 1, + ACTIONS(1139), 1, sym_float, - ACTIONS(1178), 1, + ACTIONS(1143), 1, sym__decimal, - ACTIONS(1180), 1, + ACTIONS(1145), 1, sym__name, - ACTIONS(1182), 1, + ACTIONS(1147), 1, sym__upname, - STATE(819), 1, - sym_identifier, - STATE(828), 1, + STATE(806), 1, sym__pattern, - STATE(974), 1, - sym_case_clause_pattern, + STATE(826), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(699), 2, + STATE(702), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1176), 3, + ACTIONS(1141), 3, sym__hex, sym__octal, sym__binary, - STATE(843), 7, + STATE(833), 7, sym_record_pattern, sym_tuple_pattern, sym__pattern_bit_string, @@ -38640,64 +38816,62 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [40357] = 18, + [40549] = 17, ACTIONS(3), 1, sym_module_comment, - ACTIONS(294), 1, + ACTIONS(457), 1, anon_sym_DASH, - ACTIONS(310), 1, + ACTIONS(473), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(479), 1, sym__decimal, - ACTIONS(322), 1, - sym__upname, - ACTIONS(689), 1, + ACTIONS(481), 1, sym__name, - ACTIONS(1121), 1, + ACTIONS(483), 1, + sym__upname, + ACTIONS(1480), 1, anon_sym_POUND, - ACTIONS(1125), 1, + ACTIONS(1482), 1, anon_sym_LBRACK, - ACTIONS(1127), 1, + ACTIONS(1484), 1, anon_sym_LT_LT, - ACTIONS(1131), 1, + ACTIONS(1596), 1, + anon_sym_GT_GT, + ACTIONS(1598), 1, sym_float, - ACTIONS(1133), 1, - sym__discard_name, - ACTIONS(1592), 1, - anon_sym_RPAREN, - STATE(777), 1, + STATE(1170), 1, + sym_constant_bit_string_segment, + STATE(1243), 1, sym_identifier, - STATE(950), 1, - sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(699), 2, + STATE(453), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(314), 3, + ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(788), 7, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, + STATE(939), 7, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, sym_string, sym_integer, - sym_discard, - [40422] = 18, + [40611] = 17, ACTIONS(3), 1, sym_module_comment, - ACTIONS(320), 1, - sym__name, ACTIONS(457), 1, anon_sym_DASH, ACTIONS(473), 1, anon_sym_DQUOTE, ACTIONS(479), 1, sym__decimal, + ACTIONS(481), 1, + sym__name, ACTIONS(483), 1, sym__upname, ACTIONS(1480), 1, @@ -38706,27 +38880,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1484), 1, anon_sym_LT_LT, - ACTIONS(1558), 1, + ACTIONS(1598), 1, sym_float, - ACTIONS(1594), 1, - anon_sym_RPAREN, - STATE(1044), 1, - sym_constant_record_argument, - STATE(1166), 1, + ACTIONS(1600), 1, + anon_sym_GT_GT, + STATE(1170), 1, + sym_constant_bit_string_segment, + STATE(1243), 1, sym_identifier, - STATE(1184), 1, - sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(452), 2, + STATE(453), 2, sym_constructor_name, sym_remote_constructor_name, ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(1132), 7, + STATE(939), 7, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -38734,108 +38906,149 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_record, sym_string, sym_integer, - [40487] = 17, + [40673] = 17, ACTIONS(3), 1, sym_module_comment, - ACTIONS(294), 1, + ACTIONS(457), 1, anon_sym_DASH, - ACTIONS(310), 1, + ACTIONS(473), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(479), 1, sym__decimal, - ACTIONS(322), 1, - sym__upname, - ACTIONS(689), 1, + ACTIONS(481), 1, sym__name, - ACTIONS(1121), 1, + ACTIONS(483), 1, + sym__upname, + ACTIONS(1480), 1, anon_sym_POUND, - ACTIONS(1125), 1, + ACTIONS(1482), 1, anon_sym_LBRACK, - ACTIONS(1127), 1, + ACTIONS(1484), 1, anon_sym_LT_LT, - ACTIONS(1131), 1, + ACTIONS(1598), 1, sym_float, - ACTIONS(1133), 1, - sym__discard_name, - STATE(777), 1, + ACTIONS(1602), 1, + anon_sym_GT_GT, + STATE(1170), 1, + sym_constant_bit_string_segment, + STATE(1243), 1, sym_identifier, - STATE(972), 1, - sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(699), 2, + STATE(453), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(314), 3, + ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(788), 7, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, + STATE(939), 7, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, sym_string, sym_integer, - sym_discard, - [40549] = 17, + [40735] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1121), 1, - anon_sym_POUND, - ACTIONS(1125), 1, - anon_sym_LBRACK, - ACTIONS(1127), 1, - anon_sym_LT_LT, - ACTIONS(1133), 1, - sym__discard_name, - ACTIONS(1170), 1, + ACTIONS(1153), 1, + anon_sym_PIPE_GT, + ACTIONS(1169), 1, + anon_sym_AMP_AMP, + ACTIONS(1175), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1149), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1151), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1155), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1163), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1604), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1157), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(1165), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1167), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [40789] = 17, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(313), 1, + sym__name, + ACTIONS(457), 1, anon_sym_DASH, - ACTIONS(1172), 1, + ACTIONS(473), 1, anon_sym_DQUOTE, - ACTIONS(1174), 1, - sym_float, - ACTIONS(1178), 1, + ACTIONS(479), 1, sym__decimal, - ACTIONS(1180), 1, - sym__name, - ACTIONS(1182), 1, + ACTIONS(483), 1, sym__upname, - STATE(802), 1, - sym__pattern, - STATE(819), 1, + ACTIONS(1480), 1, + anon_sym_POUND, + ACTIONS(1482), 1, + anon_sym_LBRACK, + ACTIONS(1484), 1, + anon_sym_LT_LT, + ACTIONS(1558), 1, + sym_float, + STATE(1098), 1, + sym_constant_record_argument, + STATE(1196), 1, + sym_label, + STATE(1243), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(699), 2, + STATE(453), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1176), 3, + ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(843), 7, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, + STATE(1153), 7, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, sym_string, sym_integer, - sym_discard, - [40611] = 17, + [40851] = 17, ACTIONS(3), 1, sym_module_comment, - ACTIONS(294), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(310), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(689), 1, + ACTIONS(693), 1, sym__name, ACTIONS(1121), 1, anon_sym_POUND, @@ -38847,17 +39060,17 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(1133), 1, sym__discard_name, - STATE(777), 1, + STATE(772), 1, sym_identifier, - STATE(802), 1, + STATE(806), 1, sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(699), 2, + STATE(702), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, @@ -38869,141 +39082,59 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [40673] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1196), 1, - anon_sym_PIPE_GT, - ACTIONS(1212), 1, - anon_sym_AMP_AMP, - ACTIONS(1234), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1184), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1186), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1188), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1210), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1596), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1190), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(1198), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1200), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [40727] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1196), 1, - anon_sym_PIPE_GT, - ACTIONS(1212), 1, - anon_sym_AMP_AMP, - ACTIONS(1234), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1184), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1186), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1188), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1210), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1598), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1190), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(1198), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1200), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [40781] = 13, + [40913] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1196), 1, + ACTIONS(1153), 1, anon_sym_PIPE_GT, - ACTIONS(1212), 1, + ACTIONS(1169), 1, anon_sym_AMP_AMP, - ACTIONS(1234), 1, + ACTIONS(1175), 1, anon_sym_PIPE_PIPE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1184), 2, + ACTIONS(1149), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1186), 2, + ACTIONS(1151), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1188), 2, + ACTIONS(1155), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1210), 2, + ACTIONS(1163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1600), 2, + ACTIONS(1606), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1190), 3, + ACTIONS(1157), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(1198), 4, + ACTIONS(1165), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1200), 4, + ACTIONS(1167), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [40835] = 17, + [40967] = 17, ACTIONS(3), 1, sym_module_comment, - ACTIONS(294), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(310), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(689), 1, + ACTIONS(693), 1, sym__name, ACTIONS(1121), 1, anon_sym_POUND, @@ -39015,17 +39146,17 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(1133), 1, sym__discard_name, - STATE(777), 1, + STATE(772), 1, sym_identifier, - STATE(946), 1, + STATE(1042), 1, sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(699), 2, + STATE(702), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, @@ -39037,63 +39168,63 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [40897] = 17, + [41029] = 17, ACTIONS(3), 1, sym_module_comment, - ACTIONS(457), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(473), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(1480), 1, + ACTIONS(693), 1, + sym__name, + ACTIONS(1121), 1, anon_sym_POUND, - ACTIONS(1482), 1, + ACTIONS(1125), 1, anon_sym_LBRACK, - ACTIONS(1484), 1, + ACTIONS(1127), 1, anon_sym_LT_LT, - ACTIONS(1602), 1, - anon_sym_GT_GT, - ACTIONS(1604), 1, + ACTIONS(1131), 1, sym_float, - STATE(1088), 1, - sym_constant_bit_string_segment, - STATE(1166), 1, + ACTIONS(1133), 1, + sym__discard_name, + STATE(772), 1, sym_identifier, + STATE(1034), 1, + sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(452), 2, + STATE(702), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(477), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(944), 7, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, + STATE(788), 7, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, sym_string, sym_integer, - [40959] = 17, + sym_discard, + [41091] = 17, ACTIONS(3), 1, sym_module_comment, - ACTIONS(294), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(310), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(689), 1, + ACTIONS(693), 1, sym__name, ACTIONS(1121), 1, anon_sym_POUND, @@ -39105,17 +39236,17 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(1133), 1, sym__discard_name, - STATE(777), 1, + STATE(772), 1, sym_identifier, - STATE(992), 1, + STATE(1008), 1, sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(699), 2, + STATE(702), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, @@ -39127,97 +39258,48 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [41021] = 17, + [41153] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(1480), 1, - anon_sym_POUND, - ACTIONS(1482), 1, - anon_sym_LBRACK, - ACTIONS(1484), 1, - anon_sym_LT_LT, - ACTIONS(1604), 1, - sym_float, - ACTIONS(1606), 1, - anon_sym_GT_GT, - STATE(1036), 1, - sym_constant_bit_string_segment, - STATE(1166), 1, - sym_identifier, + ACTIONS(1153), 1, + anon_sym_PIPE_GT, + ACTIONS(1169), 1, + anon_sym_AMP_AMP, + ACTIONS(1175), 1, + anon_sym_PIPE_PIPE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(452), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(944), 7, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_string, - sym_integer, - [41083] = 17, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(457), 1, + ACTIONS(1149), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1151), 2, anon_sym_DASH, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(1480), 1, - anon_sym_POUND, - ACTIONS(1482), 1, - anon_sym_LBRACK, - ACTIONS(1484), 1, - anon_sym_LT_LT, - ACTIONS(1604), 1, - sym_float, - ACTIONS(1608), 1, - anon_sym_GT_GT, - STATE(1088), 1, - sym_constant_bit_string_segment, - STATE(1166), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(452), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(944), 7, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_string, - sym_integer, - [41145] = 17, + anon_sym_PLUS, + ACTIONS(1155), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1163), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1608), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1157), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(1165), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1167), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [41207] = 17, ACTIONS(3), 1, sym_module_comment, ACTIONS(457), 1, @@ -39236,25 +39318,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1484), 1, anon_sym_LT_LT, - ACTIONS(1604), 1, + ACTIONS(1598), 1, sym_float, ACTIONS(1610), 1, anon_sym_GT_GT, - STATE(1088), 1, + STATE(1170), 1, sym_constant_bit_string_segment, - STATE(1166), 1, + STATE(1243), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(452), 2, + STATE(453), 2, sym_constructor_name, sym_remote_constructor_name, ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(944), 7, + STATE(939), 7, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -39262,7 +39344,7 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_record, sym_string, sym_integer, - [41207] = 17, + [41269] = 17, ACTIONS(3), 1, sym_module_comment, ACTIONS(457), 1, @@ -39281,25 +39363,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1484), 1, anon_sym_LT_LT, - ACTIONS(1604), 1, + ACTIONS(1598), 1, sym_float, ACTIONS(1612), 1, anon_sym_GT_GT, - STATE(1088), 1, + STATE(940), 1, sym_constant_bit_string_segment, - STATE(1166), 1, + STATE(1243), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(452), 2, + STATE(453), 2, sym_constructor_name, sym_remote_constructor_name, ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(944), 7, + STATE(939), 7, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -39307,7 +39389,7 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_record, sym_string, sym_integer, - [41269] = 17, + [41331] = 17, ACTIONS(3), 1, sym_module_comment, ACTIONS(457), 1, @@ -39326,25 +39408,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1484), 1, anon_sym_LT_LT, - ACTIONS(1604), 1, + ACTIONS(1598), 1, sym_float, ACTIONS(1614), 1, anon_sym_GT_GT, - STATE(900), 1, + STATE(1044), 1, sym_constant_bit_string_segment, - STATE(1166), 1, + STATE(1243), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(452), 2, + STATE(453), 2, sym_constructor_name, sym_remote_constructor_name, ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(944), 7, + STATE(939), 7, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -39352,17 +39434,17 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_record, sym_string, sym_integer, - [41331] = 17, + [41393] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(320), 1, - sym__name, ACTIONS(457), 1, anon_sym_DASH, ACTIONS(473), 1, anon_sym_DQUOTE, ACTIONS(479), 1, sym__decimal, + ACTIONS(481), 1, + sym__name, ACTIONS(483), 1, sym__upname, ACTIONS(1480), 1, @@ -39371,25 +39453,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1484), 1, anon_sym_LT_LT, - ACTIONS(1558), 1, + ACTIONS(1616), 1, + anon_sym_RBRACK, + ACTIONS(1618), 1, sym_float, - STATE(1044), 1, - sym_constant_record_argument, - STATE(1166), 1, + STATE(1243), 1, sym_identifier, - STATE(1184), 1, - sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(452), 2, + STATE(453), 2, sym_constructor_name, sym_remote_constructor_name, ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(1132), 7, + STATE(975), 7, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -39397,87 +39477,47 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_record, sym_string, sym_integer, - [41393] = 13, + [41452] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1196), 1, + ACTIONS(1153), 1, anon_sym_PIPE_GT, - ACTIONS(1212), 1, + ACTIONS(1169), 1, anon_sym_AMP_AMP, - ACTIONS(1234), 1, + ACTIONS(1175), 1, anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, + ACTIONS(1620), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1184), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1186), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1188), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1210), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1190), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(1198), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1200), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [41446] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1196), 1, - anon_sym_PIPE_GT, - ACTIONS(1212), 1, - anon_sym_AMP_AMP, - ACTIONS(1234), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1618), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1184), 2, + ACTIONS(1149), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1186), 2, + ACTIONS(1151), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1188), 2, + ACTIONS(1155), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1210), 2, + ACTIONS(1163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1190), 3, + ACTIONS(1157), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(1198), 4, + ACTIONS(1165), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1200), 4, + ACTIONS(1167), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [41499] = 16, + [41505] = 16, ACTIONS(3), 1, sym_module_comment, ACTIONS(457), 1, @@ -39496,23 +39536,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1484), 1, anon_sym_LT_LT, - ACTIONS(1620), 1, - anon_sym_RPAREN, - ACTIONS(1622), 1, + ACTIONS(1618), 1, sym_float, - STATE(1166), 1, + ACTIONS(1622), 1, + anon_sym_RPAREN, + STATE(1243), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(452), 2, + STATE(453), 2, sym_constructor_name, sym_remote_constructor_name, ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(986), 7, + STATE(975), 7, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -39520,213 +39560,167 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_record, sym_string, sym_integer, - [41558] = 13, + [41564] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1196), 1, + ACTIONS(1153), 1, anon_sym_PIPE_GT, - ACTIONS(1212), 1, + ACTIONS(1169), 1, anon_sym_AMP_AMP, - ACTIONS(1234), 1, + ACTIONS(1175), 1, anon_sym_PIPE_PIPE, ACTIONS(1624), 1, - anon_sym_RBRACK, + anon_sym_COMMA, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1184), 2, + ACTIONS(1149), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1186), 2, + ACTIONS(1151), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1188), 2, + ACTIONS(1155), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1210), 2, + ACTIONS(1163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1190), 3, + ACTIONS(1157), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(1198), 4, + ACTIONS(1165), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1200), 4, + ACTIONS(1167), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [41611] = 13, + [41617] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1196), 1, + ACTIONS(1153), 1, anon_sym_PIPE_GT, - ACTIONS(1212), 1, + ACTIONS(1169), 1, anon_sym_AMP_AMP, - ACTIONS(1234), 1, + ACTIONS(1175), 1, anon_sym_PIPE_PIPE, ACTIONS(1626), 1, - anon_sym_RBRACK, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1184), 2, + ACTIONS(1149), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1186), 2, + ACTIONS(1151), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1188), 2, + ACTIONS(1155), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1210), 2, + ACTIONS(1163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1190), 3, + ACTIONS(1157), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(1198), 4, + ACTIONS(1165), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1200), 4, + ACTIONS(1167), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [41664] = 16, + [41670] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(1480), 1, - anon_sym_POUND, - ACTIONS(1482), 1, - anon_sym_LBRACK, - ACTIONS(1484), 1, - anon_sym_LT_LT, - ACTIONS(1622), 1, - sym_float, + ACTIONS(1153), 1, + anon_sym_PIPE_GT, + ACTIONS(1169), 1, + anon_sym_AMP_AMP, + ACTIONS(1175), 1, + anon_sym_PIPE_PIPE, ACTIONS(1628), 1, anon_sym_RBRACK, - STATE(1166), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(452), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(986), 7, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_string, - sym_integer, - [41723] = 16, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(457), 1, + ACTIONS(1149), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1151), 2, anon_sym_DASH, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(1480), 1, - anon_sym_POUND, - ACTIONS(1482), 1, - anon_sym_LBRACK, - ACTIONS(1484), 1, - anon_sym_LT_LT, - ACTIONS(1622), 1, - sym_float, - ACTIONS(1630), 1, - anon_sym_RPAREN, - STATE(1166), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(452), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(986), 7, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_string, - sym_integer, - [41782] = 13, + anon_sym_PLUS, + ACTIONS(1155), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1163), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1157), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(1165), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1167), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [41723] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1196), 1, + ACTIONS(1153), 1, anon_sym_PIPE_GT, - ACTIONS(1212), 1, + ACTIONS(1169), 1, anon_sym_AMP_AMP, - ACTIONS(1234), 1, + ACTIONS(1175), 1, anon_sym_PIPE_PIPE, - ACTIONS(1632), 1, + ACTIONS(1630), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1184), 2, + ACTIONS(1149), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1186), 2, + ACTIONS(1151), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1188), 2, + ACTIONS(1155), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1210), 2, + ACTIONS(1163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1190), 3, + ACTIONS(1157), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(1198), 4, + ACTIONS(1165), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1200), 4, + ACTIONS(1167), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [41835] = 16, + [41776] = 16, ACTIONS(3), 1, sym_module_comment, ACTIONS(457), 1, @@ -39745,23 +39739,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1484), 1, anon_sym_LT_LT, - ACTIONS(1634), 1, + ACTIONS(1632), 1, anon_sym_RBRACK, - ACTIONS(1636), 1, + ACTIONS(1634), 1, sym_float, - STATE(1166), 1, + STATE(1243), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(452), 2, + STATE(453), 2, sym_constructor_name, sym_remote_constructor_name, ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(1014), 7, + STATE(1043), 7, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -39769,7 +39763,7 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_record, sym_string, sym_integer, - [41894] = 16, + [41835] = 16, ACTIONS(3), 1, sym_module_comment, ACTIONS(457), 1, @@ -39788,23 +39782,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1484), 1, anon_sym_LT_LT, - ACTIONS(1604), 1, + ACTIONS(1618), 1, sym_float, - STATE(1088), 1, - sym_constant_bit_string_segment, - STATE(1166), 1, + ACTIONS(1636), 1, + anon_sym_RPAREN, + STATE(1243), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(452), 2, + STATE(453), 2, sym_constructor_name, sym_remote_constructor_name, ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(944), 7, + STATE(975), 7, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -39812,130 +39806,127 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_record, sym_string, sym_integer, - [41953] = 13, + [41894] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1196), 1, + ACTIONS(1153), 1, anon_sym_PIPE_GT, - ACTIONS(1212), 1, + ACTIONS(1169), 1, anon_sym_AMP_AMP, - ACTIONS(1234), 1, + ACTIONS(1175), 1, anon_sym_PIPE_PIPE, ACTIONS(1638), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1184), 2, + ACTIONS(1149), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1186), 2, + ACTIONS(1151), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1188), 2, + ACTIONS(1155), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1210), 2, + ACTIONS(1163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1190), 3, + ACTIONS(1157), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(1198), 4, + ACTIONS(1165), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1200), 4, + ACTIONS(1167), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [42006] = 13, + [41947] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1196), 1, + ACTIONS(1153), 1, anon_sym_PIPE_GT, - ACTIONS(1212), 1, + ACTIONS(1169), 1, anon_sym_AMP_AMP, - ACTIONS(1234), 1, + ACTIONS(1175), 1, anon_sym_PIPE_PIPE, ACTIONS(1640), 1, - anon_sym_RBRACK, + anon_sym_COMMA, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1184), 2, + ACTIONS(1149), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1186), 2, + ACTIONS(1151), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1188), 2, + ACTIONS(1155), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1210), 2, + ACTIONS(1163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1190), 3, + ACTIONS(1157), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(1198), 4, + ACTIONS(1165), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1200), 4, + ACTIONS(1167), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [42059] = 16, + [42000] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(1480), 1, - anon_sym_POUND, - ACTIONS(1482), 1, - anon_sym_LBRACK, - ACTIONS(1484), 1, - anon_sym_LT_LT, - ACTIONS(1622), 1, - sym_float, + ACTIONS(1153), 1, + anon_sym_PIPE_GT, + ACTIONS(1169), 1, + anon_sym_AMP_AMP, + ACTIONS(1175), 1, + anon_sym_PIPE_PIPE, ACTIONS(1642), 1, - anon_sym_RPAREN, - STATE(1166), 1, - sym_identifier, + anon_sym_COMMA, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(452), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(986), 7, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_string, - sym_integer, - [42118] = 16, + ACTIONS(1149), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1151), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1155), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1163), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1157), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(1165), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1167), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [42053] = 16, ACTIONS(3), 1, sym_module_comment, ACTIONS(457), 1, @@ -39954,23 +39945,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1484), 1, anon_sym_LT_LT, - ACTIONS(1644), 1, - anon_sym_RPAREN, - ACTIONS(1646), 1, + ACTIONS(1618), 1, sym_float, - STATE(1166), 1, + ACTIONS(1644), 1, + anon_sym_RBRACK, + STATE(1243), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(452), 2, + STATE(453), 2, sym_constructor_name, sym_remote_constructor_name, ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(1029), 7, + STATE(975), 7, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -39978,50 +39969,47 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_record, sym_string, sym_integer, - [42177] = 16, + [42112] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(1480), 1, - anon_sym_POUND, - ACTIONS(1482), 1, - anon_sym_LBRACK, - ACTIONS(1484), 1, - anon_sym_LT_LT, - ACTIONS(1622), 1, - sym_float, - ACTIONS(1648), 1, + ACTIONS(1153), 1, + anon_sym_PIPE_GT, + ACTIONS(1169), 1, + anon_sym_AMP_AMP, + ACTIONS(1175), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1646), 1, anon_sym_RBRACK, - STATE(1166), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(452), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(986), 7, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_string, - sym_integer, - [42236] = 16, + ACTIONS(1149), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1151), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1155), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1163), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1157), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(1165), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1167), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [42165] = 16, ACTIONS(3), 1, sym_module_comment, ACTIONS(457), 1, @@ -40040,23 +40028,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1484), 1, anon_sym_LT_LT, - ACTIONS(1622), 1, + ACTIONS(1618), 1, sym_float, - ACTIONS(1650), 1, + ACTIONS(1648), 1, anon_sym_RBRACK, - STATE(1166), 1, + STATE(1243), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(452), 2, + STATE(453), 2, sym_constructor_name, sym_remote_constructor_name, ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(986), 7, + STATE(975), 7, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -40064,167 +40052,173 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_record, sym_string, sym_integer, - [42295] = 13, + [42224] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1196), 1, + ACTIONS(1153), 1, anon_sym_PIPE_GT, - ACTIONS(1212), 1, + ACTIONS(1169), 1, anon_sym_AMP_AMP, - ACTIONS(1234), 1, + ACTIONS(1175), 1, anon_sym_PIPE_PIPE, - ACTIONS(1652), 1, + ACTIONS(1650), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1184), 2, + ACTIONS(1149), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1186), 2, + ACTIONS(1151), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1188), 2, + ACTIONS(1155), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1210), 2, + ACTIONS(1163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1190), 3, + ACTIONS(1157), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(1198), 4, + ACTIONS(1165), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1200), 4, + ACTIONS(1167), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [42348] = 13, + [42277] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1196), 1, - anon_sym_PIPE_GT, - ACTIONS(1212), 1, - anon_sym_AMP_AMP, - ACTIONS(1234), 1, - anon_sym_PIPE_PIPE, + ACTIONS(457), 1, + anon_sym_DASH, + ACTIONS(473), 1, + anon_sym_DQUOTE, + ACTIONS(479), 1, + sym__decimal, + ACTIONS(481), 1, + sym__name, + ACTIONS(483), 1, + sym__upname, + ACTIONS(1480), 1, + anon_sym_POUND, + ACTIONS(1482), 1, + anon_sym_LBRACK, + ACTIONS(1484), 1, + anon_sym_LT_LT, + ACTIONS(1652), 1, + anon_sym_RPAREN, ACTIONS(1654), 1, - anon_sym_RBRACK, + sym_float, + STATE(1243), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1184), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1186), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1188), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1210), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1190), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(1198), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1200), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [42401] = 13, + STATE(453), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(477), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1030), 7, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_string, + sym_integer, + [42336] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1196), 1, + ACTIONS(1153), 1, anon_sym_PIPE_GT, - ACTIONS(1212), 1, + ACTIONS(1169), 1, anon_sym_AMP_AMP, - ACTIONS(1234), 1, + ACTIONS(1175), 1, anon_sym_PIPE_PIPE, ACTIONS(1656), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1184), 2, + ACTIONS(1149), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1186), 2, + ACTIONS(1151), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1188), 2, + ACTIONS(1155), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1210), 2, + ACTIONS(1163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1190), 3, + ACTIONS(1157), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(1198), 4, + ACTIONS(1165), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1200), 4, + ACTIONS(1167), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [42454] = 13, + [42389] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1196), 1, - anon_sym_PIPE_GT, - ACTIONS(1212), 1, - anon_sym_AMP_AMP, - ACTIONS(1234), 1, - anon_sym_PIPE_PIPE, + ACTIONS(457), 1, + anon_sym_DASH, + ACTIONS(473), 1, + anon_sym_DQUOTE, + ACTIONS(479), 1, + sym__decimal, + ACTIONS(481), 1, + sym__name, + ACTIONS(483), 1, + sym__upname, + ACTIONS(1480), 1, + anon_sym_POUND, + ACTIONS(1482), 1, + anon_sym_LBRACK, + ACTIONS(1484), 1, + anon_sym_LT_LT, + ACTIONS(1618), 1, + sym_float, ACTIONS(1658), 1, - anon_sym_RBRACK, + anon_sym_RPAREN, + STATE(1243), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1184), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1186), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1188), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1210), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1190), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(1198), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1200), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [42507] = 16, + STATE(453), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(477), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(975), 7, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_string, + sym_integer, + [42448] = 16, ACTIONS(3), 1, sym_module_comment, ACTIONS(457), 1, @@ -40247,19 +40241,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, ACTIONS(1662), 1, sym_float, - STATE(1166), 1, + STATE(1243), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(452), 2, + STATE(453), 2, sym_constructor_name, sym_remote_constructor_name, ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(1035), 7, + STATE(938), 7, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -40267,47 +40261,47 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_record, sym_string, sym_integer, - [42566] = 13, + [42507] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1196), 1, + ACTIONS(1153), 1, anon_sym_PIPE_GT, - ACTIONS(1212), 1, + ACTIONS(1169), 1, anon_sym_AMP_AMP, - ACTIONS(1234), 1, + ACTIONS(1175), 1, anon_sym_PIPE_PIPE, ACTIONS(1664), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1184), 2, + ACTIONS(1149), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1186), 2, + ACTIONS(1151), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1188), 2, + ACTIONS(1155), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1210), 2, + ACTIONS(1163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1190), 3, + ACTIONS(1157), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(1198), 4, + ACTIONS(1165), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1200), 4, + ACTIONS(1167), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [42619] = 16, + [42560] = 16, ACTIONS(3), 1, sym_module_comment, ACTIONS(457), 1, @@ -40326,23 +40320,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1484), 1, anon_sym_LT_LT, - ACTIONS(1622), 1, - sym_float, ACTIONS(1666), 1, - anon_sym_RBRACK, - STATE(1166), 1, + anon_sym_RPAREN, + ACTIONS(1668), 1, + sym_float, + STATE(1243), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(452), 2, + STATE(453), 2, sym_constructor_name, sym_remote_constructor_name, ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(986), 7, + STATE(1045), 7, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -40350,7 +40344,7 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_record, sym_string, sym_integer, - [42678] = 16, + [42619] = 16, ACTIONS(3), 1, sym_module_comment, ACTIONS(457), 1, @@ -40369,23 +40363,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1484), 1, anon_sym_LT_LT, - ACTIONS(1668), 1, - anon_sym_RPAREN, - ACTIONS(1670), 1, + ACTIONS(1618), 1, sym_float, - STATE(1166), 1, + ACTIONS(1670), 1, + anon_sym_RPAREN, + STATE(1243), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(452), 2, + STATE(453), 2, sym_constructor_name, sym_remote_constructor_name, ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(915), 7, + STATE(975), 7, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -40393,242 +40387,326 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_record, sym_string, sym_integer, - [42737] = 13, + [42678] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1196), 1, + ACTIONS(1153), 1, anon_sym_PIPE_GT, - ACTIONS(1212), 1, + ACTIONS(1169), 1, anon_sym_AMP_AMP, - ACTIONS(1234), 1, + ACTIONS(1175), 1, anon_sym_PIPE_PIPE, ACTIONS(1672), 1, - anon_sym_COMMA, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1184), 2, + ACTIONS(1149), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1186), 2, + ACTIONS(1151), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1188), 2, + ACTIONS(1155), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1210), 2, + ACTIONS(1163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1190), 3, + ACTIONS(1157), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(1198), 4, + ACTIONS(1165), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1200), 4, + ACTIONS(1167), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [42790] = 13, + [42731] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1196), 1, + ACTIONS(1153), 1, anon_sym_PIPE_GT, - ACTIONS(1212), 1, + ACTIONS(1169), 1, anon_sym_AMP_AMP, - ACTIONS(1234), 1, + ACTIONS(1175), 1, anon_sym_PIPE_PIPE, ACTIONS(1674), 1, - anon_sym_COMMA, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1184), 2, + ACTIONS(1149), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1186), 2, + ACTIONS(1151), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1188), 2, + ACTIONS(1155), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1210), 2, + ACTIONS(1163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1190), 3, + ACTIONS(1157), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(1198), 4, + ACTIONS(1165), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1200), 4, + ACTIONS(1167), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [42843] = 13, + [42784] = 16, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(457), 1, + anon_sym_DASH, + ACTIONS(473), 1, + anon_sym_DQUOTE, + ACTIONS(479), 1, + sym__decimal, + ACTIONS(481), 1, + sym__name, + ACTIONS(483), 1, + sym__upname, + ACTIONS(1480), 1, + anon_sym_POUND, + ACTIONS(1482), 1, + anon_sym_LBRACK, + ACTIONS(1484), 1, + anon_sym_LT_LT, + ACTIONS(1598), 1, + sym_float, + STATE(1170), 1, + sym_constant_bit_string_segment, + STATE(1243), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(453), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(477), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(939), 7, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_string, + sym_integer, + [42843] = 16, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(457), 1, + anon_sym_DASH, + ACTIONS(473), 1, + anon_sym_DQUOTE, + ACTIONS(479), 1, + sym__decimal, + ACTIONS(481), 1, + sym__name, + ACTIONS(483), 1, + sym__upname, + ACTIONS(1480), 1, + anon_sym_POUND, + ACTIONS(1482), 1, + anon_sym_LBRACK, + ACTIONS(1484), 1, + anon_sym_LT_LT, + ACTIONS(1618), 1, + sym_float, + ACTIONS(1676), 1, + anon_sym_RBRACK, + STATE(1243), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(453), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(477), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(975), 7, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_string, + sym_integer, + [42902] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1196), 1, + ACTIONS(1153), 1, anon_sym_PIPE_GT, - ACTIONS(1212), 1, + ACTIONS(1169), 1, anon_sym_AMP_AMP, - ACTIONS(1234), 1, + ACTIONS(1175), 1, anon_sym_PIPE_PIPE, - ACTIONS(1676), 1, - anon_sym_COMMA, + ACTIONS(1678), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1184), 2, + ACTIONS(1149), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1186), 2, + ACTIONS(1151), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1188), 2, + ACTIONS(1155), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1210), 2, + ACTIONS(1163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1190), 3, + ACTIONS(1157), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(1198), 4, + ACTIONS(1165), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1200), 4, + ACTIONS(1167), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [42896] = 13, + [42955] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1196), 1, + ACTIONS(1153), 1, anon_sym_PIPE_GT, - ACTIONS(1212), 1, + ACTIONS(1169), 1, anon_sym_AMP_AMP, - ACTIONS(1234), 1, + ACTIONS(1175), 1, anon_sym_PIPE_PIPE, - ACTIONS(1678), 1, + ACTIONS(1680), 1, anon_sym_COMMA, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1184), 2, + ACTIONS(1149), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1186), 2, + ACTIONS(1151), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1188), 2, + ACTIONS(1155), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1210), 2, + ACTIONS(1163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1190), 3, + ACTIONS(1157), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(1198), 4, + ACTIONS(1165), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1200), 4, + ACTIONS(1167), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [42949] = 13, + [43008] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1196), 1, + ACTIONS(1153), 1, anon_sym_PIPE_GT, - ACTIONS(1212), 1, + ACTIONS(1169), 1, anon_sym_AMP_AMP, - ACTIONS(1234), 1, + ACTIONS(1175), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1682), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1184), 2, + ACTIONS(1149), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1186), 2, + ACTIONS(1151), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1188), 2, + ACTIONS(1155), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1210), 2, + ACTIONS(1163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1190), 3, + ACTIONS(1157), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(1198), 4, + ACTIONS(1165), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1200), 4, + ACTIONS(1167), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [43002] = 16, + [43061] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(457), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(473), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(309), 1, sym__decimal, + ACTIONS(315), 1, + sym__upname, ACTIONS(481), 1, sym__name, - ACTIONS(483), 1, - sym__upname, ACTIONS(1480), 1, anon_sym_POUND, ACTIONS(1482), 1, anon_sym_LBRACK, ACTIONS(1484), 1, anon_sym_LT_LT, - ACTIONS(1622), 1, + ACTIONS(1684), 1, sym_float, - ACTIONS(1682), 1, - anon_sym_RPAREN, - STATE(1166), 1, + STATE(1183), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(452), 2, + STATE(453), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(477), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(986), 7, + STATE(800), 7, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -40636,40 +40714,40 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_record, sym_string, sym_integer, - [43061] = 15, + [43117] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(294), 1, + ACTIONS(23), 1, anon_sym_DASH, - ACTIONS(310), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(53), 1, sym__decimal, - ACTIONS(322), 1, + ACTIONS(57), 1, sym__upname, ACTIONS(481), 1, sym__name, - ACTIONS(1480), 1, + ACTIONS(1686), 1, anon_sym_POUND, - ACTIONS(1482), 1, + ACTIONS(1688), 1, anon_sym_LBRACK, - ACTIONS(1484), 1, + ACTIONS(1690), 1, anon_sym_LT_LT, - ACTIONS(1684), 1, + ACTIONS(1692), 1, sym_float, - STATE(1270), 1, + STATE(1182), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(452), 2, + STATE(395), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(314), 3, + ACTIONS(51), 3, sym__hex, sym__octal, sym__binary, - STATE(791), 7, + STATE(496), 7, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -40677,7 +40755,7 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_record, sym_string, sym_integer, - [43117] = 15, + [43173] = 15, ACTIONS(3), 1, sym_module_comment, ACTIONS(23), 1, @@ -40696,21 +40774,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1690), 1, anon_sym_LT_LT, - ACTIONS(1692), 1, + ACTIONS(1694), 1, sym_float, - STATE(1201), 1, + STATE(1182), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(398), 2, + STATE(395), 2, sym_constructor_name, sym_remote_constructor_name, ACTIONS(51), 3, sym__hex, sym__octal, sym__binary, - STATE(489), 7, + STATE(488), 7, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -40718,7 +40796,7 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_record, sym_string, sym_integer, - [43173] = 15, + [43229] = 15, ACTIONS(3), 1, sym_module_comment, ACTIONS(457), 1, @@ -40737,62 +40815,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1484), 1, anon_sym_LT_LT, - ACTIONS(1622), 1, + ACTIONS(1696), 1, sym_float, - STATE(1166), 1, + STATE(1243), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(452), 2, + STATE(453), 2, sym_constructor_name, sym_remote_constructor_name, ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(986), 7, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_string, - sym_integer, - [43229] = 15, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(23), 1, - anon_sym_DASH, - ACTIONS(47), 1, - anon_sym_DQUOTE, - ACTIONS(53), 1, - sym__decimal, - ACTIONS(57), 1, - sym__upname, - ACTIONS(481), 1, - sym__name, - ACTIONS(1686), 1, - anon_sym_POUND, - ACTIONS(1688), 1, - anon_sym_LBRACK, - ACTIONS(1690), 1, - anon_sym_LT_LT, - ACTIONS(1694), 1, - sym_float, - STATE(1201), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(398), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(51), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(470), 7, + STATE(1131), 7, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -40803,37 +40840,37 @@ static const uint16_t ts_small_parse_table[] = { [43285] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(23), 1, + ACTIONS(457), 1, anon_sym_DASH, - ACTIONS(47), 1, + ACTIONS(473), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(479), 1, sym__decimal, - ACTIONS(57), 1, - sym__upname, ACTIONS(481), 1, sym__name, - ACTIONS(1686), 1, + ACTIONS(483), 1, + sym__upname, + ACTIONS(1480), 1, anon_sym_POUND, - ACTIONS(1688), 1, + ACTIONS(1482), 1, anon_sym_LBRACK, - ACTIONS(1690), 1, + ACTIONS(1484), 1, anon_sym_LT_LT, - ACTIONS(1696), 1, + ACTIONS(1618), 1, sym_float, - STATE(1201), 1, + STATE(1243), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(398), 2, + STATE(453), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(51), 3, + ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(459), 7, + STATE(975), 7, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -40844,16 +40881,16 @@ static const uint16_t ts_small_parse_table[] = { [43341] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(457), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(473), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(309), 1, sym__decimal, + ACTIONS(315), 1, + sym__upname, ACTIONS(481), 1, sym__name, - ACTIONS(483), 1, - sym__upname, ACTIONS(1480), 1, anon_sym_POUND, ACTIONS(1482), 1, @@ -40862,19 +40899,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, ACTIONS(1698), 1, sym_float, - STATE(1166), 1, + STATE(1183), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(452), 2, + STATE(453), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(477), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(1047), 7, + STATE(780), 7, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -40885,13 +40922,13 @@ static const uint16_t ts_small_parse_table[] = { [43397] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(294), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(310), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__upname, ACTIONS(481), 1, sym__name, @@ -40903,19 +40940,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, ACTIONS(1700), 1, sym_float, - STATE(1270), 1, + STATE(1183), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(452), 2, + STATE(453), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(782), 7, + STATE(804), 7, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -40926,13 +40963,13 @@ static const uint16_t ts_small_parse_table[] = { [43453] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(294), 1, + ACTIONS(287), 1, anon_sym_DASH, - ACTIONS(310), 1, + ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__upname, ACTIONS(481), 1, sym__name, @@ -40944,19 +40981,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, ACTIONS(1702), 1, sym_float, - STATE(1270), 1, + STATE(1183), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(452), 2, + STATE(453), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(790), 7, + STATE(779), 7, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -40967,37 +41004,37 @@ static const uint16_t ts_small_parse_table[] = { [43509] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(294), 1, + ACTIONS(23), 1, anon_sym_DASH, - ACTIONS(310), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(316), 1, + ACTIONS(53), 1, sym__decimal, - ACTIONS(322), 1, + ACTIONS(57), 1, sym__upname, ACTIONS(481), 1, sym__name, - ACTIONS(1480), 1, + ACTIONS(1686), 1, anon_sym_POUND, - ACTIONS(1482), 1, + ACTIONS(1688), 1, anon_sym_LBRACK, - ACTIONS(1484), 1, + ACTIONS(1690), 1, anon_sym_LT_LT, ACTIONS(1704), 1, sym_float, - STATE(1270), 1, + STATE(1182), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(452), 2, + STATE(395), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(314), 3, + ACTIONS(51), 3, sym__hex, sym__octal, sym__binary, - STATE(797), 7, + STATE(491), 7, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -41026,19 +41063,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, ACTIONS(1706), 1, sym_float, - STATE(1201), 1, + STATE(1182), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(398), 2, + STATE(395), 2, sym_constructor_name, sym_remote_constructor_name, ACTIONS(51), 3, sym__hex, sym__octal, sym__binary, - STATE(492), 7, + STATE(495), 7, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -41052,7 +41089,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(643), 9, + ACTIONS(681), 9, anon_sym_DASH, anon_sym_fn, anon_sym_try, @@ -41062,7 +41099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_assert, sym__decimal, sym__name, - ACTIONS(641), 12, + ACTIONS(679), 12, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, @@ -41081,17 +41118,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(326), 5, + ACTIONS(367), 5, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_PIPE, - ACTIONS(324), 13, + ACTIONS(365), 13, anon_sym_if, - anon_sym_DOT, anon_sym_as, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -41107,17 +41144,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(282), 5, + ACTIONS(331), 5, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_PIPE, - ACTIONS(280), 13, + ACTIONS(329), 13, anon_sym_if, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -41133,13 +41170,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(368), 5, + ACTIONS(347), 5, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_PIPE, - ACTIONS(366), 13, + ACTIONS(345), 13, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -41153,51 +41190,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [43744] = 11, + [43744] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1708), 1, - anon_sym_RBRACE, - ACTIONS(1710), 1, - anon_sym_import, - ACTIONS(1712), 1, - anon_sym_const, - ACTIONS(1714), 1, - anon_sym_external, - ACTIONS(1716), 1, - anon_sym_type, - ACTIONS(1718), 1, - anon_sym_fn, - ACTIONS(1720), 1, - sym_visibility_modifier, - ACTIONS(1722), 1, - sym_opacity_modifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(638), 9, - sym__statement, - sym_import, - sym_constant, - sym_external_type, - sym_external_function, - sym_function, - sym_type_definition, - sym_type_alias, - aux_sym_target_group_repeat1, - [43787] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(278), 5, + ACTIONS(621), 5, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_PIPE, - ACTIONS(276), 12, + ACTIONS(619), 12, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -41210,53 +41215,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [43816] = 13, + [43773] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1724), 1, + ACTIONS(1708), 1, anon_sym_POUND, - ACTIONS(1726), 1, + ACTIONS(1710), 1, anon_sym_RPAREN, - ACTIONS(1728), 1, + ACTIONS(1712), 1, anon_sym_fn, - ACTIONS(1730), 1, + ACTIONS(1714), 1, sym__discard_name, - ACTIONS(1732), 1, + ACTIONS(1716), 1, sym__name, - ACTIONS(1734), 1, + ACTIONS(1718), 1, sym__upname, - STATE(1079), 1, + STATE(1109), 1, sym_data_constructor_argument, - STATE(1167), 1, + STATE(1185), 1, sym_identifier, - STATE(1177), 1, + STATE(1246), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(696), 2, + STATE(672), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1151), 6, + STATE(1099), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [43863] = 4, + [43820] = 11, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1720), 1, + anon_sym_RBRACE, + ACTIONS(1722), 1, + anon_sym_import, + ACTIONS(1724), 1, + anon_sym_const, + ACTIONS(1726), 1, + anon_sym_external, + ACTIONS(1728), 1, + anon_sym_type, + ACTIONS(1730), 1, + anon_sym_fn, + ACTIONS(1732), 1, + sym_visibility_modifier, + ACTIONS(1734), 1, + sym_opacity_modifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(639), 9, + sym__statement, + sym_import, + sym_constant, + sym_external_type, + sym_external_function, + sym_function, + sym_type_definition, + sym_type_alias, + aux_sym_target_group_repeat1, + [43863] = 11, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1736), 1, + anon_sym_RBRACE, + ACTIONS(1738), 1, + anon_sym_import, + ACTIONS(1741), 1, + anon_sym_const, + ACTIONS(1744), 1, + anon_sym_external, + ACTIONS(1747), 1, + anon_sym_type, + ACTIONS(1750), 1, + anon_sym_fn, + ACTIONS(1753), 1, + sym_visibility_modifier, + ACTIONS(1756), 1, + sym_opacity_modifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(634), 9, + sym__statement, + sym_import, + sym_constant, + sym_external_type, + sym_external_function, + sym_function, + sym_type_definition, + sym_type_alias, + aux_sym_target_group_repeat1, + [43906] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(639), 5, + ACTIONS(363), 5, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_PIPE, - ACTIONS(637), 12, + ACTIONS(361), 12, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -41269,19 +41338,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [43892] = 4, + [43935] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(627), 5, + ACTIONS(445), 5, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_PIPE, - ACTIONS(625), 12, + ACTIONS(443), 12, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -41294,51 +41363,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [43921] = 11, + [43964] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1736), 1, - anon_sym_RBRACE, - ACTIONS(1738), 1, - anon_sym_import, - ACTIONS(1741), 1, - anon_sym_const, - ACTIONS(1744), 1, - anon_sym_external, - ACTIONS(1747), 1, - anon_sym_type, - ACTIONS(1750), 1, - anon_sym_fn, - ACTIONS(1753), 1, - sym_visibility_modifier, - ACTIONS(1756), 1, - sym_opacity_modifier, + ACTIONS(1708), 1, + anon_sym_POUND, + ACTIONS(1712), 1, + anon_sym_fn, + ACTIONS(1714), 1, + sym__discard_name, + ACTIONS(1716), 1, + sym__name, + ACTIONS(1718), 1, + sym__upname, + ACTIONS(1759), 1, + anon_sym_RPAREN, + STATE(1109), 1, + sym_data_constructor_argument, + STATE(1185), 1, + sym_identifier, + STATE(1246), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(636), 9, - sym__statement, - sym_import, - sym_constant, - sym_external_type, - sym_external_function, - sym_function, - sym_type_definition, - sym_type_alias, - aux_sym_target_group_repeat1, - [43964] = 4, + STATE(672), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1099), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [44011] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(364), 5, + ACTIONS(351), 5, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_PIPE, - ACTIONS(362), 12, + ACTIONS(349), 12, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -41351,29 +41422,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [43993] = 11, + [44040] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1710), 1, + ACTIONS(1722), 1, anon_sym_import, - ACTIONS(1712), 1, + ACTIONS(1724), 1, anon_sym_const, - ACTIONS(1714), 1, + ACTIONS(1726), 1, anon_sym_external, - ACTIONS(1716), 1, + ACTIONS(1728), 1, anon_sym_type, - ACTIONS(1718), 1, + ACTIONS(1730), 1, anon_sym_fn, - ACTIONS(1720), 1, + ACTIONS(1732), 1, sym_visibility_modifier, - ACTIONS(1722), 1, + ACTIONS(1734), 1, sym_opacity_modifier, - ACTIONS(1759), 1, + ACTIONS(1761), 1, anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(636), 9, + STATE(634), 9, sym__statement, sym_import, sym_constant, @@ -41383,68 +41454,34 @@ static const uint16_t ts_small_parse_table[] = { sym_type_definition, sym_type_alias, aux_sym_target_group_repeat1, - [44036] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1724), 1, - anon_sym_POUND, - ACTIONS(1728), 1, - anon_sym_fn, - ACTIONS(1730), 1, - sym__discard_name, - ACTIONS(1732), 1, - sym__name, - ACTIONS(1734), 1, - sym__upname, - ACTIONS(1761), 1, - anon_sym_RPAREN, - STATE(1079), 1, - sym_data_constructor_argument, - STATE(1167), 1, - sym_identifier, - STATE(1177), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(696), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1151), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, [44083] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1724), 1, + ACTIONS(1708), 1, anon_sym_POUND, - ACTIONS(1728), 1, + ACTIONS(1712), 1, anon_sym_fn, - ACTIONS(1730), 1, + ACTIONS(1714), 1, sym__discard_name, - ACTIONS(1732), 1, + ACTIONS(1716), 1, sym__name, - ACTIONS(1734), 1, + ACTIONS(1718), 1, sym__upname, ACTIONS(1763), 1, anon_sym_RPAREN, - STATE(937), 1, + STATE(998), 1, sym_data_constructor_argument, - STATE(1167), 1, + STATE(1185), 1, sym_identifier, - STATE(1177), 1, + STATE(1246), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(696), 2, + STATE(672), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1151), 6, + STATE(1099), 6, sym__type, sym_type_hole, sym_tuple_type, @@ -41454,29 +41491,29 @@ static const uint16_t ts_small_parse_table[] = { [44130] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1724), 1, + ACTIONS(1708), 1, anon_sym_POUND, - ACTIONS(1728), 1, + ACTIONS(1712), 1, anon_sym_fn, - ACTIONS(1730), 1, + ACTIONS(1714), 1, sym__discard_name, - ACTIONS(1734), 1, + ACTIONS(1718), 1, sym__upname, ACTIONS(1765), 1, anon_sym_RPAREN, ACTIONS(1767), 1, sym__name, - STATE(1127), 1, - sym_type_argument, - STATE(1167), 1, + STATE(1149), 1, + sym_external_function_parameter, + STATE(1154), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(696), 2, + STATE(672), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1102), 6, + STATE(1174), 6, sym__type, sym_type_hole, sym_tuple_type, @@ -41486,29 +41523,29 @@ static const uint16_t ts_small_parse_table[] = { [44174] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1724), 1, + ACTIONS(1708), 1, anon_sym_POUND, - ACTIONS(1728), 1, + ACTIONS(1712), 1, anon_sym_fn, - ACTIONS(1730), 1, + ACTIONS(1714), 1, sym__discard_name, - ACTIONS(1734), 1, + ACTIONS(1718), 1, sym__upname, ACTIONS(1767), 1, sym__name, ACTIONS(1769), 1, anon_sym_RPAREN, - STATE(902), 1, - sym_external_function_parameter, - STATE(1074), 1, + STATE(1084), 1, + sym_type_argument, + STATE(1185), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(696), 2, + STATE(672), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1065), 6, + STATE(1091), 6, sym__type, sym_type_hole, sym_tuple_type, @@ -41518,29 +41555,29 @@ static const uint16_t ts_small_parse_table[] = { [44218] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1724), 1, + ACTIONS(1708), 1, anon_sym_POUND, - ACTIONS(1728), 1, + ACTIONS(1712), 1, anon_sym_fn, - ACTIONS(1730), 1, + ACTIONS(1714), 1, sym__discard_name, - ACTIONS(1734), 1, - sym__upname, - ACTIONS(1767), 1, + ACTIONS(1716), 1, sym__name, - ACTIONS(1771), 1, - anon_sym_RPAREN, - STATE(1018), 1, - sym_type_argument, - STATE(1167), 1, + ACTIONS(1718), 1, + sym__upname, + STATE(1109), 1, + sym_data_constructor_argument, + STATE(1185), 1, sym_identifier, + STATE(1246), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(696), 2, + STATE(672), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1102), 6, + STATE(1099), 6, sym__type, sym_type_hole, sym_tuple_type, @@ -41550,29 +41587,29 @@ static const uint16_t ts_small_parse_table[] = { [44262] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1724), 1, + ACTIONS(1708), 1, anon_sym_POUND, - ACTIONS(1728), 1, + ACTIONS(1712), 1, anon_sym_fn, - ACTIONS(1730), 1, + ACTIONS(1714), 1, sym__discard_name, - ACTIONS(1734), 1, + ACTIONS(1718), 1, sym__upname, ACTIONS(1767), 1, sym__name, - ACTIONS(1773), 1, + ACTIONS(1771), 1, anon_sym_RPAREN, - STATE(1074), 1, - sym_identifier, - STATE(1077), 1, + STATE(1149), 1, sym_external_function_parameter, + STATE(1154), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(696), 2, + STATE(672), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1065), 6, + STATE(1174), 6, sym__type, sym_type_hole, sym_tuple_type, @@ -41582,29 +41619,29 @@ static const uint16_t ts_small_parse_table[] = { [44306] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1724), 1, + ACTIONS(1708), 1, anon_sym_POUND, - ACTIONS(1728), 1, + ACTIONS(1712), 1, anon_sym_fn, - ACTIONS(1730), 1, + ACTIONS(1714), 1, sym__discard_name, - ACTIONS(1734), 1, + ACTIONS(1718), 1, sym__upname, ACTIONS(1767), 1, sym__name, - ACTIONS(1775), 1, + ACTIONS(1773), 1, anon_sym_RPAREN, - STATE(949), 1, + STATE(1007), 1, sym_type_argument, - STATE(1167), 1, + STATE(1185), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(696), 2, + STATE(672), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1102), 6, + STATE(1091), 6, sym__type, sym_type_hole, sym_tuple_type, @@ -41614,29 +41651,29 @@ static const uint16_t ts_small_parse_table[] = { [44350] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1724), 1, + ACTIONS(1708), 1, anon_sym_POUND, - ACTIONS(1728), 1, + ACTIONS(1712), 1, anon_sym_fn, - ACTIONS(1730), 1, + ACTIONS(1714), 1, sym__discard_name, - ACTIONS(1734), 1, + ACTIONS(1718), 1, sym__upname, ACTIONS(1767), 1, sym__name, - ACTIONS(1777), 1, + ACTIONS(1775), 1, anon_sym_RPAREN, - STATE(1127), 1, + STATE(1020), 1, sym_type_argument, - STATE(1167), 1, + STATE(1185), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(696), 2, + STATE(672), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1102), 6, + STATE(1091), 6, sym__type, sym_type_hole, sym_tuple_type, @@ -41646,29 +41683,29 @@ static const uint16_t ts_small_parse_table[] = { [44394] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1724), 1, + ACTIONS(1708), 1, anon_sym_POUND, - ACTIONS(1728), 1, + ACTIONS(1712), 1, anon_sym_fn, - ACTIONS(1730), 1, + ACTIONS(1714), 1, sym__discard_name, - ACTIONS(1734), 1, + ACTIONS(1718), 1, sym__upname, ACTIONS(1767), 1, sym__name, - ACTIONS(1779), 1, + ACTIONS(1777), 1, anon_sym_RPAREN, - STATE(1127), 1, + STATE(1084), 1, sym_type_argument, - STATE(1167), 1, + STATE(1185), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(696), 2, + STATE(672), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1102), 6, + STATE(1091), 6, sym__type, sym_type_hole, sym_tuple_type, @@ -41678,29 +41715,29 @@ static const uint16_t ts_small_parse_table[] = { [44438] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1724), 1, + ACTIONS(1708), 1, anon_sym_POUND, - ACTIONS(1728), 1, + ACTIONS(1712), 1, anon_sym_fn, - ACTIONS(1730), 1, + ACTIONS(1714), 1, sym__discard_name, - ACTIONS(1734), 1, + ACTIONS(1718), 1, sym__upname, ACTIONS(1767), 1, sym__name, - ACTIONS(1781), 1, + ACTIONS(1779), 1, anon_sym_RPAREN, - STATE(1127), 1, + STATE(1084), 1, sym_type_argument, - STATE(1167), 1, + STATE(1185), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(696), 2, + STATE(672), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1102), 6, + STATE(1091), 6, sym__type, sym_type_hole, sym_tuple_type, @@ -41710,29 +41747,29 @@ static const uint16_t ts_small_parse_table[] = { [44482] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1724), 1, + ACTIONS(1708), 1, anon_sym_POUND, - ACTIONS(1728), 1, + ACTIONS(1712), 1, anon_sym_fn, - ACTIONS(1730), 1, + ACTIONS(1714), 1, sym__discard_name, - ACTIONS(1734), 1, + ACTIONS(1718), 1, sym__upname, ACTIONS(1767), 1, sym__name, - ACTIONS(1783), 1, + ACTIONS(1781), 1, anon_sym_RPAREN, - STATE(1074), 1, - sym_identifier, - STATE(1077), 1, + STATE(944), 1, sym_external_function_parameter, + STATE(1154), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(696), 2, + STATE(672), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1065), 6, + STATE(1174), 6, sym__type, sym_type_hole, sym_tuple_type, @@ -41742,29 +41779,29 @@ static const uint16_t ts_small_parse_table[] = { [44526] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1724), 1, + ACTIONS(1708), 1, anon_sym_POUND, - ACTIONS(1728), 1, + ACTIONS(1712), 1, anon_sym_fn, - ACTIONS(1730), 1, + ACTIONS(1714), 1, sym__discard_name, - ACTIONS(1732), 1, - sym__name, - ACTIONS(1734), 1, + ACTIONS(1718), 1, sym__upname, - STATE(1079), 1, - sym_data_constructor_argument, - STATE(1167), 1, + ACTIONS(1767), 1, + sym__name, + ACTIONS(1783), 1, + anon_sym_RPAREN, + STATE(1084), 1, + sym_type_argument, + STATE(1185), 1, sym_identifier, - STATE(1177), 1, - sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(696), 2, + STATE(672), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1151), 6, + STATE(1091), 6, sym__type, sym_type_hole, sym_tuple_type, @@ -41774,27 +41811,27 @@ static const uint16_t ts_small_parse_table[] = { [44570] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1724), 1, + ACTIONS(1708), 1, anon_sym_POUND, - ACTIONS(1728), 1, + ACTIONS(1712), 1, anon_sym_fn, - ACTIONS(1730), 1, + ACTIONS(1714), 1, sym__discard_name, - ACTIONS(1734), 1, + ACTIONS(1718), 1, sym__upname, ACTIONS(1767), 1, sym__name, ACTIONS(1785), 1, anon_sym_RPAREN, - STATE(1167), 1, + STATE(1185), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(696), 2, + STATE(672), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1101), 6, + STATE(1089), 6, sym__type, sym_type_hole, sym_tuple_type, @@ -41804,27 +41841,27 @@ static const uint16_t ts_small_parse_table[] = { [44611] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1724), 1, + ACTIONS(1708), 1, anon_sym_POUND, - ACTIONS(1728), 1, + ACTIONS(1712), 1, anon_sym_fn, - ACTIONS(1730), 1, + ACTIONS(1714), 1, sym__discard_name, - ACTIONS(1734), 1, + ACTIONS(1718), 1, sym__upname, ACTIONS(1767), 1, sym__name, ACTIONS(1787), 1, anon_sym_RPAREN, - STATE(1167), 1, + STATE(1185), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(696), 2, + STATE(672), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1022), 6, + STATE(999), 6, sym__type, sym_type_hole, sym_tuple_type, @@ -41834,27 +41871,27 @@ static const uint16_t ts_small_parse_table[] = { [44652] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1724), 1, + ACTIONS(1708), 1, anon_sym_POUND, - ACTIONS(1728), 1, + ACTIONS(1712), 1, anon_sym_fn, - ACTIONS(1730), 1, + ACTIONS(1714), 1, sym__discard_name, - ACTIONS(1734), 1, + ACTIONS(1718), 1, sym__upname, ACTIONS(1767), 1, sym__name, ACTIONS(1789), 1, anon_sym_RPAREN, - STATE(1167), 1, + STATE(1185), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(696), 2, + STATE(672), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(938), 6, + STATE(1089), 6, sym__type, sym_type_hole, sym_tuple_type, @@ -41864,27 +41901,27 @@ static const uint16_t ts_small_parse_table[] = { [44693] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1724), 1, + ACTIONS(1708), 1, anon_sym_POUND, - ACTIONS(1728), 1, + ACTIONS(1712), 1, anon_sym_fn, - ACTIONS(1730), 1, + ACTIONS(1714), 1, sym__discard_name, - ACTIONS(1734), 1, + ACTIONS(1718), 1, sym__upname, ACTIONS(1767), 1, sym__name, ACTIONS(1791), 1, anon_sym_RPAREN, - STATE(1167), 1, + STATE(1185), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(696), 2, + STATE(672), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(948), 6, + STATE(1089), 6, sym__type, sym_type_hole, sym_tuple_type, @@ -41894,27 +41931,27 @@ static const uint16_t ts_small_parse_table[] = { [44734] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1724), 1, + ACTIONS(1708), 1, anon_sym_POUND, - ACTIONS(1728), 1, + ACTIONS(1712), 1, anon_sym_fn, - ACTIONS(1730), 1, + ACTIONS(1714), 1, sym__discard_name, - ACTIONS(1734), 1, + ACTIONS(1718), 1, sym__upname, ACTIONS(1767), 1, sym__name, ACTIONS(1793), 1, anon_sym_RPAREN, - STATE(1167), 1, + STATE(1185), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(696), 2, + STATE(672), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1101), 6, + STATE(1003), 6, sym__type, sym_type_hole, sym_tuple_type, @@ -41924,27 +41961,27 @@ static const uint16_t ts_small_parse_table[] = { [44775] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1724), 1, + ACTIONS(1708), 1, anon_sym_POUND, - ACTIONS(1728), 1, + ACTIONS(1712), 1, anon_sym_fn, - ACTIONS(1730), 1, + ACTIONS(1714), 1, sym__discard_name, - ACTIONS(1734), 1, + ACTIONS(1718), 1, sym__upname, ACTIONS(1767), 1, sym__name, ACTIONS(1795), 1, anon_sym_RPAREN, - STATE(1167), 1, + STATE(1185), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(696), 2, + STATE(672), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1101), 6, + STATE(1089), 6, sym__type, sym_type_hole, sym_tuple_type, @@ -41954,27 +41991,27 @@ static const uint16_t ts_small_parse_table[] = { [44816] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1724), 1, + ACTIONS(1708), 1, anon_sym_POUND, - ACTIONS(1728), 1, + ACTIONS(1712), 1, anon_sym_fn, - ACTIONS(1730), 1, + ACTIONS(1714), 1, sym__discard_name, - ACTIONS(1734), 1, + ACTIONS(1718), 1, sym__upname, ACTIONS(1767), 1, sym__name, ACTIONS(1797), 1, anon_sym_RPAREN, - STATE(1167), 1, + STATE(1185), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(696), 2, + STATE(672), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1101), 6, + STATE(1089), 6, sym__type, sym_type_hole, sym_tuple_type, @@ -41984,27 +42021,27 @@ static const uint16_t ts_small_parse_table[] = { [44857] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1724), 1, + ACTIONS(1708), 1, anon_sym_POUND, - ACTIONS(1728), 1, + ACTIONS(1712), 1, anon_sym_fn, - ACTIONS(1730), 1, + ACTIONS(1714), 1, sym__discard_name, - ACTIONS(1734), 1, + ACTIONS(1718), 1, sym__upname, ACTIONS(1767), 1, sym__name, ACTIONS(1799), 1, anon_sym_RPAREN, - STATE(1167), 1, + STATE(1185), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(696), 2, + STATE(672), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1101), 6, + STATE(1022), 6, sym__type, sym_type_hole, sym_tuple_type, @@ -42014,27 +42051,27 @@ static const uint16_t ts_small_parse_table[] = { [44898] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1724), 1, + ACTIONS(1708), 1, anon_sym_POUND, - ACTIONS(1728), 1, + ACTIONS(1712), 1, anon_sym_fn, - ACTIONS(1730), 1, + ACTIONS(1714), 1, sym__discard_name, - ACTIONS(1734), 1, + ACTIONS(1718), 1, sym__upname, ACTIONS(1767), 1, sym__name, - STATE(1074), 1, - sym_identifier, - STATE(1077), 1, + STATE(1149), 1, sym_external_function_parameter, + STATE(1154), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(696), 2, + STATE(672), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1065), 6, + STATE(1174), 6, sym__type, sym_type_hole, sym_tuple_type, @@ -42044,27 +42081,27 @@ static const uint16_t ts_small_parse_table[] = { [44939] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1724), 1, + ACTIONS(1708), 1, anon_sym_POUND, - ACTIONS(1728), 1, + ACTIONS(1712), 1, anon_sym_fn, - ACTIONS(1730), 1, + ACTIONS(1714), 1, sym__discard_name, - ACTIONS(1734), 1, + ACTIONS(1718), 1, sym__upname, ACTIONS(1767), 1, sym__name, - STATE(1127), 1, - sym_type_argument, - STATE(1167), 1, + ACTIONS(1801), 1, + anon_sym_RPAREN, + STATE(1185), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(696), 2, + STATE(672), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1102), 6, + STATE(1089), 6, sym__type, sym_type_hole, sym_tuple_type, @@ -42074,27 +42111,27 @@ static const uint16_t ts_small_parse_table[] = { [44980] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1724), 1, + ACTIONS(1708), 1, anon_sym_POUND, - ACTIONS(1728), 1, + ACTIONS(1712), 1, anon_sym_fn, - ACTIONS(1730), 1, + ACTIONS(1714), 1, sym__discard_name, - ACTIONS(1734), 1, + ACTIONS(1718), 1, sym__upname, ACTIONS(1767), 1, sym__name, - ACTIONS(1801), 1, - anon_sym_RPAREN, - STATE(1167), 1, + STATE(1084), 1, + sym_type_argument, + STATE(1185), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(696), 2, + STATE(672), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1101), 6, + STATE(1091), 6, sym__type, sym_type_hole, sym_tuple_type, @@ -42125,6 +42162,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, [45049] = 10, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1708), 1, + anon_sym_POUND, + ACTIONS(1712), 1, + anon_sym_fn, + ACTIONS(1714), 1, + sym__discard_name, + ACTIONS(1718), 1, + sym__upname, + ACTIONS(1767), 1, + sym__name, + STATE(1185), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(672), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1258), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [45087] = 10, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1708), 1, + anon_sym_POUND, + ACTIONS(1712), 1, + anon_sym_fn, + ACTIONS(1714), 1, + sym__discard_name, + ACTIONS(1718), 1, + sym__upname, + ACTIONS(1767), 1, + sym__name, + STATE(1185), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(672), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1260), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [45125] = 10, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1708), 1, + anon_sym_POUND, + ACTIONS(1712), 1, + anon_sym_fn, + ACTIONS(1714), 1, + sym__discard_name, + ACTIONS(1718), 1, + sym__upname, + ACTIONS(1767), 1, + sym__name, + STATE(1185), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(672), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1272), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [45163] = 10, ACTIONS(3), 1, sym_module_comment, ACTIONS(1809), 1, @@ -42142,387 +42263,460 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(383), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(454), 6, + STATE(497), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [45087] = 10, + [45201] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1724), 1, + ACTIONS(1708), 1, anon_sym_POUND, - ACTIONS(1728), 1, + ACTIONS(1712), 1, anon_sym_fn, - ACTIONS(1730), 1, + ACTIONS(1714), 1, sym__discard_name, - ACTIONS(1734), 1, + ACTIONS(1718), 1, sym__upname, ACTIONS(1767), 1, sym__name, - STATE(1167), 1, + STATE(1185), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(696), 2, + STATE(672), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1252), 6, + STATE(795), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [45125] = 10, + [45239] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1724), 1, + ACTIONS(1708), 1, anon_sym_POUND, - ACTIONS(1728), 1, + ACTIONS(1712), 1, anon_sym_fn, - ACTIONS(1730), 1, + ACTIONS(1714), 1, sym__discard_name, - ACTIONS(1734), 1, + ACTIONS(1718), 1, sym__upname, ACTIONS(1767), 1, sym__name, - STATE(1167), 1, + STATE(1185), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(696), 2, + STATE(672), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1101), 6, + STATE(907), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [45163] = 10, + [45277] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1724), 1, + ACTIONS(1708), 1, anon_sym_POUND, - ACTIONS(1728), 1, + ACTIONS(1712), 1, anon_sym_fn, - ACTIONS(1730), 1, + ACTIONS(1714), 1, sym__discard_name, - ACTIONS(1734), 1, + ACTIONS(1718), 1, sym__upname, ACTIONS(1767), 1, sym__name, - STATE(1167), 1, + STATE(1185), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(696), 2, + STATE(672), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1073), 6, + STATE(1268), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [45201] = 10, + [45315] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1724), 1, + ACTIONS(1708), 1, anon_sym_POUND, - ACTIONS(1728), 1, + ACTIONS(1712), 1, anon_sym_fn, - ACTIONS(1730), 1, + ACTIONS(1714), 1, sym__discard_name, - ACTIONS(1734), 1, + ACTIONS(1718), 1, sym__upname, ACTIONS(1767), 1, sym__name, - STATE(1167), 1, + STATE(1185), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(696), 2, + STATE(672), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1248), 6, + STATE(725), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [45239] = 10, + [45353] = 10, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1708), 1, + anon_sym_POUND, + ACTIONS(1712), 1, + anon_sym_fn, + ACTIONS(1714), 1, + sym__discard_name, + ACTIONS(1718), 1, + sym__upname, + ACTIONS(1767), 1, + sym__name, + STATE(1185), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(672), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1142), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [45391] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1819), 1, + anon_sym_LPAREN, + STATE(713), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1091), 12, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_COMMA, + anon_sym_const, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_external, + anon_sym_type, + anon_sym_fn, + sym_visibility_modifier, + sym_opacity_modifier, + [45419] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1724), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(329), 2, + anon_sym_DOT, + anon_sym_COLON, + ACTIONS(1212), 12, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_COMMA, + anon_sym_const, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_external, + anon_sym_type, + anon_sym_fn, + sym_visibility_modifier, + sym_opacity_modifier, + [45445] = 10, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1708), 1, anon_sym_POUND, - ACTIONS(1728), 1, + ACTIONS(1712), 1, anon_sym_fn, - ACTIONS(1730), 1, + ACTIONS(1714), 1, sym__discard_name, - ACTIONS(1734), 1, + ACTIONS(1718), 1, sym__upname, ACTIONS(1767), 1, sym__name, - STATE(1167), 1, + STATE(1185), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(696), 2, + STATE(672), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(955), 6, + STATE(1281), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [45277] = 10, + [45483] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1724), 1, + ACTIONS(1708), 1, anon_sym_POUND, - ACTIONS(1728), 1, + ACTIONS(1712), 1, anon_sym_fn, - ACTIONS(1730), 1, + ACTIONS(1714), 1, sym__discard_name, - ACTIONS(1734), 1, + ACTIONS(1718), 1, sym__upname, ACTIONS(1767), 1, sym__name, - STATE(1167), 1, + STATE(1185), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(696), 2, + STATE(672), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1244), 6, + STATE(1179), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [45315] = 10, + [45521] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1724), 1, + ACTIONS(1809), 1, anon_sym_POUND, - ACTIONS(1728), 1, + ACTIONS(1811), 1, anon_sym_fn, - ACTIONS(1730), 1, + ACTIONS(1813), 1, sym__discard_name, - ACTIONS(1734), 1, - sym__upname, - ACTIONS(1767), 1, + ACTIONS(1815), 1, sym__name, - STATE(1167), 1, + ACTIONS(1817), 1, + sym__upname, + STATE(1255), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(696), 2, + STATE(383), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1203), 6, + STATE(459), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [45353] = 10, + [45559] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1724), 1, + ACTIONS(1708), 1, anon_sym_POUND, - ACTIONS(1728), 1, + ACTIONS(1712), 1, anon_sym_fn, - ACTIONS(1730), 1, + ACTIONS(1714), 1, sym__discard_name, - ACTIONS(1734), 1, + ACTIONS(1718), 1, sym__upname, ACTIONS(1767), 1, sym__name, - STATE(1167), 1, + STATE(1185), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(696), 2, + STATE(672), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1242), 6, + STATE(1089), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [45391] = 10, + [45597] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1724), 1, + ACTIONS(1708), 1, anon_sym_POUND, - ACTIONS(1728), 1, + ACTIONS(1712), 1, anon_sym_fn, - ACTIONS(1730), 1, + ACTIONS(1714), 1, sym__discard_name, - ACTIONS(1734), 1, + ACTIONS(1718), 1, sym__upname, ACTIONS(1767), 1, sym__name, - STATE(1167), 1, + STATE(1185), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(696), 2, + STATE(672), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1238), 6, + STATE(790), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [45429] = 10, + [45635] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1724), 1, + ACTIONS(1708), 1, anon_sym_POUND, - ACTIONS(1728), 1, + ACTIONS(1712), 1, anon_sym_fn, - ACTIONS(1730), 1, + ACTIONS(1714), 1, sym__discard_name, - ACTIONS(1734), 1, + ACTIONS(1718), 1, sym__upname, ACTIONS(1767), 1, sym__name, - STATE(1167), 1, + STATE(1185), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(696), 2, + STATE(672), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1271), 6, + STATE(1286), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [45467] = 10, + [45673] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1809), 1, + ACTIONS(1708), 1, anon_sym_POUND, - ACTIONS(1811), 1, + ACTIONS(1712), 1, anon_sym_fn, - ACTIONS(1813), 1, + ACTIONS(1714), 1, sym__discard_name, - ACTIONS(1815), 1, - sym__name, - ACTIONS(1817), 1, + ACTIONS(1718), 1, sym__upname, - STATE(1255), 1, + ACTIONS(1767), 1, + sym__name, + STATE(1185), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(672), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(451), 6, + STATE(781), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [45505] = 3, + [45711] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1202), 14, - anon_sym_LBRACE, + ACTIONS(1823), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1821), 10, anon_sym_RBRACE, - anon_sym_import, - anon_sym_as, - anon_sym_COMMA, - anon_sym_const, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - sym_visibility_modifier, - sym_opacity_modifier, - [45529] = 10, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [45737] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1724), 1, + ACTIONS(1708), 1, anon_sym_POUND, - ACTIONS(1728), 1, + ACTIONS(1712), 1, anon_sym_fn, - ACTIONS(1730), 1, + ACTIONS(1714), 1, sym__discard_name, - ACTIONS(1734), 1, + ACTIONS(1718), 1, sym__upname, ACTIONS(1767), 1, sym__name, - STATE(1167), 1, + STATE(1185), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(696), 2, + STATE(672), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1173), 6, + STATE(1223), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [45567] = 5, + [45775] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1819), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1807), 4, + ACTIONS(1827), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1803), 9, + ACTIONS(1825), 10, + anon_sym_RBRACE, anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -42532,18 +42726,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [45595] = 4, + [45801] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1823), 4, + ACTIONS(1831), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1821), 10, + ACTIONS(1829), 10, anon_sym_RBRACE, anon_sym_DASH_GT, anon_sym_PIPE_PIPE, @@ -42554,35 +42748,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [45621] = 10, + [45827] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1724), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1226), 14, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_as, + anon_sym_COMMA, + anon_sym_const, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_external, + anon_sym_type, + anon_sym_fn, + sym_visibility_modifier, + sym_opacity_modifier, + [45851] = 10, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1708), 1, anon_sym_POUND, - ACTIONS(1728), 1, + ACTIONS(1712), 1, anon_sym_fn, - ACTIONS(1730), 1, + ACTIONS(1714), 1, sym__discard_name, - ACTIONS(1734), 1, + ACTIONS(1718), 1, sym__upname, ACTIONS(1767), 1, sym__name, - STATE(1167), 1, + STATE(1185), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(696), 2, + STATE(672), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1083), 6, + STATE(1254), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [45659] = 10, + [45889] = 10, ACTIONS(3), 1, sym_module_comment, ACTIONS(1809), 1, @@ -42600,73 +42815,45 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(460), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [45697] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1724), 1, - anon_sym_POUND, - ACTIONS(1728), 1, - anon_sym_fn, - ACTIONS(1730), 1, - sym__discard_name, - ACTIONS(1734), 1, - sym__upname, - ACTIONS(1767), 1, - sym__name, - STATE(1167), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(696), 2, + STATE(383), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(794), 6, + STATE(487), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [45735] = 10, + [45927] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1724), 1, + ACTIONS(1708), 1, anon_sym_POUND, - ACTIONS(1728), 1, + ACTIONS(1712), 1, anon_sym_fn, - ACTIONS(1730), 1, + ACTIONS(1714), 1, sym__discard_name, - ACTIONS(1734), 1, + ACTIONS(1718), 1, sym__upname, ACTIONS(1767), 1, sym__name, - STATE(1167), 1, + STATE(1185), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(696), 2, + STATE(672), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(792), 6, + STATE(711), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [45773] = 10, + [45965] = 10, ACTIONS(3), 1, sym_module_comment, ACTIONS(1809), 1, @@ -42684,78 +42871,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(483), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [45811] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1724), 1, - anon_sym_POUND, - ACTIONS(1728), 1, - anon_sym_fn, - ACTIONS(1730), 1, - sym__discard_name, - ACTIONS(1734), 1, - sym__upname, - ACTIONS(1767), 1, - sym__name, - STATE(1167), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(696), 2, + STATE(383), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(780), 6, + STATE(472), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [45849] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1827), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1825), 10, - anon_sym_RBRACE, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [45875] = 4, + [46003] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1831), 4, + ACTIONS(1835), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1829), 10, + ACTIONS(1833), 10, anon_sym_RBRACE, anon_sym_DASH_GT, anon_sym_PIPE_PIPE, @@ -42766,35 +42903,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [45901] = 10, + [46029] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1724), 1, + ACTIONS(1708), 1, anon_sym_POUND, - ACTIONS(1728), 1, + ACTIONS(1712), 1, anon_sym_fn, - ACTIONS(1730), 1, + ACTIONS(1714), 1, sym__discard_name, - ACTIONS(1734), 1, + ACTIONS(1718), 1, sym__upname, ACTIONS(1767), 1, sym__name, - STATE(1167), 1, + STATE(1185), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(696), 2, + STATE(672), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1207), 6, + STATE(1241), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [45939] = 10, + [46067] = 10, ACTIONS(3), 1, sym_module_comment, ACTIONS(1809), 1, @@ -42812,85 +42949,86 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(391), 2, + STATE(383), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(498), 6, + STATE(460), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [45977] = 10, + [46105] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1724), 1, + ACTIONS(1708), 1, anon_sym_POUND, - ACTIONS(1728), 1, + ACTIONS(1712), 1, anon_sym_fn, - ACTIONS(1730), 1, + ACTIONS(1714), 1, sym__discard_name, - ACTIONS(1734), 1, + ACTIONS(1718), 1, sym__upname, ACTIONS(1767), 1, sym__name, - STATE(1167), 1, + STATE(1185), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(696), 2, + STATE(672), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1234), 6, + STATE(1244), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [46015] = 10, + [46143] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1724), 1, + ACTIONS(1708), 1, anon_sym_POUND, - ACTIONS(1728), 1, + ACTIONS(1712), 1, anon_sym_fn, - ACTIONS(1730), 1, + ACTIONS(1714), 1, sym__discard_name, - ACTIONS(1734), 1, + ACTIONS(1718), 1, sym__upname, ACTIONS(1767), 1, sym__name, - STATE(1167), 1, + STATE(1185), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(696), 2, + STATE(672), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1204), 6, + STATE(1264), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [46053] = 4, + [46181] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1837), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1835), 4, + ACTIONS(1807), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1833), 10, - anon_sym_RBRACE, + ACTIONS(1803), 9, anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -42900,46 +43038,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [46079] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1724), 1, - anon_sym_POUND, - ACTIONS(1728), 1, - anon_sym_fn, - ACTIONS(1730), 1, - sym__discard_name, - ACTIONS(1734), 1, - sym__upname, - ACTIONS(1767), 1, - sym__name, - STATE(1167), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(696), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1232), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [46117] = 4, + [46209] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1839), 4, + ACTIONS(1841), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1837), 10, + ACTIONS(1839), 10, anon_sym_RBRACE, anon_sym_DASH_GT, anon_sym_PIPE_PIPE, @@ -42950,155 +43060,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [46143] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(324), 2, - anon_sym_DOT, - anon_sym_COLON, - ACTIONS(1192), 12, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_COMMA, - anon_sym_const, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - sym_visibility_modifier, - sym_opacity_modifier, - [46169] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1724), 1, - anon_sym_POUND, - ACTIONS(1728), 1, - anon_sym_fn, - ACTIONS(1730), 1, - sym__discard_name, - ACTIONS(1734), 1, - sym__upname, - ACTIONS(1767), 1, - sym__name, - STATE(1167), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(696), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(719), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [46207] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1841), 1, - anon_sym_LPAREN, - STATE(717), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1103), 12, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_COMMA, - anon_sym_const, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - sym_visibility_modifier, - sym_opacity_modifier, [46235] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1724), 1, + ACTIONS(1708), 1, anon_sym_POUND, - ACTIONS(1728), 1, + ACTIONS(1712), 1, anon_sym_fn, - ACTIONS(1730), 1, + ACTIONS(1714), 1, sym__discard_name, - ACTIONS(1734), 1, + ACTIONS(1718), 1, sym__upname, ACTIONS(1767), 1, sym__name, - STATE(1167), 1, + STATE(1185), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(696), 2, + STATE(672), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(721), 6, + STATE(1094), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [46273] = 8, + [46273] = 7, ACTIONS(3), 1, sym_module_comment, ACTIONS(1843), 1, - anon_sym_RBRACE, - ACTIONS(1845), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1847), 1, anon_sym_AMP_AMP, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1849), 2, + ACTIONS(1825), 2, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + ACTIONS(1845), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1851), 4, + ACTIONS(1847), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1853), 4, + ACTIONS(1849), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [46306] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1857), 1, - anon_sym_LPAREN, - STATE(752), 1, - sym_record_pattern_arguments, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1855), 11, - anon_sym_if, - anon_sym_as, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - [46333] = 5, + [46304] = 5, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, @@ -43114,73 +43128,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1833), 5, + ACTIONS(1825), 5, anon_sym_RBRACE, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [46360] = 6, + [46331] = 6, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1859), 2, + ACTIONS(1845), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1833), 3, + ACTIONS(1825), 3, anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(1861), 4, + ACTIONS(1847), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1863), 4, + ACTIONS(1849), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [46389] = 5, + [46360] = 5, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1861), 4, + ACTIONS(1847), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1863), 4, + ACTIONS(1849), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1833), 5, + ACTIONS(1825), 5, anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [46416] = 11, + [46387] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1857), 1, + anon_sym_LPAREN, + STATE(744), 1, + sym_record_pattern_arguments, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1855), 11, + anon_sym_if, + anon_sym_as, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_DOT_DOT, + anon_sym_PIPE, + [46414] = 8, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1843), 1, + anon_sym_AMP_AMP, + ACTIONS(1859), 1, + anon_sym_DASH_GT, + ACTIONS(1861), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1845), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1847), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1849), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [46447] = 11, ACTIONS(3), 1, sym_module_comment, ACTIONS(481), 1, sym__name, - ACTIONS(1730), 1, + ACTIONS(1714), 1, sym__discard_name, - ACTIONS(1734), 1, + ACTIONS(1718), 1, sym__upname, - ACTIONS(1865), 1, + ACTIONS(1863), 1, anon_sym_POUND, - ACTIONS(1867), 1, + ACTIONS(1865), 1, anon_sym_RPAREN, - STATE(926), 1, + STATE(1146), 1, sym_constant_type_argument, - STATE(1167), 1, + STATE(1185), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, @@ -43188,27 +43249,27 @@ static const uint16_t ts_small_parse_table[] = { STATE(835), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1155), 4, + STATE(1126), 4, sym__constant_type, sym_constant_tuple_type, sym_constant_type, sym_type_hole, - [46455] = 11, + [46486] = 11, ACTIONS(3), 1, sym_module_comment, ACTIONS(481), 1, sym__name, - ACTIONS(1730), 1, + ACTIONS(1714), 1, sym__discard_name, - ACTIONS(1734), 1, + ACTIONS(1718), 1, sym__upname, - ACTIONS(1865), 1, + ACTIONS(1863), 1, anon_sym_POUND, - ACTIONS(1869), 1, + ACTIONS(1867), 1, anon_sym_RPAREN, - STATE(1058), 1, + STATE(987), 1, sym_constant_type_argument, - STATE(1167), 1, + STATE(1185), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, @@ -43216,21 +43277,70 @@ static const uint16_t ts_small_parse_table[] = { STATE(835), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1155), 4, + STATE(1126), 4, sym__constant_type, sym_constant_tuple_type, sym_constant_type, sym_type_hole, - [46494] = 6, + [46525] = 8, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1869), 1, + anon_sym_RBRACE, + ACTIONS(1871), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1873), 1, + anon_sym_AMP_AMP, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1875), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1851), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1853), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [46558] = 7, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1873), 1, + anon_sym_AMP_AMP, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1825), 2, + anon_sym_RBRACE, + anon_sym_PIPE_PIPE, + ACTIONS(1875), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1851), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1853), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [46589] = 6, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1849), 2, + ACTIONS(1875), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1833), 3, + ACTIONS(1825), 3, anon_sym_RBRACE, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -43244,13 +43354,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [46523] = 3, + [46618] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1240), 13, + ACTIONS(1159), 13, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -43264,71 +43374,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [46546] = 8, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1871), 1, - anon_sym_DASH_GT, - ACTIONS(1873), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1875), 1, - anon_sym_AMP_AMP, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1859), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1861), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1863), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [46579] = 7, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1847), 1, - anon_sym_AMP_AMP, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1833), 2, - anon_sym_RBRACE, - anon_sym_PIPE_PIPE, - ACTIONS(1849), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1851), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1853), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [46610] = 11, + [46641] = 11, ACTIONS(3), 1, sym_module_comment, ACTIONS(481), 1, sym__name, - ACTIONS(1730), 1, + ACTIONS(1714), 1, sym__discard_name, - ACTIONS(1734), 1, + ACTIONS(1718), 1, sym__upname, - ACTIONS(1865), 1, + ACTIONS(1863), 1, anon_sym_POUND, ACTIONS(1877), 1, anon_sym_RPAREN, - STATE(1058), 1, + STATE(1146), 1, sym_constant_type_argument, - STATE(1167), 1, + STATE(1185), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, @@ -43336,42 +43397,37 @@ static const uint16_t ts_small_parse_table[] = { STATE(835), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1155), 4, + STATE(1126), 4, sym__constant_type, sym_constant_tuple_type, sym_constant_type, sym_type_hole, - [46649] = 7, + [46680] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1875), 1, - anon_sym_AMP_AMP, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1833), 2, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - ACTIONS(1859), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1861), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1863), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [46680] = 3, + ACTIONS(1350), 12, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_COMMA, + anon_sym_const, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_external, + anon_sym_type, + anon_sym_fn, + sym_visibility_modifier, + sym_opacity_modifier, + [46702] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1398), 12, + ACTIONS(1430), 12, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -43384,41 +43440,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [46702] = 5, + [46724] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1879), 1, - anon_sym_SLASH, - STATE(722), 1, - aux_sym_module_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1044), 10, + ACTIONS(1252), 12, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, - anon_sym_DOT, - anon_sym_as, + anon_sym_COMMA, anon_sym_const, + anon_sym_EQ, + anon_sym_RPAREN, anon_sym_external, anon_sym_type, anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [46728] = 10, + [46746] = 10, ACTIONS(3), 1, sym_module_comment, ACTIONS(481), 1, sym__name, - ACTIONS(1730), 1, + ACTIONS(1714), 1, sym__discard_name, - ACTIONS(1734), 1, + ACTIONS(1718), 1, sym__upname, - ACTIONS(1865), 1, + ACTIONS(1863), 1, anon_sym_POUND, - STATE(1058), 1, + ACTIONS(1879), 1, + anon_sym_RPAREN, + STATE(1185), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(835), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1162), 4, + sym__constant_type, + sym_constant_tuple_type, + sym_constant_type, + sym_type_hole, + [46782] = 10, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(481), 1, + sym__name, + ACTIONS(1714), 1, + sym__discard_name, + ACTIONS(1718), 1, + sym__upname, + ACTIONS(1863), 1, + anon_sym_POUND, + STATE(1146), 1, sym_constant_type_argument, - STATE(1167), 1, + STATE(1185), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, @@ -43426,37 +43506,39 @@ static const uint16_t ts_small_parse_table[] = { STATE(835), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1155), 4, + STATE(1126), 4, sym__constant_type, sym_constant_tuple_type, sym_constant_type, sym_type_hole, - [46764] = 3, + [46818] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1881), 1, + anon_sym_SLASH, + STATE(716), 1, + aux_sym_module_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1294), 12, - anon_sym_LBRACE, + ACTIONS(1037), 10, anon_sym_RBRACE, anon_sym_import, - anon_sym_COMMA, + anon_sym_DOT, + anon_sym_as, anon_sym_const, - anon_sym_EQ, - anon_sym_RPAREN, anon_sym_external, anon_sym_type, anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [46786] = 3, + [46844] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1306), 12, + ACTIONS(1470), 12, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -43469,13 +43551,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [46808] = 3, + [46866] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1390), 12, + ACTIONS(1272), 12, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -43488,13 +43570,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [46830] = 3, + [46888] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1362), 12, + ACTIONS(1244), 12, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -43507,13 +43589,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [46852] = 3, + [46910] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1382), 12, + ACTIONS(1342), 12, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -43526,13 +43608,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [46874] = 3, + [46932] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1302), 12, + ACTIONS(1286), 12, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -43545,32 +43627,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [46896] = 3, + [46954] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1884), 1, + anon_sym_SLASH, + STATE(716), 1, + aux_sym_module_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1244), 12, - anon_sym_LBRACE, + ACTIONS(1052), 10, anon_sym_RBRACE, anon_sym_import, - anon_sym_COMMA, + anon_sym_DOT, + anon_sym_as, anon_sym_const, - anon_sym_EQ, - anon_sym_RPAREN, anon_sym_external, anon_sym_type, anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [46918] = 3, + [46980] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1272), 12, + ACTIONS(1370), 12, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -43583,60 +43667,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [46940] = 5, + [47002] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1879), 1, - anon_sym_SLASH, - STATE(728), 1, - aux_sym_module_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1050), 10, + ACTIONS(1454), 12, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, - anon_sym_DOT, - anon_sym_as, + anon_sym_COMMA, anon_sym_const, + anon_sym_EQ, + anon_sym_RPAREN, anon_sym_external, anon_sym_type, anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [46966] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(481), 1, - sym__name, - ACTIONS(1730), 1, - sym__discard_name, - ACTIONS(1734), 1, - sym__upname, - ACTIONS(1865), 1, - anon_sym_POUND, - ACTIONS(1881), 1, - anon_sym_RPAREN, - STATE(1167), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(835), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1057), 4, - sym__constant_type, - sym_constant_tuple_type, - sym_constant_type, - sym_type_hole, - [47002] = 3, + [47024] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1268), 12, + ACTIONS(1302), 12, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -43649,39 +43705,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [47024] = 3, + [47046] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1884), 1, + anon_sym_SLASH, + STATE(722), 1, + aux_sym_module_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1260), 12, - anon_sym_LBRACE, + ACTIONS(1044), 10, anon_sym_RBRACE, anon_sym_import, - anon_sym_COMMA, + anon_sym_DOT, + anon_sym_as, anon_sym_const, - anon_sym_EQ, - anon_sym_RPAREN, anon_sym_external, anon_sym_type, anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [47046] = 10, + [47072] = 10, ACTIONS(3), 1, sym_module_comment, ACTIONS(481), 1, sym__name, - ACTIONS(1730), 1, + ACTIONS(1714), 1, sym__discard_name, - ACTIONS(1734), 1, + ACTIONS(1718), 1, sym__upname, - ACTIONS(1865), 1, + ACTIONS(1863), 1, anon_sym_POUND, - ACTIONS(1883), 1, + ACTIONS(1886), 1, anon_sym_RPAREN, - STATE(1167), 1, + STATE(1185), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, @@ -43689,25 +43747,25 @@ static const uint16_t ts_small_parse_table[] = { STATE(835), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(923), 4, + STATE(971), 4, sym__constant_type, sym_constant_tuple_type, sym_constant_type, sym_type_hole, - [47082] = 10, + [47108] = 10, ACTIONS(3), 1, sym_module_comment, ACTIONS(481), 1, sym__name, - ACTIONS(1730), 1, + ACTIONS(1714), 1, sym__discard_name, - ACTIONS(1734), 1, + ACTIONS(1718), 1, sym__upname, - ACTIONS(1865), 1, + ACTIONS(1863), 1, anon_sym_POUND, - ACTIONS(1885), 1, + ACTIONS(1888), 1, anon_sym_RPAREN, - STATE(1167), 1, + STATE(1185), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, @@ -43715,32 +43773,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(835), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1057), 4, + STATE(1162), 4, sym__constant_type, sym_constant_tuple_type, sym_constant_type, sym_type_hole, - [47118] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1887), 1, - anon_sym_SLASH, - STATE(728), 1, - aux_sym_module_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1037), 10, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_const, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - sym_visibility_modifier, - sym_opacity_modifier, [47144] = 3, ACTIONS(3), 1, sym_module_comment, @@ -43765,12 +43802,12 @@ static const uint16_t ts_small_parse_table[] = { sym_module_comment, ACTIONS(1890), 1, anon_sym_LPAREN, - STATE(768), 1, + STATE(763), 1, sym_type_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1109), 10, + ACTIONS(1107), 10, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -43808,97 +43845,32 @@ static const uint16_t ts_small_parse_table[] = { sym__discard_name, ACTIONS(1898), 1, sym__name, - STATE(864), 1, - sym__discard_param, - STATE(870), 1, - sym__name_param, - STATE(888), 1, + STATE(865), 1, sym__labeled_discard_param, - STATE(889), 1, - sym__labeled_name_param, - STATE(892), 1, - sym_label, - STATE(967), 1, - sym_discard, - STATE(969), 1, - sym_identifier, - STATE(1099), 1, - sym_function_parameter, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [47254] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1039), 1, - anon_sym_SLASH, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1037), 10, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_const, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - sym_visibility_modifier, - sym_opacity_modifier, - [47277] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1896), 1, - sym__discard_name, - ACTIONS(1898), 1, - sym__name, - ACTIONS(1900), 1, - anon_sym_RPAREN, - STATE(864), 1, + STATE(885), 1, sym__discard_param, - STATE(870), 1, - sym__name_param, + STATE(886), 1, + sym__labeled_name_param, STATE(888), 1, - sym__labeled_discard_param, + sym__name_param, STATE(889), 1, - sym__labeled_name_param, - STATE(892), 1, sym_label, - STATE(967), 1, - sym_discard, - STATE(969), 1, + STATE(915), 1, sym_identifier, - STATE(984), 1, + STATE(993), 1, + sym_discard, + STATE(1069), 1, sym_function_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [47318] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1902), 11, - anon_sym_if, - anon_sym_as, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - [47339] = 3, + [47254] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1904), 11, + ACTIONS(1900), 11, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -43910,13 +43882,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [47360] = 3, + [47275] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1906), 11, + ACTIONS(1902), 11, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -43928,13 +43900,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [47381] = 3, + [47296] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1908), 11, + ACTIONS(1904), 11, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -43946,41 +43918,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [47402] = 13, + [47317] = 13, ACTIONS(3), 1, sym_module_comment, ACTIONS(1896), 1, sym__discard_name, ACTIONS(1898), 1, sym__name, - ACTIONS(1910), 1, + ACTIONS(1906), 1, anon_sym_RPAREN, - STATE(864), 1, + STATE(865), 1, + sym__labeled_discard_param, + STATE(885), 1, sym__discard_param, - STATE(870), 1, - sym__name_param, + STATE(886), 1, + sym__labeled_name_param, STATE(888), 1, - sym__labeled_discard_param, + sym__name_param, STATE(889), 1, - sym__labeled_name_param, - STATE(892), 1, sym_label, - STATE(967), 1, - sym_discard, - STATE(969), 1, + STATE(915), 1, sym_identifier, - STATE(1099), 1, + STATE(993), 1, + sym_discard, + STATE(1069), 1, sym_function_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [47443] = 3, + [47358] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1912), 11, + ACTIONS(1908), 11, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -43992,13 +43964,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [47464] = 3, + [47379] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1914), 11, + ACTIONS(1910), 11, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -44010,13 +43982,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [47485] = 3, + [47400] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1916), 11, + ACTIONS(1912), 11, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -44028,13 +44000,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [47506] = 3, + [47421] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1918), 11, + ACTIONS(1914), 11, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -44046,13 +44018,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [47527] = 3, + [47442] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1920), 11, + ACTIONS(1916), 11, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -44064,13 +44036,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [47548] = 3, + [47463] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1922), 11, + ACTIONS(1918), 11, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -44082,7 +44054,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [47569] = 3, + [47484] = 9, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(481), 1, + sym__name, + ACTIONS(1714), 1, + sym__discard_name, + ACTIONS(1718), 1, + sym__upname, + ACTIONS(1863), 1, + anon_sym_POUND, + STATE(1185), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(835), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1200), 4, + sym__constant_type, + sym_constant_tuple_type, + sym_constant_type, + sym_type_hole, + [47517] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, @@ -44100,13 +44096,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [47590] = 3, + [47538] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1924), 11, + ACTIONS(1922), 11, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -44118,13 +44114,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [47611] = 3, + [47559] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1926), 11, + ACTIONS(1924), 11, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -44136,13 +44132,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [47632] = 3, + [47580] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1928), 11, + ACTIONS(1926), 11, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -44154,13 +44150,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [47653] = 3, + [47601] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1930), 11, + ACTIONS(1928), 11, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -44172,13 +44168,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [47674] = 3, + [47622] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1039), 1, + anon_sym_SLASH, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1037), 10, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_const, + anon_sym_external, + anon_sym_type, + anon_sym_fn, + sym_visibility_modifier, + sym_opacity_modifier, + [47645] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1932), 11, + ACTIONS(1930), 11, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -44190,13 +44205,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [47695] = 3, + [47666] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1934), 11, + ACTIONS(1932), 11, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -44208,13 +44223,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [47716] = 3, + [47687] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1936), 11, + ACTIONS(1934), 11, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -44226,7 +44241,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [47737] = 3, + [47708] = 9, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(481), 1, + sym__name, + ACTIONS(1714), 1, + sym__discard_name, + ACTIONS(1718), 1, + sym__upname, + ACTIONS(1863), 1, + anon_sym_POUND, + STATE(1185), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(835), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1162), 4, + sym__constant_type, + sym_constant_tuple_type, + sym_constant_type, + sym_type_hole, + [47741] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, @@ -44244,7 +44283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [47758] = 3, + [47762] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, @@ -44262,13 +44301,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [47779] = 3, + [47783] = 13, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1896), 1, + sym__discard_name, + ACTIONS(1898), 1, + sym__name, + ACTIONS(1940), 1, + anon_sym_RPAREN, + STATE(865), 1, + sym__labeled_discard_param, + STATE(885), 1, + sym__discard_param, + STATE(886), 1, + sym__labeled_name_param, + STATE(888), 1, + sym__name_param, + STATE(889), 1, + sym_label, + STATE(915), 1, + sym_identifier, + STATE(957), 1, + sym_function_parameter, + STATE(993), 1, + sym_discard, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [47824] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1940), 11, + ACTIONS(1902), 11, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -44280,31 +44347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [47800] = 9, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(481), 1, - sym__name, - ACTIONS(1730), 1, - sym__discard_name, - ACTIONS(1734), 1, - sym__upname, - ACTIONS(1865), 1, - anon_sym_POUND, - STATE(1167), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(835), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1057), 4, - sym__constant_type, - sym_constant_tuple_type, - sym_constant_type, - sym_type_hole, - [47833] = 3, + [47845] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, @@ -44322,7 +44365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [47854] = 3, + [47866] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, @@ -44340,37 +44383,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [47875] = 9, + [47887] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(481), 1, - sym__name, - ACTIONS(1730), 1, - sym__discard_name, - ACTIONS(1734), 1, - sym__upname, - ACTIONS(1865), 1, - anon_sym_POUND, - STATE(1167), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(835), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1198), 4, - sym__constant_type, - sym_constant_tuple_type, - sym_constant_type, - sym_type_hole, + ACTIONS(1946), 11, + anon_sym_if, + anon_sym_as, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_DOT_DOT, + anon_sym_PIPE, [47908] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1946), 11, + ACTIONS(1928), 11, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -44406,7 +44443,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1386), 10, + ACTIONS(1358), 10, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -44417,49 +44454,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [47970] = 3, + [47970] = 12, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1896), 1, + sym__discard_name, + ACTIONS(1898), 1, + sym__name, + STATE(865), 1, + sym__labeled_discard_param, + STATE(885), 1, + sym__discard_param, + STATE(886), 1, + sym__labeled_name_param, + STATE(888), 1, + sym__name_param, + STATE(889), 1, + sym_label, + STATE(915), 1, + sym_identifier, + STATE(993), 1, + sym_discard, + STATE(1069), 1, + sym_function_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1256), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_const, - anon_sym_EQ, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - sym_visibility_modifier, - sym_opacity_modifier, - [47990] = 5, + [48008] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1950), 1, - anon_sym_DOT, - ACTIONS(1952), 1, - anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1091), 8, + ACTIONS(1264), 10, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, anon_sym_const, + anon_sym_EQ, anon_sym_external, anon_sym_type, anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [48014] = 3, + [48028] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1954), 10, + ACTIONS(1950), 10, anon_sym_if, anon_sym_COMMA, anon_sym_EQ, @@ -44470,13 +44514,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [48034] = 3, + [48048] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1278), 10, + ACTIONS(1334), 10, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -44487,13 +44531,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [48054] = 3, + [48068] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1378), 10, + ACTIONS(1382), 10, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -44504,49 +44548,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [48074] = 3, + [48088] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1952), 1, + anon_sym_DOT, + ACTIONS(1954), 1, + anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1326), 10, - anon_sym_LBRACE, + ACTIONS(1113), 8, anon_sym_RBRACE, anon_sym_import, anon_sym_const, - anon_sym_EQ, anon_sym_external, anon_sym_type, anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [48094] = 12, + [48112] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1896), 1, - sym__discard_name, - ACTIONS(1898), 1, - sym__name, - STATE(864), 1, - sym__discard_param, - STATE(870), 1, - sym__name_param, - STATE(888), 1, - sym__labeled_discard_param, - STATE(889), 1, - sym__labeled_name_param, - STATE(892), 1, - sym_label, - STATE(967), 1, - sym_discard, - STATE(969), 1, - sym_identifier, - STATE(1099), 1, - sym_function_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, + ACTIONS(1260), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_const, + anon_sym_EQ, + anon_sym_external, + anon_sym_type, + anon_sym_fn, + sym_visibility_modifier, + sym_opacity_modifier, [48132] = 7, ACTIONS(3), 1, sym_module_comment, @@ -44563,17 +44600,35 @@ static const uint16_t ts_small_parse_table[] = { sym__hex, sym__octal, sym__binary, - STATE(1275), 3, + STATE(1265), 3, sym__pattern_bit_string_segment_argument, sym_integer, sym_identifier, - [48159] = 3, + [48159] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1960), 1, + anon_sym_DOT, + ACTIONS(1962), 1, + anon_sym_as, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1964), 7, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_DOT_DOT, + [48182] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1222), 9, + ACTIONS(1171), 9, anon_sym_RBRACE, anon_sym_import, anon_sym_as, @@ -44583,15 +44638,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [48178] = 4, + [48201] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1960), 1, + ACTIONS(1966), 1, anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1228), 8, + ACTIONS(1220), 8, anon_sym_RBRACE, anon_sym_import, anon_sym_const, @@ -44600,13 +44655,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [48199] = 3, + [48222] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1218), 9, + ACTIONS(1216), 9, anon_sym_RBRACE, anon_sym_import, anon_sym_as, @@ -44616,13 +44671,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [48218] = 3, + [48241] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1206), 9, + ACTIONS(1238), 9, anon_sym_RBRACE, anon_sym_import, anon_sym_as, @@ -44632,13 +44687,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [48237] = 3, + [48260] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1214), 9, + ACTIONS(1232), 9, anon_sym_RBRACE, anon_sym_import, anon_sym_as, @@ -44648,31 +44703,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [48256] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1962), 1, - anon_sym_DOT, - ACTIONS(1964), 1, - anon_sym_as, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1966), 7, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_DOT_DOT, [48279] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1434), 8, + ACTIONS(1418), 8, anon_sym_RBRACE, anon_sym_import, anon_sym_const, @@ -44687,7 +44724,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1438), 8, + ACTIONS(1414), 8, anon_sym_RBRACE, anon_sym_import, anon_sym_const, @@ -44702,7 +44739,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1282), 8, + ACTIONS(1446), 8, anon_sym_RBRACE, anon_sym_import, anon_sym_const, @@ -44717,7 +44754,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1370), 8, + ACTIONS(1298), 8, anon_sym_RBRACE, anon_sym_import, anon_sym_const, @@ -44732,7 +44769,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1418), 8, + ACTIONS(1438), 8, anon_sym_RBRACE, anon_sym_import, anon_sym_const, @@ -44747,22 +44784,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1290), 8, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_const, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - sym_visibility_modifier, - sym_opacity_modifier, - [48387] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1248), 8, + ACTIONS(1330), 8, anon_sym_RBRACE, anon_sym_import, anon_sym_const, @@ -44771,33 +44793,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [48405] = 8, + [48387] = 8, ACTIONS(3), 1, sym_module_comment, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(322), 1, + ACTIONS(315), 1, sym__upname, - ACTIONS(1062), 1, + ACTIONS(1058), 1, anon_sym_DASH, - STATE(295), 1, + STATE(296), 1, sym_constructor_name, - STATE(685), 1, + STATE(681), 1, sym_integer, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - [48433] = 3, + [48415] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1350), 8, + ACTIONS(1458), 8, anon_sym_RBRACE, anon_sym_import, anon_sym_const, @@ -44806,30 +44828,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [48451] = 3, + [48433] = 10, ACTIONS(3), 1, sym_module_comment, + ACTIONS(481), 1, + sym__name, + ACTIONS(1896), 1, + sym__discard_name, + ACTIONS(1968), 1, + anon_sym_RPAREN, + STATE(877), 1, + sym__discard_param, + STATE(878), 1, + sym__name_param, + STATE(915), 1, + sym_identifier, + STATE(993), 1, + sym_discard, + STATE(1096), 1, + sym_anonymous_function_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1252), 8, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_const, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - sym_visibility_modifier, - sym_opacity_modifier, - [48469] = 4, + [48465] = 10, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(481), 1, + sym__name, + ACTIONS(1896), 1, + sym__discard_name, + ACTIONS(1970), 1, + anon_sym_RPAREN, + STATE(877), 1, + sym__discard_param, + STATE(878), 1, + sym__name_param, + STATE(915), 1, + sym_identifier, + STATE(993), 1, + sym_discard, + STATE(1096), 1, + sym_anonymous_function_parameter, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [48497] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1964), 1, + ACTIONS(1962), 1, anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1966), 7, + ACTIONS(1964), 7, anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, @@ -44837,13 +44888,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_COLON, anon_sym_DOT_DOT, - [48489] = 3, + [48517] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1318), 8, + ACTIONS(1462), 8, anon_sym_RBRACE, anon_sym_import, anon_sym_const, @@ -44852,13 +44903,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [48507] = 3, + [48535] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1430), 8, + ACTIONS(1450), 8, anon_sym_RBRACE, anon_sym_import, anon_sym_const, @@ -44867,13 +44918,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [48525] = 3, + [48553] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1342), 8, + ACTIONS(1466), 8, anon_sym_RBRACE, anon_sym_import, anon_sym_const, @@ -44882,13 +44933,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [48543] = 3, + [48571] = 8, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1143), 1, + sym__decimal, + ACTIONS(1147), 1, + sym__upname, + ACTIONS(1972), 1, + anon_sym_DASH, + STATE(630), 1, + sym_constructor_name, + STATE(681), 1, + sym_integer, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1141), 3, + sym__hex, + sym__octal, + sym__binary, + [48599] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1454), 8, + ACTIONS(1362), 8, anon_sym_RBRACE, anon_sym_import, anon_sym_const, @@ -44897,13 +44968,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [48561] = 3, + [48617] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1466), 8, + ACTIONS(1398), 8, anon_sym_RBRACE, anon_sym_import, anon_sym_const, @@ -44912,13 +44983,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [48579] = 3, + [48635] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1394), 8, + ACTIONS(1410), 8, anon_sym_RBRACE, anon_sym_import, anon_sym_const, @@ -44927,13 +44998,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [48597] = 3, + [48653] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1286), 8, + ACTIONS(1306), 8, anon_sym_RBRACE, anon_sym_import, anon_sym_const, @@ -44942,33 +45013,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [48615] = 8, + [48671] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1178), 1, - sym__decimal, - ACTIONS(1182), 1, - sym__upname, - ACTIONS(1968), 1, - anon_sym_DASH, - STATE(629), 1, - sym_constructor_name, - STATE(685), 1, - sym_integer, + ACTIONS(481), 1, + sym__name, + ACTIONS(1896), 1, + sym__discard_name, + ACTIONS(1974), 1, + anon_sym_RPAREN, + STATE(877), 1, + sym__discard_param, + STATE(878), 1, + sym__name_param, + STATE(915), 1, + sym_identifier, + STATE(993), 1, + sym_discard, + STATE(1002), 1, + sym_anonymous_function_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1176), 3, - sym__hex, - sym__octal, - sym__binary, - [48643] = 3, + [48703] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1298), 8, + ACTIONS(1402), 8, anon_sym_RBRACE, anon_sym_import, anon_sym_const, @@ -44977,13 +45050,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [48661] = 3, + [48721] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1354), 8, + ACTIONS(1346), 8, anon_sym_RBRACE, anon_sym_import, anon_sym_const, @@ -44992,13 +45065,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [48679] = 3, + [48739] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1446), 8, + ACTIONS(1426), 8, anon_sym_RBRACE, anon_sym_import, anon_sym_const, @@ -45007,13 +45080,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [48697] = 3, + [48757] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1406), 8, + ACTIONS(1248), 8, anon_sym_RBRACE, anon_sym_import, anon_sym_const, @@ -45022,13 +45095,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [48715] = 3, + [48775] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1338), 8, + ACTIONS(1322), 8, anon_sym_RBRACE, anon_sym_import, anon_sym_const, @@ -45037,99 +45110,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [48733] = 3, + [48793] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1970), 7, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - [48750] = 8, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1734), 1, - sym__upname, - ACTIONS(1972), 1, + ACTIONS(1422), 8, anon_sym_RBRACE, - ACTIONS(1974), 1, - sym__name, - STATE(927), 1, - sym_type_identifier, - STATE(956), 1, - sym_identifier, - STATE(1033), 1, - sym_unqualified_import, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [48776] = 6, + anon_sym_import, + anon_sym_const, + anon_sym_external, + anon_sym_type, + anon_sym_fn, + sym_visibility_modifier, + sym_opacity_modifier, + [48811] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(809), 1, - sym__decimal, - ACTIONS(1976), 1, - anon_sym_DASH, - STATE(306), 1, - sym_integer, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(807), 3, - sym__hex, - sym__octal, - sym__binary, - [48798] = 7, + ACTIONS(1442), 8, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_const, + anon_sym_external, + anon_sym_type, + anon_sym_fn, + sym_visibility_modifier, + sym_opacity_modifier, + [48829] = 9, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1817), 1, - sym__upname, - ACTIONS(1958), 1, + ACTIONS(481), 1, sym__name, - STATE(455), 1, - sym_type_name, - STATE(1255), 1, + ACTIONS(1896), 1, + sym__discard_name, + STATE(877), 1, + sym__discard_param, + STATE(878), 1, + sym__name_param, + STATE(915), 1, sym_identifier, + STATE(993), 1, + sym_discard, + STATE(1096), 1, + sym_anonymous_function_parameter, ACTIONS(5), 2, sym_statement_comment, - sym_comment, - STATE(392), 2, - sym_type_identifier, - sym_remote_type_identifier, - [48822] = 8, + sym_comment, + [48858] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1734), 1, - sym__upname, - ACTIONS(1974), 1, - sym__name, - ACTIONS(1978), 1, - anon_sym_RBRACE, - STATE(927), 1, - sym_type_identifier, - STATE(956), 1, - sym_identifier, - STATE(1098), 1, - sym_unqualified_import, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [48848] = 7, + ACTIONS(1976), 7, + anon_sym_if, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_DOT_DOT, + anon_sym_PIPE, + [48875] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1734), 1, + ACTIONS(1718), 1, sym__upname, ACTIONS(1958), 1, sym__name, - STATE(1049), 1, + STATE(803), 1, sym_type_name, - STATE(1167), 1, + STATE(1185), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, @@ -45137,14 +45191,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(730), 2, sym_type_identifier, sym_remote_type_identifier, - [48872] = 6, + [48899] = 6, ACTIONS(3), 1, sym_module_comment, ACTIONS(479), 1, sym__decimal, ACTIONS(1956), 1, anon_sym_DASH, - STATE(1231), 1, + STATE(148), 1, sym_integer, ACTIONS(5), 2, sym_statement_comment, @@ -45153,51 +45207,69 @@ static const uint16_t ts_small_parse_table[] = { sym__hex, sym__octal, sym__binary, - [48894] = 8, + [48921] = 8, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1734), 1, + ACTIONS(1718), 1, sym__upname, - ACTIONS(1974), 1, + ACTIONS(1978), 1, + anon_sym_RBRACE, + ACTIONS(1980), 1, sym__name, + STATE(932), 1, + sym_identifier, + STATE(934), 1, + sym_type_identifier, + STATE(1129), 1, + sym_unqualified_import, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [48947] = 8, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1718), 1, + sym__upname, ACTIONS(1980), 1, + sym__name, + ACTIONS(1982), 1, anon_sym_RBRACE, - STATE(927), 1, - sym_type_identifier, - STATE(956), 1, - sym_identifier, - STATE(1098), 1, + STATE(931), 1, sym_unqualified_import, + STATE(932), 1, + sym_identifier, + STATE(934), 1, + sym_type_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [48920] = 7, + [48973] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1817), 1, + ACTIONS(1718), 1, sym__upname, ACTIONS(1958), 1, sym__name, - STATE(501), 1, + STATE(1171), 1, sym_type_name, - STATE(1255), 1, + STATE(1185), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(392), 2, + STATE(730), 2, sym_type_identifier, sym_remote_type_identifier, - [48944] = 7, + [48997] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1734), 1, + ACTIONS(1718), 1, sym__upname, ACTIONS(1958), 1, sym__name, - STATE(1061), 1, + STATE(1118), 1, sym_type_name, - STATE(1167), 1, + STATE(1185), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, @@ -45205,16 +45277,32 @@ static const uint16_t ts_small_parse_table[] = { STATE(730), 2, sym_type_identifier, sym_remote_type_identifier, - [48968] = 7, + [49021] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1734), 1, + ACTIONS(53), 1, + sym__decimal, + ACTIONS(1984), 1, + anon_sym_DASH, + STATE(17), 1, + sym_integer, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(51), 3, + sym__hex, + sym__octal, + sym__binary, + [49043] = 7, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1718), 1, sym__upname, ACTIONS(1958), 1, sym__name, - STATE(1053), 1, + STATE(1157), 1, sym_type_name, - STATE(1167), 1, + STATE(1185), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, @@ -45222,33 +45310,49 @@ static const uint16_t ts_small_parse_table[] = { STATE(730), 2, sym_type_identifier, sym_remote_type_identifier, - [48992] = 7, + [49067] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1734), 1, + ACTIONS(1817), 1, sym__upname, ACTIONS(1958), 1, sym__name, - STATE(1086), 1, + STATE(467), 1, sym_type_name, - STATE(1167), 1, + STATE(1255), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(730), 2, + STATE(396), 2, sym_type_identifier, sym_remote_type_identifier, - [49016] = 7, + [49091] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1734), 1, + ACTIONS(479), 1, + sym__decimal, + ACTIONS(1956), 1, + anon_sym_DASH, + STATE(1284), 1, + sym_integer, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(477), 3, + sym__hex, + sym__octal, + sym__binary, + [49113] = 7, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1718), 1, sym__upname, ACTIONS(1958), 1, sym__name, - STATE(795), 1, + STATE(783), 1, sym_type_name, - STATE(1167), 1, + STATE(1185), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, @@ -45256,48 +45360,65 @@ static const uint16_t ts_small_parse_table[] = { STATE(730), 2, sym_type_identifier, sym_remote_type_identifier, - [49040] = 8, + [49137] = 8, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1734), 1, + ACTIONS(1718), 1, sym__upname, - ACTIONS(1974), 1, + ACTIONS(1980), 1, sym__name, - ACTIONS(1982), 1, + ACTIONS(1986), 1, anon_sym_RBRACE, - STATE(927), 1, - sym_type_identifier, - STATE(956), 1, + STATE(932), 1, sym_identifier, - STATE(1098), 1, + STATE(934), 1, + sym_type_identifier, + STATE(1129), 1, sym_unqualified_import, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [49066] = 6, + [49163] = 7, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1718), 1, + sym__upname, + ACTIONS(1958), 1, + sym__name, + STATE(1055), 1, + sym_type_name, + STATE(1185), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(730), 2, + sym_type_identifier, + sym_remote_type_identifier, + [49187] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(316), 1, + ACTIONS(309), 1, sym__decimal, - ACTIONS(1062), 1, + ACTIONS(1058), 1, anon_sym_DASH, STATE(371), 1, sym_integer, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(314), 3, + ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - [49088] = 6, + [49209] = 6, ACTIONS(3), 1, sym_module_comment, ACTIONS(479), 1, sym__decimal, ACTIONS(1956), 1, anon_sym_DASH, - STATE(1170), 1, + STATE(1219), 1, sym_integer, ACTIONS(5), 2, sym_statement_comment, @@ -45306,66 +45427,66 @@ static const uint16_t ts_small_parse_table[] = { sym__hex, sym__octal, sym__binary, - [49110] = 7, + [49231] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1734), 1, + ACTIONS(1988), 1, + anon_sym_COMMA, + STATE(822), 1, + aux_sym_tuple_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1502), 4, + anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [49251] = 7, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1817), 1, sym__upname, ACTIONS(1958), 1, sym__name, - STATE(1160), 1, + STATE(490), 1, sym_type_name, - STATE(1167), 1, + STATE(1255), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(730), 2, + STATE(396), 2, sym_type_identifier, sym_remote_type_identifier, - [49134] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1984), 1, - anon_sym_DOT, - ACTIONS(1986), 1, - anon_sym_as, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1966), 4, - anon_sym_if, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_PIPE, - [49154] = 8, + [49275] = 8, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1734), 1, + ACTIONS(1718), 1, sym__upname, - ACTIONS(1974), 1, + ACTIONS(1980), 1, sym__name, - ACTIONS(1988), 1, + ACTIONS(1991), 1, anon_sym_RBRACE, - STATE(927), 1, - sym_type_identifier, - STATE(956), 1, + STATE(932), 1, sym_identifier, - STATE(1098), 1, + STATE(934), 1, + sym_type_identifier, + STATE(1041), 1, sym_unqualified_import, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [49180] = 7, + [49301] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1734), 1, + ACTIONS(1718), 1, sym__upname, ACTIONS(1958), 1, sym__name, - STATE(793), 1, + STATE(1067), 1, sym_type_name, - STATE(1167), 1, + STATE(1185), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, @@ -45373,66 +45494,49 @@ static const uint16_t ts_small_parse_table[] = { STATE(730), 2, sym_type_identifier, sym_remote_type_identifier, - [49204] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(1956), 1, - anon_sym_DASH, - STATE(150), 1, - sym_integer, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - [49226] = 6, + [49325] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(53), 1, - sym__decimal, - ACTIONS(1990), 1, - anon_sym_DASH, - STATE(10), 1, - sym_integer, + ACTIONS(1993), 1, + anon_sym_DOT, + ACTIONS(1995), 1, + anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(51), 3, - sym__hex, - sym__octal, - sym__binary, - [49248] = 8, + ACTIONS(1964), 4, + anon_sym_if, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_PIPE, + [49345] = 8, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1734), 1, + ACTIONS(1718), 1, sym__upname, - ACTIONS(1974), 1, + ACTIONS(1980), 1, sym__name, - ACTIONS(1992), 1, + ACTIONS(1997), 1, anon_sym_RBRACE, - STATE(927), 1, - sym_type_identifier, - STATE(956), 1, + STATE(932), 1, sym_identifier, - STATE(958), 1, + STATE(934), 1, + sym_type_identifier, + STATE(1129), 1, sym_unqualified_import, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [49274] = 7, + [49371] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1734), 1, + ACTIONS(1718), 1, sym__upname, ACTIONS(1958), 1, sym__name, - STATE(1111), 1, + STATE(1092), 1, sym_type_name, - STATE(1167), 1, + STATE(1185), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, @@ -45440,73 +45544,63 @@ static const uint16_t ts_small_parse_table[] = { STATE(730), 2, sym_type_identifier, sym_remote_type_identifier, - [49298] = 5, + [49395] = 8, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1994), 1, - anon_sym_COMMA, - STATE(826), 1, - aux_sym_tuple_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1524), 4, - anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [49318] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(483), 1, + ACTIONS(1718), 1, sym__upname, - STATE(897), 1, - sym_constructor_name, - STATE(1206), 1, - sym_data_constructors, + ACTIONS(1980), 1, + sym__name, + ACTIONS(1999), 1, + anon_sym_RBRACE, + STATE(932), 1, + sym_identifier, + STATE(934), 1, + sym_type_identifier, + STATE(1129), 1, + sym_unqualified_import, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(830), 2, - sym_data_constructor, - aux_sym_data_constructors_repeat1, - [49339] = 5, + [49421] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1999), 1, - anon_sym_COMMA, - STATE(849), 1, - aux_sym_case_clause_pattern_repeat1, + ACTIONS(830), 1, + sym__decimal, + ACTIONS(2001), 1, + anon_sym_DASH, + STATE(301), 1, + sym_integer, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1997), 3, - anon_sym_if, - anon_sym_DASH_GT, - anon_sym_PIPE, - [49358] = 7, + ACTIONS(828), 3, + sym__hex, + sym__octal, + sym__binary, + [49443] = 7, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1123), 1, + anon_sym_RPAREN, ACTIONS(1129), 1, anon_sym_DOT_DOT, - ACTIONS(2001), 1, - anon_sym_COMMA, ACTIONS(2003), 1, - anon_sym_RPAREN, - STATE(837), 1, + anon_sym_COMMA, + STATE(874), 1, aux_sym_record_pattern_arguments_repeat1, - STATE(1217), 1, + STATE(1290), 1, sym_pattern_spread, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [49381] = 6, + [49466] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(483), 1, - sym__upname, ACTIONS(2005), 1, anon_sym_RBRACE, + ACTIONS(2007), 1, + sym__upname, STATE(897), 1, sym_constructor_name, ACTIONS(5), 2, @@ -45515,28 +45609,70 @@ static const uint16_t ts_small_parse_table[] = { STATE(832), 2, sym_data_constructor, aux_sym_data_constructors_repeat1, - [49402] = 6, + [49487] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1995), 1, + anon_sym_as, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1964), 4, + anon_sym_if, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_PIPE, + [49504] = 6, ACTIONS(3), 1, sym_module_comment, ACTIONS(481), 1, sym__name, ACTIONS(1896), 1, sym__discard_name, - ACTIONS(2007), 1, + ACTIONS(2010), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1186), 2, + STATE(1261), 2, sym_identifier, sym_discard, - [49423] = 6, + [49525] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2009), 1, - anon_sym_RBRACE, - ACTIONS(2011), 1, + ACTIONS(2014), 1, + anon_sym_LPAREN, + STATE(941), 1, + sym_constant_type_arguments, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2012), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [49544] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(483), 1, + sym__upname, + STATE(897), 1, + sym_constructor_name, + STATE(1287), 1, + sym_data_constructors, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(837), 2, + sym_data_constructor, + aux_sym_data_constructors_repeat1, + [49565] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(483), 1, sym__upname, + ACTIONS(2016), 1, + anon_sym_RBRACE, STATE(897), 1, sym_constructor_name, ACTIONS(5), 2, @@ -45545,98 +45681,175 @@ static const uint16_t ts_small_parse_table[] = { STATE(832), 2, sym_data_constructor, aux_sym_data_constructors_repeat1, - [49444] = 7, + [49586] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1476), 1, + ACTIONS(2018), 1, + anon_sym_const, + ACTIONS(2020), 1, + anon_sym_external, + ACTIONS(2022), 1, + anon_sym_type, + ACTIONS(2024), 1, + anon_sym_fn, + ACTIONS(2026), 1, + sym_opacity_modifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [49609] = 7, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1500), 1, anon_sym_DOT_DOT, - ACTIONS(2014), 1, + ACTIONS(2028), 1, anon_sym_COMMA, - ACTIONS(2016), 1, + ACTIONS(2030), 1, anon_sym_RBRACK, - STATE(840), 1, + STATE(841), 1, aux_sym_case_clause_pattern_repeat1, - STATE(1229), 1, + STATE(1270), 1, sym_list_pattern_tail, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [49467] = 7, + [49632] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1476), 1, + ACTIONS(483), 1, + sym__upname, + STATE(897), 1, + sym_constructor_name, + STATE(1271), 1, + sym_data_constructors, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(837), 2, + sym_data_constructor, + aux_sym_data_constructors_repeat1, + [49653] = 7, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1500), 1, anon_sym_DOT_DOT, - ACTIONS(2018), 1, + ACTIONS(2032), 1, anon_sym_COMMA, - ACTIONS(2020), 1, + ACTIONS(2034), 1, anon_sym_RBRACK, - STATE(833), 1, + STATE(851), 1, aux_sym_case_clause_pattern_repeat1, - STATE(1188), 1, + STATE(1279), 1, sym_list_pattern_tail, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [49490] = 5, + [49676] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2024), 1, - anon_sym_LPAREN, - STATE(901), 1, - sym_constant_type_arguments, + ACTIONS(483), 1, + sym__upname, + STATE(897), 1, + sym_constructor_name, + STATE(1285), 1, + sym_data_constructors, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2022), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [49509] = 5, + STATE(837), 2, + sym_data_constructor, + aux_sym_data_constructors_repeat1, + [49697] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(264), 1, + ACTIONS(353), 1, sym__discard_name, - ACTIONS(266), 1, + ACTIONS(355), 1, sym__name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(324), 3, + ACTIONS(329), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [49528] = 7, + [49716] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1123), 1, - anon_sym_RPAREN, ACTIONS(1129), 1, anon_sym_DOT_DOT, - ACTIONS(2026), 1, + ACTIONS(2036), 1, anon_sym_COMMA, - STATE(852), 1, + ACTIONS(2038), 1, + anon_sym_RPAREN, + STATE(831), 1, aux_sym_record_pattern_arguments_repeat1, - STATE(1214), 1, + STATE(1247), 1, sym_pattern_spread, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [49551] = 6, + [49739] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2042), 1, + anon_sym_COMMA, + STATE(845), 1, + aux_sym_case_clause_pattern_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2040), 3, + anon_sym_if, + anon_sym_DASH_GT, + anon_sym_PIPE, + [49758] = 7, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1718), 1, + sym__upname, + ACTIONS(1980), 1, + sym__name, + STATE(932), 1, + sym_identifier, + STATE(934), 1, + sym_type_identifier, + STATE(1129), 1, + sym_unqualified_import, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [49781] = 6, ACTIONS(3), 1, sym_module_comment, ACTIONS(483), 1, sym__upname, STATE(897), 1, sym_constructor_name, - STATE(1237), 1, + STATE(1217), 1, + sym_data_constructors, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(837), 2, + sym_data_constructor, + aux_sym_data_constructors_repeat1, + [49802] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(483), 1, + sym__upname, + STATE(897), 1, + sym_constructor_name, + STATE(1233), 1, sym_data_constructors, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(830), 2, + STATE(837), 2, sym_data_constructor, aux_sym_data_constructors_repeat1, - [49572] = 6, + [49823] = 6, ACTIONS(3), 1, sym_module_comment, ACTIONS(483), 1, @@ -45648,4526 +45861,4561 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(830), 2, + STATE(837), 2, sym_data_constructor, aux_sym_data_constructors_repeat1, - [49593] = 5, + [49844] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2028), 1, + ACTIONS(2047), 1, + anon_sym_COMMA, + STATE(852), 1, + aux_sym_case_clause_pattern_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2045), 3, + anon_sym_if, + anon_sym_DASH_GT, + anon_sym_PIPE, + [49863] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2049), 1, anon_sym_COMMA, - STATE(840), 1, + STATE(851), 1, aux_sym_case_clause_pattern_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2031), 3, + ACTIONS(2040), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_DOT_DOT, - [49612] = 6, + [49882] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(483), 1, - sym__upname, - STATE(897), 1, - sym_constructor_name, - STATE(1168), 1, - sym_data_constructors, + ACTIONS(2054), 1, + anon_sym_COMMA, + STATE(845), 1, + aux_sym_case_clause_pattern_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(830), 2, - sym_data_constructor, - aux_sym_data_constructors_repeat1, - [49633] = 7, + ACTIONS(2052), 3, + anon_sym_if, + anon_sym_DASH_GT, + anon_sym_PIPE, + [49901] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2033), 1, + ACTIONS(2056), 1, anon_sym_const, - ACTIONS(2035), 1, + ACTIONS(2058), 1, anon_sym_external, - ACTIONS(2037), 1, + ACTIONS(2060), 1, anon_sym_type, - ACTIONS(2039), 1, + ACTIONS(2062), 1, anon_sym_fn, - ACTIONS(2041), 1, + ACTIONS(2064), 1, sym_opacity_modifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [49656] = 4, + [49924] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1986), 1, - anon_sym_as, + ACTIONS(2066), 1, + anon_sym_DASH, + STATE(860), 1, + aux_sym_expression_bit_string_segment_options_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1966), 4, - anon_sym_if, + ACTIONS(1056), 2, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_PIPE, - [49673] = 5, + anon_sym_GT_GT, + [49942] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2068), 1, + anon_sym_DQUOTE2, + STATE(890), 1, + aux_sym_string_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2070), 2, + sym_quoted_content, + sym_escape_sequence, + [49960] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2043), 1, + ACTIONS(687), 1, + anon_sym_RBRACK, + ACTIONS(689), 1, + anon_sym_DOT_DOT, + ACTIONS(2072), 1, anon_sym_COMMA, - STATE(844), 1, - aux_sym_case_clause_pattern_repeat1, + STATE(822), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2031), 3, - anon_sym_if, - anon_sym_DASH_GT, - anon_sym_PIPE, - [49692] = 7, + [49980] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2074), 1, + anon_sym_DQUOTE2, + STATE(890), 1, + aux_sym_string_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2070), 2, + sym_quoted_content, + sym_escape_sequence, + [49998] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2076), 1, + anon_sym_DQUOTE2, + STATE(857), 1, + aux_sym_string_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2078), 2, + sym_quoted_content, + sym_escape_sequence, + [50016] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2082), 1, + sym__decimal, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2080), 3, + sym__hex, + sym__octal, + sym__binary, + [50032] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2086), 1, + anon_sym_DASH, + STATE(860), 1, + aux_sym_expression_bit_string_segment_options_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2084), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [50050] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1734), 1, - sym__upname, - ACTIONS(1974), 1, - sym__name, - STATE(927), 1, - sym_type_identifier, - STATE(956), 1, - sym_identifier, - STATE(1098), 1, - sym_unqualified_import, + ACTIONS(329), 1, + anon_sym_DOT, + ACTIONS(353), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [49715] = 6, + ACTIONS(1212), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [50068] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(483), 1, - sym__upname, - STATE(897), 1, - sym_constructor_name, - STATE(1272), 1, - sym_data_constructors, + ACTIONS(2091), 1, + anon_sym_DASH, + STATE(862), 1, + aux_sym_constant_bit_string_segment_options_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(830), 2, - sym_data_constructor, - aux_sym_data_constructors_repeat1, - [49736] = 7, + ACTIONS(2089), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [50086] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2046), 1, - anon_sym_const, - ACTIONS(2048), 1, - anon_sym_external, - ACTIONS(2050), 1, - anon_sym_type, - ACTIONS(2052), 1, - anon_sym_fn, - ACTIONS(2054), 1, - sym_opacity_modifier, + ACTIONS(2094), 1, + anon_sym_DQUOTE2, + STATE(855), 1, + aux_sym_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [49759] = 6, + ACTIONS(2096), 2, + sym_quoted_content, + sym_escape_sequence, + [50104] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(483), 1, - sym__upname, - STATE(897), 1, - sym_constructor_name, - STATE(1276), 1, - sym_data_constructors, + ACTIONS(2100), 1, + sym__decimal, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(830), 2, - sym_data_constructor, - aux_sym_data_constructors_repeat1, - [49780] = 5, + ACTIONS(2098), 3, + sym__hex, + sym__octal, + sym__binary, + [50120] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2058), 1, - anon_sym_COMMA, - STATE(844), 1, - aux_sym_case_clause_pattern_repeat1, + ACTIONS(2104), 1, + anon_sym_COLON, + STATE(1113), 1, + sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2056), 3, - anon_sym_if, - anon_sym_DASH_GT, - anon_sym_PIPE, - [49799] = 6, + ACTIONS(2102), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [50138] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2060), 1, - anon_sym_RPAREN, - ACTIONS(2062), 1, - sym__name, - STATE(1104), 1, - sym_record_update_argument, - STATE(1240), 1, - sym_label, + ACTIONS(703), 1, + anon_sym_RBRACK, + ACTIONS(705), 1, + anon_sym_DOT_DOT, + ACTIONS(2106), 1, + anon_sym_COMMA, + STATE(822), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [49819] = 6, + [50158] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(691), 1, + ACTIONS(725), 1, anon_sym_RBRACK, - ACTIONS(693), 1, + ACTIONS(727), 1, anon_sym_DOT_DOT, - ACTIONS(2064), 1, + ACTIONS(2108), 1, anon_sym_COMMA, - STATE(826), 1, + STATE(822), 1, aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [49839] = 5, + [50178] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2066), 1, - anon_sym_COMMA, - STATE(852), 1, - aux_sym_record_pattern_arguments_repeat1, + ACTIONS(2110), 1, + anon_sym_DQUOTE2, + STATE(890), 1, + aux_sym_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2069), 2, - anon_sym_RPAREN, - anon_sym_DOT_DOT, - [49857] = 5, + ACTIONS(2070), 2, + sym_quoted_content, + sym_escape_sequence, + [50196] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2073), 1, + ACTIONS(2112), 1, anon_sym_DASH, - STATE(853), 1, - aux_sym_expression_bit_string_segment_options_repeat1, + STATE(898), 1, + aux_sym_pattern_bit_string_segment_options_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2071), 2, + ACTIONS(1083), 2, anon_sym_COMMA, anon_sym_GT_GT, - [49875] = 4, + [50214] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2078), 1, + ACTIONS(2116), 1, sym__decimal, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2076), 3, + ACTIONS(2114), 3, sym__hex, sym__octal, sym__binary, - [49891] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2080), 1, - anon_sym_DQUOTE2, - STATE(876), 1, - aux_sym_string_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2082), 2, - sym_quoted_content, - sym_escape_sequence, - [49909] = 5, + [50230] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2084), 1, - anon_sym_DQUOTE2, - STATE(857), 1, - aux_sym_string_repeat1, + ACTIONS(2118), 1, + sym__name, + STATE(992), 1, + sym_record_update_argument, + STATE(1215), 1, + sym_label, + STATE(1221), 1, + sym_record_update_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2086), 2, - sym_quoted_content, - sym_escape_sequence, - [49927] = 5, + [50250] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2088), 1, - anon_sym_DQUOTE2, - STATE(876), 1, - aux_sym_string_repeat1, + ACTIONS(2118), 1, + sym__name, + ACTIONS(2120), 1, + anon_sym_RPAREN, + STATE(1061), 1, + sym_record_update_argument, + STATE(1215), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2082), 2, - sym_quoted_content, - sym_escape_sequence, - [49945] = 5, + [50270] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2092), 1, + ACTIONS(2124), 1, anon_sym_PIPE, - STATE(858), 1, + STATE(873), 1, aux_sym_case_clause_patterns_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2090), 2, + ACTIONS(2122), 2, anon_sym_if, anon_sym_DASH_GT, - [49963] = 5, + [50288] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2095), 1, - anon_sym_DQUOTE2, - STATE(862), 1, - aux_sym_string_repeat1, + ACTIONS(2127), 1, + anon_sym_COMMA, + STATE(874), 1, + aux_sym_record_pattern_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2097), 2, - sym_quoted_content, - sym_escape_sequence, - [49981] = 5, + ACTIONS(2130), 2, + anon_sym_RPAREN, + anon_sym_DOT_DOT, + [50306] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2099), 1, - anon_sym_DASH, - STATE(877), 1, - aux_sym_pattern_bit_string_segment_options_repeat1, + ACTIONS(2118), 1, + sym__name, + ACTIONS(2132), 1, + anon_sym_RPAREN, + STATE(1061), 1, + sym_record_update_argument, + STATE(1215), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1087), 2, + [50326] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(721), 1, + anon_sym_RBRACK, + ACTIONS(723), 1, + anon_sym_DOT_DOT, + ACTIONS(2134), 1, anon_sym_COMMA, - anon_sym_GT_GT, - [49999] = 4, + STATE(822), 1, + aux_sym_tuple_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [50346] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2103), 1, - sym__decimal, + ACTIONS(2104), 1, + anon_sym_COLON, + STATE(1050), 1, + sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2101), 3, - sym__hex, - sym__octal, - sym__binary, - [50015] = 5, + ACTIONS(2136), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [50364] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2105), 1, - anon_sym_DQUOTE2, - STATE(876), 1, - aux_sym_string_repeat1, + ACTIONS(2104), 1, + anon_sym_COLON, + STATE(1102), 1, + sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2082), 2, - sym_quoted_content, - sym_escape_sequence, - [50033] = 5, + ACTIONS(2136), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [50382] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2107), 1, + ACTIONS(2138), 1, anon_sym_DQUOTE2, - STATE(866), 1, + STATE(890), 1, aux_sym_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2109), 2, + ACTIONS(2070), 2, sym_quoted_content, sym_escape_sequence, - [50051] = 5, + [50400] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2113), 1, - anon_sym_COLON, - STATE(1149), 1, - sym__type_annotation, + ACTIONS(2142), 1, + sym__decimal, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2111), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [50069] = 4, + ACTIONS(2140), 3, + sym__hex, + sym__octal, + sym__binary, + [50416] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2117), 1, - sym__decimal, + ACTIONS(2144), 1, + anon_sym_DQUOTE2, + STATE(884), 1, + aux_sym_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2115), 3, - sym__hex, - sym__octal, - sym__binary, - [50085] = 5, + ACTIONS(2146), 2, + sym_quoted_content, + sym_escape_sequence, + [50434] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2119), 1, + ACTIONS(2148), 1, anon_sym_DQUOTE2, - STATE(876), 1, + STATE(879), 1, aux_sym_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2082), 2, + ACTIONS(2150), 2, sym_quoted_content, sym_escape_sequence, - [50103] = 6, + [50452] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(705), 1, - anon_sym_RBRACK, - ACTIONS(707), 1, - anon_sym_DOT_DOT, - ACTIONS(2121), 1, - anon_sym_COMMA, - STATE(826), 1, - aux_sym_tuple_repeat1, + ACTIONS(2154), 1, + sym__decimal, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [50123] = 6, + ACTIONS(2152), 3, + sym__hex, + sym__octal, + sym__binary, + [50468] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2062), 1, - sym__name, - STATE(981), 1, - sym_record_update_argument, - STATE(1239), 1, - sym_record_update_arguments, - STATE(1240), 1, - sym_label, + ACTIONS(2156), 1, + anon_sym_DQUOTE2, + STATE(890), 1, + aux_sym_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [50143] = 5, + ACTIONS(2070), 2, + sym_quoted_content, + sym_escape_sequence, + [50486] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(264), 1, + ACTIONS(2104), 1, anon_sym_COLON, - ACTIONS(324), 1, - anon_sym_DOT, + STATE(1119), 1, + sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1192), 2, + ACTIONS(2158), 2, anon_sym_COMMA, anon_sym_RPAREN, - [50161] = 5, + [50504] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2113), 1, + ACTIONS(2104), 1, anon_sym_COLON, - STATE(1144), 1, + STATE(1172), 1, sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2111), 2, + ACTIONS(2102), 2, anon_sym_COMMA, anon_sym_RPAREN, - [50179] = 5, + [50522] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2123), 1, + ACTIONS(2160), 1, anon_sym_COMMA, - STATE(871), 1, + STATE(887), 1, aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2126), 2, + ACTIONS(2163), 2, anon_sym_RPAREN, anon_sym_RBRACK, - [50197] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2062), 1, - sym__name, - STATE(981), 1, - sym_record_update_argument, - STATE(1240), 1, - sym_label, - STATE(1265), 1, - sym_record_update_arguments, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [50217] = 5, + [50540] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2130), 1, - anon_sym_DASH, - STATE(883), 1, - aux_sym_constant_bit_string_segment_options_repeat1, + ACTIONS(2104), 1, + anon_sym_COLON, + STATE(1148), 1, + sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2128), 2, + ACTIONS(2158), 2, anon_sym_COMMA, - anon_sym_GT_GT, - [50235] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2132), 1, - anon_sym_PIPE, - STATE(858), 1, - aux_sym_case_clause_patterns_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1490), 2, - anon_sym_if, - anon_sym_DASH_GT, - [50253] = 6, + anon_sym_RPAREN, + [50558] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(701), 1, - anon_sym_RBRACK, - ACTIONS(703), 1, - anon_sym_DOT_DOT, - ACTIONS(2134), 1, - anon_sym_COMMA, - STATE(826), 1, - aux_sym_tuple_repeat1, + ACTIONS(481), 1, + sym__name, + ACTIONS(1896), 1, + sym__discard_name, + STATE(914), 1, + sym_discard, + STATE(924), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [50273] = 5, + [50578] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2136), 1, + ACTIONS(2165), 1, anon_sym_DQUOTE2, - STATE(876), 1, + STATE(890), 1, aux_sym_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2138), 2, + ACTIONS(2167), 2, sym_quoted_content, sym_escape_sequence, - [50291] = 5, + [50596] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2143), 1, + ACTIONS(2172), 1, anon_sym_DASH, - STATE(877), 1, - aux_sym_pattern_bit_string_segment_options_repeat1, + STATE(900), 1, + aux_sym_constant_bit_string_segment_options_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2141), 2, + ACTIONS(2170), 2, anon_sym_COMMA, anon_sym_GT_GT, - [50309] = 6, + [50614] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2062), 1, + ACTIONS(2118), 1, sym__name, - STATE(981), 1, + STATE(992), 1, sym_record_update_argument, - STATE(1191), 1, - sym_record_update_arguments, - STATE(1240), 1, + STATE(1215), 1, sym_label, + STATE(1262), 1, + sym_record_update_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [50329] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2148), 1, - sym__decimal, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2146), 3, - sym__hex, - sym__octal, - sym__binary, - [50345] = 5, + [50634] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2152), 1, - anon_sym_DASH, - STATE(860), 1, - aux_sym_pattern_bit_string_segment_options_repeat1, + ACTIONS(2176), 1, + anon_sym_PIPE, + STATE(894), 1, + aux_sym_case_clause_patterns_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2150), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [50363] = 5, + ACTIONS(2174), 2, + anon_sym_if, + anon_sym_DASH_GT, + [50652] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2154), 1, - anon_sym_DQUOTE2, - STATE(855), 1, - aux_sym_string_repeat1, + ACTIONS(2178), 1, + anon_sym_PIPE, + STATE(873), 1, + aux_sym_case_clause_patterns_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2156), 2, - sym_quoted_content, - sym_escape_sequence, - [50381] = 6, + ACTIONS(1518), 2, + anon_sym_if, + anon_sym_DASH_GT, + [50670] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2062), 1, + ACTIONS(2118), 1, sym__name, - ACTIONS(2158), 1, - anon_sym_RPAREN, - STATE(1104), 1, + STATE(992), 1, sym_record_update_argument, - STATE(1240), 1, + STATE(1197), 1, + sym_record_update_arguments, + STATE(1215), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [50401] = 5, + [50690] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2160), 1, + ACTIONS(2182), 1, anon_sym_DASH, - STATE(891), 1, - aux_sym_constant_bit_string_segment_options_repeat1, + STATE(854), 1, + aux_sym_expression_bit_string_segment_options_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1060), 2, + ACTIONS(2180), 2, anon_sym_COMMA, anon_sym_GT_GT, - [50419] = 6, + [50708] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(725), 1, - anon_sym_RBRACK, - ACTIONS(727), 1, - anon_sym_DOT_DOT, - ACTIONS(2162), 1, - anon_sym_COMMA, - STATE(826), 1, - aux_sym_tuple_repeat1, + ACTIONS(2186), 1, + anon_sym_LPAREN, + STATE(1151), 1, + sym_data_constructor_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [50439] = 5, + ACTIONS(2184), 2, + anon_sym_RBRACE, + sym__upname, + [50726] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2164), 1, - anon_sym_DQUOTE2, - STATE(876), 1, - aux_sym_string_repeat1, + ACTIONS(2190), 1, + anon_sym_DASH, + STATE(898), 1, + aux_sym_pattern_bit_string_segment_options_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2082), 2, - sym_quoted_content, - sym_escape_sequence, - [50457] = 5, + ACTIONS(2188), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [50744] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2166), 1, + ACTIONS(2193), 1, anon_sym_DQUOTE2, - STATE(885), 1, + STATE(868), 1, aux_sym_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2168), 2, + ACTIONS(2195), 2, sym_quoted_content, sym_escape_sequence, - [50475] = 4, + [50762] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2172), 1, - sym__decimal, + ACTIONS(2197), 1, + anon_sym_DASH, + STATE(862), 1, + aux_sym_constant_bit_string_segment_options_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2170), 3, - sym__hex, - sym__octal, - sym__binary, - [50491] = 5, + ACTIONS(1074), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [50780] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2113), 1, - anon_sym_COLON, - STATE(1152), 1, - sym__type_annotation, + ACTIONS(2118), 1, + sym__name, + STATE(992), 1, + sym_record_update_argument, + STATE(1188), 1, + sym_record_update_arguments, + STATE(1215), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2174), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [50509] = 5, + [50800] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2113), 1, - anon_sym_COLON, - STATE(1145), 1, - sym__type_annotation, + ACTIONS(1958), 1, + sym__name, + ACTIONS(2199), 1, + anon_sym_LPAREN, + STATE(1176), 1, + sym_anonymous_function_parameters, + STATE(1177), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2174), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [50527] = 6, + [50820] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2062), 1, - sym__name, - STATE(981), 1, - sym_record_update_argument, - STATE(1172), 1, - sym_record_update_arguments, - STATE(1240), 1, - sym_label, + ACTIONS(2203), 1, + anon_sym_DASH, + STATE(869), 1, + aux_sym_pattern_bit_string_segment_options_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [50547] = 5, + ACTIONS(2201), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [50838] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2178), 1, - anon_sym_DASH, - STATE(891), 1, - aux_sym_constant_bit_string_segment_options_repeat1, + STATE(1224), 1, + sym_target, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2176), 2, - anon_sym_COMMA, + ACTIONS(2205), 2, + anon_sym_erlang, + anon_sym_javascript, + [50853] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(908), 1, anon_sym_GT_GT, - [50565] = 6, + ACTIONS(2207), 1, + anon_sym_COMMA, + STATE(923), 1, + aux_sym__expression_bit_string_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [50870] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(481), 1, - sym__name, - ACTIONS(1896), 1, - sym__discard_name, - STATE(945), 1, - sym_identifier, - STATE(947), 1, - sym_discard, + ACTIONS(1532), 1, + anon_sym_GT_GT, + ACTIONS(2209), 1, + anon_sym_COMMA, + STATE(911), 1, + aux_sym__pattern_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [50585] = 6, + [50887] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1958), 1, - sym__name, - ACTIONS(2181), 1, - anon_sym_LPAREN, - STATE(1091), 1, - sym_function_parameters, - STATE(1161), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [50605] = 5, + ACTIONS(2211), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [50900] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2185), 1, - anon_sym_PIPE, - STATE(874), 1, - aux_sym_case_clause_patterns_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2183), 2, - anon_sym_if, - anon_sym_DASH_GT, - [50623] = 5, + ACTIONS(2213), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DOT_DOT, + [50913] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2189), 1, - anon_sym_DASH, - STATE(896), 1, - aux_sym_expression_bit_string_segment_options_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2187), 2, + ACTIONS(2215), 3, anon_sym_COMMA, anon_sym_GT_GT, - [50641] = 5, + anon_sym_DASH, + [50926] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2191), 1, - anon_sym_DASH, - STATE(853), 1, - aux_sym_expression_bit_string_segment_options_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1081), 2, + ACTIONS(2188), 3, anon_sym_COMMA, anon_sym_GT_GT, - [50659] = 5, + anon_sym_DASH, + [50939] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2195), 1, - anon_sym_LPAREN, - STATE(1084), 1, - sym_data_constructor_arguments, + ACTIONS(2217), 1, + anon_sym_COMMA, + ACTIONS(2220), 1, + anon_sym_GT_GT, + STATE(911), 1, + aux_sym__pattern_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2193), 2, - anon_sym_RBRACE, - sym__upname, - [50677] = 5, + [50956] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1765), 1, + ACTIONS(2222), 1, anon_sym_RPAREN, - ACTIONS(2197), 1, - anon_sym_COMMA, - STATE(980), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(2224), 1, + sym__name, + STATE(1086), 1, + sym_type_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [50694] = 5, + [50973] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2199), 1, + ACTIONS(2226), 1, anon_sym_COMMA, - ACTIONS(2202), 1, - anon_sym_GT_GT, - STATE(899), 1, - aux_sym__constant_bit_string_repeat1, + ACTIONS(2228), 1, + anon_sym_RPAREN, + STATE(962), 1, + aux_sym_case_clause_pattern_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [50711] = 5, + [50990] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2204), 1, - anon_sym_COMMA, - ACTIONS(2206), 1, - anon_sym_GT_GT, - STATE(919), 1, - aux_sym__constant_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [50728] = 3, + ACTIONS(2230), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [51003] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2208), 3, + ACTIONS(2232), 3, anon_sym_COMMA, - anon_sym_EQ, anon_sym_RPAREN, - [50741] = 5, + anon_sym_COLON, + [51016] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2210), 1, + ACTIONS(2234), 1, anon_sym_COMMA, - ACTIONS(2212), 1, + ACTIONS(2237), 1, anon_sym_RPAREN, - STATE(930), 1, - aux_sym_external_function_parameters_repeat1, + STATE(916), 1, + aux_sym_constant_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [50758] = 5, + [51033] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2214), 1, - anon_sym_COMMA, - ACTIONS(2216), 1, + ACTIONS(1779), 1, anon_sym_RPAREN, - STATE(909), 1, - aux_sym_arguments_repeat1, + ACTIONS(2239), 1, + anon_sym_COMMA, + STATE(1021), 1, + aux_sym_type_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [50775] = 5, + [51050] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2218), 1, + ACTIONS(1797), 1, anon_sym_RPAREN, - ACTIONS(2220), 1, - sym__name, - STATE(1137), 1, - sym_type_parameter, + ACTIONS(2241), 1, + anon_sym_COMMA, + STATE(1012), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [50792] = 5, + [51067] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2243), 1, + anon_sym_if, + ACTIONS(2245), 1, + anon_sym_DASH_GT, + STATE(1220), 1, + sym_case_clause_guard, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [51084] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2218), 1, - anon_sym_RPAREN, ACTIONS(2222), 1, + anon_sym_RPAREN, + ACTIONS(2247), 1, anon_sym_COMMA, - STATE(952), 1, + STATE(1014), 1, aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [50809] = 5, + [51101] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2224), 1, - anon_sym_COMMA, - ACTIONS(2227), 1, - anon_sym_RPAREN, - STATE(906), 1, - aux_sym_function_parameters_repeat1, + ACTIONS(2249), 1, + anon_sym_EQ, + ACTIONS(2251), 1, + anon_sym_COLON, + STATE(1253), 1, + sym__constant_type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [50826] = 5, + [51118] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2229), 1, - anon_sym_COMMA, - ACTIONS(2231), 1, + ACTIONS(1791), 1, anon_sym_RPAREN, - STATE(840), 1, - aux_sym_case_clause_pattern_repeat1, + ACTIONS(2253), 1, + anon_sym_COMMA, + STATE(1012), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [50843] = 5, + [51135] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2233), 1, + ACTIONS(2255), 1, anon_sym_COMMA, - ACTIONS(2236), 1, + ACTIONS(2258), 1, anon_sym_GT_GT, - STATE(908), 1, - aux_sym__pattern_bit_string_repeat1, + STATE(923), 1, + aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [50860] = 5, + [51152] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(409), 1, - anon_sym_RPAREN, - ACTIONS(2238), 1, - anon_sym_COMMA, - STATE(910), 1, - aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [50877] = 5, + ACTIONS(2260), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [51165] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2240), 1, + ACTIONS(2262), 1, anon_sym_COMMA, - ACTIONS(2243), 1, + ACTIONS(2265), 1, anon_sym_RPAREN, - STATE(910), 1, - aux_sym_arguments_repeat1, + STATE(925), 1, + aux_sym_constant_record_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [50894] = 5, + [51182] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1978), 1, - anon_sym_RBRACE, - ACTIONS(2245), 1, + ACTIONS(387), 1, + anon_sym_RPAREN, + ACTIONS(2267), 1, anon_sym_COMMA, - STATE(982), 1, - aux_sym_unqualified_imports_repeat1, + STATE(942), 1, + aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [50911] = 5, + [51199] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2247), 1, - anon_sym_EQ, - ACTIONS(2249), 1, + ACTIONS(2271), 1, anon_sym_COLON, - STATE(1269), 1, - sym__constant_type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [50928] = 5, + ACTIONS(2269), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [51214] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(757), 1, + ACTIONS(1759), 1, anon_sym_RPAREN, - ACTIONS(2251), 1, + ACTIONS(2273), 1, anon_sym_COMMA, - STATE(826), 1, - aux_sym_tuple_repeat1, + STATE(997), 1, + aux_sym_data_constructor_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [50945] = 4, + [51231] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2255), 1, - anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2253), 2, + ACTIONS(2275), 3, anon_sym_COMMA, anon_sym_GT_GT, - [50960] = 5, + anon_sym_DASH, + [51244] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2257), 1, + ACTIONS(2277), 1, anon_sym_COMMA, - ACTIONS(2259), 1, - anon_sym_RPAREN, - STATE(983), 1, - aux_sym_constant_tuple_repeat1, + ACTIONS(2279), 1, + anon_sym_GT_GT, + STATE(905), 1, + aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [50977] = 5, + [51261] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1666), 1, - anon_sym_RBRACK, - ACTIONS(2261), 1, + ACTIONS(2281), 1, + anon_sym_RBRACE, + ACTIONS(2283), 1, anon_sym_COMMA, - STATE(871), 1, - aux_sym_constant_tuple_repeat1, + STATE(956), 1, + aux_sym_unqualified_imports_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [50994] = 5, + [51278] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2249), 1, - anon_sym_COLON, - ACTIONS(2263), 1, - anon_sym_EQ, - STATE(1215), 1, - sym__constant_type_annotation, + ACTIONS(2287), 1, + anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51011] = 5, + ACTIONS(2285), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [51293] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2265), 1, - anon_sym_COMMA, - ACTIONS(2267), 1, - anon_sym_GT_GT, - STATE(1031), 1, - aux_sym__expression_bit_string_repeat1, + ACTIONS(473), 1, + anon_sym_DQUOTE, + STATE(485), 1, + sym_external_function_body, + STATE(1133), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51028] = 5, + [51310] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1602), 1, - anon_sym_GT_GT, - ACTIONS(2269), 1, - anon_sym_COMMA, - STATE(899), 1, - aux_sym__constant_bit_string_repeat1, + ACTIONS(2289), 1, + anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51045] = 5, + ACTIONS(2285), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [51325] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2271), 1, - anon_sym_LBRACE, - ACTIONS(2273), 1, + ACTIONS(779), 1, + anon_sym_RPAREN, + ACTIONS(2291), 1, anon_sym_COMMA, - STATE(826), 1, + STATE(822), 1, aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51062] = 5, + [51342] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2275), 1, + ACTIONS(2293), 1, anon_sym_COMMA, - ACTIONS(2277), 1, + ACTIONS(2296), 1, anon_sym_RPAREN, - STATE(990), 1, - aux_sym_constant_record_arguments_repeat1, + STATE(936), 1, + aux_sym_external_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51079] = 3, + [51359] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2279), 3, + ACTIONS(2298), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, - [51092] = 5, + [51372] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2281), 1, + ACTIONS(2300), 1, anon_sym_COMMA, - ACTIONS(2283), 1, - anon_sym_RPAREN, - STATE(993), 1, - aux_sym_constant_tuple_type_repeat1, + ACTIONS(2302), 1, + anon_sym_RBRACK, + STATE(963), 1, + aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51109] = 5, + [51389] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2285), 1, + ACTIONS(2306), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2304), 2, anon_sym_COMMA, - ACTIONS(2288), 1, anon_sym_GT_GT, - STATE(924), 1, - aux_sym__expression_bit_string_repeat1, + [51404] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2308), 1, + anon_sym_COMMA, + ACTIONS(2310), 1, + anon_sym_GT_GT, + STATE(966), 1, + aux_sym__constant_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51126] = 3, + [51421] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2290), 3, + ACTIONS(2312), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, - [51139] = 5, + [51434] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2292), 1, + ACTIONS(2314), 1, anon_sym_COMMA, - ACTIONS(2294), 1, + ACTIONS(2317), 1, anon_sym_RPAREN, - STATE(997), 1, - aux_sym_constant_type_arguments_repeat1, + STATE(942), 1, + aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51156] = 4, + [51451] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2298), 1, - anon_sym_as, + ACTIONS(385), 1, + anon_sym_RPAREN, + ACTIONS(2319), 1, + anon_sym_COMMA, + STATE(942), 1, + aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2296), 2, - anon_sym_RBRACE, + [51468] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2321), 1, + anon_sym_COMMA, + ACTIONS(2323), 1, + anon_sym_RPAREN, + STATE(996), 1, + aux_sym_external_function_parameters_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [51485] = 3, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2325), 3, anon_sym_COMMA, - [51171] = 3, + anon_sym_GT_GT, + anon_sym_DASH, + [51498] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2071), 3, + ACTIONS(2327), 3, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_DASH, - [51184] = 5, + [51511] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(427), 1, + ACTIONS(1877), 1, anon_sym_RPAREN, - ACTIONS(2300), 1, + ACTIONS(2329), 1, anon_sym_COMMA, - STATE(910), 1, - aux_sym_arguments_repeat1, + STATE(972), 1, + aux_sym_constant_type_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51201] = 5, + [51528] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1783), 1, + ACTIONS(765), 1, anon_sym_RPAREN, - ACTIONS(2302), 1, + ACTIONS(2331), 1, anon_sym_COMMA, - STATE(1001), 1, - aux_sym_external_function_parameters_repeat1, + STATE(822), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51218] = 5, + [51545] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2304), 1, - anon_sym_LPAREN, - ACTIONS(2306), 1, - anon_sym_DASH_GT, - STATE(1253), 1, - sym_function_parameter_types, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51235] = 5, + ACTIONS(2333), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [51558] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(775), 1, + ACTIONS(1879), 1, anon_sym_RPAREN, - ACTIONS(2308), 1, + ACTIONS(2335), 1, anon_sym_COMMA, - STATE(826), 1, - aux_sym_tuple_repeat1, + STATE(916), 1, + aux_sym_constant_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51252] = 5, + [51575] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2310), 1, - anon_sym_COMMA, - ACTIONS(2312), 1, - anon_sym_RPAREN, - STATE(929), 1, - aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51269] = 5, + ACTIONS(2337), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [51588] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2314), 1, + ACTIONS(2339), 1, anon_sym_COMMA, - ACTIONS(2316), 1, + ACTIONS(2341), 1, anon_sym_RPAREN, - STATE(905), 1, - aux_sym_type_parameters_repeat1, + STATE(943), 1, + aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51286] = 5, + [51605] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(881), 1, - anon_sym_GT_GT, - ACTIONS(2318), 1, + ACTIONS(1556), 1, + anon_sym_RPAREN, + ACTIONS(2343), 1, anon_sym_COMMA, - STATE(924), 1, - aux_sym__expression_bit_string_repeat1, + STATE(925), 1, + aux_sym_constant_record_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51303] = 5, + [51622] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1910), 1, - anon_sym_RPAREN, - ACTIONS(2320), 1, + ACTIONS(2345), 1, anon_sym_COMMA, - STATE(906), 1, - aux_sym_function_parameters_repeat1, + ACTIONS(2348), 1, + anon_sym_GT_GT, + STATE(954), 1, + aux_sym__constant_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51320] = 5, + [51639] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2322), 1, + ACTIONS(878), 1, + anon_sym_GT_GT, + ACTIONS(2350), 1, anon_sym_COMMA, - ACTIONS(2324), 1, - anon_sym_RPAREN, - STATE(1009), 1, - aux_sym_data_constructor_arguments_repeat1, + STATE(923), 1, + aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51337] = 5, + [51656] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2326), 1, + ACTIONS(1986), 1, + anon_sym_RBRACE, + ACTIONS(2352), 1, anon_sym_COMMA, - ACTIONS(2328), 1, - anon_sym_RPAREN, - STATE(1011), 1, - aux_sym_tuple_type_repeat1, + STATE(982), 1, + aux_sym_unqualified_imports_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51354] = 4, + [51673] = 5, ACTIONS(3), 1, sym_module_comment, - STATE(1208), 1, - sym_target, + ACTIONS(2354), 1, + anon_sym_COMMA, + ACTIONS(2356), 1, + anon_sym_RPAREN, + STATE(1017), 1, + aux_sym_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2330), 2, - anon_sym_erlang, - anon_sym_javascript, - [51369] = 5, + [51690] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2113), 1, + ACTIONS(2104), 1, anon_sym_COLON, - ACTIONS(2332), 1, + ACTIONS(2358), 1, anon_sym_EQ, - STATE(1175), 1, + STATE(1186), 1, sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51386] = 5, + [51707] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2334), 1, + ACTIONS(2360), 1, anon_sym_COMMA, - ACTIONS(2336), 1, - anon_sym_GT_GT, - STATE(954), 1, - aux_sym__pattern_bit_string_repeat1, + ACTIONS(2362), 1, + anon_sym_RPAREN, + STATE(926), 1, + aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51403] = 4, + [51724] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2340), 1, - anon_sym_COLON, + ACTIONS(2364), 1, + anon_sym_LPAREN, + ACTIONS(2366), 1, + anon_sym_DASH_GT, + STATE(1193), 1, + sym_function_parameter_types, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2338), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [51418] = 5, + [51741] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2342), 1, + ACTIONS(2368), 1, anon_sym_COMMA, - ACTIONS(2344), 1, + ACTIONS(2370), 1, anon_sym_GT_GT, - STATE(935), 1, + STATE(955), 1, aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51435] = 4, + [51758] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2348), 1, - anon_sym_COLON, + ACTIONS(2372), 1, + anon_sym_COMMA, + ACTIONS(2374), 1, + anon_sym_RPAREN, + STATE(851), 1, + aux_sym_case_clause_pattern_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2346), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [51450] = 3, + [51775] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1644), 1, + anon_sym_RBRACK, + ACTIONS(2376), 1, + anon_sym_COMMA, + STATE(887), 1, + aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2350), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [51463] = 5, + [51792] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2113), 1, - anon_sym_COLON, - ACTIONS(2352), 1, - anon_sym_EQ, - STATE(1180), 1, - sym__type_annotation, + ACTIONS(2132), 1, + anon_sym_RPAREN, + ACTIONS(2378), 1, + anon_sym_COMMA, + STATE(1047), 1, + aux_sym_record_update_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51480] = 3, + [51809] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2354), 3, + ACTIONS(2380), 3, anon_sym_COMMA, + anon_sym_EQ, anon_sym_RPAREN, - anon_sym_COLON, - [51493] = 5, + [51822] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2356), 1, + ACTIONS(1610), 1, + anon_sym_GT_GT, + ACTIONS(2382), 1, anon_sym_COMMA, - ACTIONS(2358), 1, - anon_sym_RPAREN, - STATE(1012), 1, - aux_sym_tuple_type_repeat1, + STATE(954), 1, + aux_sym__constant_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51510] = 5, + [51839] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2360), 1, + ACTIONS(2384), 1, anon_sym_COMMA, - ACTIONS(2362), 1, + ACTIONS(2386), 1, anon_sym_RPAREN, - STATE(898), 1, - aux_sym_type_arguments_repeat1, + STATE(953), 1, + aux_sym_constant_record_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51527] = 5, + [51856] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2364), 1, - anon_sym_COMMA, - ACTIONS(2366), 1, - anon_sym_RPAREN, - STATE(907), 1, - aux_sym_case_clause_pattern_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51544] = 5, + ACTIONS(2388), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [51869] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2220), 1, - sym__name, - ACTIONS(2368), 1, - anon_sym_RPAREN, - STATE(1137), 1, - sym_type_parameter, + ACTIONS(2104), 1, + anon_sym_COLON, + ACTIONS(2390), 1, + anon_sym_EQ, + STATE(1201), 1, + sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51561] = 5, + [51886] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2370), 1, - anon_sym_COMMA, - ACTIONS(2373), 1, - anon_sym_RPAREN, - STATE(952), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(2251), 1, + anon_sym_COLON, + ACTIONS(2392), 1, + anon_sym_EQ, + STATE(1226), 1, + sym__constant_type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51578] = 3, + [51903] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2394), 1, + anon_sym_COMMA, + ACTIONS(2396), 1, + anon_sym_RPAREN, + STATE(950), 1, + aux_sym_constant_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2375), 3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DASH, - [51591] = 5, + [51920] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1532), 1, - anon_sym_GT_GT, - ACTIONS(2377), 1, + ACTIONS(2398), 1, anon_sym_COMMA, - STATE(908), 1, - aux_sym__pattern_bit_string_repeat1, + ACTIONS(2401), 1, + anon_sym_RPAREN, + STATE(972), 1, + aux_sym_constant_type_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51608] = 3, + [51937] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2403), 1, + anon_sym_LBRACE, + ACTIONS(2405), 1, + anon_sym_COMMA, + STATE(822), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2379), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [51621] = 4, + [51954] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2381), 1, - anon_sym_as, + ACTIONS(439), 1, + anon_sym_RPAREN, + ACTIONS(2407), 1, + anon_sym_COMMA, + STATE(942), 1, + aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2296), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [51636] = 3, + [51971] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2383), 3, + ACTIONS(2163), 3, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_DOT_DOT, - [51649] = 5, + anon_sym_RBRACK, + [51984] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2385), 1, - anon_sym_RBRACE, - ACTIONS(2387), 1, + ACTIONS(1622), 1, + anon_sym_RPAREN, + ACTIONS(2409), 1, anon_sym_COMMA, - STATE(911), 1, - aux_sym_unqualified_imports_repeat1, + STATE(887), 1, + aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51666] = 5, + [52001] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2113), 1, - anon_sym_COLON, - ACTIONS(2389), 1, - anon_sym_EQ, - STATE(1190), 1, - sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51683] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(387), 1, - anon_sym_RPAREN, - ACTIONS(2391), 1, + ACTIONS(2411), 3, anon_sym_COMMA, - STATE(910), 1, - aux_sym_arguments_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [51700] = 3, + anon_sym_GT_GT, + anon_sym_DASH, + [52014] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2069), 3, + ACTIONS(2413), 3, anon_sym_COMMA, + anon_sym_EQ, anon_sym_RPAREN, - anon_sym_DOT_DOT, - [51713] = 5, + [52027] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2393), 1, - anon_sym_if, - ACTIONS(2395), 1, - anon_sym_DASH_GT, - STATE(1210), 1, - sym_case_clause_guard, + ACTIONS(749), 1, + anon_sym_RPAREN, + ACTIONS(2415), 1, + anon_sym_COMMA, + STATE(822), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51730] = 5, + [52044] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(729), 1, - anon_sym_RPAREN, - ACTIONS(2397), 1, + ACTIONS(2417), 1, anon_sym_COMMA, - STATE(826), 1, - aux_sym_tuple_repeat1, + ACTIONS(2419), 1, + anon_sym_GT_GT, + STATE(906), 1, + aux_sym__pattern_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51747] = 3, + [52061] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2423), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2399), 3, + ACTIONS(2421), 2, anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_DASH, - [51760] = 5, + [52076] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2062), 1, + ACTIONS(2425), 1, + anon_sym_RBRACE, + ACTIONS(2427), 1, + anon_sym_COMMA, + STATE(982), 1, + aux_sym_unqualified_imports_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [52093] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2118), 1, sym__name, - STATE(1104), 1, + STATE(1061), 1, sym_record_update_argument, - STATE(1240), 1, + STATE(1215), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51777] = 5, + [52110] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2401), 1, + ACTIONS(2430), 1, anon_sym_COMMA, - ACTIONS(2403), 1, + ACTIONS(2432), 1, anon_sym_RPAREN, - STATE(960), 1, + STATE(974), 1, aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51794] = 3, + [52127] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(884), 1, + anon_sym_GT_GT, + ACTIONS(2434), 1, + anon_sym_COMMA, + STATE(923), 1, + aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2405), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [51807] = 5, + [52144] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(904), 1, - anon_sym_GT_GT, - ACTIONS(2407), 1, + ACTIONS(1970), 1, + anon_sym_RPAREN, + ACTIONS(2436), 1, anon_sym_COMMA, - STATE(924), 1, - aux_sym__expression_bit_string_repeat1, + STATE(1037), 1, + aux_sym_anonymous_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51824] = 3, + [52161] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2438), 1, + anon_sym_COMMA, + ACTIONS(2440), 1, + anon_sym_RPAREN, + STATE(947), 1, + aux_sym_constant_type_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2409), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [51837] = 3, + [52178] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2104), 1, + anon_sym_COLON, + ACTIONS(2442), 1, + anon_sym_EQ, + STATE(1208), 1, + sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2411), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [51850] = 3, + [52195] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2444), 1, + anon_sym_COMMA, + ACTIONS(2446), 1, + anon_sym_GT_GT, + STATE(985), 1, + aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2413), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [51863] = 3, + [52212] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2415), 3, + ACTIONS(2448), 3, anon_sym_COMMA, + anon_sym_EQ, anon_sym_RPAREN, - anon_sym_DOT_DOT, - [51876] = 3, + [52225] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2176), 3, + ACTIONS(2084), 3, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_DASH, - [51889] = 3, + [52238] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2450), 1, + anon_sym_COMMA, + ACTIONS(2452), 1, + anon_sym_RPAREN, + STATE(964), 1, + aux_sym_record_update_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2090), 3, - anon_sym_if, - anon_sym_DASH_GT, - anon_sym_PIPE, - [51902] = 5, + [52255] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2113), 1, - anon_sym_COLON, - ACTIONS(2417), 1, - anon_sym_EQ, - STATE(1225), 1, - sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51919] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2419), 1, + ACTIONS(2454), 3, anon_sym_COMMA, - ACTIONS(2422), 1, anon_sym_RPAREN, - STATE(976), 1, - aux_sym_record_update_arguments_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [51936] = 5, + anon_sym_COLON, + [52268] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2424), 1, - anon_sym_COMMA, - ACTIONS(2426), 1, - anon_sym_GT_GT, - STATE(968), 1, - aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51953] = 5, + ACTIONS(2456), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [52281] = 5, ACTIONS(3), 1, sym_module_comment, ACTIONS(473), 1, anon_sym_DQUOTE, - STATE(446), 1, + STATE(791), 1, sym_external_function_body, - STATE(1071), 1, + STATE(1101), 1, sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51970] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2428), 3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DASH, - [51983] = 5, + [52298] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2430), 1, - anon_sym_COMMA, - ACTIONS(2433), 1, + ACTIONS(1771), 1, anon_sym_RPAREN, - STATE(980), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(2458), 1, + anon_sym_COMMA, + STATE(936), 1, + aux_sym_external_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52000] = 5, + [52315] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2435), 1, + ACTIONS(2460), 1, anon_sym_COMMA, - ACTIONS(2437), 1, + ACTIONS(2463), 1, anon_sym_RPAREN, - STATE(1040), 1, - aux_sym_record_update_arguments_repeat1, + STATE(997), 1, + aux_sym_data_constructor_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52017] = 5, + [52332] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2439), 1, - anon_sym_RBRACE, - ACTIONS(2441), 1, + ACTIONS(2465), 1, anon_sym_COMMA, - STATE(982), 1, - aux_sym_unqualified_imports_repeat1, + ACTIONS(2467), 1, + anon_sym_RPAREN, + STATE(928), 1, + aux_sym_data_constructor_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52034] = 5, + [52349] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1630), 1, - anon_sym_RPAREN, - ACTIONS(2444), 1, + ACTIONS(2469), 1, anon_sym_COMMA, - STATE(871), 1, - aux_sym_constant_tuple_repeat1, + ACTIONS(2471), 1, + anon_sym_RPAREN, + STATE(922), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52051] = 5, + [52366] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2446), 1, - anon_sym_COMMA, - ACTIONS(2448), 1, + ACTIONS(2224), 1, + sym__name, + ACTIONS(2473), 1, anon_sym_RPAREN, - STATE(936), 1, - aux_sym_function_parameters_repeat1, + STATE(1016), 1, + sym_type_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52068] = 5, + [52383] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2249), 1, + ACTIONS(2251), 1, anon_sym_COLON, - ACTIONS(2450), 1, + ACTIONS(2475), 1, anon_sym_EQ, - STATE(1258), 1, + STATE(1269), 1, sym__constant_type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52085] = 3, + [52400] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2477), 1, + anon_sym_COMMA, + ACTIONS(2479), 1, + anon_sym_RPAREN, + STATE(986), 1, + aux_sym_anonymous_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2126), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [52098] = 5, + [52417] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2452), 1, + ACTIONS(2481), 1, anon_sym_COMMA, - ACTIONS(2455), 1, + ACTIONS(2483), 1, anon_sym_RPAREN, - STATE(987), 1, + STATE(918), 1, aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52115] = 5, + [52434] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2457), 1, + ACTIONS(2485), 1, anon_sym_COMMA, - ACTIONS(2459), 1, + ACTIONS(2487), 1, anon_sym_GT_GT, - STATE(1007), 1, + STATE(1023), 1, aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52132] = 5, + [52451] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(473), 1, - anon_sym_DQUOTE, - STATE(787), 1, - sym_external_function_body, - STATE(1085), 1, - sym_string, + ACTIONS(1783), 1, + anon_sym_RPAREN, + ACTIONS(2489), 1, + anon_sym_COMMA, + STATE(1021), 1, + aux_sym_type_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52149] = 5, + [52468] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1556), 1, + ACTIONS(1789), 1, anon_sym_RPAREN, - ACTIONS(2461), 1, + ACTIONS(2491), 1, anon_sym_COMMA, - STATE(1037), 1, - aux_sym_constant_record_arguments_repeat1, + STATE(1012), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52166] = 3, + [52485] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2493), 1, + anon_sym_COMMA, + ACTIONS(2495), 1, + anon_sym_RPAREN, + STATE(917), 1, + aux_sym_type_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2463), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [52179] = 5, + [52502] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2113), 1, + ACTIONS(2104), 1, anon_sym_COLON, - ACTIONS(2465), 1, + ACTIONS(2497), 1, anon_sym_EQ, - STATE(1259), 1, + STATE(1274), 1, sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52196] = 5, + [52519] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1885), 1, - anon_sym_RPAREN, - ACTIONS(2467), 1, - anon_sym_COMMA, - STATE(1021), 1, - aux_sym_constant_tuple_type_repeat1, + ACTIONS(473), 1, + anon_sym_DQUOTE, + STATE(798), 1, + sym_external_function_body, + STATE(1101), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52213] = 5, + [52536] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2113), 1, + ACTIONS(2104), 1, anon_sym_COLON, - ACTIONS(2469), 1, + ACTIONS(2499), 1, anon_sym_EQ, - STATE(1268), 1, + STATE(1277), 1, sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52230] = 3, + [52553] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1568), 1, + anon_sym_RPAREN, + ACTIONS(2501), 1, + anon_sym_COMMA, + STATE(925), 1, + aux_sym_constant_record_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2471), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [52243] = 5, + [52570] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2473), 1, + ACTIONS(2503), 1, anon_sym_COMMA, - ACTIONS(2476), 1, + ACTIONS(2506), 1, anon_sym_RPAREN, - STATE(996), 1, - aux_sym_data_constructor_arguments_repeat1, + STATE(1012), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52260] = 5, + [52587] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1869), 1, + ACTIONS(2224), 1, + sym__name, + ACTIONS(2508), 1, anon_sym_RPAREN, - ACTIONS(2478), 1, - anon_sym_COMMA, - STATE(1017), 1, - aux_sym_constant_type_arguments_repeat1, + STATE(1086), 1, + sym_type_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52277] = 3, + [52604] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2480), 3, + ACTIONS(2510), 1, anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DASH, - [52290] = 3, - ACTIONS(3), 1, - sym_module_comment, + ACTIONS(2513), 1, + anon_sym_RPAREN, + STATE(1014), 1, + aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2482), 3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DASH, - [52303] = 5, + [52621] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1781), 1, + ACTIONS(1670), 1, anon_sym_RPAREN, - ACTIONS(2484), 1, + ACTIONS(2515), 1, anon_sym_COMMA, - STATE(980), 1, - aux_sym_type_arguments_repeat1, + STATE(887), 1, + aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52320] = 5, + [52638] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2486), 1, + ACTIONS(2517), 1, anon_sym_COMMA, - ACTIONS(2489), 1, + ACTIONS(2519), 1, anon_sym_RPAREN, - STATE(1001), 1, - aux_sym_external_function_parameters_repeat1, + STATE(920), 1, + aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52337] = 5, + [52655] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1785), 1, + ACTIONS(1894), 1, anon_sym_RPAREN, - ACTIONS(2491), 1, + ACTIONS(2521), 1, anon_sym_COMMA, - STATE(987), 1, - aux_sym_tuple_type_repeat1, + STATE(1028), 1, + aux_sym_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52354] = 5, + [52672] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(473), 1, - anon_sym_DQUOTE, - STATE(784), 1, - sym_external_function_body, - STATE(1085), 1, - sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52371] = 5, + ACTIONS(2089), 3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DASH, + [52685] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2220), 1, + ACTIONS(2224), 1, sym__name, - ACTIONS(2493), 1, + ACTIONS(2523), 1, anon_sym_RPAREN, - STATE(934), 1, + STATE(1086), 1, sym_type_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52388] = 5, + [52702] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1578), 1, + ACTIONS(2525), 1, + anon_sym_COMMA, + ACTIONS(2527), 1, anon_sym_RPAREN, - ACTIONS(2495), 1, + STATE(1005), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [52719] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2529), 1, anon_sym_COMMA, - STATE(1037), 1, - aux_sym_constant_record_arguments_repeat1, + ACTIONS(2532), 1, + anon_sym_RPAREN, + STATE(1021), 1, + aux_sym_type_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52405] = 5, + [52736] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(473), 1, - anon_sym_DQUOTE, - STATE(445), 1, - sym_external_function_body, - STATE(1071), 1, - sym_string, + ACTIONS(2534), 1, + anon_sym_COMMA, + ACTIONS(2536), 1, + anon_sym_RPAREN, + STATE(1006), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52422] = 5, + [52753] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(962), 1, + ACTIONS(928), 1, anon_sym_GT_GT, - ACTIONS(2497), 1, + ACTIONS(2538), 1, anon_sym_COMMA, - STATE(924), 1, + STATE(923), 1, aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52439] = 5, + [52770] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2220), 1, + ACTIONS(2224), 1, sym__name, - ACTIONS(2499), 1, + ACTIONS(2540), 1, anon_sym_RPAREN, - STATE(1026), 1, + STATE(1039), 1, sym_type_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52456] = 5, + [52787] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1726), 1, - anon_sym_RPAREN, - ACTIONS(2501), 1, + ACTIONS(2542), 1, anon_sym_COMMA, - STATE(996), 1, - aux_sym_data_constructor_arguments_repeat1, + ACTIONS(2544), 1, + anon_sym_RPAREN, + STATE(1011), 1, + aux_sym_constant_record_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52473] = 5, + [52804] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1642), 1, - anon_sym_RPAREN, - ACTIONS(2503), 1, + ACTIONS(1600), 1, + anon_sym_GT_GT, + ACTIONS(2546), 1, anon_sym_COMMA, - STATE(871), 1, - aux_sym_constant_tuple_repeat1, + STATE(954), 1, + aux_sym__constant_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52490] = 5, + [52821] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1797), 1, - anon_sym_RPAREN, - ACTIONS(2505), 1, + ACTIONS(1676), 1, + anon_sym_RBRACK, + ACTIONS(2548), 1, anon_sym_COMMA, - STATE(987), 1, - aux_sym_tuple_type_repeat1, + STATE(887), 1, + aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52507] = 5, + [52838] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1799), 1, - anon_sym_RPAREN, - ACTIONS(2507), 1, + ACTIONS(2550), 1, anon_sym_COMMA, - STATE(987), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(2553), 1, + anon_sym_RPAREN, + STATE(1028), 1, + aux_sym_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52524] = 5, + [52855] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2249), 1, + ACTIONS(2251), 1, anon_sym_COLON, - ACTIONS(2509), 1, + ACTIONS(2555), 1, anon_sym_EQ, - STATE(1274), 1, + STATE(1291), 1, sym__constant_type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52541] = 5, + [52872] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2511), 1, + ACTIONS(2557), 1, anon_sym_COMMA, - ACTIONS(2513), 1, - anon_sym_RBRACK, - STATE(916), 1, + ACTIONS(2559), 1, + anon_sym_RPAREN, + STATE(1015), 1, aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52558] = 5, + [52889] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2515), 1, + ACTIONS(2561), 1, anon_sym_COMMA, - ACTIONS(2517), 1, + ACTIONS(2563), 1, anon_sym_RPAREN, - STATE(1032), 1, + STATE(1040), 1, aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52575] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2220), 1, - sym__name, - ACTIONS(2519), 1, - anon_sym_RPAREN, - STATE(1137), 1, - sym_type_parameter, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [52592] = 5, + [52906] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2521), 1, + ACTIONS(1997), 1, + anon_sym_RBRACE, + ACTIONS(2565), 1, anon_sym_COMMA, - ACTIONS(2524), 1, - anon_sym_RPAREN, - STATE(1017), 1, - aux_sym_constant_type_arguments_repeat1, + STATE(982), 1, + aux_sym_unqualified_imports_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52609] = 5, + [52923] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2526), 1, - anon_sym_COMMA, - ACTIONS(2528), 1, - anon_sym_RPAREN, - STATE(1000), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(473), 1, + anon_sym_DQUOTE, + STATE(501), 1, + sym_external_function_body, + STATE(1133), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52626] = 3, + [52940] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2104), 1, + anon_sym_COLON, + ACTIONS(2567), 1, + anon_sym_EQ, + STATE(1203), 1, + sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2530), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [52639] = 5, + [52957] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(749), 1, + ACTIONS(763), 1, anon_sym_RPAREN, - ACTIONS(2532), 1, + ACTIONS(2569), 1, anon_sym_COMMA, - STATE(826), 1, + STATE(822), 1, aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52656] = 5, + [52974] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2534), 1, - anon_sym_COMMA, - ACTIONS(2537), 1, - anon_sym_RPAREN, - STATE(1021), 1, - aux_sym_constant_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52673] = 5, + ACTIONS(2122), 3, + anon_sym_if, + anon_sym_DASH_GT, + anon_sym_PIPE, + [52987] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2539), 1, + ACTIONS(2571), 1, anon_sym_COMMA, - ACTIONS(2541), 1, + ACTIONS(2574), 1, anon_sym_RPAREN, - STATE(1002), 1, - aux_sym_tuple_type_repeat1, + STATE(1037), 1, + aux_sym_anonymous_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52690] = 5, + [53004] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2543), 1, - anon_sym_COMMA, - ACTIONS(2545), 1, - anon_sym_RPAREN, - STATE(1005), 1, - aux_sym_constant_record_arguments_repeat1, + ACTIONS(2364), 1, + anon_sym_LPAREN, + ACTIONS(2576), 1, + anon_sym_DASH_GT, + STATE(1289), 1, + sym_function_parameter_types, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52707] = 5, + [53021] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1612), 1, - anon_sym_GT_GT, - ACTIONS(2547), 1, + ACTIONS(2578), 1, anon_sym_COMMA, - STATE(899), 1, - aux_sym__constant_bit_string_repeat1, + ACTIONS(2580), 1, + anon_sym_RPAREN, + STATE(1049), 1, + aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52724] = 5, + [53038] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2304), 1, - anon_sym_LPAREN, - ACTIONS(2549), 1, - anon_sym_DASH_GT, - STATE(1174), 1, - sym_function_parameter_types, + ACTIONS(397), 1, + anon_sym_RPAREN, + ACTIONS(2582), 1, + anon_sym_COMMA, + STATE(942), 1, + aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52741] = 5, + [53055] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2551), 1, + ACTIONS(2584), 1, + anon_sym_RBRACE, + ACTIONS(2586), 1, anon_sym_COMMA, - ACTIONS(2553), 1, - anon_sym_RPAREN, - STATE(1038), 1, - aux_sym_type_parameters_repeat1, + STATE(1032), 1, + aux_sym_unqualified_imports_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52758] = 3, + [53072] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2555), 3, + ACTIONS(2588), 3, anon_sym_COMMA, - anon_sym_EQ, anon_sym_RPAREN, - [52771] = 5, + anon_sym_DOT_DOT, + [53085] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1628), 1, - anon_sym_RBRACK, - ACTIONS(2557), 1, + ACTIONS(2590), 1, anon_sym_COMMA, - STATE(871), 1, + ACTIONS(2592), 1, + anon_sym_RBRACK, + STATE(1027), 1, aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52788] = 5, + [53102] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2559), 1, + ACTIONS(2594), 1, anon_sym_COMMA, - ACTIONS(2561), 1, + ACTIONS(2596), 1, + anon_sym_GT_GT, + STATE(1026), 1, + aux_sym__constant_bit_string_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [53119] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2598), 1, + anon_sym_COMMA, + ACTIONS(2600), 1, anon_sym_RPAREN, - STATE(1010), 1, + STATE(976), 1, aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52805] = 5, + [53136] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1980), 1, - anon_sym_RBRACE, - ACTIONS(2563), 1, - anon_sym_COMMA, - STATE(982), 1, - aux_sym_unqualified_imports_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52822] = 5, + ACTIONS(2130), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DOT_DOT, + [53149] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(956), 1, - anon_sym_GT_GT, - ACTIONS(2565), 1, + ACTIONS(2602), 1, anon_sym_COMMA, - STATE(924), 1, - aux_sym__expression_bit_string_repeat1, + ACTIONS(2605), 1, + anon_sym_RPAREN, + STATE(1047), 1, + aux_sym_record_update_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52839] = 5, + [53166] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(401), 1, + ACTIONS(2224), 1, + sym__name, + ACTIONS(2607), 1, anon_sym_RPAREN, - ACTIONS(2567), 1, - anon_sym_COMMA, - STATE(910), 1, - aux_sym_arguments_repeat1, + STATE(1086), 1, + sym_type_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52856] = 5, + [53183] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2569), 1, - anon_sym_RBRACE, - ACTIONS(2571), 1, + ACTIONS(2607), 1, + anon_sym_RPAREN, + ACTIONS(2609), 1, anon_sym_COMMA, - STATE(1030), 1, - aux_sym_unqualified_imports_repeat1, + STATE(1014), 1, + aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52873] = 3, + [53200] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2141), 3, + ACTIONS(2611), 2, anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DASH, - [52886] = 5, + anon_sym_RPAREN, + [53212] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2573), 1, - anon_sym_COMMA, - ACTIONS(2575), 1, - anon_sym_RBRACK, - STATE(1028), 1, - aux_sym_constant_tuple_repeat1, + ACTIONS(2613), 1, + anon_sym_LPAREN, + STATE(11), 1, + sym_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52903] = 5, + [53226] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2577), 1, - anon_sym_COMMA, - ACTIONS(2579), 1, - anon_sym_GT_GT, - STATE(1024), 1, - aux_sym__constant_bit_string_repeat1, + ACTIONS(1958), 1, + sym__name, + STATE(1054), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52920] = 5, + [53240] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2581), 1, - anon_sym_COMMA, - ACTIONS(2584), 1, - anon_sym_RPAREN, - STATE(1037), 1, - aux_sym_constant_record_arguments_repeat1, + ACTIONS(1958), 1, + sym__name, + STATE(1057), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52937] = 5, + [53254] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2586), 1, - anon_sym_COMMA, - ACTIONS(2588), 1, - anon_sym_RPAREN, - STATE(952), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(2615), 1, + anon_sym_LPAREN, + STATE(1278), 1, + sym_external_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52954] = 5, + [53268] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2220), 1, - sym__name, - ACTIONS(2588), 1, - anon_sym_RPAREN, - STATE(1137), 1, - sym_type_parameter, + ACTIONS(2617), 1, + anon_sym_LBRACE, + ACTIONS(2619), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52971] = 5, + [53282] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2158), 1, - anon_sym_RPAREN, - ACTIONS(2590), 1, - anon_sym_COMMA, - STATE(976), 1, - aux_sym_record_update_arguments_repeat1, + ACTIONS(2615), 1, + anon_sym_LPAREN, + STATE(1225), 1, + sym_external_function_parameters, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [53296] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2615), 1, + anon_sym_LPAREN, + STATE(1276), 1, + sym_external_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52988] = 4, + [53310] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(1958), 1, sym__name, - STATE(1076), 1, + STATE(1071), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53002] = 4, + [53324] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1958), 1, + ACTIONS(2621), 1, sym__name, - STATE(1096), 1, - sym_identifier, + STATE(398), 1, + sym_module, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53016] = 4, + [53338] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2592), 1, - anon_sym_LPAREN, - STATE(1209), 1, - sym_external_function_parameters, + ACTIONS(1718), 1, + sym__upname, + STATE(709), 1, + sym_type_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53030] = 3, + [53352] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2584), 2, + ACTIONS(2605), 2, anon_sym_COMMA, anon_sym_RPAREN, - [53042] = 4, + [53364] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2199), 1, + anon_sym_LPAREN, + STATE(1079), 1, + sym_anonymous_function_parameters, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [53378] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1958), 1, - sym__name, - STATE(1048), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53056] = 4, + ACTIONS(2623), 2, + anon_sym_LBRACE, + anon_sym_DASH_GT, + [53390] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(1958), 1, sym__name, - STATE(1050), 1, + STATE(921), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53070] = 3, + [53404] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2594), 2, + ACTIONS(2625), 2, anon_sym_COMMA, anon_sym_RPAREN, - [53082] = 4, + [53416] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2592), 1, + ACTIONS(2199), 1, anon_sym_LPAREN, - STATE(1262), 1, - sym_external_function_parameters, + STATE(1176), 1, + sym_anonymous_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53096] = 4, + [53430] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2596), 1, + ACTIONS(2627), 1, anon_sym_LBRACE, - ACTIONS(2598), 1, + ACTIONS(2629), 1, anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53110] = 4, + [53444] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2592), 1, - anon_sym_LPAREN, - STATE(1260), 1, - sym_external_function_parameters, + ACTIONS(2631), 1, + anon_sym_COMMA, + ACTIONS(2633), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53124] = 4, + [53458] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2600), 1, - anon_sym_LBRACE, - ACTIONS(2602), 1, - anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53138] = 4, + ACTIONS(2553), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [53470] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1958), 1, - sym__name, - STATE(1067), 1, - sym_identifier, + ACTIONS(2635), 1, + anon_sym_type, + ACTIONS(2637), 1, + anon_sym_fn, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53152] = 4, + [53484] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2639), 1, + anon_sym_LPAREN, + STATE(1090), 1, + sym_function_parameters, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [53498] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2604), 1, - anon_sym_LBRACE, - ACTIONS(2606), 1, - anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53166] = 4, + ACTIONS(2641), 2, + anon_sym_LBRACE, + anon_sym_DASH_GT, + [53510] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2608), 1, + ACTIONS(2643), 1, sym__name, - STATE(383), 1, - sym_module, + STATE(766), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53180] = 4, + [53524] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2592), 1, + ACTIONS(2639), 1, anon_sym_LPAREN, - STATE(1171), 1, - sym_external_function_parameters, + STATE(1093), 1, + sym_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53194] = 4, + [53538] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2220), 1, - sym__name, - STATE(1137), 1, - sym_type_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53208] = 3, + ACTIONS(2645), 2, + anon_sym_LBRACE, + anon_sym_DASH_GT, + [53550] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2199), 1, + anon_sym_LPAREN, + STATE(1080), 1, + sym_anonymous_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2537), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [53220] = 3, + [53564] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2524), 2, + ACTIONS(2647), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [53232] = 4, + anon_sym_GT_GT, + [53576] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2181), 1, - anon_sym_LPAREN, - STATE(1087), 1, - sym_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53246] = 4, + ACTIONS(2649), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [53588] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1958), 1, - sym__name, - STATE(912), 1, - sym_identifier, + ACTIONS(2651), 1, + anon_sym_LBRACE, + ACTIONS(2653), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53260] = 4, + [53602] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2610), 1, + ACTIONS(2655), 1, anon_sym_LBRACE, - ACTIONS(2612), 1, - anon_sym_EQ, + ACTIONS(2657), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53274] = 3, + [53616] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2659), 1, + anon_sym_LBRACE, + STATE(774), 1, + sym_unqualified_imports, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2614), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [53286] = 4, + [53630] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2181), 1, - anon_sym_LPAREN, - STATE(1091), 1, - sym_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53300] = 4, + ACTIONS(2661), 2, + anon_sym_LBRACE, + anon_sym_DASH_GT, + [53642] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(322), 1, - sym__upname, - STATE(295), 1, - sym_constructor_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53314] = 3, + ACTIONS(2220), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [53654] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2616), 2, + ACTIONS(2532), 2, anon_sym_COMMA, anon_sym_RPAREN, - [53326] = 4, + [53666] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2618), 1, - anon_sym_type, - ACTIONS(2620), 1, - anon_sym_fn, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53340] = 4, + ACTIONS(2663), 2, + anon_sym_LBRACE, + anon_sym_DASH_GT, + [53678] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2181), 1, - anon_sym_LPAREN, - STATE(1103), 1, - sym_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53354] = 4, + ACTIONS(2513), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [53690] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2622), 1, + ACTIONS(2118), 1, sym__name, - STATE(766), 1, - sym_identifier, + STATE(150), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53368] = 3, + [53704] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2665), 1, + anon_sym_type, + ACTIONS(2667), 1, + anon_sym_fn, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2624), 2, - anon_sym_RBRACE, - sym__upname, - [53380] = 4, + [53718] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1734), 1, - sym__upname, - STATE(706), 1, - sym_type_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53394] = 4, + ACTIONS(2506), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [53730] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(47), 1, - anon_sym_DQUOTE, - STATE(456), 1, - sym_string, + ACTIONS(2669), 1, + anon_sym_LBRACE, + ACTIONS(2671), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53408] = 3, + [53744] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2626), 2, - anon_sym_RBRACE, - sym__upname, - [53420] = 3, + ACTIONS(2673), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [53756] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2675), 1, + anon_sym_LBRACE, + ACTIONS(2677), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2628), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [53432] = 4, + [53770] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2630), 1, - anon_sym_DOT, - ACTIONS(2632), 1, - anon_sym_COLON, + ACTIONS(2679), 1, + anon_sym_LBRACE, + ACTIONS(2681), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53446] = 4, + [53784] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2634), 1, - anon_sym_LBRACE, - STATE(773), 1, - sym_unqualified_imports, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53460] = 4, + ACTIONS(2683), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [53796] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2181), 1, - anon_sym_LPAREN, - STATE(1106), 1, - sym_function_parameters, + ACTIONS(2685), 1, + anon_sym_LBRACE, + ACTIONS(2687), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53474] = 3, + [53810] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2489), 2, + ACTIONS(2574), 2, anon_sym_COMMA, anon_sym_RPAREN, - [53486] = 4, + [53822] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2181), 1, - anon_sym_LPAREN, - STATE(1094), 1, - sym_function_parameters, + ACTIONS(2224), 1, + sym__name, + STATE(1086), 1, + sym_type_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53500] = 3, + [53836] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2476), 2, + ACTIONS(2265), 2, anon_sym_COMMA, anon_sym_RPAREN, - [53512] = 3, + [53848] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2636), 2, - anon_sym_LBRACE, - anon_sym_DASH_GT, - [53524] = 4, + ACTIONS(2689), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [53860] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2062), 1, - sym__name, - STATE(147), 1, - sym_label, + ACTIONS(2691), 1, + anon_sym_LPAREN, + STATE(139), 1, + sym_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53538] = 4, + [53874] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2638), 1, - anon_sym_type, - ACTIONS(2640), 1, - anon_sym_fn, + ACTIONS(303), 1, + anon_sym_DQUOTE, + STATE(794), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53552] = 3, + [53888] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2642), 2, + ACTIONS(2611), 2, anon_sym_COMMA, anon_sym_RPAREN, - [53564] = 3, + [53900] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2644), 2, + ACTIONS(2693), 2, anon_sym_RBRACE, sym__upname, - [53576] = 4, + [53912] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(310), 1, + ACTIONS(473), 1, anon_sym_DQUOTE, - STATE(783), 1, + STATE(1236), 1, sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53590] = 4, + [53926] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2646), 1, - anon_sym_LBRACE, - ACTIONS(2648), 1, - anon_sym_EQ, + ACTIONS(315), 1, + sym__upname, + STATE(296), 1, + sym_constructor_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53604] = 4, + [53940] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2650), 1, - anon_sym_LBRACE, - ACTIONS(2652), 1, - anon_sym_DASH_GT, + ACTIONS(473), 1, + anon_sym_DQUOTE, + STATE(1210), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53618] = 3, + [53954] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2202), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [53630] = 3, + ACTIONS(2695), 2, + anon_sym_LBRACE, + anon_sym_DASH_GT, + [53966] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2199), 1, + anon_sym_LPAREN, + STATE(1095), 1, + sym_anonymous_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2654), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [53642] = 3, + [53980] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1600), 2, + ACTIONS(2463), 2, anon_sym_COMMA, anon_sym_RPAREN, - [53654] = 4, + [53992] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2656), 1, - anon_sym_LBRACE, - ACTIONS(2658), 1, - anon_sym_DASH_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [53668] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2660), 1, + ACTIONS(2697), 1, sym__name, - STATE(473), 1, + STATE(445), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53682] = 4, + [54006] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2662), 1, - anon_sym_LBRACE, - STATE(425), 1, - sym_unqualified_imports, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [53696] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2664), 1, - anon_sym_LBRACE, - ACTIONS(2666), 1, - anon_sym_DASH_GT, + ACTIONS(2699), 1, + sym__name, + STATE(769), 1, + sym_module, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53710] = 4, + [54020] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2668), 1, + ACTIONS(2615), 1, anon_sym_LPAREN, - STATE(129), 1, - sym_arguments, + STATE(1222), 1, + sym_external_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53724] = 3, + [54034] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2670), 2, - anon_sym_RBRACE, + ACTIONS(2701), 2, anon_sym_COMMA, - [53736] = 3, + anon_sym_RPAREN, + [54046] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2672), 2, + ACTIONS(2703), 2, anon_sym_LBRACE, anon_sym_DASH_GT, - [53748] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2439), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [53760] = 3, + [54058] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2705), 1, + anon_sym_LBRACE, + ACTIONS(2707), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2227), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [53772] = 4, + [54072] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2674), 1, + ACTIONS(2709), 1, anon_sym_LPAREN, - STATE(368), 1, + STATE(373), 1, sym_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53786] = 3, + [54086] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2711), 1, + anon_sym_LBRACE, + STATE(435), 1, + sym_unqualified_imports, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2455), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [53798] = 3, + [54100] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2713), 1, + anon_sym_LBRACE, + ACTIONS(2715), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2676), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [53810] = 4, + [54114] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2678), 1, - anon_sym_LBRACE, - ACTIONS(2680), 1, - anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53824] = 3, + ACTIONS(2717), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [54126] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2422), 2, + ACTIONS(2258), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [53836] = 4, + anon_sym_GT_GT, + [54138] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2682), 1, - sym__name, - STATE(765), 1, - sym_module, + ACTIONS(2719), 1, + anon_sym_LBRACE, + ACTIONS(2721), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53850] = 4, + [54152] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2684), 1, - anon_sym_LBRACE, - ACTIONS(2686), 1, - anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53864] = 4, + ACTIONS(2723), 2, + anon_sym_RBRACE, + sym__upname, + [54164] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2688), 1, + ACTIONS(2725), 1, sym__name, - STATE(377), 1, + STATE(364), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53878] = 4, + [54178] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(57), 1, + ACTIONS(834), 1, sym__upname, - STATE(12), 1, + STATE(316), 1, sym_constructor_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53892] = 4, + [54192] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2690), 1, - sym__name, - STATE(26), 1, - sym_label, + ACTIONS(57), 1, + sym__upname, + STATE(18), 1, + sym_constructor_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53906] = 4, + [54206] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2692), 1, - anon_sym_LBRACE, - ACTIONS(2694), 1, - anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53920] = 4, + ACTIONS(2727), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [54218] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2696), 1, - anon_sym_LBRACE, - ACTIONS(2698), 1, - anon_sym_EQ, + ACTIONS(2729), 1, + sym__name, + STATE(21), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53934] = 3, + [54232] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2700), 2, + ACTIONS(2731), 2, anon_sym_COMMA, anon_sym_GT_GT, - [53946] = 4, + [54244] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(813), 1, - sym__upname, - STATE(308), 1, - sym_constructor_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53960] = 3, + ACTIONS(2425), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [54256] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2702), 2, + ACTIONS(2733), 2, anon_sym_RBRACE, sym__upname, - [53972] = 4, + [54268] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(473), 1, - anon_sym_DQUOTE, - STATE(1176), 1, - sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53986] = 3, + ACTIONS(2735), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [54280] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1817), 1, + sym__upname, + STATE(404), 1, + sym_type_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2236), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [53998] = 4, + [54294] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1958), 1, + ACTIONS(47), 1, + anon_sym_DQUOTE, + STATE(484), 1, + sym_string, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [54308] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1980), 1, sym__name, - STATE(1043), 1, + STATE(801), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54012] = 4, + [54322] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2704), 1, - anon_sym_LPAREN, - STATE(15), 1, - sym_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54026] = 4, + ACTIONS(2737), 2, + anon_sym_RBRACE, + sym__upname, + [54334] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(473), 1, - anon_sym_DQUOTE, - STATE(1227), 1, - sym_string, + ACTIONS(1958), 1, + sym__name, + STATE(766), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54040] = 4, + [54348] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2181), 1, - anon_sym_LPAREN, - STATE(1110), 1, - sym_function_parameters, + ACTIONS(483), 1, + sym__upname, + STATE(98), 1, + sym_constructor_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54054] = 4, + [54362] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(1958), 1, sym__name, - STATE(1129), 1, + STATE(1158), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54068] = 3, + [54376] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2243), 2, + ACTIONS(2739), 2, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_RPAREN, - [54080] = 4, + [54388] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1958), 1, + sym__name, + STATE(1056), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [54402] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2706), 1, + ACTIONS(2741), 1, anon_sym_type, - ACTIONS(2708), 1, + ACTIONS(2743), 1, anon_sym_fn, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54094] = 3, + [54416] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1598), 2, + ACTIONS(2745), 2, anon_sym_COMMA, anon_sym_RPAREN, - [54106] = 4, + [54428] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(1958), 1, sym__name, - STATE(917), 1, + STATE(970), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54120] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2710), 1, - anon_sym_LBRACE, - ACTIONS(2712), 1, - anon_sym_DASH_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [54134] = 3, + [54442] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1958), 1, + sym__name, + STATE(1029), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2433), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [54146] = 4, + [54456] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1734), 1, - sym__upname, - STATE(1096), 1, - sym_type_identifier, + ACTIONS(473), 1, + anon_sym_DQUOTE, + STATE(1275), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54160] = 4, + [54470] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2181), 1, - anon_sym_LPAREN, - STATE(1051), 1, - sym_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54174] = 4, + ACTIONS(2401), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [54482] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1974), 1, + ACTIONS(2697), 1, sym__name, - STATE(778), 1, + STATE(471), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54188] = 4, + [54496] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2714), 1, - anon_sym_COMMA, - ACTIONS(2716), 1, - anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54202] = 3, + ACTIONS(2717), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [54508] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2718), 2, + ACTIONS(2296), 2, anon_sym_COMMA, anon_sym_RPAREN, - [54214] = 4, + [54520] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(473), 1, anon_sym_DQUOTE, - STATE(1187), 1, + STATE(1202), 1, sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54228] = 3, + [54534] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2720), 2, - anon_sym_LBRACE, - anon_sym_DASH_GT, - [54240] = 4, + ACTIONS(2747), 2, + anon_sym_RBRACE, + sym__upname, + [54546] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(1958), 1, sym__name, - STATE(1013), 1, + STATE(1112), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54254] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(473), 1, - anon_sym_DQUOTE, - STATE(1261), 1, - sym_string, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [54268] = 3, + [54560] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2373), 2, + ACTIONS(2749), 2, anon_sym_COMMA, anon_sym_RPAREN, - [54280] = 4, + [54572] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(483), 1, - sym__upname, - STATE(81), 1, - sym_constructor_name, + ACTIONS(2751), 1, + anon_sym_DOT, + ACTIONS(2753), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54294] = 3, + [54586] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2755), 1, + anon_sym_type, + ACTIONS(2757), 1, + anon_sym_fn, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2722), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [54306] = 4, + [54600] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2724), 1, + ACTIONS(2759), 1, anon_sym_LPAREN, - STATE(303), 1, + STATE(312), 1, sym_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54320] = 3, + [54614] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2761), 1, + anon_sym_LBRACE, + ACTIONS(2763), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2288), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [54332] = 4, + [54628] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1974), 1, - sym__name, - STATE(798), 1, - sym_identifier, + ACTIONS(2639), 1, + anon_sym_LPAREN, + STATE(1115), 1, + sym_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54346] = 4, + [54642] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2726), 1, - anon_sym_type, - ACTIONS(2728), 1, - anon_sym_fn, + ACTIONS(1958), 1, + sym__name, + STATE(1001), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54360] = 3, + [54656] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2730), 2, + ACTIONS(2317), 2, anon_sym_COMMA, anon_sym_RPAREN, - [54372] = 3, + [54668] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2732), 2, + ACTIONS(2765), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [54384] = 4, + anon_sym_GT_GT, + [54680] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1958), 1, - sym__name, - STATE(985), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54398] = 4, + ACTIONS(2237), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [54692] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2734), 1, + ACTIONS(2767), 1, sym__name, STATE(309), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54412] = 4, + [54706] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1817), 1, - sym__upname, - STATE(435), 1, - sym_type_identifier, + ACTIONS(1980), 1, + sym__name, + STATE(799), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54426] = 3, + [54720] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1718), 1, + sym__upname, + STATE(1139), 1, + sym_type_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2730), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [54438] = 4, + [54734] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(1958), 1, sym__name, - STATE(1055), 1, + STATE(1139), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54452] = 3, + [54748] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2736), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [54464] = 3, + ACTIONS(2769), 2, + anon_sym_LBRACE, + anon_sym_DASH_GT, + [54760] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2732), 2, + ACTIONS(1604), 2, anon_sym_COMMA, anon_sym_RPAREN, - [54476] = 3, + [54772] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2738), 2, - anon_sym_RBRACE, + ACTIONS(1147), 1, sym__upname, - [54488] = 3, - ACTIONS(3), 1, - sym_module_comment, + STATE(630), 1, + sym_constructor_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2740), 2, - anon_sym_LBRACE, - anon_sym_DASH_GT, - [54500] = 3, + [54786] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2742), 2, + ACTIONS(2348), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [54512] = 4, + anon_sym_GT_GT, + [54798] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1182), 1, - sym__upname, - STATE(629), 1, - sym_constructor_name, + ACTIONS(2771), 1, + anon_sym_LBRACE, + ACTIONS(2773), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54526] = 3, + [54812] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2744), 2, + ACTIONS(2701), 2, anon_sym_COMMA, anon_sym_RPAREN, - [54538] = 4, + [54824] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2660), 1, + ACTIONS(1958), 1, sym__name, - STATE(493), 1, + STATE(1074), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54552] = 4, + [54838] = 3, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2775), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [54850] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1958), 1, - sym__name, - STATE(766), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54566] = 4, + ACTIONS(1606), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [54862] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2746), 1, + ACTIONS(2777), 1, anon_sym_LBRACE, - ACTIONS(2748), 1, - anon_sym_EQ, + ACTIONS(2779), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54580] = 4, + [54876] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2181), 1, + ACTIONS(2639), 1, anon_sym_LPAREN, - STATE(1126), 1, + STATE(1121), 1, sym_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54594] = 3, + [54890] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2750), 1, - anon_sym_LPAREN, + ACTIONS(2781), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54605] = 3, + [54901] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2752), 1, - anon_sym_LPAREN, + ACTIONS(2783), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54616] = 3, + [54912] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2754), 1, + ACTIONS(2785), 1, anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54627] = 3, + [54923] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2756), 1, + ACTIONS(2787), 1, anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54638] = 3, + [54934] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2758), 1, + ACTIONS(2789), 1, anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54649] = 3, + [54945] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2630), 1, + ACTIONS(2791), 1, anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54660] = 3, + [54956] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2760), 1, - anon_sym_RBRACE, + ACTIONS(2793), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54671] = 3, + [54967] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2762), 1, - anon_sym_RPAREN, + ACTIONS(2751), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54682] = 3, + [54978] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2764), 1, - anon_sym_RPAREN, + ACTIONS(2795), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54693] = 3, + [54989] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2766), 1, - anon_sym_DASH_GT, + ACTIONS(2797), 1, + ts_builtin_sym_end, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54704] = 3, + [55000] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2768), 1, + ACTIONS(2799), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54715] = 3, + [55011] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2770), 1, - anon_sym_EQ, + ACTIONS(2801), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54726] = 3, + [55022] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2772), 1, - anon_sym_DASH_GT, + ACTIONS(2803), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54737] = 3, + [55033] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2774), 1, - anon_sym_EQ, + ACTIONS(2805), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54748] = 3, + [55044] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2776), 1, - anon_sym_RPAREN, + ACTIONS(2807), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54759] = 3, + [55055] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2778), 1, - anon_sym_COLON, + ACTIONS(2809), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54770] = 3, + [55066] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2780), 1, + ACTIONS(2811), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54781] = 3, + [55077] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2782), 1, - anon_sym_DASH_GT, + ACTIONS(2813), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54792] = 3, + [55088] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2784), 1, - anon_sym_EQ, + ACTIONS(2815), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54803] = 3, + [55099] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2786), 1, - anon_sym_RBRACK, + ACTIONS(2817), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54814] = 3, + [55110] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2788), 1, - anon_sym_DASH_GT, + ACTIONS(2819), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54825] = 3, + [55121] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2790), 1, + ACTIONS(2821), 1, anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54836] = 3, + [55132] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2792), 1, - anon_sym_COLON, + ACTIONS(2823), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54847] = 3, + [55143] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2794), 1, - anon_sym_DOT, + ACTIONS(2825), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54858] = 3, + [55154] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2796), 1, - anon_sym_RBRACK, + ACTIONS(2827), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54869] = 3, + [55165] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2798), 1, - anon_sym_RPAREN, + ACTIONS(2829), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54880] = 3, + [55176] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2800), 1, - anon_sym_RBRACK, + ACTIONS(2831), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54891] = 3, + [55187] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2802), 1, - anon_sym_LPAREN, + ACTIONS(2833), 1, + anon_sym_type, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54902] = 3, + [55198] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2804), 1, - anon_sym_EQ, + ACTIONS(2835), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54913] = 3, + [55209] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2806), 1, - anon_sym_RPAREN, + ACTIONS(2837), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54924] = 3, + [55220] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2003), 1, - anon_sym_RPAREN, + ACTIONS(2839), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54935] = 3, + [55231] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2808), 1, + ACTIONS(2841), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54946] = 3, + [55242] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2810), 1, - anon_sym_LPAREN, + ACTIONS(2843), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54957] = 3, + [55253] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2812), 1, + ACTIONS(2845), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54968] = 3, + [55264] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2814), 1, - anon_sym_LBRACE, + ACTIONS(2847), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54979] = 3, + [55275] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2816), 1, - anon_sym_RBRACK, + ACTIONS(2849), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54990] = 3, + [55286] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2818), 1, - anon_sym_EQ, + ACTIONS(2851), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55001] = 3, + [55297] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2820), 1, - anon_sym_LPAREN, + ACTIONS(2853), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55012] = 3, + [55308] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2822), 1, - anon_sym_COLON, + ACTIONS(2855), 1, + sym__name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55023] = 3, + [55319] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2824), 1, - anon_sym_DOT, + ACTIONS(2857), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55034] = 3, + [55330] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2826), 1, - anon_sym_RBRACE, + ACTIONS(2859), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55045] = 3, + [55341] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2828), 1, - anon_sym_LBRACE, + ACTIONS(2861), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55056] = 3, + [55352] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2830), 1, - anon_sym_EQ, + ACTIONS(2863), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55067] = 3, + [55363] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2832), 1, - anon_sym_RBRACE, + ACTIONS(2865), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55078] = 3, + [55374] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2834), 1, - anon_sym_RBRACE, + ACTIONS(2867), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55089] = 3, + [55385] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2836), 1, + ACTIONS(2869), 1, anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55100] = 3, + [55396] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2838), 1, + ACTIONS(2871), 1, anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55111] = 3, + [55407] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2840), 1, + ACTIONS(2873), 1, anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55122] = 3, + [55418] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2842), 1, - anon_sym_DASH_GT, + ACTIONS(2875), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55133] = 3, + [55429] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2844), 1, + ACTIONS(2877), 1, anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55144] = 3, + [55440] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2846), 1, + ACTIONS(2879), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55155] = 3, + [55451] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2848), 1, + ACTIONS(2881), 1, anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55166] = 3, + [55462] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1226), 1, - anon_sym_RPAREN, + ACTIONS(2883), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55177] = 3, + [55473] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2850), 1, - anon_sym_EQ, + ACTIONS(2885), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55188] = 3, + [55484] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2852), 1, + ACTIONS(2887), 1, anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55199] = 3, + [55495] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1123), 1, - anon_sym_RPAREN, + ACTIONS(2889), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55210] = 3, + [55506] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2854), 1, - anon_sym_DOT, + ACTIONS(2891), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55221] = 3, + [55517] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2856), 1, - anon_sym_RPAREN, + ACTIONS(2893), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55232] = 3, + [55528] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2858), 1, - ts_builtin_sym_end, + ACTIONS(2895), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55243] = 3, + [55539] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2860), 1, - anon_sym_type, + ACTIONS(2897), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55254] = 3, + [55550] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2862), 1, - anon_sym_DASH_GT, + ACTIONS(2899), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55265] = 3, + [55561] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2864), 1, + ACTIONS(2901), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55276] = 3, + [55572] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2866), 1, + ACTIONS(2903), 1, anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55287] = 3, + [55583] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2868), 1, + ACTIONS(2905), 1, anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55298] = 3, + [55594] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2050), 1, + ACTIONS(2022), 1, anon_sym_type, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55309] = 3, + [55605] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2870), 1, - anon_sym_RPAREN, + ACTIONS(2907), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55320] = 3, + [55616] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2872), 1, - anon_sym_LPAREN, + ACTIONS(2909), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55331] = 3, + [55627] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2874), 1, - anon_sym_RBRACK, + ACTIONS(2911), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55342] = 3, + [55638] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2876), 1, - anon_sym_RBRACK, + ACTIONS(2913), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55353] = 3, + [55649] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2878), 1, + ACTIONS(1123), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55364] = 3, + [55660] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2880), 1, - anon_sym_LBRACE, + ACTIONS(2038), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55375] = 3, + [55671] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2037), 1, + ACTIONS(2060), 1, anon_sym_type, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55386] = 3, + [55682] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2882), 1, - anon_sym_LBRACE, + ACTIONS(2915), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55397] = 3, + [55693] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2884), 1, + ACTIONS(2917), 1, anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55408] = 3, + [55704] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2886), 1, + ACTIONS(2919), 1, anon_sym_type, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55419] = 3, + [55715] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2888), 1, - anon_sym_RBRACE, + ACTIONS(2921), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55430] = 3, + [55726] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2890), 1, + ACTIONS(2923), 1, anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55441] = 3, + [55737] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2892), 1, - anon_sym_RPAREN, + ACTIONS(2925), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55452] = 3, + [55748] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2894), 1, - anon_sym_COLON, + ACTIONS(2927), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55463] = 3, + [55759] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2896), 1, - sym__name, + ACTIONS(2929), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55474] = 3, + [55770] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2898), 1, + ACTIONS(2931), 1, anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55485] = 3, + [55781] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2900), 1, - anon_sym_DOT, + ACTIONS(2933), 1, + sym__name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55496] = 3, + [55792] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2902), 1, + ACTIONS(2935), 1, anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55507] = 3, + [55803] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2904), 1, - anon_sym_COLON, + ACTIONS(2937), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55518] = 3, + [55814] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2906), 1, - anon_sym_DOT, + ACTIONS(2939), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55529] = 3, + [55825] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2908), 1, + ACTIONS(2941), 1, anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55540] = 3, + [55836] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2910), 1, + ACTIONS(2943), 1, anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55551] = 3, + [55847] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2912), 1, - anon_sym_DASH_GT, + ACTIONS(2945), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55562] = 3, + [55858] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2914), 1, - anon_sym_LPAREN, + ACTIONS(2947), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55573] = 3, + [55869] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2916), 1, + ACTIONS(2949), 1, anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55584] = 3, + [55880] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2918), 1, + ACTIONS(2951), 1, anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55595] = 3, + [55891] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2920), 1, - anon_sym_DASH_GT, + ACTIONS(2953), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55606] = 3, + [55902] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2922), 1, - anon_sym_LPAREN, + ACTIONS(2955), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55617] = 3, + [55913] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2924), 1, - anon_sym_DOT, + ACTIONS(2957), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55628] = 3, + [55924] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2926), 1, - anon_sym_DASH_GT, + ACTIONS(2959), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55639] = 3, + [55935] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2928), 1, - sym__name, + ACTIONS(2961), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55650] = 3, + [55946] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2930), 1, + ACTIONS(2963), 1, anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55661] = 3, + [55957] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2932), 1, - anon_sym_EQ, + ACTIONS(2965), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55672] = 3, + [55968] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2934), 1, + ACTIONS(2967), 1, anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55683] = 3, + [55979] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2936), 1, - anon_sym_RPAREN, + ACTIONS(2969), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55694] = 3, + [55990] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2938), 1, + ACTIONS(2971), 1, anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55705] = 3, + [56001] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2940), 1, - anon_sym_DASH_GT, + ACTIONS(2973), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55716] = 3, + [56012] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2942), 1, - anon_sym_DASH_GT, + ACTIONS(2975), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55727] = 3, + [56023] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2944), 1, - anon_sym_RPAREN, + ACTIONS(2977), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55738] = 3, + [56034] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2946), 1, - anon_sym_RBRACE, + ACTIONS(2979), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55749] = 3, + [56045] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2948), 1, + ACTIONS(2981), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55760] = 3, + [56056] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2950), 1, - anon_sym_EQ, + ACTIONS(2983), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55771] = 3, + [56067] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2952), 1, - anon_sym_EQ, + ACTIONS(2985), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55782] = 3, + [56078] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2954), 1, - anon_sym_DOT, + ACTIONS(2987), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55793] = 3, + [56089] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2956), 1, - anon_sym_EQ, + ACTIONS(2989), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55804] = 3, + [56100] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2958), 1, - anon_sym_RBRACE, + ACTIONS(2991), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55815] = 3, + [56111] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2960), 1, - anon_sym_RBRACE, + ACTIONS(2993), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55826] = 3, + [56122] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2962), 1, - anon_sym_EQ, + ACTIONS(1236), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55837] = 3, + [56133] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2964), 1, - anon_sym_RPAREN, + ACTIONS(2995), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55848] = 3, + [56144] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2966), 1, + ACTIONS(2997), 1, anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, @@ -50180,119 +50428,119 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(6)] = 256, [SMALL_STATE(7)] = 324, [SMALL_STATE(8)] = 387, - [SMALL_STATE(9)] = 450, - [SMALL_STATE(10)] = 513, - [SMALL_STATE(11)] = 576, - [SMALL_STATE(12)] = 639, - [SMALL_STATE(13)] = 702, - [SMALL_STATE(14)] = 827, - [SMALL_STATE(15)] = 890, - [SMALL_STATE(16)] = 953, - [SMALL_STATE(17)] = 1078, - [SMALL_STATE(18)] = 1141, - [SMALL_STATE(19)] = 1266, - [SMALL_STATE(20)] = 1391, - [SMALL_STATE(21)] = 1454, - [SMALL_STATE(22)] = 1521, - [SMALL_STATE(23)] = 1584, - [SMALL_STATE(24)] = 1647, - [SMALL_STATE(25)] = 1710, - [SMALL_STATE(26)] = 1773, - [SMALL_STATE(27)] = 1836, - [SMALL_STATE(28)] = 1899, + [SMALL_STATE(9)] = 454, + [SMALL_STATE(10)] = 517, + [SMALL_STATE(11)] = 642, + [SMALL_STATE(12)] = 705, + [SMALL_STATE(13)] = 768, + [SMALL_STATE(14)] = 893, + [SMALL_STATE(15)] = 956, + [SMALL_STATE(16)] = 1081, + [SMALL_STATE(17)] = 1144, + [SMALL_STATE(18)] = 1207, + [SMALL_STATE(19)] = 1270, + [SMALL_STATE(20)] = 1333, + [SMALL_STATE(21)] = 1396, + [SMALL_STATE(22)] = 1459, + [SMALL_STATE(23)] = 1522, + [SMALL_STATE(24)] = 1585, + [SMALL_STATE(25)] = 1648, + [SMALL_STATE(26)] = 1715, + [SMALL_STATE(27)] = 1778, + [SMALL_STATE(28)] = 1903, [SMALL_STATE(29)] = 1966, [SMALL_STATE(30)] = 2030, [SMALL_STATE(31)] = 2152, - [SMALL_STATE(32)] = 2216, - [SMALL_STATE(33)] = 2278, - [SMALL_STATE(34)] = 2340, - [SMALL_STATE(35)] = 2402, - [SMALL_STATE(36)] = 2524, - [SMALL_STATE(37)] = 2586, - [SMALL_STATE(38)] = 2708, - [SMALL_STATE(39)] = 2830, + [SMALL_STATE(32)] = 2274, + [SMALL_STATE(33)] = 2336, + [SMALL_STATE(34)] = 2398, + [SMALL_STATE(35)] = 2520, + [SMALL_STATE(36)] = 2642, + [SMALL_STATE(37)] = 2764, + [SMALL_STATE(38)] = 2826, + [SMALL_STATE(39)] = 2888, [SMALL_STATE(40)] = 2952, [SMALL_STATE(41)] = 3016, [SMALL_STATE(42)] = 3138, - [SMALL_STATE(43)] = 3200, + [SMALL_STATE(43)] = 3260, [SMALL_STATE(44)] = 3322, [SMALL_STATE(45)] = 3444, - [SMALL_STATE(46)] = 3566, - [SMALL_STATE(47)] = 3688, - [SMALL_STATE(48)] = 3750, - [SMALL_STATE(49)] = 3872, - [SMALL_STATE(50)] = 3994, - [SMALL_STATE(51)] = 4058, - [SMALL_STATE(52)] = 4120, + [SMALL_STATE(46)] = 3508, + [SMALL_STATE(47)] = 3570, + [SMALL_STATE(48)] = 3632, + [SMALL_STATE(49)] = 3754, + [SMALL_STATE(50)] = 3816, + [SMALL_STATE(51)] = 3938, + [SMALL_STATE(52)] = 4060, [SMALL_STATE(53)] = 4182, - [SMALL_STATE(54)] = 4243, + [SMALL_STATE(54)] = 4301, [SMALL_STATE(55)] = 4362, - [SMALL_STATE(56)] = 4423, - [SMALL_STATE(57)] = 4484, - [SMALL_STATE(58)] = 4545, - [SMALL_STATE(59)] = 4664, - [SMALL_STATE(60)] = 4725, - [SMALL_STATE(61)] = 4786, - [SMALL_STATE(62)] = 4847, - [SMALL_STATE(63)] = 4966, - [SMALL_STATE(64)] = 5085, - [SMALL_STATE(65)] = 5146, - [SMALL_STATE(66)] = 5227, - [SMALL_STATE(67)] = 5288, - [SMALL_STATE(68)] = 5407, - [SMALL_STATE(69)] = 5526, - [SMALL_STATE(70)] = 5607, - [SMALL_STATE(71)] = 5726, - [SMALL_STATE(72)] = 5845, - [SMALL_STATE(73)] = 5964, - [SMALL_STATE(74)] = 6025, - [SMALL_STATE(75)] = 6144, - [SMALL_STATE(76)] = 6205, - [SMALL_STATE(77)] = 6266, - [SMALL_STATE(78)] = 6385, - [SMALL_STATE(79)] = 6504, - [SMALL_STATE(80)] = 6565, - [SMALL_STATE(81)] = 6684, - [SMALL_STATE(82)] = 6745, - [SMALL_STATE(83)] = 6806, - [SMALL_STATE(84)] = 6867, - [SMALL_STATE(85)] = 6928, - [SMALL_STATE(86)] = 6989, - [SMALL_STATE(87)] = 7108, - [SMALL_STATE(88)] = 7189, - [SMALL_STATE(89)] = 7270, - [SMALL_STATE(90)] = 7331, - [SMALL_STATE(91)] = 7392, - [SMALL_STATE(92)] = 7511, - [SMALL_STATE(93)] = 7576, - [SMALL_STATE(94)] = 7637, - [SMALL_STATE(95)] = 7718, - [SMALL_STATE(96)] = 7797, - [SMALL_STATE(97)] = 7874, - [SMALL_STATE(98)] = 7949, - [SMALL_STATE(99)] = 8020, - [SMALL_STATE(100)] = 8139, - [SMALL_STATE(101)] = 8208, - [SMALL_STATE(102)] = 8327, - [SMALL_STATE(103)] = 8446, - [SMALL_STATE(104)] = 8565, - [SMALL_STATE(105)] = 8684, - [SMALL_STATE(106)] = 8803, + [SMALL_STATE(56)] = 4481, + [SMALL_STATE(57)] = 4600, + [SMALL_STATE(58)] = 4661, + [SMALL_STATE(59)] = 4722, + [SMALL_STATE(60)] = 4803, + [SMALL_STATE(61)] = 4864, + [SMALL_STATE(62)] = 4925, + [SMALL_STATE(63)] = 4986, + [SMALL_STATE(64)] = 5105, + [SMALL_STATE(65)] = 5224, + [SMALL_STATE(66)] = 5343, + [SMALL_STATE(67)] = 5462, + [SMALL_STATE(68)] = 5531, + [SMALL_STATE(69)] = 5650, + [SMALL_STATE(70)] = 5721, + [SMALL_STATE(71)] = 5840, + [SMALL_STATE(72)] = 5901, + [SMALL_STATE(73)] = 5976, + [SMALL_STATE(74)] = 6095, + [SMALL_STATE(75)] = 6156, + [SMALL_STATE(76)] = 6233, + [SMALL_STATE(77)] = 6294, + [SMALL_STATE(78)] = 6355, + [SMALL_STATE(79)] = 6474, + [SMALL_STATE(80)] = 6535, + [SMALL_STATE(81)] = 6614, + [SMALL_STATE(82)] = 6679, + [SMALL_STATE(83)] = 6740, + [SMALL_STATE(84)] = 6859, + [SMALL_STATE(85)] = 6978, + [SMALL_STATE(86)] = 7039, + [SMALL_STATE(87)] = 7100, + [SMALL_STATE(88)] = 7219, + [SMALL_STATE(89)] = 7280, + [SMALL_STATE(90)] = 7399, + [SMALL_STATE(91)] = 7480, + [SMALL_STATE(92)] = 7541, + [SMALL_STATE(93)] = 7622, + [SMALL_STATE(94)] = 7741, + [SMALL_STATE(95)] = 7802, + [SMALL_STATE(96)] = 7863, + [SMALL_STATE(97)] = 7982, + [SMALL_STATE(98)] = 8043, + [SMALL_STATE(99)] = 8104, + [SMALL_STATE(100)] = 8165, + [SMALL_STATE(101)] = 8246, + [SMALL_STATE(102)] = 8365, + [SMALL_STATE(103)] = 8426, + [SMALL_STATE(104)] = 8545, + [SMALL_STATE(105)] = 8664, + [SMALL_STATE(106)] = 8783, [SMALL_STATE(107)] = 8864, [SMALL_STATE(108)] = 8983, [SMALL_STATE(109)] = 9099, - [SMALL_STATE(110)] = 9163, - [SMALL_STATE(111)] = 9279, - [SMALL_STATE(112)] = 9395, - [SMALL_STATE(113)] = 9511, - [SMALL_STATE(114)] = 9627, - [SMALL_STATE(115)] = 9743, - [SMALL_STATE(116)] = 9859, - [SMALL_STATE(117)] = 9975, - [SMALL_STATE(118)] = 10091, - [SMALL_STATE(119)] = 10207, - [SMALL_STATE(120)] = 10323, - [SMALL_STATE(121)] = 10439, + [SMALL_STATE(110)] = 9215, + [SMALL_STATE(111)] = 9331, + [SMALL_STATE(112)] = 9447, + [SMALL_STATE(113)] = 9563, + [SMALL_STATE(114)] = 9679, + [SMALL_STATE(115)] = 9795, + [SMALL_STATE(116)] = 9911, + [SMALL_STATE(117)] = 10027, + [SMALL_STATE(118)] = 10143, + [SMALL_STATE(119)] = 10259, + [SMALL_STATE(120)] = 10375, + [SMALL_STATE(121)] = 10491, [SMALL_STATE(122)] = 10555, [SMALL_STATE(123)] = 10671, [SMALL_STATE(124)] = 10787, @@ -50301,66 +50549,66 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(127)] = 11135, [SMALL_STATE(128)] = 11251, [SMALL_STATE(129)] = 11367, - [SMALL_STATE(130)] = 11426, + [SMALL_STATE(130)] = 11480, [SMALL_STATE(131)] = 11539, [SMALL_STATE(132)] = 11598, [SMALL_STATE(133)] = 11711, - [SMALL_STATE(134)] = 11770, - [SMALL_STATE(135)] = 11829, - [SMALL_STATE(136)] = 11942, - [SMALL_STATE(137)] = 12055, - [SMALL_STATE(138)] = 12168, - [SMALL_STATE(139)] = 12281, - [SMALL_STATE(140)] = 12394, - [SMALL_STATE(141)] = 12457, - [SMALL_STATE(142)] = 12520, - [SMALL_STATE(143)] = 12633, - [SMALL_STATE(144)] = 12692, - [SMALL_STATE(145)] = 12751, - [SMALL_STATE(146)] = 12864, - [SMALL_STATE(147)] = 12923, - [SMALL_STATE(148)] = 12982, - [SMALL_STATE(149)] = 13041, - [SMALL_STATE(150)] = 13100, - [SMALL_STATE(151)] = 13159, + [SMALL_STATE(134)] = 11774, + [SMALL_STATE(135)] = 11887, + [SMALL_STATE(136)] = 12000, + [SMALL_STATE(137)] = 12113, + [SMALL_STATE(138)] = 12172, + [SMALL_STATE(139)] = 12285, + [SMALL_STATE(140)] = 12344, + [SMALL_STATE(141)] = 12403, + [SMALL_STATE(142)] = 12462, + [SMALL_STATE(143)] = 12521, + [SMALL_STATE(144)] = 12634, + [SMALL_STATE(145)] = 12747, + [SMALL_STATE(146)] = 12860, + [SMALL_STATE(147)] = 12919, + [SMALL_STATE(148)] = 12978, + [SMALL_STATE(149)] = 13037, + [SMALL_STATE(150)] = 13096, + [SMALL_STATE(151)] = 13155, [SMALL_STATE(152)] = 13218, [SMALL_STATE(153)] = 13328, [SMALL_STATE(154)] = 13438, - [SMALL_STATE(155)] = 13548, - [SMALL_STATE(156)] = 13658, - [SMALL_STATE(157)] = 13768, - [SMALL_STATE(158)] = 13826, - [SMALL_STATE(159)] = 13886, - [SMALL_STATE(160)] = 13944, - [SMALL_STATE(161)] = 14002, - [SMALL_STATE(162)] = 14112, - [SMALL_STATE(163)] = 14222, - [SMALL_STATE(164)] = 14280, - [SMALL_STATE(165)] = 14340, - [SMALL_STATE(166)] = 14400, - [SMALL_STATE(167)] = 14510, - [SMALL_STATE(168)] = 14568, - [SMALL_STATE(169)] = 14678, - [SMALL_STATE(170)] = 14738, - [SMALL_STATE(171)] = 14848, - [SMALL_STATE(172)] = 14958, - [SMALL_STATE(173)] = 15068, - [SMALL_STATE(174)] = 15178, - [SMALL_STATE(175)] = 15288, - [SMALL_STATE(176)] = 15398, - [SMALL_STATE(177)] = 15508, - [SMALL_STATE(178)] = 15618, - [SMALL_STATE(179)] = 15728, - [SMALL_STATE(180)] = 15838, - [SMALL_STATE(181)] = 15896, - [SMALL_STATE(182)] = 15954, + [SMALL_STATE(155)] = 13496, + [SMALL_STATE(156)] = 13606, + [SMALL_STATE(157)] = 13716, + [SMALL_STATE(158)] = 13774, + [SMALL_STATE(159)] = 13832, + [SMALL_STATE(160)] = 13942, + [SMALL_STATE(161)] = 14000, + [SMALL_STATE(162)] = 14058, + [SMALL_STATE(163)] = 14116, + [SMALL_STATE(164)] = 14176, + [SMALL_STATE(165)] = 14236, + [SMALL_STATE(166)] = 14296, + [SMALL_STATE(167)] = 14406, + [SMALL_STATE(168)] = 14516, + [SMALL_STATE(169)] = 14626, + [SMALL_STATE(170)] = 14736, + [SMALL_STATE(171)] = 14846, + [SMALL_STATE(172)] = 14956, + [SMALL_STATE(173)] = 15066, + [SMALL_STATE(174)] = 15176, + [SMALL_STATE(175)] = 15286, + [SMALL_STATE(176)] = 15346, + [SMALL_STATE(177)] = 15404, + [SMALL_STATE(178)] = 15462, + [SMALL_STATE(179)] = 15572, + [SMALL_STATE(180)] = 15682, + [SMALL_STATE(181)] = 15792, + [SMALL_STATE(182)] = 15902, [SMALL_STATE(183)] = 16012, [SMALL_STATE(184)] = 16122, [SMALL_STATE(185)] = 16229, [SMALL_STATE(186)] = 16336, [SMALL_STATE(187)] = 16443, [SMALL_STATE(188)] = 16550, - [SMALL_STATE(189)] = 16657, + [SMALL_STATE(189)] = 16661, [SMALL_STATE(190)] = 16768, [SMALL_STATE(191)] = 16875, [SMALL_STATE(192)] = 16982, @@ -50368,81 +50616,81 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(194)] = 17196, [SMALL_STATE(195)] = 17303, [SMALL_STATE(196)] = 17410, - [SMALL_STATE(197)] = 17467, - [SMALL_STATE(198)] = 17574, - [SMALL_STATE(199)] = 17631, - [SMALL_STATE(200)] = 17738, - [SMALL_STATE(201)] = 17845, - [SMALL_STATE(202)] = 17952, - [SMALL_STATE(203)] = 18059, - [SMALL_STATE(204)] = 18166, - [SMALL_STATE(205)] = 18273, - [SMALL_STATE(206)] = 18380, - [SMALL_STATE(207)] = 18487, - [SMALL_STATE(208)] = 18594, - [SMALL_STATE(209)] = 18701, - [SMALL_STATE(210)] = 18758, - [SMALL_STATE(211)] = 18815, - [SMALL_STATE(212)] = 18922, - [SMALL_STATE(213)] = 18979, - [SMALL_STATE(214)] = 19086, - [SMALL_STATE(215)] = 19193, - [SMALL_STATE(216)] = 19300, - [SMALL_STATE(217)] = 19407, - [SMALL_STATE(218)] = 19464, - [SMALL_STATE(219)] = 19575, - [SMALL_STATE(220)] = 19682, - [SMALL_STATE(221)] = 19793, - [SMALL_STATE(222)] = 19904, - [SMALL_STATE(223)] = 19961, - [SMALL_STATE(224)] = 20018, - [SMALL_STATE(225)] = 20125, - [SMALL_STATE(226)] = 20232, - [SMALL_STATE(227)] = 20339, - [SMALL_STATE(228)] = 20446, - [SMALL_STATE(229)] = 20553, - [SMALL_STATE(230)] = 20660, - [SMALL_STATE(231)] = 20771, - [SMALL_STATE(232)] = 20882, - [SMALL_STATE(233)] = 20989, - [SMALL_STATE(234)] = 21100, - [SMALL_STATE(235)] = 21207, - [SMALL_STATE(236)] = 21314, - [SMALL_STATE(237)] = 21421, - [SMALL_STATE(238)] = 21528, - [SMALL_STATE(239)] = 21635, - [SMALL_STATE(240)] = 21742, - [SMALL_STATE(241)] = 21799, - [SMALL_STATE(242)] = 21856, - [SMALL_STATE(243)] = 21963, - [SMALL_STATE(244)] = 22070, - [SMALL_STATE(245)] = 22177, - [SMALL_STATE(246)] = 22284, - [SMALL_STATE(247)] = 22391, - [SMALL_STATE(248)] = 22498, - [SMALL_STATE(249)] = 22605, - [SMALL_STATE(250)] = 22712, - [SMALL_STATE(251)] = 22819, - [SMALL_STATE(252)] = 22926, - [SMALL_STATE(253)] = 23033, - [SMALL_STATE(254)] = 23140, - [SMALL_STATE(255)] = 23247, - [SMALL_STATE(256)] = 23354, - [SMALL_STATE(257)] = 23461, - [SMALL_STATE(258)] = 23518, - [SMALL_STATE(259)] = 23575, - [SMALL_STATE(260)] = 23632, - [SMALL_STATE(261)] = 23743, - [SMALL_STATE(262)] = 23800, - [SMALL_STATE(263)] = 23907, - [SMALL_STATE(264)] = 23964, - [SMALL_STATE(265)] = 24071, - [SMALL_STATE(266)] = 24178, - [SMALL_STATE(267)] = 24289, - [SMALL_STATE(268)] = 24396, - [SMALL_STATE(269)] = 24507, - [SMALL_STATE(270)] = 24618, - [SMALL_STATE(271)] = 24725, + [SMALL_STATE(197)] = 17517, + [SMALL_STATE(198)] = 17624, + [SMALL_STATE(199)] = 17731, + [SMALL_STATE(200)] = 17838, + [SMALL_STATE(201)] = 17945, + [SMALL_STATE(202)] = 18052, + [SMALL_STATE(203)] = 18159, + [SMALL_STATE(204)] = 18266, + [SMALL_STATE(205)] = 18373, + [SMALL_STATE(206)] = 18480, + [SMALL_STATE(207)] = 18587, + [SMALL_STATE(208)] = 18694, + [SMALL_STATE(209)] = 18801, + [SMALL_STATE(210)] = 18908, + [SMALL_STATE(211)] = 19019, + [SMALL_STATE(212)] = 19130, + [SMALL_STATE(213)] = 19241, + [SMALL_STATE(214)] = 19352, + [SMALL_STATE(215)] = 19463, + [SMALL_STATE(216)] = 19570, + [SMALL_STATE(217)] = 19677, + [SMALL_STATE(218)] = 19784, + [SMALL_STATE(219)] = 19895, + [SMALL_STATE(220)] = 20002, + [SMALL_STATE(221)] = 20109, + [SMALL_STATE(222)] = 20216, + [SMALL_STATE(223)] = 20323, + [SMALL_STATE(224)] = 20434, + [SMALL_STATE(225)] = 20541, + [SMALL_STATE(226)] = 20648, + [SMALL_STATE(227)] = 20759, + [SMALL_STATE(228)] = 20866, + [SMALL_STATE(229)] = 20973, + [SMALL_STATE(230)] = 21080, + [SMALL_STATE(231)] = 21187, + [SMALL_STATE(232)] = 21294, + [SMALL_STATE(233)] = 21401, + [SMALL_STATE(234)] = 21508, + [SMALL_STATE(235)] = 21615, + [SMALL_STATE(236)] = 21726, + [SMALL_STATE(237)] = 21837, + [SMALL_STATE(238)] = 21944, + [SMALL_STATE(239)] = 22051, + [SMALL_STATE(240)] = 22162, + [SMALL_STATE(241)] = 22269, + [SMALL_STATE(242)] = 22376, + [SMALL_STATE(243)] = 22433, + [SMALL_STATE(244)] = 22490, + [SMALL_STATE(245)] = 22547, + [SMALL_STATE(246)] = 22604, + [SMALL_STATE(247)] = 22661, + [SMALL_STATE(248)] = 22718, + [SMALL_STATE(249)] = 22775, + [SMALL_STATE(250)] = 22882, + [SMALL_STATE(251)] = 22989, + [SMALL_STATE(252)] = 23096, + [SMALL_STATE(253)] = 23203, + [SMALL_STATE(254)] = 23310, + [SMALL_STATE(255)] = 23417, + [SMALL_STATE(256)] = 23474, + [SMALL_STATE(257)] = 23531, + [SMALL_STATE(258)] = 23588, + [SMALL_STATE(259)] = 23695, + [SMALL_STATE(260)] = 23802, + [SMALL_STATE(261)] = 23909, + [SMALL_STATE(262)] = 23966, + [SMALL_STATE(263)] = 24023, + [SMALL_STATE(264)] = 24080, + [SMALL_STATE(265)] = 24187, + [SMALL_STATE(266)] = 24294, + [SMALL_STATE(267)] = 24401, + [SMALL_STATE(268)] = 24458, + [SMALL_STATE(269)] = 24515, + [SMALL_STATE(270)] = 24622, + [SMALL_STATE(271)] = 24729, [SMALL_STATE(272)] = 24836, [SMALL_STATE(273)] = 24943, [SMALL_STATE(274)] = 25050, @@ -50452,17 +50700,17 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(278)] = 25473, [SMALL_STATE(279)] = 25578, [SMALL_STATE(280)] = 25683, - [SMALL_STATE(281)] = 25755, - [SMALL_STATE(282)] = 25829, - [SMALL_STATE(283)] = 25891, - [SMALL_STATE(284)] = 25965, - [SMALL_STATE(285)] = 26039, - [SMALL_STATE(286)] = 26113, - [SMALL_STATE(287)] = 26181, - [SMALL_STATE(288)] = 26251, - [SMALL_STATE(289)] = 26315, - [SMALL_STATE(290)] = 26389, - [SMALL_STATE(291)] = 26443, + [SMALL_STATE(281)] = 25741, + [SMALL_STATE(282)] = 25809, + [SMALL_STATE(283)] = 25879, + [SMALL_STATE(284)] = 25951, + [SMALL_STATE(285)] = 26005, + [SMALL_STATE(286)] = 26079, + [SMALL_STATE(287)] = 26153, + [SMALL_STATE(288)] = 26217, + [SMALL_STATE(289)] = 26291, + [SMALL_STATE(290)] = 26365, + [SMALL_STATE(291)] = 26439, [SMALL_STATE(292)] = 26501, [SMALL_STATE(293)] = 26554, [SMALL_STATE(294)] = 26607, @@ -50473,10 +50721,10 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(299)] = 26868, [SMALL_STATE(300)] = 26922, [SMALL_STATE(301)] = 26971, - [SMALL_STATE(302)] = 27024, - [SMALL_STATE(303)] = 27077, - [SMALL_STATE(304)] = 27126, - [SMALL_STATE(305)] = 27175, + [SMALL_STATE(302)] = 27020, + [SMALL_STATE(303)] = 27069, + [SMALL_STATE(304)] = 27118, + [SMALL_STATE(305)] = 27171, [SMALL_STATE(306)] = 27224, [SMALL_STATE(307)] = 27273, [SMALL_STATE(308)] = 27322, @@ -50491,128 +50739,128 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(317)] = 27763, [SMALL_STATE(318)] = 27811, [SMALL_STATE(319)] = 27859, - [SMALL_STATE(320)] = 27909, - [SMALL_STATE(321)] = 27957, - [SMALL_STATE(322)] = 28005, - [SMALL_STATE(323)] = 28055, - [SMALL_STATE(324)] = 28103, - [SMALL_STATE(325)] = 28151, - [SMALL_STATE(326)] = 28201, - [SMALL_STATE(327)] = 28251, - [SMALL_STATE(328)] = 28299, + [SMALL_STATE(320)] = 27907, + [SMALL_STATE(321)] = 27955, + [SMALL_STATE(322)] = 28003, + [SMALL_STATE(323)] = 28051, + [SMALL_STATE(324)] = 28099, + [SMALL_STATE(325)] = 28147, + [SMALL_STATE(326)] = 28197, + [SMALL_STATE(327)] = 28247, + [SMALL_STATE(328)] = 28297, [SMALL_STATE(329)] = 28347, [SMALL_STATE(330)] = 28394, - [SMALL_STATE(331)] = 28461, - [SMALL_STATE(332)] = 28508, - [SMALL_STATE(333)] = 28555, - [SMALL_STATE(334)] = 28602, - [SMALL_STATE(335)] = 28653, - [SMALL_STATE(336)] = 28708, - [SMALL_STATE(337)] = 28773, - [SMALL_STATE(338)] = 28820, - [SMALL_STATE(339)] = 28883, - [SMALL_STATE(340)] = 28930, - [SMALL_STATE(341)] = 28977, - [SMALL_STATE(342)] = 29024, - [SMALL_STATE(343)] = 29085, - [SMALL_STATE(344)] = 29132, - [SMALL_STATE(345)] = 29199, - [SMALL_STATE(346)] = 29256, - [SMALL_STATE(347)] = 29303, - [SMALL_STATE(348)] = 29350, - [SMALL_STATE(349)] = 29397, - [SMALL_STATE(350)] = 29444, - [SMALL_STATE(351)] = 29491, - [SMALL_STATE(352)] = 29558, - [SMALL_STATE(353)] = 29605, - [SMALL_STATE(354)] = 29652, - [SMALL_STATE(355)] = 29699, - [SMALL_STATE(356)] = 29766, + [SMALL_STATE(331)] = 28441, + [SMALL_STATE(332)] = 28496, + [SMALL_STATE(333)] = 28563, + [SMALL_STATE(334)] = 28610, + [SMALL_STATE(335)] = 28657, + [SMALL_STATE(336)] = 28704, + [SMALL_STATE(337)] = 28751, + [SMALL_STATE(338)] = 28798, + [SMALL_STATE(339)] = 28845, + [SMALL_STATE(340)] = 28912, + [SMALL_STATE(341)] = 28959, + [SMALL_STATE(342)] = 29006, + [SMALL_STATE(343)] = 29053, + [SMALL_STATE(344)] = 29100, + [SMALL_STATE(345)] = 29147, + [SMALL_STATE(346)] = 29194, + [SMALL_STATE(347)] = 29251, + [SMALL_STATE(348)] = 29318, + [SMALL_STATE(349)] = 29379, + [SMALL_STATE(350)] = 29426, + [SMALL_STATE(351)] = 29473, + [SMALL_STATE(352)] = 29520, + [SMALL_STATE(353)] = 29571, + [SMALL_STATE(354)] = 29618, + [SMALL_STATE(355)] = 29681, + [SMALL_STATE(356)] = 29746, [SMALL_STATE(357)] = 29813, [SMALL_STATE(358)] = 29861, [SMALL_STATE(359)] = 29909, [SMALL_STATE(360)] = 29957, [SMALL_STATE(361)] = 30005, - [SMALL_STATE(362)] = 30052, - [SMALL_STATE(363)] = 30095, - [SMALL_STATE(364)] = 30138, - [SMALL_STATE(365)] = 30195, - [SMALL_STATE(366)] = 30252, - [SMALL_STATE(367)] = 30309, - [SMALL_STATE(368)] = 30356, - [SMALL_STATE(369)] = 30399, - [SMALL_STATE(370)] = 30456, - [SMALL_STATE(371)] = 30499, - [SMALL_STATE(372)] = 30542, - [SMALL_STATE(373)] = 30585, - [SMALL_STATE(374)] = 30628, - [SMALL_STATE(375)] = 30671, + [SMALL_STATE(362)] = 30062, + [SMALL_STATE(363)] = 30119, + [SMALL_STATE(364)] = 30162, + [SMALL_STATE(365)] = 30205, + [SMALL_STATE(366)] = 30262, + [SMALL_STATE(367)] = 30305, + [SMALL_STATE(368)] = 30348, + [SMALL_STATE(369)] = 30405, + [SMALL_STATE(370)] = 30448, + [SMALL_STATE(371)] = 30491, + [SMALL_STATE(372)] = 30534, + [SMALL_STATE(373)] = 30577, + [SMALL_STATE(374)] = 30620, + [SMALL_STATE(375)] = 30667, [SMALL_STATE(376)] = 30714, [SMALL_STATE(377)] = 30757, [SMALL_STATE(378)] = 30800, [SMALL_STATE(379)] = 30857, [SMALL_STATE(380)] = 30914, - [SMALL_STATE(381)] = 30970, - [SMALL_STATE(382)] = 31012, + [SMALL_STATE(381)] = 30958, + [SMALL_STATE(382)] = 31014, [SMALL_STATE(383)] = 31056, [SMALL_STATE(384)] = 31102, [SMALL_STATE(385)] = 31144, - [SMALL_STATE(386)] = 31188, - [SMALL_STATE(387)] = 31230, + [SMALL_STATE(386)] = 31186, + [SMALL_STATE(387)] = 31242, [SMALL_STATE(388)] = 31286, - [SMALL_STATE(389)] = 31330, - [SMALL_STATE(390)] = 31372, - [SMALL_STATE(391)] = 31414, - [SMALL_STATE(392)] = 31460, - [SMALL_STATE(393)] = 31506, - [SMALL_STATE(394)] = 31550, - [SMALL_STATE(395)] = 31592, - [SMALL_STATE(396)] = 31634, + [SMALL_STATE(389)] = 31328, + [SMALL_STATE(390)] = 31370, + [SMALL_STATE(391)] = 31412, + [SMALL_STATE(392)] = 31454, + [SMALL_STATE(393)] = 31498, + [SMALL_STATE(394)] = 31542, + [SMALL_STATE(395)] = 31584, + [SMALL_STATE(396)] = 31630, [SMALL_STATE(397)] = 31676, [SMALL_STATE(398)] = 31732, [SMALL_STATE(399)] = 31778, [SMALL_STATE(400)] = 31855, - [SMALL_STATE(401)] = 31896, - [SMALL_STATE(402)] = 31971, - [SMALL_STATE(403)] = 32024, - [SMALL_STATE(404)] = 32099, - [SMALL_STATE(405)] = 32148, - [SMALL_STATE(406)] = 32191, - [SMALL_STATE(407)] = 32242, - [SMALL_STATE(408)] = 32295, - [SMALL_STATE(409)] = 32336, - [SMALL_STATE(410)] = 32377, - [SMALL_STATE(411)] = 32432, - [SMALL_STATE(412)] = 32489, - [SMALL_STATE(413)] = 32530, - [SMALL_STATE(414)] = 32575, - [SMALL_STATE(415)] = 32616, - [SMALL_STATE(416)] = 32657, - [SMALL_STATE(417)] = 32698, - [SMALL_STATE(418)] = 32739, - [SMALL_STATE(419)] = 32814, - [SMALL_STATE(420)] = 32855, - [SMALL_STATE(421)] = 32896, - [SMALL_STATE(422)] = 32939, - [SMALL_STATE(423)] = 33016, - [SMALL_STATE(424)] = 33057, - [SMALL_STATE(425)] = 33110, - [SMALL_STATE(426)] = 33153, + [SMALL_STATE(401)] = 31930, + [SMALL_STATE(402)] = 32005, + [SMALL_STATE(403)] = 32056, + [SMALL_STATE(404)] = 32105, + [SMALL_STATE(405)] = 32146, + [SMALL_STATE(406)] = 32201, + [SMALL_STATE(407)] = 32258, + [SMALL_STATE(408)] = 32303, + [SMALL_STATE(409)] = 32344, + [SMALL_STATE(410)] = 32385, + [SMALL_STATE(411)] = 32426, + [SMALL_STATE(412)] = 32467, + [SMALL_STATE(413)] = 32508, + [SMALL_STATE(414)] = 32567, + [SMALL_STATE(415)] = 32642, + [SMALL_STATE(416)] = 32685, + [SMALL_STATE(417)] = 32726, + [SMALL_STATE(418)] = 32767, + [SMALL_STATE(419)] = 32808, + [SMALL_STATE(420)] = 32849, + [SMALL_STATE(421)] = 32890, + [SMALL_STATE(422)] = 32931, + [SMALL_STATE(423)] = 32984, + [SMALL_STATE(424)] = 33037, + [SMALL_STATE(425)] = 33096, + [SMALL_STATE(426)] = 33171, [SMALL_STATE(427)] = 33212, - [SMALL_STATE(428)] = 33287, - [SMALL_STATE(429)] = 33340, - [SMALL_STATE(430)] = 33381, - [SMALL_STATE(431)] = 33422, - [SMALL_STATE(432)] = 33481, - [SMALL_STATE(433)] = 33522, - [SMALL_STATE(434)] = 33599, - [SMALL_STATE(435)] = 33640, - [SMALL_STATE(436)] = 33681, - [SMALL_STATE(437)] = 33756, - [SMALL_STATE(438)] = 33797, - [SMALL_STATE(439)] = 33838, - [SMALL_STATE(440)] = 33879, - [SMALL_STATE(441)] = 33920, + [SMALL_STATE(428)] = 33253, + [SMALL_STATE(429)] = 33294, + [SMALL_STATE(430)] = 33335, + [SMALL_STATE(431)] = 33376, + [SMALL_STATE(432)] = 33417, + [SMALL_STATE(433)] = 33458, + [SMALL_STATE(434)] = 33511, + [SMALL_STATE(435)] = 33564, + [SMALL_STATE(436)] = 33607, + [SMALL_STATE(437)] = 33648, + [SMALL_STATE(438)] = 33691, + [SMALL_STATE(439)] = 33766, + [SMALL_STATE(440)] = 33843, + [SMALL_STATE(441)] = 33884, [SMALL_STATE(442)] = 33961, [SMALL_STATE(443)] = 34002, [SMALL_STATE(444)] = 34077, @@ -50624,7 +50872,7 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(450)] = 34317, [SMALL_STATE(451)] = 34357, [SMALL_STATE(452)] = 34397, - [SMALL_STATE(453)] = 34441, + [SMALL_STATE(453)] = 34437, [SMALL_STATE(454)] = 34481, [SMALL_STATE(455)] = 34521, [SMALL_STATE(456)] = 34561, @@ -50677,117 +50925,117 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(503)] = 36441, [SMALL_STATE(504)] = 36512, [SMALL_STATE(505)] = 36579, - [SMALL_STATE(506)] = 36650, - [SMALL_STATE(507)] = 36717, - [SMALL_STATE(508)] = 36786, - [SMALL_STATE(509)] = 36857, - [SMALL_STATE(510)] = 36926, - [SMALL_STATE(511)] = 36993, - [SMALL_STATE(512)] = 37064, - [SMALL_STATE(513)] = 37131, - [SMALL_STATE(514)] = 37198, - [SMALL_STATE(515)] = 37265, - [SMALL_STATE(516)] = 37332, - [SMALL_STATE(517)] = 37399, - [SMALL_STATE(518)] = 37466, - [SMALL_STATE(519)] = 37533, - [SMALL_STATE(520)] = 37604, + [SMALL_STATE(506)] = 36648, + [SMALL_STATE(507)] = 36715, + [SMALL_STATE(508)] = 36784, + [SMALL_STATE(509)] = 36855, + [SMALL_STATE(510)] = 36912, + [SMALL_STATE(511)] = 36983, + [SMALL_STATE(512)] = 37050, + [SMALL_STATE(513)] = 37117, + [SMALL_STATE(514)] = 37184, + [SMALL_STATE(515)] = 37251, + [SMALL_STATE(516)] = 37318, + [SMALL_STATE(517)] = 37389, + [SMALL_STATE(518)] = 37456, + [SMALL_STATE(519)] = 37523, + [SMALL_STATE(520)] = 37594, [SMALL_STATE(521)] = 37661, - [SMALL_STATE(522)] = 37699, + [SMALL_STATE(522)] = 37723, [SMALL_STATE(523)] = 37761, - [SMALL_STATE(524)] = 37829, - [SMALL_STATE(525)] = 37867, - [SMALL_STATE(526)] = 37905, - [SMALL_STATE(527)] = 37973, - [SMALL_STATE(528)] = 38011, + [SMALL_STATE(524)] = 37799, + [SMALL_STATE(525)] = 37837, + [SMALL_STATE(526)] = 37875, + [SMALL_STATE(527)] = 37913, + [SMALL_STATE(528)] = 37981, [SMALL_STATE(529)] = 38049, [SMALL_STATE(530)] = 38087, - [SMALL_STATE(531)] = 38149, - [SMALL_STATE(532)] = 38211, - [SMALL_STATE(533)] = 38249, - [SMALL_STATE(534)] = 38317, - [SMALL_STATE(535)] = 38355, - [SMALL_STATE(536)] = 38417, - [SMALL_STATE(537)] = 38455, - [SMALL_STATE(538)] = 38493, - [SMALL_STATE(539)] = 38531, - [SMALL_STATE(540)] = 38569, - [SMALL_STATE(541)] = 38607, - [SMALL_STATE(542)] = 38645, - [SMALL_STATE(543)] = 38683, - [SMALL_STATE(544)] = 38721, + [SMALL_STATE(531)] = 38125, + [SMALL_STATE(532)] = 38163, + [SMALL_STATE(533)] = 38231, + [SMALL_STATE(534)] = 38269, + [SMALL_STATE(535)] = 38307, + [SMALL_STATE(536)] = 38345, + [SMALL_STATE(537)] = 38407, + [SMALL_STATE(538)] = 38445, + [SMALL_STATE(539)] = 38507, + [SMALL_STATE(540)] = 38575, + [SMALL_STATE(541)] = 38613, + [SMALL_STATE(542)] = 38651, + [SMALL_STATE(543)] = 38689, + [SMALL_STATE(544)] = 38751, [SMALL_STATE(545)] = 38789, [SMALL_STATE(546)] = 38827, [SMALL_STATE(547)] = 38892, [SMALL_STATE(548)] = 38957, [SMALL_STATE(549)] = 39022, [SMALL_STATE(550)] = 39087, - [SMALL_STATE(551)] = 39146, - [SMALL_STATE(552)] = 39205, - [SMALL_STATE(553)] = 39270, - [SMALL_STATE(554)] = 39335, - [SMALL_STATE(555)] = 39394, - [SMALL_STATE(556)] = 39459, - [SMALL_STATE(557)] = 39524, - [SMALL_STATE(558)] = 39589, - [SMALL_STATE(559)] = 39654, - [SMALL_STATE(560)] = 39719, - [SMALL_STATE(561)] = 39784, - [SMALL_STATE(562)] = 39849, - [SMALL_STATE(563)] = 39914, - [SMALL_STATE(564)] = 39979, - [SMALL_STATE(565)] = 40044, - [SMALL_STATE(566)] = 40109, - [SMALL_STATE(567)] = 40174, - [SMALL_STATE(568)] = 40233, - [SMALL_STATE(569)] = 40292, - [SMALL_STATE(570)] = 40357, - [SMALL_STATE(571)] = 40422, + [SMALL_STATE(551)] = 39152, + [SMALL_STATE(552)] = 39217, + [SMALL_STATE(553)] = 39282, + [SMALL_STATE(554)] = 39347, + [SMALL_STATE(555)] = 39412, + [SMALL_STATE(556)] = 39477, + [SMALL_STATE(557)] = 39542, + [SMALL_STATE(558)] = 39607, + [SMALL_STATE(559)] = 39672, + [SMALL_STATE(560)] = 39737, + [SMALL_STATE(561)] = 39802, + [SMALL_STATE(562)] = 39867, + [SMALL_STATE(563)] = 39932, + [SMALL_STATE(564)] = 39991, + [SMALL_STATE(565)] = 40050, + [SMALL_STATE(566)] = 40115, + [SMALL_STATE(567)] = 40180, + [SMALL_STATE(568)] = 40245, + [SMALL_STATE(569)] = 40304, + [SMALL_STATE(570)] = 40369, + [SMALL_STATE(571)] = 40428, [SMALL_STATE(572)] = 40487, [SMALL_STATE(573)] = 40549, [SMALL_STATE(574)] = 40611, [SMALL_STATE(575)] = 40673, - [SMALL_STATE(576)] = 40727, - [SMALL_STATE(577)] = 40781, - [SMALL_STATE(578)] = 40835, - [SMALL_STATE(579)] = 40897, - [SMALL_STATE(580)] = 40959, - [SMALL_STATE(581)] = 41021, - [SMALL_STATE(582)] = 41083, - [SMALL_STATE(583)] = 41145, + [SMALL_STATE(576)] = 40735, + [SMALL_STATE(577)] = 40789, + [SMALL_STATE(578)] = 40851, + [SMALL_STATE(579)] = 40913, + [SMALL_STATE(580)] = 40967, + [SMALL_STATE(581)] = 41029, + [SMALL_STATE(582)] = 41091, + [SMALL_STATE(583)] = 41153, [SMALL_STATE(584)] = 41207, [SMALL_STATE(585)] = 41269, [SMALL_STATE(586)] = 41331, [SMALL_STATE(587)] = 41393, - [SMALL_STATE(588)] = 41446, - [SMALL_STATE(589)] = 41499, - [SMALL_STATE(590)] = 41558, - [SMALL_STATE(591)] = 41611, - [SMALL_STATE(592)] = 41664, + [SMALL_STATE(588)] = 41452, + [SMALL_STATE(589)] = 41505, + [SMALL_STATE(590)] = 41564, + [SMALL_STATE(591)] = 41617, + [SMALL_STATE(592)] = 41670, [SMALL_STATE(593)] = 41723, - [SMALL_STATE(594)] = 41782, + [SMALL_STATE(594)] = 41776, [SMALL_STATE(595)] = 41835, [SMALL_STATE(596)] = 41894, - [SMALL_STATE(597)] = 41953, - [SMALL_STATE(598)] = 42006, - [SMALL_STATE(599)] = 42059, - [SMALL_STATE(600)] = 42118, - [SMALL_STATE(601)] = 42177, - [SMALL_STATE(602)] = 42236, - [SMALL_STATE(603)] = 42295, - [SMALL_STATE(604)] = 42348, - [SMALL_STATE(605)] = 42401, - [SMALL_STATE(606)] = 42454, + [SMALL_STATE(597)] = 41947, + [SMALL_STATE(598)] = 42000, + [SMALL_STATE(599)] = 42053, + [SMALL_STATE(600)] = 42112, + [SMALL_STATE(601)] = 42165, + [SMALL_STATE(602)] = 42224, + [SMALL_STATE(603)] = 42277, + [SMALL_STATE(604)] = 42336, + [SMALL_STATE(605)] = 42389, + [SMALL_STATE(606)] = 42448, [SMALL_STATE(607)] = 42507, - [SMALL_STATE(608)] = 42566, + [SMALL_STATE(608)] = 42560, [SMALL_STATE(609)] = 42619, [SMALL_STATE(610)] = 42678, - [SMALL_STATE(611)] = 42737, - [SMALL_STATE(612)] = 42790, + [SMALL_STATE(611)] = 42731, + [SMALL_STATE(612)] = 42784, [SMALL_STATE(613)] = 42843, - [SMALL_STATE(614)] = 42896, - [SMALL_STATE(615)] = 42949, - [SMALL_STATE(616)] = 43002, + [SMALL_STATE(614)] = 42902, + [SMALL_STATE(615)] = 42955, + [SMALL_STATE(616)] = 43008, [SMALL_STATE(617)] = 43061, [SMALL_STATE(618)] = 43117, [SMALL_STATE(619)] = 43173, @@ -50803,14 +51051,14 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(629)] = 43684, [SMALL_STATE(630)] = 43714, [SMALL_STATE(631)] = 43744, - [SMALL_STATE(632)] = 43787, - [SMALL_STATE(633)] = 43816, + [SMALL_STATE(632)] = 43773, + [SMALL_STATE(633)] = 43820, [SMALL_STATE(634)] = 43863, - [SMALL_STATE(635)] = 43892, - [SMALL_STATE(636)] = 43921, + [SMALL_STATE(635)] = 43906, + [SMALL_STATE(636)] = 43935, [SMALL_STATE(637)] = 43964, - [SMALL_STATE(638)] = 43993, - [SMALL_STATE(639)] = 44036, + [SMALL_STATE(638)] = 44011, + [SMALL_STATE(639)] = 44040, [SMALL_STATE(640)] = 44083, [SMALL_STATE(641)] = 44130, [SMALL_STATE(642)] = 44174, @@ -50844,111 +51092,111 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(670)] = 45315, [SMALL_STATE(671)] = 45353, [SMALL_STATE(672)] = 45391, - [SMALL_STATE(673)] = 45429, - [SMALL_STATE(674)] = 45467, - [SMALL_STATE(675)] = 45505, - [SMALL_STATE(676)] = 45529, - [SMALL_STATE(677)] = 45567, - [SMALL_STATE(678)] = 45595, - [SMALL_STATE(679)] = 45621, - [SMALL_STATE(680)] = 45659, - [SMALL_STATE(681)] = 45697, - [SMALL_STATE(682)] = 45735, - [SMALL_STATE(683)] = 45773, - [SMALL_STATE(684)] = 45811, - [SMALL_STATE(685)] = 45849, - [SMALL_STATE(686)] = 45875, - [SMALL_STATE(687)] = 45901, - [SMALL_STATE(688)] = 45939, - [SMALL_STATE(689)] = 45977, - [SMALL_STATE(690)] = 46015, - [SMALL_STATE(691)] = 46053, - [SMALL_STATE(692)] = 46079, - [SMALL_STATE(693)] = 46117, + [SMALL_STATE(673)] = 45419, + [SMALL_STATE(674)] = 45445, + [SMALL_STATE(675)] = 45483, + [SMALL_STATE(676)] = 45521, + [SMALL_STATE(677)] = 45559, + [SMALL_STATE(678)] = 45597, + [SMALL_STATE(679)] = 45635, + [SMALL_STATE(680)] = 45673, + [SMALL_STATE(681)] = 45711, + [SMALL_STATE(682)] = 45737, + [SMALL_STATE(683)] = 45775, + [SMALL_STATE(684)] = 45801, + [SMALL_STATE(685)] = 45827, + [SMALL_STATE(686)] = 45851, + [SMALL_STATE(687)] = 45889, + [SMALL_STATE(688)] = 45927, + [SMALL_STATE(689)] = 45965, + [SMALL_STATE(690)] = 46003, + [SMALL_STATE(691)] = 46029, + [SMALL_STATE(692)] = 46067, + [SMALL_STATE(693)] = 46105, [SMALL_STATE(694)] = 46143, - [SMALL_STATE(695)] = 46169, - [SMALL_STATE(696)] = 46207, + [SMALL_STATE(695)] = 46181, + [SMALL_STATE(696)] = 46209, [SMALL_STATE(697)] = 46235, [SMALL_STATE(698)] = 46273, - [SMALL_STATE(699)] = 46306, - [SMALL_STATE(700)] = 46333, + [SMALL_STATE(699)] = 46304, + [SMALL_STATE(700)] = 46331, [SMALL_STATE(701)] = 46360, - [SMALL_STATE(702)] = 46389, - [SMALL_STATE(703)] = 46416, - [SMALL_STATE(704)] = 46455, - [SMALL_STATE(705)] = 46494, - [SMALL_STATE(706)] = 46523, - [SMALL_STATE(707)] = 46546, - [SMALL_STATE(708)] = 46579, - [SMALL_STATE(709)] = 46610, - [SMALL_STATE(710)] = 46649, + [SMALL_STATE(702)] = 46387, + [SMALL_STATE(703)] = 46414, + [SMALL_STATE(704)] = 46447, + [SMALL_STATE(705)] = 46486, + [SMALL_STATE(706)] = 46525, + [SMALL_STATE(707)] = 46558, + [SMALL_STATE(708)] = 46589, + [SMALL_STATE(709)] = 46618, + [SMALL_STATE(710)] = 46641, [SMALL_STATE(711)] = 46680, [SMALL_STATE(712)] = 46702, - [SMALL_STATE(713)] = 46728, - [SMALL_STATE(714)] = 46764, - [SMALL_STATE(715)] = 46786, - [SMALL_STATE(716)] = 46808, - [SMALL_STATE(717)] = 46830, - [SMALL_STATE(718)] = 46852, - [SMALL_STATE(719)] = 46874, - [SMALL_STATE(720)] = 46896, - [SMALL_STATE(721)] = 46918, - [SMALL_STATE(722)] = 46940, - [SMALL_STATE(723)] = 46966, + [SMALL_STATE(713)] = 46724, + [SMALL_STATE(714)] = 46746, + [SMALL_STATE(715)] = 46782, + [SMALL_STATE(716)] = 46818, + [SMALL_STATE(717)] = 46844, + [SMALL_STATE(718)] = 46866, + [SMALL_STATE(719)] = 46888, + [SMALL_STATE(720)] = 46910, + [SMALL_STATE(721)] = 46932, + [SMALL_STATE(722)] = 46954, + [SMALL_STATE(723)] = 46980, [SMALL_STATE(724)] = 47002, [SMALL_STATE(725)] = 47024, [SMALL_STATE(726)] = 47046, - [SMALL_STATE(727)] = 47082, - [SMALL_STATE(728)] = 47118, + [SMALL_STATE(727)] = 47072, + [SMALL_STATE(728)] = 47108, [SMALL_STATE(729)] = 47144, [SMALL_STATE(730)] = 47166, [SMALL_STATE(731)] = 47192, [SMALL_STATE(732)] = 47213, [SMALL_STATE(733)] = 47254, - [SMALL_STATE(734)] = 47277, - [SMALL_STATE(735)] = 47318, - [SMALL_STATE(736)] = 47339, - [SMALL_STATE(737)] = 47360, - [SMALL_STATE(738)] = 47381, - [SMALL_STATE(739)] = 47402, - [SMALL_STATE(740)] = 47443, - [SMALL_STATE(741)] = 47464, - [SMALL_STATE(742)] = 47485, - [SMALL_STATE(743)] = 47506, - [SMALL_STATE(744)] = 47527, - [SMALL_STATE(745)] = 47548, - [SMALL_STATE(746)] = 47569, - [SMALL_STATE(747)] = 47590, - [SMALL_STATE(748)] = 47611, - [SMALL_STATE(749)] = 47632, - [SMALL_STATE(750)] = 47653, - [SMALL_STATE(751)] = 47674, - [SMALL_STATE(752)] = 47695, - [SMALL_STATE(753)] = 47716, - [SMALL_STATE(754)] = 47737, - [SMALL_STATE(755)] = 47758, - [SMALL_STATE(756)] = 47779, - [SMALL_STATE(757)] = 47800, - [SMALL_STATE(758)] = 47833, - [SMALL_STATE(759)] = 47854, - [SMALL_STATE(760)] = 47875, + [SMALL_STATE(734)] = 47275, + [SMALL_STATE(735)] = 47296, + [SMALL_STATE(736)] = 47317, + [SMALL_STATE(737)] = 47358, + [SMALL_STATE(738)] = 47379, + [SMALL_STATE(739)] = 47400, + [SMALL_STATE(740)] = 47421, + [SMALL_STATE(741)] = 47442, + [SMALL_STATE(742)] = 47463, + [SMALL_STATE(743)] = 47484, + [SMALL_STATE(744)] = 47517, + [SMALL_STATE(745)] = 47538, + [SMALL_STATE(746)] = 47559, + [SMALL_STATE(747)] = 47580, + [SMALL_STATE(748)] = 47601, + [SMALL_STATE(749)] = 47622, + [SMALL_STATE(750)] = 47645, + [SMALL_STATE(751)] = 47666, + [SMALL_STATE(752)] = 47687, + [SMALL_STATE(753)] = 47708, + [SMALL_STATE(754)] = 47741, + [SMALL_STATE(755)] = 47762, + [SMALL_STATE(756)] = 47783, + [SMALL_STATE(757)] = 47824, + [SMALL_STATE(758)] = 47845, + [SMALL_STATE(759)] = 47866, + [SMALL_STATE(760)] = 47887, [SMALL_STATE(761)] = 47908, [SMALL_STATE(762)] = 47929, [SMALL_STATE(763)] = 47950, [SMALL_STATE(764)] = 47970, - [SMALL_STATE(765)] = 47990, - [SMALL_STATE(766)] = 48014, - [SMALL_STATE(767)] = 48034, - [SMALL_STATE(768)] = 48054, - [SMALL_STATE(769)] = 48074, - [SMALL_STATE(770)] = 48094, + [SMALL_STATE(765)] = 48008, + [SMALL_STATE(766)] = 48028, + [SMALL_STATE(767)] = 48048, + [SMALL_STATE(768)] = 48068, + [SMALL_STATE(769)] = 48088, + [SMALL_STATE(770)] = 48112, [SMALL_STATE(771)] = 48132, [SMALL_STATE(772)] = 48159, - [SMALL_STATE(773)] = 48178, - [SMALL_STATE(774)] = 48199, - [SMALL_STATE(775)] = 48218, - [SMALL_STATE(776)] = 48237, - [SMALL_STATE(777)] = 48256, + [SMALL_STATE(773)] = 48182, + [SMALL_STATE(774)] = 48201, + [SMALL_STATE(775)] = 48222, + [SMALL_STATE(776)] = 48241, + [SMALL_STATE(777)] = 48260, [SMALL_STATE(778)] = 48279, [SMALL_STATE(779)] = 48297, [SMALL_STATE(780)] = 48315, @@ -50956,498 +51204,514 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(782)] = 48351, [SMALL_STATE(783)] = 48369, [SMALL_STATE(784)] = 48387, - [SMALL_STATE(785)] = 48405, + [SMALL_STATE(785)] = 48415, [SMALL_STATE(786)] = 48433, - [SMALL_STATE(787)] = 48451, - [SMALL_STATE(788)] = 48469, - [SMALL_STATE(789)] = 48489, - [SMALL_STATE(790)] = 48507, - [SMALL_STATE(791)] = 48525, - [SMALL_STATE(792)] = 48543, - [SMALL_STATE(793)] = 48561, - [SMALL_STATE(794)] = 48579, - [SMALL_STATE(795)] = 48597, - [SMALL_STATE(796)] = 48615, - [SMALL_STATE(797)] = 48643, - [SMALL_STATE(798)] = 48661, - [SMALL_STATE(799)] = 48679, - [SMALL_STATE(800)] = 48697, - [SMALL_STATE(801)] = 48715, - [SMALL_STATE(802)] = 48733, - [SMALL_STATE(803)] = 48750, - [SMALL_STATE(804)] = 48776, - [SMALL_STATE(805)] = 48798, - [SMALL_STATE(806)] = 48822, - [SMALL_STATE(807)] = 48848, - [SMALL_STATE(808)] = 48872, - [SMALL_STATE(809)] = 48894, - [SMALL_STATE(810)] = 48920, - [SMALL_STATE(811)] = 48944, - [SMALL_STATE(812)] = 48968, - [SMALL_STATE(813)] = 48992, - [SMALL_STATE(814)] = 49016, - [SMALL_STATE(815)] = 49040, - [SMALL_STATE(816)] = 49066, - [SMALL_STATE(817)] = 49088, - [SMALL_STATE(818)] = 49110, - [SMALL_STATE(819)] = 49134, - [SMALL_STATE(820)] = 49154, - [SMALL_STATE(821)] = 49180, - [SMALL_STATE(822)] = 49204, - [SMALL_STATE(823)] = 49226, - [SMALL_STATE(824)] = 49248, - [SMALL_STATE(825)] = 49274, - [SMALL_STATE(826)] = 49298, - [SMALL_STATE(827)] = 49318, - [SMALL_STATE(828)] = 49339, - [SMALL_STATE(829)] = 49358, - [SMALL_STATE(830)] = 49381, - [SMALL_STATE(831)] = 49402, - [SMALL_STATE(832)] = 49423, - [SMALL_STATE(833)] = 49444, - [SMALL_STATE(834)] = 49467, - [SMALL_STATE(835)] = 49490, - [SMALL_STATE(836)] = 49509, - [SMALL_STATE(837)] = 49528, - [SMALL_STATE(838)] = 49551, - [SMALL_STATE(839)] = 49572, - [SMALL_STATE(840)] = 49593, - [SMALL_STATE(841)] = 49612, - [SMALL_STATE(842)] = 49633, - [SMALL_STATE(843)] = 49656, - [SMALL_STATE(844)] = 49673, - [SMALL_STATE(845)] = 49692, - [SMALL_STATE(846)] = 49715, - [SMALL_STATE(847)] = 49736, - [SMALL_STATE(848)] = 49759, - [SMALL_STATE(849)] = 49780, - [SMALL_STATE(850)] = 49799, - [SMALL_STATE(851)] = 49819, - [SMALL_STATE(852)] = 49839, - [SMALL_STATE(853)] = 49857, - [SMALL_STATE(854)] = 49875, - [SMALL_STATE(855)] = 49891, - [SMALL_STATE(856)] = 49909, - [SMALL_STATE(857)] = 49927, - [SMALL_STATE(858)] = 49945, - [SMALL_STATE(859)] = 49963, - [SMALL_STATE(860)] = 49981, - [SMALL_STATE(861)] = 49999, - [SMALL_STATE(862)] = 50015, - [SMALL_STATE(863)] = 50033, - [SMALL_STATE(864)] = 50051, - [SMALL_STATE(865)] = 50069, - [SMALL_STATE(866)] = 50085, - [SMALL_STATE(867)] = 50103, - [SMALL_STATE(868)] = 50123, - [SMALL_STATE(869)] = 50143, - [SMALL_STATE(870)] = 50161, - [SMALL_STATE(871)] = 50179, - [SMALL_STATE(872)] = 50197, - [SMALL_STATE(873)] = 50217, - [SMALL_STATE(874)] = 50235, - [SMALL_STATE(875)] = 50253, - [SMALL_STATE(876)] = 50273, - [SMALL_STATE(877)] = 50291, - [SMALL_STATE(878)] = 50309, - [SMALL_STATE(879)] = 50329, - [SMALL_STATE(880)] = 50345, - [SMALL_STATE(881)] = 50363, - [SMALL_STATE(882)] = 50381, - [SMALL_STATE(883)] = 50401, - [SMALL_STATE(884)] = 50419, - [SMALL_STATE(885)] = 50439, - [SMALL_STATE(886)] = 50457, - [SMALL_STATE(887)] = 50475, - [SMALL_STATE(888)] = 50491, - [SMALL_STATE(889)] = 50509, - [SMALL_STATE(890)] = 50527, - [SMALL_STATE(891)] = 50547, - [SMALL_STATE(892)] = 50565, - [SMALL_STATE(893)] = 50585, - [SMALL_STATE(894)] = 50605, - [SMALL_STATE(895)] = 50623, - [SMALL_STATE(896)] = 50641, - [SMALL_STATE(897)] = 50659, - [SMALL_STATE(898)] = 50677, - [SMALL_STATE(899)] = 50694, - [SMALL_STATE(900)] = 50711, - [SMALL_STATE(901)] = 50728, - [SMALL_STATE(902)] = 50741, - [SMALL_STATE(903)] = 50758, - [SMALL_STATE(904)] = 50775, - [SMALL_STATE(905)] = 50792, - [SMALL_STATE(906)] = 50809, - [SMALL_STATE(907)] = 50826, - [SMALL_STATE(908)] = 50843, - [SMALL_STATE(909)] = 50860, - [SMALL_STATE(910)] = 50877, - [SMALL_STATE(911)] = 50894, - [SMALL_STATE(912)] = 50911, - [SMALL_STATE(913)] = 50928, - [SMALL_STATE(914)] = 50945, - [SMALL_STATE(915)] = 50960, - [SMALL_STATE(916)] = 50977, - [SMALL_STATE(917)] = 50994, - [SMALL_STATE(918)] = 51011, - [SMALL_STATE(919)] = 51028, - [SMALL_STATE(920)] = 51045, - [SMALL_STATE(921)] = 51062, - [SMALL_STATE(922)] = 51079, - [SMALL_STATE(923)] = 51092, - [SMALL_STATE(924)] = 51109, - [SMALL_STATE(925)] = 51126, - [SMALL_STATE(926)] = 51139, - [SMALL_STATE(927)] = 51156, - [SMALL_STATE(928)] = 51171, - [SMALL_STATE(929)] = 51184, - [SMALL_STATE(930)] = 51201, - [SMALL_STATE(931)] = 51218, - [SMALL_STATE(932)] = 51235, - [SMALL_STATE(933)] = 51252, - [SMALL_STATE(934)] = 51269, - [SMALL_STATE(935)] = 51286, - [SMALL_STATE(936)] = 51303, - [SMALL_STATE(937)] = 51320, - [SMALL_STATE(938)] = 51337, - [SMALL_STATE(939)] = 51354, - [SMALL_STATE(940)] = 51369, - [SMALL_STATE(941)] = 51386, - [SMALL_STATE(942)] = 51403, - [SMALL_STATE(943)] = 51418, - [SMALL_STATE(944)] = 51435, - [SMALL_STATE(945)] = 51450, - [SMALL_STATE(946)] = 51463, - [SMALL_STATE(947)] = 51480, - [SMALL_STATE(948)] = 51493, - [SMALL_STATE(949)] = 51510, - [SMALL_STATE(950)] = 51527, - [SMALL_STATE(951)] = 51544, - [SMALL_STATE(952)] = 51561, - [SMALL_STATE(953)] = 51578, - [SMALL_STATE(954)] = 51591, - [SMALL_STATE(955)] = 51608, - [SMALL_STATE(956)] = 51621, - [SMALL_STATE(957)] = 51636, - [SMALL_STATE(958)] = 51649, - [SMALL_STATE(959)] = 51666, - [SMALL_STATE(960)] = 51683, - [SMALL_STATE(961)] = 51700, - [SMALL_STATE(962)] = 51713, - [SMALL_STATE(963)] = 51730, - [SMALL_STATE(964)] = 51747, - [SMALL_STATE(965)] = 51760, - [SMALL_STATE(966)] = 51777, - [SMALL_STATE(967)] = 51794, - [SMALL_STATE(968)] = 51807, - [SMALL_STATE(969)] = 51824, - [SMALL_STATE(970)] = 51837, - [SMALL_STATE(971)] = 51850, - [SMALL_STATE(972)] = 51863, - [SMALL_STATE(973)] = 51876, - [SMALL_STATE(974)] = 51889, - [SMALL_STATE(975)] = 51902, - [SMALL_STATE(976)] = 51919, - [SMALL_STATE(977)] = 51936, - [SMALL_STATE(978)] = 51953, - [SMALL_STATE(979)] = 51970, - [SMALL_STATE(980)] = 51983, - [SMALL_STATE(981)] = 52000, - [SMALL_STATE(982)] = 52017, - [SMALL_STATE(983)] = 52034, - [SMALL_STATE(984)] = 52051, - [SMALL_STATE(985)] = 52068, - [SMALL_STATE(986)] = 52085, - [SMALL_STATE(987)] = 52098, - [SMALL_STATE(988)] = 52115, - [SMALL_STATE(989)] = 52132, - [SMALL_STATE(990)] = 52149, - [SMALL_STATE(991)] = 52166, - [SMALL_STATE(992)] = 52179, - [SMALL_STATE(993)] = 52196, - [SMALL_STATE(994)] = 52213, - [SMALL_STATE(995)] = 52230, - [SMALL_STATE(996)] = 52243, - [SMALL_STATE(997)] = 52260, - [SMALL_STATE(998)] = 52277, - [SMALL_STATE(999)] = 52290, - [SMALL_STATE(1000)] = 52303, - [SMALL_STATE(1001)] = 52320, - [SMALL_STATE(1002)] = 52337, - [SMALL_STATE(1003)] = 52354, - [SMALL_STATE(1004)] = 52371, - [SMALL_STATE(1005)] = 52388, - [SMALL_STATE(1006)] = 52405, - [SMALL_STATE(1007)] = 52422, - [SMALL_STATE(1008)] = 52439, - [SMALL_STATE(1009)] = 52456, - [SMALL_STATE(1010)] = 52473, - [SMALL_STATE(1011)] = 52490, - [SMALL_STATE(1012)] = 52507, - [SMALL_STATE(1013)] = 52524, - [SMALL_STATE(1014)] = 52541, - [SMALL_STATE(1015)] = 52558, - [SMALL_STATE(1016)] = 52575, - [SMALL_STATE(1017)] = 52592, - [SMALL_STATE(1018)] = 52609, - [SMALL_STATE(1019)] = 52626, - [SMALL_STATE(1020)] = 52639, - [SMALL_STATE(1021)] = 52656, - [SMALL_STATE(1022)] = 52673, - [SMALL_STATE(1023)] = 52690, - [SMALL_STATE(1024)] = 52707, - [SMALL_STATE(1025)] = 52724, - [SMALL_STATE(1026)] = 52741, - [SMALL_STATE(1027)] = 52758, - [SMALL_STATE(1028)] = 52771, - [SMALL_STATE(1029)] = 52788, - [SMALL_STATE(1030)] = 52805, - [SMALL_STATE(1031)] = 52822, - [SMALL_STATE(1032)] = 52839, - [SMALL_STATE(1033)] = 52856, - [SMALL_STATE(1034)] = 52873, - [SMALL_STATE(1035)] = 52886, - [SMALL_STATE(1036)] = 52903, - [SMALL_STATE(1037)] = 52920, - [SMALL_STATE(1038)] = 52937, - [SMALL_STATE(1039)] = 52954, - [SMALL_STATE(1040)] = 52971, - [SMALL_STATE(1041)] = 52988, - [SMALL_STATE(1042)] = 53002, - [SMALL_STATE(1043)] = 53016, - [SMALL_STATE(1044)] = 53030, - [SMALL_STATE(1045)] = 53042, - [SMALL_STATE(1046)] = 53056, - [SMALL_STATE(1047)] = 53070, - [SMALL_STATE(1048)] = 53082, - [SMALL_STATE(1049)] = 53096, - [SMALL_STATE(1050)] = 53110, - [SMALL_STATE(1051)] = 53124, - [SMALL_STATE(1052)] = 53138, - [SMALL_STATE(1053)] = 53152, - [SMALL_STATE(1054)] = 53166, - [SMALL_STATE(1055)] = 53180, - [SMALL_STATE(1056)] = 53194, - [SMALL_STATE(1057)] = 53208, - [SMALL_STATE(1058)] = 53220, - [SMALL_STATE(1059)] = 53232, - [SMALL_STATE(1060)] = 53246, - [SMALL_STATE(1061)] = 53260, - [SMALL_STATE(1062)] = 53274, - [SMALL_STATE(1063)] = 53286, - [SMALL_STATE(1064)] = 53300, - [SMALL_STATE(1065)] = 53314, - [SMALL_STATE(1066)] = 53326, - [SMALL_STATE(1067)] = 53340, - [SMALL_STATE(1068)] = 53354, - [SMALL_STATE(1069)] = 53368, - [SMALL_STATE(1070)] = 53380, - [SMALL_STATE(1071)] = 53394, - [SMALL_STATE(1072)] = 53408, - [SMALL_STATE(1073)] = 53420, - [SMALL_STATE(1074)] = 53432, - [SMALL_STATE(1075)] = 53446, - [SMALL_STATE(1076)] = 53460, - [SMALL_STATE(1077)] = 53474, - [SMALL_STATE(1078)] = 53486, - [SMALL_STATE(1079)] = 53500, - [SMALL_STATE(1080)] = 53512, - [SMALL_STATE(1081)] = 53524, - [SMALL_STATE(1082)] = 53538, - [SMALL_STATE(1083)] = 53552, - [SMALL_STATE(1084)] = 53564, - [SMALL_STATE(1085)] = 53576, - [SMALL_STATE(1086)] = 53590, - [SMALL_STATE(1087)] = 53604, - [SMALL_STATE(1088)] = 53618, - [SMALL_STATE(1089)] = 53630, - [SMALL_STATE(1090)] = 53642, - [SMALL_STATE(1091)] = 53654, - [SMALL_STATE(1092)] = 53668, - [SMALL_STATE(1093)] = 53682, - [SMALL_STATE(1094)] = 53696, - [SMALL_STATE(1095)] = 53710, - [SMALL_STATE(1096)] = 53724, - [SMALL_STATE(1097)] = 53736, - [SMALL_STATE(1098)] = 53748, - [SMALL_STATE(1099)] = 53760, - [SMALL_STATE(1100)] = 53772, - [SMALL_STATE(1101)] = 53786, - [SMALL_STATE(1102)] = 53798, - [SMALL_STATE(1103)] = 53810, - [SMALL_STATE(1104)] = 53824, - [SMALL_STATE(1105)] = 53836, - [SMALL_STATE(1106)] = 53850, - [SMALL_STATE(1107)] = 53864, - [SMALL_STATE(1108)] = 53878, - [SMALL_STATE(1109)] = 53892, - [SMALL_STATE(1110)] = 53906, - [SMALL_STATE(1111)] = 53920, - [SMALL_STATE(1112)] = 53934, - [SMALL_STATE(1113)] = 53946, - [SMALL_STATE(1114)] = 53960, - [SMALL_STATE(1115)] = 53972, - [SMALL_STATE(1116)] = 53986, - [SMALL_STATE(1117)] = 53998, - [SMALL_STATE(1118)] = 54012, - [SMALL_STATE(1119)] = 54026, - [SMALL_STATE(1120)] = 54040, - [SMALL_STATE(1121)] = 54054, - [SMALL_STATE(1122)] = 54068, - [SMALL_STATE(1123)] = 54080, - [SMALL_STATE(1124)] = 54094, - [SMALL_STATE(1125)] = 54106, - [SMALL_STATE(1126)] = 54120, - [SMALL_STATE(1127)] = 54134, - [SMALL_STATE(1128)] = 54146, - [SMALL_STATE(1129)] = 54160, - [SMALL_STATE(1130)] = 54174, - [SMALL_STATE(1131)] = 54188, - [SMALL_STATE(1132)] = 54202, - [SMALL_STATE(1133)] = 54214, - [SMALL_STATE(1134)] = 54228, - [SMALL_STATE(1135)] = 54240, - [SMALL_STATE(1136)] = 54254, - [SMALL_STATE(1137)] = 54268, - [SMALL_STATE(1138)] = 54280, - [SMALL_STATE(1139)] = 54294, - [SMALL_STATE(1140)] = 54306, - [SMALL_STATE(1141)] = 54320, - [SMALL_STATE(1142)] = 54332, - [SMALL_STATE(1143)] = 54346, - [SMALL_STATE(1144)] = 54360, - [SMALL_STATE(1145)] = 54372, - [SMALL_STATE(1146)] = 54384, - [SMALL_STATE(1147)] = 54398, - [SMALL_STATE(1148)] = 54412, - [SMALL_STATE(1149)] = 54426, - [SMALL_STATE(1150)] = 54438, - [SMALL_STATE(1151)] = 54452, - [SMALL_STATE(1152)] = 54464, - [SMALL_STATE(1153)] = 54476, - [SMALL_STATE(1154)] = 54488, - [SMALL_STATE(1155)] = 54500, - [SMALL_STATE(1156)] = 54512, - [SMALL_STATE(1157)] = 54526, - [SMALL_STATE(1158)] = 54538, - [SMALL_STATE(1159)] = 54552, - [SMALL_STATE(1160)] = 54566, - [SMALL_STATE(1161)] = 54580, - [SMALL_STATE(1162)] = 54594, - [SMALL_STATE(1163)] = 54605, - [SMALL_STATE(1164)] = 54616, - [SMALL_STATE(1165)] = 54627, - [SMALL_STATE(1166)] = 54638, - [SMALL_STATE(1167)] = 54649, - [SMALL_STATE(1168)] = 54660, - [SMALL_STATE(1169)] = 54671, - [SMALL_STATE(1170)] = 54682, - [SMALL_STATE(1171)] = 54693, - [SMALL_STATE(1172)] = 54704, - [SMALL_STATE(1173)] = 54715, - [SMALL_STATE(1174)] = 54726, - [SMALL_STATE(1175)] = 54737, - [SMALL_STATE(1176)] = 54748, - [SMALL_STATE(1177)] = 54759, - [SMALL_STATE(1178)] = 54770, - [SMALL_STATE(1179)] = 54781, - [SMALL_STATE(1180)] = 54792, - [SMALL_STATE(1181)] = 54803, - [SMALL_STATE(1182)] = 54814, - [SMALL_STATE(1183)] = 54825, - [SMALL_STATE(1184)] = 54836, - [SMALL_STATE(1185)] = 54847, - [SMALL_STATE(1186)] = 54858, - [SMALL_STATE(1187)] = 54869, - [SMALL_STATE(1188)] = 54880, - [SMALL_STATE(1189)] = 54891, - [SMALL_STATE(1190)] = 54902, - [SMALL_STATE(1191)] = 54913, - [SMALL_STATE(1192)] = 54924, - [SMALL_STATE(1193)] = 54935, - [SMALL_STATE(1194)] = 54946, - [SMALL_STATE(1195)] = 54957, - [SMALL_STATE(1196)] = 54968, - [SMALL_STATE(1197)] = 54979, - [SMALL_STATE(1198)] = 54990, - [SMALL_STATE(1199)] = 55001, - [SMALL_STATE(1200)] = 55012, - [SMALL_STATE(1201)] = 55023, - [SMALL_STATE(1202)] = 55034, - [SMALL_STATE(1203)] = 55045, - [SMALL_STATE(1204)] = 55056, - [SMALL_STATE(1205)] = 55067, - [SMALL_STATE(1206)] = 55078, - [SMALL_STATE(1207)] = 55089, - [SMALL_STATE(1208)] = 55100, - [SMALL_STATE(1209)] = 55111, - [SMALL_STATE(1210)] = 55122, - [SMALL_STATE(1211)] = 55133, - [SMALL_STATE(1212)] = 55144, - [SMALL_STATE(1213)] = 55155, - [SMALL_STATE(1214)] = 55166, - [SMALL_STATE(1215)] = 55177, - [SMALL_STATE(1216)] = 55188, - [SMALL_STATE(1217)] = 55199, - [SMALL_STATE(1218)] = 55210, - [SMALL_STATE(1219)] = 55221, - [SMALL_STATE(1220)] = 55232, - [SMALL_STATE(1221)] = 55243, - [SMALL_STATE(1222)] = 55254, - [SMALL_STATE(1223)] = 55265, - [SMALL_STATE(1224)] = 55276, - [SMALL_STATE(1225)] = 55287, - [SMALL_STATE(1226)] = 55298, - [SMALL_STATE(1227)] = 55309, - [SMALL_STATE(1228)] = 55320, - [SMALL_STATE(1229)] = 55331, - [SMALL_STATE(1230)] = 55342, - [SMALL_STATE(1231)] = 55353, - [SMALL_STATE(1232)] = 55364, - [SMALL_STATE(1233)] = 55375, - [SMALL_STATE(1234)] = 55386, - [SMALL_STATE(1235)] = 55397, - [SMALL_STATE(1236)] = 55408, - [SMALL_STATE(1237)] = 55419, - [SMALL_STATE(1238)] = 55430, - [SMALL_STATE(1239)] = 55441, - [SMALL_STATE(1240)] = 55452, - [SMALL_STATE(1241)] = 55463, - [SMALL_STATE(1242)] = 55474, - [SMALL_STATE(1243)] = 55485, - [SMALL_STATE(1244)] = 55496, - [SMALL_STATE(1245)] = 55507, - [SMALL_STATE(1246)] = 55518, - [SMALL_STATE(1247)] = 55529, - [SMALL_STATE(1248)] = 55540, - [SMALL_STATE(1249)] = 55551, - [SMALL_STATE(1250)] = 55562, - [SMALL_STATE(1251)] = 55573, - [SMALL_STATE(1252)] = 55584, - [SMALL_STATE(1253)] = 55595, - [SMALL_STATE(1254)] = 55606, - [SMALL_STATE(1255)] = 55617, - [SMALL_STATE(1256)] = 55628, - [SMALL_STATE(1257)] = 55639, - [SMALL_STATE(1258)] = 55650, - [SMALL_STATE(1259)] = 55661, - [SMALL_STATE(1260)] = 55672, - [SMALL_STATE(1261)] = 55683, - [SMALL_STATE(1262)] = 55694, - [SMALL_STATE(1263)] = 55705, - [SMALL_STATE(1264)] = 55716, - [SMALL_STATE(1265)] = 55727, - [SMALL_STATE(1266)] = 55738, - [SMALL_STATE(1267)] = 55749, - [SMALL_STATE(1268)] = 55760, - [SMALL_STATE(1269)] = 55771, - [SMALL_STATE(1270)] = 55782, - [SMALL_STATE(1271)] = 55793, - [SMALL_STATE(1272)] = 55804, - [SMALL_STATE(1273)] = 55815, - [SMALL_STATE(1274)] = 55826, - [SMALL_STATE(1275)] = 55837, - [SMALL_STATE(1276)] = 55848, + [SMALL_STATE(787)] = 48465, + [SMALL_STATE(788)] = 48497, + [SMALL_STATE(789)] = 48517, + [SMALL_STATE(790)] = 48535, + [SMALL_STATE(791)] = 48553, + [SMALL_STATE(792)] = 48571, + [SMALL_STATE(793)] = 48599, + [SMALL_STATE(794)] = 48617, + [SMALL_STATE(795)] = 48635, + [SMALL_STATE(796)] = 48653, + [SMALL_STATE(797)] = 48671, + [SMALL_STATE(798)] = 48703, + [SMALL_STATE(799)] = 48721, + [SMALL_STATE(800)] = 48739, + [SMALL_STATE(801)] = 48757, + [SMALL_STATE(802)] = 48775, + [SMALL_STATE(803)] = 48793, + [SMALL_STATE(804)] = 48811, + [SMALL_STATE(805)] = 48829, + [SMALL_STATE(806)] = 48858, + [SMALL_STATE(807)] = 48875, + [SMALL_STATE(808)] = 48899, + [SMALL_STATE(809)] = 48921, + [SMALL_STATE(810)] = 48947, + [SMALL_STATE(811)] = 48973, + [SMALL_STATE(812)] = 48997, + [SMALL_STATE(813)] = 49021, + [SMALL_STATE(814)] = 49043, + [SMALL_STATE(815)] = 49067, + [SMALL_STATE(816)] = 49091, + [SMALL_STATE(817)] = 49113, + [SMALL_STATE(818)] = 49137, + [SMALL_STATE(819)] = 49163, + [SMALL_STATE(820)] = 49187, + [SMALL_STATE(821)] = 49209, + [SMALL_STATE(822)] = 49231, + [SMALL_STATE(823)] = 49251, + [SMALL_STATE(824)] = 49275, + [SMALL_STATE(825)] = 49301, + [SMALL_STATE(826)] = 49325, + [SMALL_STATE(827)] = 49345, + [SMALL_STATE(828)] = 49371, + [SMALL_STATE(829)] = 49395, + [SMALL_STATE(830)] = 49421, + [SMALL_STATE(831)] = 49443, + [SMALL_STATE(832)] = 49466, + [SMALL_STATE(833)] = 49487, + [SMALL_STATE(834)] = 49504, + [SMALL_STATE(835)] = 49525, + [SMALL_STATE(836)] = 49544, + [SMALL_STATE(837)] = 49565, + [SMALL_STATE(838)] = 49586, + [SMALL_STATE(839)] = 49609, + [SMALL_STATE(840)] = 49632, + [SMALL_STATE(841)] = 49653, + [SMALL_STATE(842)] = 49676, + [SMALL_STATE(843)] = 49697, + [SMALL_STATE(844)] = 49716, + [SMALL_STATE(845)] = 49739, + [SMALL_STATE(846)] = 49758, + [SMALL_STATE(847)] = 49781, + [SMALL_STATE(848)] = 49802, + [SMALL_STATE(849)] = 49823, + [SMALL_STATE(850)] = 49844, + [SMALL_STATE(851)] = 49863, + [SMALL_STATE(852)] = 49882, + [SMALL_STATE(853)] = 49901, + [SMALL_STATE(854)] = 49924, + [SMALL_STATE(855)] = 49942, + [SMALL_STATE(856)] = 49960, + [SMALL_STATE(857)] = 49980, + [SMALL_STATE(858)] = 49998, + [SMALL_STATE(859)] = 50016, + [SMALL_STATE(860)] = 50032, + [SMALL_STATE(861)] = 50050, + [SMALL_STATE(862)] = 50068, + [SMALL_STATE(863)] = 50086, + [SMALL_STATE(864)] = 50104, + [SMALL_STATE(865)] = 50120, + [SMALL_STATE(866)] = 50138, + [SMALL_STATE(867)] = 50158, + [SMALL_STATE(868)] = 50178, + [SMALL_STATE(869)] = 50196, + [SMALL_STATE(870)] = 50214, + [SMALL_STATE(871)] = 50230, + [SMALL_STATE(872)] = 50250, + [SMALL_STATE(873)] = 50270, + [SMALL_STATE(874)] = 50288, + [SMALL_STATE(875)] = 50306, + [SMALL_STATE(876)] = 50326, + [SMALL_STATE(877)] = 50346, + [SMALL_STATE(878)] = 50364, + [SMALL_STATE(879)] = 50382, + [SMALL_STATE(880)] = 50400, + [SMALL_STATE(881)] = 50416, + [SMALL_STATE(882)] = 50434, + [SMALL_STATE(883)] = 50452, + [SMALL_STATE(884)] = 50468, + [SMALL_STATE(885)] = 50486, + [SMALL_STATE(886)] = 50504, + [SMALL_STATE(887)] = 50522, + [SMALL_STATE(888)] = 50540, + [SMALL_STATE(889)] = 50558, + [SMALL_STATE(890)] = 50578, + [SMALL_STATE(891)] = 50596, + [SMALL_STATE(892)] = 50614, + [SMALL_STATE(893)] = 50634, + [SMALL_STATE(894)] = 50652, + [SMALL_STATE(895)] = 50670, + [SMALL_STATE(896)] = 50690, + [SMALL_STATE(897)] = 50708, + [SMALL_STATE(898)] = 50726, + [SMALL_STATE(899)] = 50744, + [SMALL_STATE(900)] = 50762, + [SMALL_STATE(901)] = 50780, + [SMALL_STATE(902)] = 50800, + [SMALL_STATE(903)] = 50820, + [SMALL_STATE(904)] = 50838, + [SMALL_STATE(905)] = 50853, + [SMALL_STATE(906)] = 50870, + [SMALL_STATE(907)] = 50887, + [SMALL_STATE(908)] = 50900, + [SMALL_STATE(909)] = 50913, + [SMALL_STATE(910)] = 50926, + [SMALL_STATE(911)] = 50939, + [SMALL_STATE(912)] = 50956, + [SMALL_STATE(913)] = 50973, + [SMALL_STATE(914)] = 50990, + [SMALL_STATE(915)] = 51003, + [SMALL_STATE(916)] = 51016, + [SMALL_STATE(917)] = 51033, + [SMALL_STATE(918)] = 51050, + [SMALL_STATE(919)] = 51067, + [SMALL_STATE(920)] = 51084, + [SMALL_STATE(921)] = 51101, + [SMALL_STATE(922)] = 51118, + [SMALL_STATE(923)] = 51135, + [SMALL_STATE(924)] = 51152, + [SMALL_STATE(925)] = 51165, + [SMALL_STATE(926)] = 51182, + [SMALL_STATE(927)] = 51199, + [SMALL_STATE(928)] = 51214, + [SMALL_STATE(929)] = 51231, + [SMALL_STATE(930)] = 51244, + [SMALL_STATE(931)] = 51261, + [SMALL_STATE(932)] = 51278, + [SMALL_STATE(933)] = 51293, + [SMALL_STATE(934)] = 51310, + [SMALL_STATE(935)] = 51325, + [SMALL_STATE(936)] = 51342, + [SMALL_STATE(937)] = 51359, + [SMALL_STATE(938)] = 51372, + [SMALL_STATE(939)] = 51389, + [SMALL_STATE(940)] = 51404, + [SMALL_STATE(941)] = 51421, + [SMALL_STATE(942)] = 51434, + [SMALL_STATE(943)] = 51451, + [SMALL_STATE(944)] = 51468, + [SMALL_STATE(945)] = 51485, + [SMALL_STATE(946)] = 51498, + [SMALL_STATE(947)] = 51511, + [SMALL_STATE(948)] = 51528, + [SMALL_STATE(949)] = 51545, + [SMALL_STATE(950)] = 51558, + [SMALL_STATE(951)] = 51575, + [SMALL_STATE(952)] = 51588, + [SMALL_STATE(953)] = 51605, + [SMALL_STATE(954)] = 51622, + [SMALL_STATE(955)] = 51639, + [SMALL_STATE(956)] = 51656, + [SMALL_STATE(957)] = 51673, + [SMALL_STATE(958)] = 51690, + [SMALL_STATE(959)] = 51707, + [SMALL_STATE(960)] = 51724, + [SMALL_STATE(961)] = 51741, + [SMALL_STATE(962)] = 51758, + [SMALL_STATE(963)] = 51775, + [SMALL_STATE(964)] = 51792, + [SMALL_STATE(965)] = 51809, + [SMALL_STATE(966)] = 51822, + [SMALL_STATE(967)] = 51839, + [SMALL_STATE(968)] = 51856, + [SMALL_STATE(969)] = 51869, + [SMALL_STATE(970)] = 51886, + [SMALL_STATE(971)] = 51903, + [SMALL_STATE(972)] = 51920, + [SMALL_STATE(973)] = 51937, + [SMALL_STATE(974)] = 51954, + [SMALL_STATE(975)] = 51971, + [SMALL_STATE(976)] = 51984, + [SMALL_STATE(977)] = 52001, + [SMALL_STATE(978)] = 52014, + [SMALL_STATE(979)] = 52027, + [SMALL_STATE(980)] = 52044, + [SMALL_STATE(981)] = 52061, + [SMALL_STATE(982)] = 52076, + [SMALL_STATE(983)] = 52093, + [SMALL_STATE(984)] = 52110, + [SMALL_STATE(985)] = 52127, + [SMALL_STATE(986)] = 52144, + [SMALL_STATE(987)] = 52161, + [SMALL_STATE(988)] = 52178, + [SMALL_STATE(989)] = 52195, + [SMALL_STATE(990)] = 52212, + [SMALL_STATE(991)] = 52225, + [SMALL_STATE(992)] = 52238, + [SMALL_STATE(993)] = 52255, + [SMALL_STATE(994)] = 52268, + [SMALL_STATE(995)] = 52281, + [SMALL_STATE(996)] = 52298, + [SMALL_STATE(997)] = 52315, + [SMALL_STATE(998)] = 52332, + [SMALL_STATE(999)] = 52349, + [SMALL_STATE(1000)] = 52366, + [SMALL_STATE(1001)] = 52383, + [SMALL_STATE(1002)] = 52400, + [SMALL_STATE(1003)] = 52417, + [SMALL_STATE(1004)] = 52434, + [SMALL_STATE(1005)] = 52451, + [SMALL_STATE(1006)] = 52468, + [SMALL_STATE(1007)] = 52485, + [SMALL_STATE(1008)] = 52502, + [SMALL_STATE(1009)] = 52519, + [SMALL_STATE(1010)] = 52536, + [SMALL_STATE(1011)] = 52553, + [SMALL_STATE(1012)] = 52570, + [SMALL_STATE(1013)] = 52587, + [SMALL_STATE(1014)] = 52604, + [SMALL_STATE(1015)] = 52621, + [SMALL_STATE(1016)] = 52638, + [SMALL_STATE(1017)] = 52655, + [SMALL_STATE(1018)] = 52672, + [SMALL_STATE(1019)] = 52685, + [SMALL_STATE(1020)] = 52702, + [SMALL_STATE(1021)] = 52719, + [SMALL_STATE(1022)] = 52736, + [SMALL_STATE(1023)] = 52753, + [SMALL_STATE(1024)] = 52770, + [SMALL_STATE(1025)] = 52787, + [SMALL_STATE(1026)] = 52804, + [SMALL_STATE(1027)] = 52821, + [SMALL_STATE(1028)] = 52838, + [SMALL_STATE(1029)] = 52855, + [SMALL_STATE(1030)] = 52872, + [SMALL_STATE(1031)] = 52889, + [SMALL_STATE(1032)] = 52906, + [SMALL_STATE(1033)] = 52923, + [SMALL_STATE(1034)] = 52940, + [SMALL_STATE(1035)] = 52957, + [SMALL_STATE(1036)] = 52974, + [SMALL_STATE(1037)] = 52987, + [SMALL_STATE(1038)] = 53004, + [SMALL_STATE(1039)] = 53021, + [SMALL_STATE(1040)] = 53038, + [SMALL_STATE(1041)] = 53055, + [SMALL_STATE(1042)] = 53072, + [SMALL_STATE(1043)] = 53085, + [SMALL_STATE(1044)] = 53102, + [SMALL_STATE(1045)] = 53119, + [SMALL_STATE(1046)] = 53136, + [SMALL_STATE(1047)] = 53149, + [SMALL_STATE(1048)] = 53166, + [SMALL_STATE(1049)] = 53183, + [SMALL_STATE(1050)] = 53200, + [SMALL_STATE(1051)] = 53212, + [SMALL_STATE(1052)] = 53226, + [SMALL_STATE(1053)] = 53240, + [SMALL_STATE(1054)] = 53254, + [SMALL_STATE(1055)] = 53268, + [SMALL_STATE(1056)] = 53282, + [SMALL_STATE(1057)] = 53296, + [SMALL_STATE(1058)] = 53310, + [SMALL_STATE(1059)] = 53324, + [SMALL_STATE(1060)] = 53338, + [SMALL_STATE(1061)] = 53352, + [SMALL_STATE(1062)] = 53364, + [SMALL_STATE(1063)] = 53378, + [SMALL_STATE(1064)] = 53390, + [SMALL_STATE(1065)] = 53404, + [SMALL_STATE(1066)] = 53416, + [SMALL_STATE(1067)] = 53430, + [SMALL_STATE(1068)] = 53444, + [SMALL_STATE(1069)] = 53458, + [SMALL_STATE(1070)] = 53470, + [SMALL_STATE(1071)] = 53484, + [SMALL_STATE(1072)] = 53498, + [SMALL_STATE(1073)] = 53510, + [SMALL_STATE(1074)] = 53524, + [SMALL_STATE(1075)] = 53538, + [SMALL_STATE(1076)] = 53550, + [SMALL_STATE(1077)] = 53564, + [SMALL_STATE(1078)] = 53576, + [SMALL_STATE(1079)] = 53588, + [SMALL_STATE(1080)] = 53602, + [SMALL_STATE(1081)] = 53616, + [SMALL_STATE(1082)] = 53630, + [SMALL_STATE(1083)] = 53642, + [SMALL_STATE(1084)] = 53654, + [SMALL_STATE(1085)] = 53666, + [SMALL_STATE(1086)] = 53678, + [SMALL_STATE(1087)] = 53690, + [SMALL_STATE(1088)] = 53704, + [SMALL_STATE(1089)] = 53718, + [SMALL_STATE(1090)] = 53730, + [SMALL_STATE(1091)] = 53744, + [SMALL_STATE(1092)] = 53756, + [SMALL_STATE(1093)] = 53770, + [SMALL_STATE(1094)] = 53784, + [SMALL_STATE(1095)] = 53796, + [SMALL_STATE(1096)] = 53810, + [SMALL_STATE(1097)] = 53822, + [SMALL_STATE(1098)] = 53836, + [SMALL_STATE(1099)] = 53848, + [SMALL_STATE(1100)] = 53860, + [SMALL_STATE(1101)] = 53874, + [SMALL_STATE(1102)] = 53888, + [SMALL_STATE(1103)] = 53900, + [SMALL_STATE(1104)] = 53912, + [SMALL_STATE(1105)] = 53926, + [SMALL_STATE(1106)] = 53940, + [SMALL_STATE(1107)] = 53954, + [SMALL_STATE(1108)] = 53966, + [SMALL_STATE(1109)] = 53980, + [SMALL_STATE(1110)] = 53992, + [SMALL_STATE(1111)] = 54006, + [SMALL_STATE(1112)] = 54020, + [SMALL_STATE(1113)] = 54034, + [SMALL_STATE(1114)] = 54046, + [SMALL_STATE(1115)] = 54058, + [SMALL_STATE(1116)] = 54072, + [SMALL_STATE(1117)] = 54086, + [SMALL_STATE(1118)] = 54100, + [SMALL_STATE(1119)] = 54114, + [SMALL_STATE(1120)] = 54126, + [SMALL_STATE(1121)] = 54138, + [SMALL_STATE(1122)] = 54152, + [SMALL_STATE(1123)] = 54164, + [SMALL_STATE(1124)] = 54178, + [SMALL_STATE(1125)] = 54192, + [SMALL_STATE(1126)] = 54206, + [SMALL_STATE(1127)] = 54218, + [SMALL_STATE(1128)] = 54232, + [SMALL_STATE(1129)] = 54244, + [SMALL_STATE(1130)] = 54256, + [SMALL_STATE(1131)] = 54268, + [SMALL_STATE(1132)] = 54280, + [SMALL_STATE(1133)] = 54294, + [SMALL_STATE(1134)] = 54308, + [SMALL_STATE(1135)] = 54322, + [SMALL_STATE(1136)] = 54334, + [SMALL_STATE(1137)] = 54348, + [SMALL_STATE(1138)] = 54362, + [SMALL_STATE(1139)] = 54376, + [SMALL_STATE(1140)] = 54388, + [SMALL_STATE(1141)] = 54402, + [SMALL_STATE(1142)] = 54416, + [SMALL_STATE(1143)] = 54428, + [SMALL_STATE(1144)] = 54442, + [SMALL_STATE(1145)] = 54456, + [SMALL_STATE(1146)] = 54470, + [SMALL_STATE(1147)] = 54482, + [SMALL_STATE(1148)] = 54496, + [SMALL_STATE(1149)] = 54508, + [SMALL_STATE(1150)] = 54520, + [SMALL_STATE(1151)] = 54534, + [SMALL_STATE(1152)] = 54546, + [SMALL_STATE(1153)] = 54560, + [SMALL_STATE(1154)] = 54572, + [SMALL_STATE(1155)] = 54586, + [SMALL_STATE(1156)] = 54600, + [SMALL_STATE(1157)] = 54614, + [SMALL_STATE(1158)] = 54628, + [SMALL_STATE(1159)] = 54642, + [SMALL_STATE(1160)] = 54656, + [SMALL_STATE(1161)] = 54668, + [SMALL_STATE(1162)] = 54680, + [SMALL_STATE(1163)] = 54692, + [SMALL_STATE(1164)] = 54706, + [SMALL_STATE(1165)] = 54720, + [SMALL_STATE(1166)] = 54734, + [SMALL_STATE(1167)] = 54748, + [SMALL_STATE(1168)] = 54760, + [SMALL_STATE(1169)] = 54772, + [SMALL_STATE(1170)] = 54786, + [SMALL_STATE(1171)] = 54798, + [SMALL_STATE(1172)] = 54812, + [SMALL_STATE(1173)] = 54824, + [SMALL_STATE(1174)] = 54838, + [SMALL_STATE(1175)] = 54850, + [SMALL_STATE(1176)] = 54862, + [SMALL_STATE(1177)] = 54876, + [SMALL_STATE(1178)] = 54890, + [SMALL_STATE(1179)] = 54901, + [SMALL_STATE(1180)] = 54912, + [SMALL_STATE(1181)] = 54923, + [SMALL_STATE(1182)] = 54934, + [SMALL_STATE(1183)] = 54945, + [SMALL_STATE(1184)] = 54956, + [SMALL_STATE(1185)] = 54967, + [SMALL_STATE(1186)] = 54978, + [SMALL_STATE(1187)] = 54989, + [SMALL_STATE(1188)] = 55000, + [SMALL_STATE(1189)] = 55011, + [SMALL_STATE(1190)] = 55022, + [SMALL_STATE(1191)] = 55033, + [SMALL_STATE(1192)] = 55044, + [SMALL_STATE(1193)] = 55055, + [SMALL_STATE(1194)] = 55066, + [SMALL_STATE(1195)] = 55077, + [SMALL_STATE(1196)] = 55088, + [SMALL_STATE(1197)] = 55099, + [SMALL_STATE(1198)] = 55110, + [SMALL_STATE(1199)] = 55121, + [SMALL_STATE(1200)] = 55132, + [SMALL_STATE(1201)] = 55143, + [SMALL_STATE(1202)] = 55154, + [SMALL_STATE(1203)] = 55165, + [SMALL_STATE(1204)] = 55176, + [SMALL_STATE(1205)] = 55187, + [SMALL_STATE(1206)] = 55198, + [SMALL_STATE(1207)] = 55209, + [SMALL_STATE(1208)] = 55220, + [SMALL_STATE(1209)] = 55231, + [SMALL_STATE(1210)] = 55242, + [SMALL_STATE(1211)] = 55253, + [SMALL_STATE(1212)] = 55264, + [SMALL_STATE(1213)] = 55275, + [SMALL_STATE(1214)] = 55286, + [SMALL_STATE(1215)] = 55297, + [SMALL_STATE(1216)] = 55308, + [SMALL_STATE(1217)] = 55319, + [SMALL_STATE(1218)] = 55330, + [SMALL_STATE(1219)] = 55341, + [SMALL_STATE(1220)] = 55352, + [SMALL_STATE(1221)] = 55363, + [SMALL_STATE(1222)] = 55374, + [SMALL_STATE(1223)] = 55385, + [SMALL_STATE(1224)] = 55396, + [SMALL_STATE(1225)] = 55407, + [SMALL_STATE(1226)] = 55418, + [SMALL_STATE(1227)] = 55429, + [SMALL_STATE(1228)] = 55440, + [SMALL_STATE(1229)] = 55451, + [SMALL_STATE(1230)] = 55462, + [SMALL_STATE(1231)] = 55473, + [SMALL_STATE(1232)] = 55484, + [SMALL_STATE(1233)] = 55495, + [SMALL_STATE(1234)] = 55506, + [SMALL_STATE(1235)] = 55517, + [SMALL_STATE(1236)] = 55528, + [SMALL_STATE(1237)] = 55539, + [SMALL_STATE(1238)] = 55550, + [SMALL_STATE(1239)] = 55561, + [SMALL_STATE(1240)] = 55572, + [SMALL_STATE(1241)] = 55583, + [SMALL_STATE(1242)] = 55594, + [SMALL_STATE(1243)] = 55605, + [SMALL_STATE(1244)] = 55616, + [SMALL_STATE(1245)] = 55627, + [SMALL_STATE(1246)] = 55638, + [SMALL_STATE(1247)] = 55649, + [SMALL_STATE(1248)] = 55660, + [SMALL_STATE(1249)] = 55671, + [SMALL_STATE(1250)] = 55682, + [SMALL_STATE(1251)] = 55693, + [SMALL_STATE(1252)] = 55704, + [SMALL_STATE(1253)] = 55715, + [SMALL_STATE(1254)] = 55726, + [SMALL_STATE(1255)] = 55737, + [SMALL_STATE(1256)] = 55748, + [SMALL_STATE(1257)] = 55759, + [SMALL_STATE(1258)] = 55770, + [SMALL_STATE(1259)] = 55781, + [SMALL_STATE(1260)] = 55792, + [SMALL_STATE(1261)] = 55803, + [SMALL_STATE(1262)] = 55814, + [SMALL_STATE(1263)] = 55825, + [SMALL_STATE(1264)] = 55836, + [SMALL_STATE(1265)] = 55847, + [SMALL_STATE(1266)] = 55858, + [SMALL_STATE(1267)] = 55869, + [SMALL_STATE(1268)] = 55880, + [SMALL_STATE(1269)] = 55891, + [SMALL_STATE(1270)] = 55902, + [SMALL_STATE(1271)] = 55913, + [SMALL_STATE(1272)] = 55924, + [SMALL_STATE(1273)] = 55935, + [SMALL_STATE(1274)] = 55946, + [SMALL_STATE(1275)] = 55957, + [SMALL_STATE(1276)] = 55968, + [SMALL_STATE(1277)] = 55979, + [SMALL_STATE(1278)] = 55990, + [SMALL_STATE(1279)] = 56001, + [SMALL_STATE(1280)] = 56012, + [SMALL_STATE(1281)] = 56023, + [SMALL_STATE(1282)] = 56034, + [SMALL_STATE(1283)] = 56045, + [SMALL_STATE(1284)] = 56056, + [SMALL_STATE(1285)] = 56067, + [SMALL_STATE(1286)] = 56078, + [SMALL_STATE(1287)] = 56089, + [SMALL_STATE(1288)] = 56100, + [SMALL_STATE(1289)] = 56111, + [SMALL_STATE(1290)] = 56122, + [SMALL_STATE(1291)] = 56133, + [SMALL_STATE(1292)] = 56144, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -51456,1417 +51720,1432 @@ static const TSParseActionEntry ts_parse_actions[] = { [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [59] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), - [61] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(939), - [64] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(113), - [67] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1054), - [70] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1060), - [73] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1267), - [76] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(176), - [79] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(189), - [82] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(861), - [85] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1066), - [88] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(818), - [91] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(893), - [94] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(578), - [97] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(50), - [100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(171), - [103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(558), - [106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(561), - [109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(276), - [112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(847), - [115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1226), - [118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(881), - [121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(87), - [124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(22), - [127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(22), - [130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(23), - [133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(24), - [136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), + [59] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), + [61] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), + [63] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(904), + [66] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(124), + [69] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1059), + [72] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1064), + [75] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1283), + [78] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(181), + [81] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(188), + [84] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(870), + [87] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1070), + [90] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(811), + [93] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(902), + [96] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(581), + [99] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(45), + [102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(179), + [105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(556), + [108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(555), + [111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(279), + [114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(838), + [117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1242), + [120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(899), + [123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(106), + [126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(22), + [129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(22), + [132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(23), + [135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(24), [138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), [140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), - [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(113), - [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(1267), - [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(176), - [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(189), - [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(861), - [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(1063), - [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(578), - [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(50), - [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(171), - [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(558), - [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(561), - [175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(276), - [178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(881), - [181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(87), + [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(124), + [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(1283), + [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(181), + [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(188), + [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(870), + [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(1066), + [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(581), + [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(45), + [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(179), + [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(556), + [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(555), + [175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(279), + [178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(899), + [181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(106), [184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(22), [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(22), [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(23), [193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(24), [196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), [198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), - [200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(113), - [203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(1267), - [206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(176), - [209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(189), - [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(861), - [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(1063), - [218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(578), - [221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(50), - [224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(171), - [227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(558), - [230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(561), - [233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(276), - [236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(881), - [239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(87), + [200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(124), + [203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(1283), + [206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(181), + [209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(188), + [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(870), + [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(1066), + [218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(581), + [221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(45), + [224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(179), + [227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(556), + [230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(555), + [233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(279), + [236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(899), + [239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(106), [242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(22), [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(22), [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(23), [251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(24), [254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record, 1, .production_id = 1), [256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record, 1, .production_id = 1), - [258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), - [262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), - [264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 1), - [266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 1), - [268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_group, 3), - [270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_group, 3), - [272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_access, 3, .production_id = 12), - [274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_access, 3, .production_id = 12), - [276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer, 2), - [278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer, 2), - [280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_constructor_name, 3, .production_id = 14), - [282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_constructor_name, 3, .production_id = 14), - [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), - [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), - [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), - [308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), - [320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1), - [326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 1), - [328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 2, .production_id = 5), - [330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 2, .production_id = 5), - [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), - [338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), - [340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), - [350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), - [352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_unit, 1), - [354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_unit, 1), - [356] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(1108), - [360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__maybe_function_expression, 1), - [362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer, 1), - [364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer, 1), - [366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_name, 1), - [368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_name, 1), - [370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), - [372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), - [374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 3, .production_id = 13), - [376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 3, .production_id = 13), - [378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case, 5, .production_id = 40), - [380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case, 5, .production_id = 40), - [382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), - [385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 5), - [391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 5), - [393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update, 7, .production_id = 61), - [395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_update, 7, .production_id = 61), - [397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 4), - [399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 4), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3), - [405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__maybe_record_expression, 1), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 7, .production_id = 58), - [419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 7, .production_id = 58), - [421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 5, .production_id = 34), - [423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 5, .production_id = 34), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_todo, 1), - [431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_todo, 1), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 6), - [437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 6), - [439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record, 2, .production_id = 6), - [441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record, 2, .production_id = 6), - [443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_todo, 4, .production_id = 28), - [445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_todo, 4, .production_id = 28), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), - [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), - [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_group, 3), + [262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_group, 3), + [264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_unit, 1), + [266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_unit, 1), + [268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), + [271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__maybe_function_expression, 1), + [273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), + [275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), + [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 2, .production_id = 5), + [319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 2, .production_id = 5), + [321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), + [323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1), + [331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 1), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), + [339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), + [341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_access, 3, .production_id = 11), + [343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_access, 3, .production_id = 11), + [345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_constructor_name, 3, .production_id = 13), + [347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_constructor_name, 3, .production_id = 13), + [349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer, 2), + [351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer, 2), + [353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 1), + [355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 1), + [357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 3, .production_id = 12), + [359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 3, .production_id = 12), + [361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer, 1), + [363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer, 1), + [365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_name, 1), + [367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_name, 1), + [369] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(1125), + [373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case, 5, .production_id = 40), + [375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case, 5, .production_id = 40), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), + [383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 4), + [391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 4), + [393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 5), + [395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 5), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3), + [403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3), + [405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record, 2, .production_id = 6), + [407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record, 2, .production_id = 6), + [409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__maybe_record_expression, 1), + [411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), + [413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 5, .production_id = 32), + [415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 5, .production_id = 32), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_todo, 1), + [421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_todo, 1), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update, 7, .production_id = 61), + [427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_update, 7, .production_id = 61), + [429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 6), + [431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 6), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 7, .production_id = 58), + [437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 7, .production_id = 58), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), + [445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), + [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 5), - [487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 5), - [489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), - [491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 6, .production_id = 45), - [497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 6, .production_id = 45), - [499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string, 2), - [501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 2), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), - [509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), - [511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try, 4, .production_id = 26), - [513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try, 4, .production_id = 26), - [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), - [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(127), - [540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(1178), - [543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(179), - [546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(271), - [549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(887), - [552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(1120), - [555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(580), - [558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(165), - [561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(174), - [564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(546), - [567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(549), - [570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(278), - [573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(886), - [576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(285), - [579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(61), - [582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(61), - [585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(14), - [588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(56), - [591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment, 3, .production_id = 30), - [593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment, 3, .production_id = 30), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_todo, 4, .production_id = 26), + [489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_todo, 4, .production_id = 26), + [491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), + [493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), + [495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment, 3, .production_id = 28), + [497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment, 3, .production_id = 28), + [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string, 2), + [521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 2), + [523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 6, .production_id = 45), + [525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 6, .production_id = 45), + [527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 7, .production_id = 55), + [529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 7, .production_id = 55), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 10), + [541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 10), + [543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(125), + [546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(1194), + [549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(155), + [552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(239), + [555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(883), + [558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(1108), + [561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(582), + [564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(165), + [567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(180), + [570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(569), + [573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(567), + [576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(277), + [579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(882), + [582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(290), + [585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(86), + [588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(86), + [591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(14), + [594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(88), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), [601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let, 2, .production_id = 4), [603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let, 2, .production_id = 4), - [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert, 2, .production_id = 4), - [609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert, 2, .production_id = 4), - [611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negation, 2), - [613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negation, 2), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string, 3), - [621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 3), - [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), - [627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), - [629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string, 4), - [631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 4), - [633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 4), - [635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 4), - [637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), - [639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), - [641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_seq, 1), - [643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_seq, 1), - [645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment, 4, .production_id = 41), - [647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment, 4, .production_id = 41), - [649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 7, .production_id = 55), - [651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 7, .production_id = 55), - [653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 11), - [655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 11), - [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string, 5), - [661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 5), - [663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try, 5, .production_id = 39), - [665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try, 5, .production_id = 39), + [605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert, 2, .production_id = 4), + [607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert, 2, .production_id = 4), + [609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negation, 2), + [611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negation, 2), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 5, .production_id = 30), + [617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 5, .production_id = 30), + [619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), + [621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), + [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try, 5, .production_id = 39), + [633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try, 5, .production_id = 39), + [635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 5), + [637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 5), + [639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try, 4, .production_id = 24), + [641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try, 4, .production_id = 24), + [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string, 3), + [647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 3), + [649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string, 4), + [651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 4), + [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 4), + [657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 4), + [659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), + [661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), + [663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment, 4, .production_id = 41), + [665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment, 4, .production_id = 41), [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 5, .production_id = 32), - [681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 5, .production_id = 32), - [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [717] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(1138), - [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), - [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), - [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), - [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_subjects, 2), SHIFT(119), - [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_subjects, 3), SHIFT(119), - [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string, 5), + [671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 5), + [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_seq, 1), + [681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_seq, 1), + [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), + [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [699] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(1137), + [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_subjects, 2), SHIFT(112), + [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), + [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_subjects, 3), SHIFT(112), + [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), + [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [1003] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(1113), - [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [1009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 3, .production_id = 52), - [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), - [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [1031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 3, .production_id = 52), - [1033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 4, .production_id = 59), - [1035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 4, .production_id = 59), + [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [1003] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(1124), + [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [1029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 4, .production_id = 59), + [1031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 4, .production_id = 59), + [1033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 3, .production_id = 52), + [1035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 3, .production_id = 52), [1037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), [1039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), - [1041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1241), + [1041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1216), [1044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1), [1046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 1), - [1048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [1050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2), - [1052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2), - [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [1056] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(1064), - [1060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment_options, 2), - [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [1068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), - [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [1072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment_options, 3), - [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [1076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment_options, 3), - [1078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), - [1081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment_options, 2), - [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [1085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment_options, 3), - [1087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment_options, 2), - [1089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__maybe_record_expression, 1), - [1091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 2, .production_id = 2), - [1093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 2, .production_id = 2), - [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), - [1099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__maybe_tuple_expression, 1), - [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [1103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, .production_id = 1), - [1105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, .production_id = 1), - [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [1109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 1, .production_id = 1), - [1111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 1, .production_id = 1), - [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [1115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record, 1, .production_id = 1), - [1117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record, 1, .production_id = 1), - [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [1048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), + [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [1052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2), + [1054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2), + [1056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment_options, 2), + [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), + [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [1068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment_options, 3), + [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [1072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment_options, 3), + [1074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment_options, 2), + [1076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), + [1079] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(1105), + [1083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment_options, 2), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [1087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment_options, 3), + [1089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__maybe_tuple_expression, 1), + [1091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, .production_id = 1), + [1093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, .production_id = 1), + [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [1097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__maybe_record_expression, 1), + [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [1101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record, 1, .production_id = 1), + [1103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record, 1, .production_id = 1), + [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [1107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 1, .production_id = 1), + [1109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 1, .production_id = 1), + [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [1113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 2, .production_id = 2), + [1115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 2, .production_id = 2), + [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [1135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), - [1137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(1162), - [1140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(508), - [1143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(533), - [1146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(879), - [1149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(863), - [1152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(843), - [1155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(637), - [1158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(637), - [1161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(741), - [1164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(628), - [1167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(630), - [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [1178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [1180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [1186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_var, 1), - [1194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_var, 1), - [1196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [1198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [1200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_identifier, 1), - [1204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_identifier, 1), - [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_imports, 5), - [1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unqualified_imports, 5), - [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_imports, 3), - [1216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unqualified_imports, 3), - [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_imports, 4), - [1220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unqualified_imports, 4), - [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_imports, 2), - [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unqualified_imports, 2), - [1226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 4, .production_id = 16), - [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 4, .production_id = 16), - [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), - [1234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clauses, 1), - [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_type_identifier, 3, .production_id = 14), - [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_type_identifier, 3, .production_id = 14), + [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [1159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_type_identifier, 3, .production_id = 13), + [1161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_type_identifier, 3, .production_id = 13), + [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [1171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_imports, 3), + [1173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unqualified_imports, 3), + [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [1177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), + [1179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(1238), + [1182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(510), + [1185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(539), + [1188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(864), + [1191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(863), + [1194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(833), + [1197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(635), + [1200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(635), + [1203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(741), + [1206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(629), + [1209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(628), + [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_var, 1), + [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_var, 1), + [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_imports, 5), + [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unqualified_imports, 5), + [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 4, .production_id = 15), + [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 4, .production_id = 15), + [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), + [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_identifier, 1), + [1228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_identifier, 1), + [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_imports, 4), + [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unqualified_imports, 4), + [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_imports, 2), + [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unqualified_imports, 2), + [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clauses, 1), [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 6), [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 6), - [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function, 8, .production_id = 62), - [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function, 8, .production_id = 62), - [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function, 9, .production_id = 64), - [1254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function, 9, .production_id = 64), - [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), - [1258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), - [1260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), - [1262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), - [1264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target_group, 4, .production_id = 15), - [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_target_group, 4, .production_id = 15), - [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), - [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), - [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 57), - [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 57), - [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 2), - [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 2), - [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 5), - [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 5), - [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_type, 4), - [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_type, 4), - [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_body, 2), - [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function_body, 2), - [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), - [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), - [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 4, .production_id = 18), - [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 4, .production_id = 18), + [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 4, .production_id = 16), + [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 4, .production_id = 16), + [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 2, .production_id = 6), + [1254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 2, .production_id = 6), + [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_list, 4), + [1258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_list, 4), + [1260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 2), + [1262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 2), + [1264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), + [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), + [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple, 4), + [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_tuple, 4), + [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_hole, 1), + [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_hole, 1), + [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple, 6), + [1278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_tuple, 6), + [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_arguments, 5), + [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record_arguments, 5), + [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), + [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), + [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target_group, 4, .production_id = 14), + [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_target_group, 4, .production_id = 14), + [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string, 4), + [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string, 4), + [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 6), + [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 6), [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 46), [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 46), - [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), - [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), + [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, .production_id = 63), + [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 8, .production_id = 63), [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 2), [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 2), - [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_arguments, 5), - [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record_arguments, 5), - [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, .production_id = 47), - [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 6, .production_id = 47), - [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple, 6), - [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_tuple, 6), - [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), - [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), - [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_arguments, 3), - [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record_arguments, 3), - [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record, 2, .production_id = 6), - [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record, 2, .production_id = 6), - [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, .production_id = 60), - [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 7, .production_id = 60), - [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 5, .production_id = 42), - [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 5, .production_id = 42), - [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string, 2), - [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string, 2), - [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 7), - [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 7), - [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 4, .production_id = 17), - [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 4, .production_id = 17), - [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_list, 2), - [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_list, 2), - [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 2, .production_id = 6), - [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 2, .production_id = 6), - [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string, 4), - [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string, 4), - [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, .production_id = 63), - [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 8, .production_id = 63), - [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_arguments, 2), - [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record_arguments, 2), - [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 2, .production_id = 7), - [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 2, .production_id = 7), - [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_hole, 1), - [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_hole, 1), - [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), - [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), - [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), - [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), - [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 4), - [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 4), - [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), - [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), - [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string, 3), - [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string, 3), - [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5), - [1408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5), - [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple, 5), - [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_tuple, 5), - [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_list, 4), - [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_list, 4), - [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 5, .production_id = 31), - [1420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 5, .production_id = 31), - [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple, 4), - [1424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_tuple, 4), - [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_list, 5), - [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_list, 5), - [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 6, .production_id = 53), - [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 6, .production_id = 53), - [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 6, .production_id = 44), - [1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 6, .production_id = 44), + [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string, 3), + [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string, 3), + [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_arguments, 2), + [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record_arguments, 2), + [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 7), + [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 7), + [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_list, 3), + [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_list, 3), + [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_type, 4), + [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_type, 4), + [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), + [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), + [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple, 3), + [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_tuple, 3), + [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), + [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), + [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 6, .production_id = 44), + [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 6, .production_id = 44), + [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 57), + [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 57), + [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple, 5), + [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_tuple, 5), + [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 2, .production_id = 7), + [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 2, .production_id = 7), + [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, .production_id = 47), + [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 6, .production_id = 47), + [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_list, 5), + [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_list, 5), + [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), + [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), + [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string, 5), + [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string, 5), + [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target_group, 5, .production_id = 14), + [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_target_group, 5, .production_id = 14), + [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), + [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), + [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_arguments, 4), + [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record_arguments, 4), + [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_arguments, 3), + [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record_arguments, 3), + [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_list, 2), + [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_list, 2), + [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_body, 2), + [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function_body, 2), + [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function, 8, .production_id = 62), + [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function, 8, .production_id = 62), + [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string, 2), + [1408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string, 2), + [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 5), + [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 5), + [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 5, .production_id = 42), + [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 5, .production_id = 42), + [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, .production_id = 60), + [1420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 7, .production_id = 60), + [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_type, 3), + [1424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_type, 3), + [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 4, .production_id = 17), + [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 4, .production_id = 17), + [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), + [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), + [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record, 2, .production_id = 6), + [1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record, 2, .production_id = 6), [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6), [1440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6), - [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string, 5), - [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string, 5), - [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 9, .production_id = 65), - [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 9, .production_id = 65), - [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_arguments, 4), - [1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record_arguments, 4), - [1454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 6), - [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 6), - [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target_group, 5, .production_id = 15), - [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_target_group, 5, .production_id = 15), - [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple, 3), - [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_tuple, 3), - [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_type, 3), - [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_type, 3), - [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_list, 3), - [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_list, 3), - [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_patterns, 2), - [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_patterns, 2), - [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [1494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_pattern, 2, .production_id = 29), - [1496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_pattern, 2, .production_id = 29), - [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_pattern, 3, .production_id = 37), - [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_pattern, 3, .production_id = 37), - [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [1506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_patterns, 3), - [1508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_patterns, 3), - [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_repeat1, 2), - [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [1532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [1538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 6, .production_id = 53), + [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 6, .production_id = 53), + [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 5, .production_id = 29), + [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 5, .production_id = 29), + [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 4), + [1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 4), + [1454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), + [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), + [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5), + [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5), + [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 9, .production_id = 65), + [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 9, .production_id = 65), + [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function, 9, .production_id = 64), + [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function, 9, .production_id = 64), + [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), + [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), + [1474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_patterns, 3), + [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_patterns, 3), + [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_pattern, 3, .production_id = 37), + [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_pattern, 3, .production_id = 37), + [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [1494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_pattern, 2, .production_id = 27), + [1496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_pattern, 2, .production_id = 27), + [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_repeat1, 2), + [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [1516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_patterns, 2), + [1518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_patterns, 2), + [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [1532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [1538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [1544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [1546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [1550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_subjects, 1), - [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [1596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update_argument, 3, .production_id = 43), - [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 3, .production_id = 43), - [1600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 1, .production_id = 3), - [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [1544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [1546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [1550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_subjects, 1), + [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 1, .production_id = 3), + [1606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 3, .production_id = 43), + [1608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update_argument, 3, .production_id = 43), + [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [1728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), - [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [1732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), - [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), - [1738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1105), - [1741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1146), - [1744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1143), - [1747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(813), - [1750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1041), - [1753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(842), - [1756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1233), - [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [1738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1111), + [1741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1159), + [1744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1155), + [1747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(828), + [1750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1173), + [1753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(853), + [1756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1249), + [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), [1803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_guard_unit, 1), - [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), [1807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_unit, 1), - [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_guard_unit, 1, .production_id = 51), - [1823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_unit, 1, .production_id = 51), - [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_tuple_access, 3, .production_id = 12), - [1827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_tuple_access, 3, .production_id = 12), + [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), + [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_tuple_access, 3, .production_id = 11), + [1823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_tuple_access, 3, .production_id = 11), + [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_guard_binary_expression, 3, .production_id = 10), + [1827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_binary_expression, 3, .production_id = 10), [1829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_guard_expression, 1, .production_id = 50), [1831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_expression, 1, .production_id = 50), - [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_guard_binary_expression, 3, .production_id = 11), - [1835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_binary_expression, 3, .production_id = 11), - [1837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_guard_unit, 3), - [1839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_unit, 3), - [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_guard_unit, 3), + [1835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_unit, 3), + [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_guard_unit, 1, .production_id = 51), + [1841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_unit, 1, .production_id = 51), + [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 1, .production_id = 1), - [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_guard, 2), - [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), - [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [1887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1257), - [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, .production_id = 35), - [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_guard, 2), + [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [1881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1259), + [1884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), + [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, .production_id = 48), + [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [1898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), - [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 6, .production_id = 48), - [1904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 6, .production_id = 36), - [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 5), + [1898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [1900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 4), + [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 4, .production_id = 22), + [1904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, .production_id = 35), + [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), [1908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 3), - [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [1912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string, 4), - [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discard, 1), - [1916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 4, .production_id = 36), - [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string, 2), - [1920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 4, .production_id = 24), - [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 6), - [1924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), - [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, .production_id = 24), - [1928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, .production_id = 48), - [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 5, .production_id = 24), + [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 6), + [1912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string, 3), + [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string, 5), + [1916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discard, 1), + [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, .production_id = 35), + [1920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 2, .production_id = 6), + [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), + [1924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string, 2), + [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2), + [1928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 5, .production_id = 36), + [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 5), [1932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3), - [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 2, .production_id = 6), - [1936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 5, .production_id = 36), - [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string, 3), - [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, .production_id = 35), - [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 2), - [1944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 4), - [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string, 5), - [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2), - [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 3, .production_id = 25), - [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 4, .production_id = 36), + [1936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 5, .production_id = 22), + [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 2), + [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 6, .production_id = 48), + [1944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string, 4), + [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, .production_id = 22), + [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 6, .production_id = 36), + [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 3, .production_id = 23), + [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), - [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1), - [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 24), - [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [1994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_repeat1, 2), SHIFT_REPEAT(211), - [1997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_pattern, 1, .production_id = 29), - [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [2005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructors, 1), - [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern_tail, 1), - [2009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_data_constructors_repeat1, 2), - [2011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_constructors_repeat1, 2), SHIFT_REPEAT(56), - [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [2022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type, 1, .production_id = 1), - [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [2028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 37), SHIFT_REPEAT(574), - [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 37), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [2043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 37), SHIFT_REPEAT(573), - [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [2056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_pattern, 2, .production_id = 37), - [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [2060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update_arguments, 3), - [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [2066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_pattern_arguments_repeat1, 2), SHIFT_REPEAT(544), - [2069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_pattern_arguments_repeat1, 2), - [2071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_bit_string_segment_options_repeat1, 2), - [2073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_bit_string_segment_options_repeat1, 2), SHIFT_REPEAT(402), - [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [2078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [2090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_patterns_repeat1, 2), - [2092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_patterns_repeat1, 2), SHIFT_REPEAT(569), - [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 1, .production_id = 9), - [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [2123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_tuple_repeat1, 2), SHIFT_REPEAT(619), - [2126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_tuple_repeat1, 2), - [2128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment_options, 1), - [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [2136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), - [2138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(876), - [2141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pattern_bit_string_segment_options_repeat1, 2), - [2143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_bit_string_segment_options_repeat1, 2), SHIFT_REPEAT(424), - [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment_options, 1), - [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update_arguments, 2), - [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [2174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 1, .production_id = 8), - [2176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_bit_string_segment_options_repeat1, 2), - [2178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_bit_string_segment_options_repeat1, 2), SHIFT_REPEAT(428), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_patterns, 1), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment_options, 1), - [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [2193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor, 1, .production_id = 1), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [2199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__constant_bit_string_repeat1, 2), SHIFT_REPEAT(596), - [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__constant_bit_string_repeat1, 2), - [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [2208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type, 2, .production_id = 6), - [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [2224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_parameters_repeat1, 2), SHIFT_REPEAT(770), - [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_parameters_repeat1, 2), - [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [2233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_bit_string_repeat1, 2), SHIFT_REPEAT(552), - [2236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pattern_bit_string_repeat1, 2), - [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [2240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(86), - [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), - [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [2253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment, 1, .production_id = 3), - [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_subjects, 2), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple_type, 3), - [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [2285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_bit_string_repeat1, 2), SHIFT_REPEAT(274), - [2288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_bit_string_repeat1, 2), - [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_arguments, 2), - [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [2296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_import, 1, .production_id = 1), - [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment, 1, .production_id = 10), - [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment, 1, .production_id = 3), - [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [2350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__labeled_name_param, 2, .production_id = 23), - [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__labeled_discard_param, 2, .production_id = 23), - [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [2370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(1056), - [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bit_string_segment_option, 1), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 2, .production_id = 19), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_argument, 1, .production_id = 27), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string_segment_option_size, 4), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discard_param, 1, .production_id = 1), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name_param, 1, .production_id = 1), - [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_arguments, 5), - [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple_type, 6), - [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_argument, 3, .production_id = 49), - [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [2419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_update_arguments_repeat1, 2), SHIFT_REPEAT(965), - [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_update_arguments_repeat1, 2), - [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string_segment_option_size, 4), - [2430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(660), - [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), - [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [2437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update_arguments, 1), - [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unqualified_imports_repeat1, 2), - [2441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unqualified_imports_repeat1, 2), SHIFT_REPEAT(845), - [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [2452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(665), - [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), - [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple_type, 4), - [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_arguments, 3), - [2473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_constructor_arguments_repeat1, 2), SHIFT_REPEAT(650), - [2476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_data_constructor_arguments_repeat1, 2), - [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [2480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string_segment_option_size, 4), - [2482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bit_string_segment_option, 4), - [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [2486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_external_function_parameters_repeat1, 2), SHIFT_REPEAT(659), - [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_external_function_parameters_repeat1, 2), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [2521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_type_arguments_repeat1, 2), SHIFT_REPEAT(713), - [2524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_type_arguments_repeat1, 2), - [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_arguments, 4), - [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [2534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_tuple_type_repeat1, 2), SHIFT_REPEAT(757), - [2537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_tuple_type_repeat1, 2), - [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [2555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple_type, 5), - [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [2581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_record_arguments_repeat1, 2), SHIFT_REPEAT(586), - [2584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_record_arguments_repeat1, 2), - [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [2594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_argument, 3, .production_id = 43), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hole, 1), - [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameter, 1, .production_id = 33), - [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [2624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_arguments, 3), - [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_arguments, 4), - [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameter, 3, .production_id = 56), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 2), - [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [2642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_argument, 3, .production_id = 43), - [2644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor, 2, .production_id = 6), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment, 3, .production_id = 20), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_import, 3, .production_id = 54), - [2672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 4), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument, 1), - [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [2700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment, 3, .production_id = 38), - [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_arguments, 5), - [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [2716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_spread, 1), - [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_argument, 1, .production_id = 3), - [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 5), - [2722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment, 3, .production_id = 20), - [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [2730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 2, .production_id = 22), - [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 2, .production_id = 21), - [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_argument, 1, .production_id = 3), - [2738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_arguments, 2), - [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 3), - [2742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_argument, 1), - [2744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [2756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameters, 3), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_types, 2), - [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameters, 5), - [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern_tail, 2), - [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_type_annotation, 2, .production_id = 19), - [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target, 1), - [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [2856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_spread, 2), - [2858] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_types, 5), - [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [2912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_types, 4), - [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameters, 4), - [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [2940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_types, 3), - [2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameters, 2), - [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), + [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1), + [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [1976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 22), + [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [1988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_repeat1, 2), SHIFT_REPEAT(238), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [2005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_data_constructors_repeat1, 2), + [2007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_constructors_repeat1, 2), SHIFT_REPEAT(88), + [2010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern_tail, 1), + [2012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type, 1, .production_id = 1), + [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [2016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructors, 1), + [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [2040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 37), + [2042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 37), SHIFT_REPEAT(572), + [2045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_pattern, 1, .production_id = 27), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [2049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 37), SHIFT_REPEAT(578), + [2052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_pattern, 2, .production_id = 37), + [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [2084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_bit_string_segment_options_repeat1, 2), + [2086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_bit_string_segment_options_repeat1, 2), SHIFT_REPEAT(433), + [2089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_bit_string_segment_options_repeat1, 2), + [2091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_bit_string_segment_options_repeat1, 2), SHIFT_REPEAT(434), + [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [2100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [2102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 1, .production_id = 21), + [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), + [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [2120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update_arguments, 3), + [2122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_patterns_repeat1, 2), + [2124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_patterns_repeat1, 2), SHIFT_REPEAT(548), + [2127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_pattern_arguments_repeat1, 2), SHIFT_REPEAT(527), + [2130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_pattern_arguments_repeat1, 2), + [2132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update_arguments, 2), + [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [2136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameter, 1, .production_id = 8), + [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), + [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 1, .production_id = 8), + [2160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_tuple_repeat1, 2), SHIFT_REPEAT(621), + [2163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_tuple_repeat1, 2), + [2165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), + [2167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(890), + [2170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment_options, 1), + [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [2174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_patterns, 1), + [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [2180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment_options, 1), + [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [2184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor, 1, .production_id = 1), + [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [2188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pattern_bit_string_segment_options_repeat1, 2), + [2190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_bit_string_segment_options_repeat1, 2), SHIFT_REPEAT(423), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [2201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment_options, 1), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 2, .production_id = 18), + [2213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_argument, 1, .production_id = 25), + [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string_segment_option_size, 4), + [2217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_bit_string_repeat1, 2), SHIFT_REPEAT(553), + [2220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pattern_bit_string_repeat1, 2), + [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [2230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__labeled_discard_param, 2, .production_id = 34), + [2232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name_param, 1, .production_id = 1), + [2234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_tuple_type_repeat1, 2), SHIFT_REPEAT(753), + [2237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_tuple_type_repeat1, 2), + [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [2255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_bit_string_repeat1, 2), SHIFT_REPEAT(274), + [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_bit_string_repeat1, 2), + [2260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__labeled_name_param, 2, .production_id = 34), + [2262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_record_arguments_repeat1, 2), SHIFT_REPEAT(577), + [2265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_record_arguments_repeat1, 2), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [2269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment, 1, .production_id = 3), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [2275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bit_string_segment_option, 1), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [2285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_import, 1, .production_id = 1), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [2293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_external_function_parameters_repeat1, 2), SHIFT_REPEAT(659), + [2296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_external_function_parameters_repeat1, 2), + [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple_type, 5), + [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [2304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment, 1, .production_id = 3), + [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [2312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type, 2, .production_id = 6), + [2314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(53), + [2317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), + [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [2325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bit_string_segment_option, 4), + [2327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string_segment_option_size, 4), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [2333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_arguments, 3), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [2337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple_type, 4), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [2345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__constant_bit_string_repeat1, 2), SHIFT_REPEAT(612), + [2348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__constant_bit_string_repeat1, 2), + [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [2380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_arguments, 4), + [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [2388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple_type, 3), + [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [2398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_type_arguments_repeat1, 2), SHIFT_REPEAT(715), + [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_type_arguments_repeat1, 2), + [2403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_subjects, 2), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string_segment_option_size, 4), + [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_arguments, 2), + [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment, 1, .production_id = 9), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unqualified_imports_repeat1, 2), + [2427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unqualified_imports_repeat1, 2), SHIFT_REPEAT(846), + [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_arguments, 5), + [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [2452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update_arguments, 1), + [2454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discard_param, 1, .production_id = 1), + [2456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple_type, 6), + [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [2460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_constructor_arguments_repeat1, 2), SHIFT_REPEAT(643), + [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_data_constructor_arguments_repeat1, 2), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [2503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(677), + [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), + [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [2510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(1097), + [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), + [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [2529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(661), + [2532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [2550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_parameters_repeat1, 2), SHIFT_REPEAT(764), + [2553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_parameters_repeat1, 2), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [2571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_anonymous_function_parameters_repeat1, 2), SHIFT_REPEAT(805), + [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_anonymous_function_parameters_repeat1, 2), + [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [2588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_argument, 3, .production_id = 49), + [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [2602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_update_arguments_repeat1, 2), SHIFT_REPEAT(983), + [2605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_update_arguments_repeat1, 2), + [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [2611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameter, 2, .production_id = 20), + [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [2623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 3), + [2625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hole, 1), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [2633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_spread, 1), + [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 4), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameters, 2), + [2647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment, 3, .production_id = 38), + [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameters, 5), + [2663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 5), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [2673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument, 1), + [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [2683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_argument, 3, .production_id = 43), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [2689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_argument, 1, .production_id = 3), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [2693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_arguments, 2), + [2695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameters, 4), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [2701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 2, .production_id = 33), + [2703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameters, 3), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [2717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 2, .production_id = 20), + [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [2723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_arguments, 5), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [2727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_argument, 1), + [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [2731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment, 3, .production_id = 19), + [2733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_arguments, 4), + [2735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_argument, 3, .production_id = 43), + [2737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_arguments, 3), + [2739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_import, 3, .production_id = 54), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [2745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameter, 3, .production_id = 56), + [2747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor, 2, .production_id = 6), + [2749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_argument, 1, .production_id = 3), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [2765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment, 3, .production_id = 19), + [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [2769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 2), + [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [2775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameter, 1, .production_id = 31), + [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [2787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameters, 2), + [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [2793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameters, 4), + [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [2797] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_type_annotation, 2, .production_id = 18), + [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [2837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameters, 5), + [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [2851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_types, 5), + [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [2877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target, 1), + [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [2883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameters, 3), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [2891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_types, 3), + [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_types, 2), + [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [2927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_spread, 2), + [2929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_types, 4), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [2937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern_tail, 2), + [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), }; #ifdef __cplusplus diff --git a/test/corpus/functions.txt b/test/corpus/functions.txt index 93fae9e7a..6d5ad7b00 100644 --- a/test/corpus/functions.txt +++ b/test/corpus/functions.txt @@ -250,7 +250,7 @@ fn bit_string() { <<0:4, 1:3, 1:1>> } fn return_fun(x) { - fn(foo y: Int) { x + y } + fn(y: Int) { x + y } } fn expression_group() { { @@ -400,7 +400,6 @@ fn field_access(x) { (anonymous_function parameters: (function_parameters (function_parameter - label: (label) name: (identifier) type: (type name: (type_identifier)))) diff --git a/test/corpus/pipes.txt b/test/corpus/pipes.txt new file mode 100644 index 000000000..de6dbd793 --- /dev/null +++ b/test/corpus/pipes.txt @@ -0,0 +1,20 @@ +================================================================================ +Pipes +================================================================================ + +string +|> iodata.new +|> iodata.reverse + +-------------------------------------------------------------------------------- + +(source_file + (binary_expression + (binary_expression + (identifier) + (field_access + (identifier) + (label))) + (field_access + (identifier) + (label))))