diff --git a/corpus/constants.txt b/corpus/constants.txt index e8e1bc0d0..b9ebc8055 100644 --- a/corpus/constants.txt +++ b/corpus/constants.txt @@ -16,7 +16,8 @@ const a = <<52:size(4)-unit(4)>> const a = <<"Hello Gleam 💫":utf8>> const a = Node const a = Node() -const a = Node(name: "Billy", age: 52) +const a = Cat("Ginny", 1950) +const a = Person(name: "Billy", age: 52) const a = uri.Uri(host: "github.com") --- @@ -104,16 +105,34 @@ const a = uri.Uri(host: "github.com") value: (record)) (constant name: (identifier) - value: (record)) + value: (record + (arguments))) + (constant + name: (identifier) + value: (record + (arguments + (argument + value: (string)) + (argument + value: (integer))))) (constant name: (identifier) value: (record - (record_arg (string)) - (record_arg (integer)))) + (arguments + (argument + label: (identifier) + value: (string)) + (argument + label: (identifier) + value: (integer))))) (constant name: (identifier) value: (remote_record - (record_arg (string))))) + module: (identifier) + (arguments + (argument + label: (identifier) + value: (string)))))) ================= Public constants @@ -133,7 +152,8 @@ pub const a = <<52:size(4)-unit(4)>> pub const a = <<"Hello Gleam 💫":utf8>> pub const a = Node pub const a = Node() -pub const a = Node(name: "Billy", age: 52) +pub const a = Cat("Ginny", 1950) +pub const a = Person(name: "Billy", age: 52) pub const a = uri.Uri(host: "github.com") --- @@ -221,13 +241,31 @@ pub const a = uri.Uri(host: "github.com") value: (record)) (public_constant name: (identifier) - value: (record)) + value: (record + (arguments))) + (public_constant + name: (identifier) + value: (record + (arguments + (argument + value: (string)) + (argument + value: (integer))))) (public_constant name: (identifier) value: (record - (record_arg (string)) - (record_arg (integer)))) + (arguments + (argument + label: (identifier) + value: (string)) + (argument + label: (identifier) + value: (integer))))) (public_constant name: (identifier) value: (remote_record - (record_arg (string))))) + module: (identifier) + (arguments + (argument + label: (identifier) + value: (string)))))) diff --git a/grammar.js b/grammar.js index 8aeadc65d..ce414838b 100644 --- a/grammar.js +++ b/grammar.js @@ -108,19 +108,27 @@ module.exports = grammar({ _constant_record: ($) => seq( $._upname, + optional(alias($._constant_record_arguments, $.arguments)) + ), + _constant_record_arguments: ($) => + seq( + "(", optional( - seq( - "(", - optional( - series_of(alias($._constant_record_arg, $.record_arg), ",") - ), - ")" - ) - ) + series_of(alias($._constant_record_argument, $.argument), ",") + ), + ")" + ), + _constant_record_argument: ($) => + seq( + optional(seq(field("label", $.identifier), ":")), + field("value", $._constant_value) + ), + _constant_remote_record: ($) => + seq( + field("module", alias($._name, $.identifier)), + ".", + $._constant_record ), - _constant_record_arg: ($) => - seq($._name, optional(seq(":", $._constant_value))), - _constant_remote_record: ($) => seq($._name, ".", $._constant_record), /* Special constant types */ // Versions of $._type, $._type_annotation, etc, that have constraints diff --git a/src/grammar.json b/src/grammar.json index d24407300..e4f7ce475 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -824,6 +824,32 @@ "type": "SYMBOL", "name": "_upname" }, + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_constant_record_arguments" + }, + "named": true, + "value": "arguments" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "_constant_record_arguments": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, { "type": "CHOICE", "members": [ @@ -831,55 +857,34 @@ "type": "SEQ", "members": [ { - "type": "STRING", - "value": "(" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_constant_record_argument" + }, + "named": true, + "value": "argument" }, { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_constant_record_arg" - }, - "named": true, - "value": "record_arg" + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_constant_record_argument" }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_constant_record_arg" - }, - "named": true, - "value": "record_arg" - } - ] - } - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ")" + "named": true, + "value": "argument" + } + ] + } } ] }, @@ -887,16 +892,16 @@ "type": "BLANK" } ] + }, + { + "type": "STRING", + "value": ")" } ] }, - "_constant_record_arg": { + "_constant_record_argument": { "type": "SEQ", "members": [ - { - "type": "SYMBOL", - "name": "_name" - }, { "type": "CHOICE", "members": [ @@ -904,12 +909,16 @@ "type": "SEQ", "members": [ { - "type": "STRING", - "value": ":" + "type": "FIELD", + "name": "label", + "content": { + "type": "SYMBOL", + "name": "identifier" + } }, { - "type": "SYMBOL", - "name": "_constant_value" + "type": "STRING", + "value": ":" } ] }, @@ -917,6 +926,14 @@ "type": "BLANK" } ] + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "_constant_value" + } } ] }, @@ -924,8 +941,17 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "_name" + "type": "FIELD", + "name": "module", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_name" + }, + "named": true, + "value": "identifier" + } }, { "type": "STRING", diff --git a/src/node-types.json b/src/node-types.json index e1ce61d33..fe2acb628 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -172,7 +172,7 @@ "fields": {}, "children": { "multiple": true, - "required": true, + "required": false, "types": [ { "type": "argument", @@ -2799,59 +2799,12 @@ "type": "record", "named": true, "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "arguments", - "named": true - }, - { - "type": "record_arg", - "named": true - } - ] - } - }, - { - "type": "record_arg", - "named": true, - "fields": {}, "children": { "multiple": false, "required": false, "types": [ { - "type": "bit_string", - "named": true - }, - { - "type": "float", - "named": true - }, - { - "type": "integer", - "named": true - }, - { - "type": "list", - "named": true - }, - { - "type": "record", - "named": true - }, - { - "type": "remote_record", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "tuple", + "type": "arguments", "named": true } ] @@ -3111,7 +3064,7 @@ "fields": { "module": { "multiple": false, - "required": false, + "required": true, "types": [ { "type": "identifier", @@ -3121,15 +3074,15 @@ } }, "children": { - "multiple": true, + "multiple": false, "required": false, "types": [ { - "type": "record", + "type": "arguments", "named": true }, { - "type": "record_arg", + "type": "record", "named": true } ] diff --git a/src/parser.c b/src/parser.c index c81e8713d..7d78b4846 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,15 +6,15 @@ #endif #define LANGUAGE_VERSION 13 -#define STATE_COUNT 1081 +#define STATE_COUNT 1089 #define LARGE_STATE_COUNT 2 -#define SYMBOL_COUNT 247 +#define SYMBOL_COUNT 248 #define ALIAS_COUNT 6 #define TOKEN_COUNT 84 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 25 #define MAX_ALIAS_SEQUENCE_LENGTH 10 -#define PRODUCTION_ID_COUNT 76 +#define PRODUCTION_ID_COUNT 79 enum { aux_sym_source_file_token1 = 1, @@ -121,154 +121,155 @@ enum { sym__constant_bit_string_named_segment_option = 102, sym__constant_bit_string_segment_option_size = 103, sym__constant_record = 104, - sym__constant_record_arg = 105, - sym__constant_remote_record = 106, - sym__constant_type = 107, - sym__constant_type_annotation = 108, - sym_constant_tuple_type = 109, - sym_constant_type = 110, - sym_constant_remote_type = 111, - sym_public_external_type = 112, - sym_external_type = 113, - sym__external_type = 114, - sym_public_external_function = 115, - sym_external_function = 116, - sym__external_function = 117, - sym_external_function_parameters = 118, - sym_external_function_parameter = 119, - sym_external_function_body = 120, - sym_function = 121, - sym__function = 122, - sym_function_parameters = 123, - sym_function_parameter = 124, - sym__labelled_discard_param = 125, - sym__discard_param = 126, - sym__labelled_name_param = 127, - sym__name_param = 128, - aux_sym__expression_seq = 129, - sym_try = 130, - sym__expression = 131, - sym_binary_expression = 132, - sym__expression_unit = 133, - sym_record = 134, - sym_remote_record = 135, - sym_todo = 136, - sym_tuple = 137, - sym_list = 138, - sym__expression_bit_string = 139, - sym_expression_bit_string_segment = 140, - sym_expression_bit_string_segment_options = 141, - sym__expression_bit_string_segment_option = 142, - sym__expression_bit_string_named_segment_option = 143, - sym__expression_bit_string_segment_option_size = 144, - sym_anonymous_function = 145, - sym_expression_group = 146, - sym_case = 147, - sym_case_subjects = 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__assignment = 159, - sym_record_update = 160, - sym__record_update_record = 161, - sym__record_update_remote_record = 162, - sym_record_update_arguments = 163, - sym_record_update_argument = 164, - sym__maybe_tuple_expression = 165, - sym_tuple_access = 166, - sym__maybe_record_expression = 167, - sym_field_access = 168, - sym__maybe_function_expression = 169, - sym_arguments = 170, - sym_argument = 171, - sym_function_call = 172, - sym__pattern = 173, - sym_var = 174, - sym_discard_var = 175, - sym_remote_constructor_pattern = 176, - sym_constructor_pattern = 177, - sym__constructor_pattern = 178, - sym_pattern_constructor_args = 179, - sym__pattern_constructor_arg = 180, - sym_pattern_constructor_named_arg = 181, - sym_pattern_spread = 182, - sym_tuple_pattern = 183, - sym__pattern_bit_string = 184, - sym_pattern_bit_string_segment = 185, - sym_pattern_bit_string_segment_options = 186, - sym__pattern_bit_string_segment_option = 187, - sym__pattern_bit_string_named_segment_option = 188, - sym__pattern_bit_string_segment_option_size = 189, - sym__pattern_bit_string_segment_arg = 190, - sym_list_pattern = 191, - sym_list_pattern_tail = 192, - sym_public_function = 193, - sym_type_definition = 194, - sym_public_type_definition = 195, - sym_public_opaque_type_definition = 196, - sym__custom_type_definition = 197, - sym_type_constructors = 198, - sym_type_constructor = 199, - sym_type_constructor_arguments = 200, - sym_type_constructor_argument = 201, - sym_type_alias = 202, - sym_public_type_alias = 203, - sym_public_opaque_type_alias = 204, - sym__type_alias = 205, - sym_integer = 206, - sym__bit_string_segment_option_unit = 207, - sym__bit_string_segment_option_literal = 208, - sym__type = 209, - sym__type_annotation = 210, - sym_type_name = 211, - sym_type_parameter = 212, - sym_type_hole = 213, - sym_tuple_type = 214, - sym_function_type = 215, - sym_function_parameter_types = 216, - sym_type = 217, - sym_remote_type = 218, - sym_type_var = 219, - sym_identifier = 220, - aux_sym_source_file_repeat1 = 221, - aux_sym_target_group_repeat1 = 222, - aux_sym_import_repeat1 = 223, - aux_sym_module_repeat1 = 224, - aux_sym__constant_tuple_repeat1 = 225, - aux_sym__constant_bit_string_repeat1 = 226, - aux_sym_constant_bit_string_segment_options_repeat1 = 227, - aux_sym__constant_record_repeat1 = 228, - aux_sym_constant_tuple_type_repeat1 = 229, - aux_sym_external_function_parameters_repeat1 = 230, - aux_sym_function_parameters_repeat1 = 231, - aux_sym_tuple_repeat1 = 232, - aux_sym__expression_bit_string_repeat1 = 233, - aux_sym_expression_bit_string_segment_options_repeat1 = 234, - aux_sym_case_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_pattern_constructor_args_repeat1 = 240, - aux_sym__pattern_bit_string_repeat1 = 241, - aux_sym_pattern_bit_string_segment_options_repeat1 = 242, - aux_sym_type_constructors_repeat1 = 243, - aux_sym_type_constructor_arguments_repeat1 = 244, - aux_sym_type_name_repeat1 = 245, - aux_sym_tuple_type_repeat1 = 246, - alias_sym_bit_string_segment_option_unit = 247, - alias_sym_function_body = 248, - alias_sym_function_name = 249, - alias_sym_hole = 250, - alias_sym_pattern_assign = 251, - alias_sym_pattern_constructor_unnamed_arg = 252, + sym__constant_record_arguments = 105, + sym__constant_record_argument = 106, + sym__constant_remote_record = 107, + sym__constant_type = 108, + sym__constant_type_annotation = 109, + sym_constant_tuple_type = 110, + sym_constant_type = 111, + sym_constant_remote_type = 112, + sym_public_external_type = 113, + sym_external_type = 114, + sym__external_type = 115, + sym_public_external_function = 116, + sym_external_function = 117, + sym__external_function = 118, + sym_external_function_parameters = 119, + sym_external_function_parameter = 120, + sym_external_function_body = 121, + sym_function = 122, + sym__function = 123, + sym_function_parameters = 124, + sym_function_parameter = 125, + sym__labelled_discard_param = 126, + sym__discard_param = 127, + sym__labelled_name_param = 128, + sym__name_param = 129, + aux_sym__expression_seq = 130, + sym_try = 131, + sym__expression = 132, + sym_binary_expression = 133, + sym__expression_unit = 134, + sym_record = 135, + sym_remote_record = 136, + sym_todo = 137, + sym_tuple = 138, + sym_list = 139, + sym__expression_bit_string = 140, + sym_expression_bit_string_segment = 141, + sym_expression_bit_string_segment_options = 142, + sym__expression_bit_string_segment_option = 143, + sym__expression_bit_string_named_segment_option = 144, + sym__expression_bit_string_segment_option_size = 145, + sym_anonymous_function = 146, + sym_expression_group = 147, + sym_case = 148, + sym_case_subjects = 149, + sym_case_clause = 150, + sym_case_clause_patterns = 151, + sym_case_clause_pattern = 152, + sym_case_clause_guard = 153, + sym__case_clause_guard_expression = 154, + sym__case_clause_guard_binary_expression = 155, + sym__case_clause_guard_unit = 156, + sym__case_clause_tuple_access = 157, + sym_let = 158, + sym_assert = 159, + sym__assignment = 160, + sym_record_update = 161, + sym__record_update_record = 162, + sym__record_update_remote_record = 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_function_call = 173, + sym__pattern = 174, + sym_var = 175, + sym_discard_var = 176, + sym_remote_constructor_pattern = 177, + sym_constructor_pattern = 178, + sym__constructor_pattern = 179, + sym_pattern_constructor_args = 180, + sym__pattern_constructor_arg = 181, + sym_pattern_constructor_named_arg = 182, + sym_pattern_spread = 183, + sym_tuple_pattern = 184, + sym__pattern_bit_string = 185, + sym_pattern_bit_string_segment = 186, + sym_pattern_bit_string_segment_options = 187, + sym__pattern_bit_string_segment_option = 188, + sym__pattern_bit_string_named_segment_option = 189, + sym__pattern_bit_string_segment_option_size = 190, + sym__pattern_bit_string_segment_arg = 191, + sym_list_pattern = 192, + sym_list_pattern_tail = 193, + sym_public_function = 194, + sym_type_definition = 195, + sym_public_type_definition = 196, + sym_public_opaque_type_definition = 197, + sym__custom_type_definition = 198, + sym_type_constructors = 199, + sym_type_constructor = 200, + sym_type_constructor_arguments = 201, + sym_type_constructor_argument = 202, + sym_type_alias = 203, + sym_public_type_alias = 204, + sym_public_opaque_type_alias = 205, + sym__type_alias = 206, + sym_integer = 207, + sym__bit_string_segment_option_unit = 208, + sym__bit_string_segment_option_literal = 209, + sym__type = 210, + sym__type_annotation = 211, + sym_type_name = 212, + sym_type_parameter = 213, + sym_type_hole = 214, + sym_tuple_type = 215, + sym_function_type = 216, + sym_function_parameter_types = 217, + sym_type = 218, + sym_remote_type = 219, + sym_type_var = 220, + sym_identifier = 221, + aux_sym_source_file_repeat1 = 222, + aux_sym_target_group_repeat1 = 223, + aux_sym_import_repeat1 = 224, + aux_sym_module_repeat1 = 225, + aux_sym__constant_tuple_repeat1 = 226, + aux_sym__constant_bit_string_repeat1 = 227, + aux_sym_constant_bit_string_segment_options_repeat1 = 228, + aux_sym__constant_record_arguments_repeat1 = 229, + aux_sym_constant_tuple_type_repeat1 = 230, + aux_sym_external_function_parameters_repeat1 = 231, + aux_sym_function_parameters_repeat1 = 232, + aux_sym_tuple_repeat1 = 233, + aux_sym__expression_bit_string_repeat1 = 234, + aux_sym_expression_bit_string_segment_options_repeat1 = 235, + aux_sym_case_repeat1 = 236, + aux_sym_case_clause_patterns_repeat1 = 237, + aux_sym_case_clause_pattern_repeat1 = 238, + aux_sym_record_update_arguments_repeat1 = 239, + aux_sym_arguments_repeat1 = 240, + aux_sym_pattern_constructor_args_repeat1 = 241, + aux_sym__pattern_bit_string_repeat1 = 242, + aux_sym_pattern_bit_string_segment_options_repeat1 = 243, + aux_sym_type_constructors_repeat1 = 244, + aux_sym_type_constructor_arguments_repeat1 = 245, + aux_sym_type_name_repeat1 = 246, + aux_sym_tuple_type_repeat1 = 247, + alias_sym_bit_string_segment_option_unit = 248, + alias_sym_function_body = 249, + alias_sym_function_name = 250, + alias_sym_hole = 251, + alias_sym_pattern_assign = 252, + alias_sym_pattern_constructor_unnamed_arg = 253, }; static const char * const ts_symbol_names[] = { @@ -377,7 +378,8 @@ static const char * const ts_symbol_names[] = { [sym__constant_bit_string_named_segment_option] = "_constant_bit_string_named_segment_option", [sym__constant_bit_string_segment_option_size] = "_constant_bit_string_segment_option_size", [sym__constant_record] = "_constant_record", - [sym__constant_record_arg] = "record_arg", + [sym__constant_record_arguments] = "arguments", + [sym__constant_record_argument] = "argument", [sym__constant_remote_record] = "remote_record", [sym__constant_type] = "_constant_type", [sym__constant_type_annotation] = "_constant_type_annotation", @@ -500,7 +502,7 @@ static const char * const ts_symbol_names[] = { [aux_sym__constant_tuple_repeat1] = "_constant_tuple_repeat1", [aux_sym__constant_bit_string_repeat1] = "_constant_bit_string_repeat1", [aux_sym_constant_bit_string_segment_options_repeat1] = "constant_bit_string_segment_options_repeat1", - [aux_sym__constant_record_repeat1] = "_constant_record_repeat1", + [aux_sym__constant_record_arguments_repeat1] = "_constant_record_arguments_repeat1", [aux_sym_constant_tuple_type_repeat1] = "constant_tuple_type_repeat1", [aux_sym_external_function_parameters_repeat1] = "external_function_parameters_repeat1", [aux_sym_function_parameters_repeat1] = "function_parameters_repeat1", @@ -633,7 +635,8 @@ static const TSSymbol ts_symbol_map[] = { [sym__constant_bit_string_named_segment_option] = sym__constant_bit_string_named_segment_option, [sym__constant_bit_string_segment_option_size] = sym__constant_bit_string_segment_option_size, [sym__constant_record] = sym__constant_record, - [sym__constant_record_arg] = sym__constant_record_arg, + [sym__constant_record_arguments] = sym_arguments, + [sym__constant_record_argument] = sym_argument, [sym__constant_remote_record] = sym_remote_record, [sym__constant_type] = sym__constant_type, [sym__constant_type_annotation] = sym__constant_type_annotation, @@ -756,7 +759,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym__constant_tuple_repeat1] = aux_sym__constant_tuple_repeat1, [aux_sym__constant_bit_string_repeat1] = aux_sym__constant_bit_string_repeat1, [aux_sym_constant_bit_string_segment_options_repeat1] = aux_sym_constant_bit_string_segment_options_repeat1, - [aux_sym__constant_record_repeat1] = aux_sym__constant_record_repeat1, + [aux_sym__constant_record_arguments_repeat1] = aux_sym__constant_record_arguments_repeat1, [aux_sym_constant_tuple_type_repeat1] = aux_sym_constant_tuple_type_repeat1, [aux_sym_external_function_parameters_repeat1] = aux_sym_external_function_parameters_repeat1, [aux_sym_function_parameters_repeat1] = aux_sym_function_parameters_repeat1, @@ -1204,7 +1207,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, - [sym__constant_record_arg] = { + [sym__constant_record_arguments] = { + .visible = true, + .named = true, + }, + [sym__constant_record_argument] = { .visible = true, .named = true, }, @@ -1696,7 +1703,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym__constant_record_repeat1] = { + [aux_sym__constant_record_arguments_repeat1] = { .visible = false, .named = false, }, @@ -1868,64 +1875,67 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [10] = {.index = 24, .length = 2}, [12] = {.index = 26, .length = 1}, [13] = {.index = 27, .length = 1}, - [14] = {.index = 28, .length = 2}, - [15] = {.index = 30, .length = 1}, + [14] = {.index = 28, .length = 1}, + [15] = {.index = 29, .length = 2}, [16] = {.index = 31, .length = 1}, [17] = {.index = 32, .length = 1}, - [18] = {.index = 33, .length = 3}, - [19] = {.index = 36, .length = 1}, - [20] = {.index = 37, .length = 2}, - [21] = {.index = 39, .length = 1}, - [22] = {.index = 40, .length = 3}, - [23] = {.index = 43, .length = 2}, - [24] = {.index = 45, .length = 1}, - [25] = {.index = 46, .length = 2}, - [26] = {.index = 48, .length = 1}, + [18] = {.index = 33, .length = 1}, + [19] = {.index = 34, .length = 3}, + [20] = {.index = 37, .length = 1}, + [21] = {.index = 38, .length = 2}, + [22] = {.index = 40, .length = 1}, + [23] = {.index = 41, .length = 3}, + [24] = {.index = 44, .length = 2}, + [25] = {.index = 46, .length = 1}, + [26] = {.index = 47, .length = 2}, [27] = {.index = 49, .length = 1}, - [28] = {.index = 50, .length = 1}, - [29] = {.index = 51, .length = 3}, - [30] = {.index = 54, .length = 2}, - [31] = {.index = 56, .length = 2}, - [32] = {.index = 58, .length = 4}, - [33] = {.index = 62, .length = 1}, - [34] = {.index = 63, .length = 2}, - [35] = {.index = 65, .length = 2}, - [36] = {.index = 67, .length = 2}, - [37] = {.index = 32, .length = 1}, - [38] = {.index = 69, .length = 2}, - [39] = {.index = 71, .length = 2}, - [40] = {.index = 73, .length = 2}, - [41] = {.index = 75, .length = 2}, - [42] = {.index = 77, .length = 3}, - [43] = {.index = 80, .length = 1}, - [44] = {.index = 81, .length = 2}, - [46] = {.index = 83, .length = 3}, - [47] = {.index = 86, .length = 1}, - [48] = {.index = 87, .length = 1}, - [49] = {.index = 88, .length = 3}, - [50] = {.index = 91, .length = 2}, - [53] = {.index = 93, .length = 4}, - [54] = {.index = 97, .length = 1}, - [55] = {.index = 98, .length = 2}, - [56] = {.index = 100, .length = 2}, - [57] = {.index = 102, .length = 4}, - [58] = {.index = 106, .length = 4}, - [59] = {.index = 110, .length = 1}, - [60] = {.index = 111, .length = 4}, - [61] = {.index = 65, .length = 2}, - [62] = {.index = 115, .length = 3}, - [63] = {.index = 118, .length = 1}, - [65] = {.index = 119, .length = 2}, - [66] = {.index = 121, .length = 2}, - [67] = {.index = 123, .length = 1}, - [68] = {.index = 124, .length = 1}, - [69] = {.index = 125, .length = 1}, - [70] = {.index = 126, .length = 2}, - [71] = {.index = 128, .length = 3}, - [72] = {.index = 131, .length = 4}, - [73] = {.index = 135, .length = 1}, - [74] = {.index = 69, .length = 2}, - [75] = {.index = 136, .length = 2}, + [28] = {.index = 49, .length = 1}, + [29] = {.index = 50, .length = 1}, + [30] = {.index = 51, .length = 1}, + [31] = {.index = 52, .length = 3}, + [32] = {.index = 55, .length = 2}, + [33] = {.index = 57, .length = 2}, + [34] = {.index = 59, .length = 2}, + [35] = {.index = 61, .length = 4}, + [36] = {.index = 65, .length = 1}, + [37] = {.index = 66, .length = 2}, + [38] = {.index = 68, .length = 2}, + [39] = {.index = 70, .length = 2}, + [40] = {.index = 33, .length = 1}, + [41] = {.index = 72, .length = 2}, + [42] = {.index = 74, .length = 2}, + [43] = {.index = 76, .length = 2}, + [44] = {.index = 78, .length = 2}, + [45] = {.index = 80, .length = 3}, + [46] = {.index = 83, .length = 1}, + [47] = {.index = 84, .length = 2}, + [49] = {.index = 86, .length = 3}, + [50] = {.index = 89, .length = 1}, + [51] = {.index = 90, .length = 1}, + [52] = {.index = 91, .length = 3}, + [53] = {.index = 94, .length = 2}, + [56] = {.index = 96, .length = 4}, + [57] = {.index = 100, .length = 1}, + [58] = {.index = 101, .length = 2}, + [59] = {.index = 103, .length = 2}, + [60] = {.index = 105, .length = 4}, + [61] = {.index = 109, .length = 4}, + [62] = {.index = 113, .length = 1}, + [63] = {.index = 114, .length = 4}, + [64] = {.index = 68, .length = 2}, + [65] = {.index = 118, .length = 3}, + [66] = {.index = 121, .length = 1}, + [68] = {.index = 122, .length = 2}, + [69] = {.index = 124, .length = 2}, + [70] = {.index = 126, .length = 1}, + [71] = {.index = 127, .length = 1}, + [72] = {.index = 128, .length = 1}, + [73] = {.index = 129, .length = 2}, + [74] = {.index = 131, .length = 3}, + [75] = {.index = 134, .length = 4}, + [76] = {.index = 138, .length = 1}, + [77] = {.index = 72, .length = 2}, + [78] = {.index = 139, .length = 2}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -1966,172 +1976,177 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_name, 1}, {field_value, 3}, [26] = - {field_type, 1}, + {field_module, 0, .inherited = true}, [27] = - {field_label, 0, .inherited = true}, + {field_type, 1}, [28] = {field_label, 0, .inherited = true}, - {field_name, 0, .inherited = true}, - [30] = + [29] = + {field_label, 0, .inherited = true}, {field_name, 0, .inherited = true}, [31] = - {field_name, 0}, + {field_name, 0, .inherited = true}, [32] = - {field_value, 0}, + {field_name, 0}, [33] = + {field_value, 0}, + [34] = {field_name, 1}, {field_type, 2, .inherited = true}, {field_value, 4}, - [36] = - {field_type, 0}, [37] = + {field_type, 0}, + [38] = {field_label, 0, .inherited = true}, {field_type, 1, .inherited = true}, - [39] = - {field_type, 1, .inherited = true}, [40] = + {field_type, 1, .inherited = true}, + [41] = {field_label, 0, .inherited = true}, {field_name, 0, .inherited = true}, {field_type, 1, .inherited = true}, - [43] = + [44] = {field_name, 0, .inherited = true}, {field_type, 1, .inherited = true}, - [45] = - {field_label, 0}, [46] = {field_label, 0}, + [47] = + {field_label, 0}, {field_name, 1}, - [48] = - {field_module, 0}, [49] = - {field_return_type, 2}, + {field_module, 0}, [50] = - {field_alias, 2}, + {field_return_type, 2}, [51] = + {field_alias, 2}, + [52] = {field_options, 1}, {field_options, 2}, {field_value, 0}, - [54] = + [55] = + {field_label, 1, .inherited = true}, + {field_value, 1, .inherited = true}, + [57] = {field_name, 0}, {field_type, 2}, - [56] = + [59] = {field_parameter_types, 1}, {field_return_type, 3}, - [58] = + [61] = {field_assign, 1, .inherited = true}, {field_pattern, 1, .inherited = true}, {field_type, 1, .inherited = true}, {field_value, 1, .inherited = true}, - [62] = + [65] = {field_name, 1}, - [63] = + [66] = {field_alias, 7}, {field_module, 1}, - [65] = + [68] = {field_label, 0}, {field_value, 2}, - [67] = + [70] = {field_assign, 0, .inherited = true}, {field_value, 0}, - [69] = + [72] = {field_index, 2}, {field_tuple, 0}, - [71] = + [74] = {field_field, 2}, {field_record, 0}, - [73] = + [76] = {field_name, 1}, {field_parameters, 3}, - [75] = + [78] = {field_alias, 8}, {field_module, 1}, - [77] = + [80] = {field_body, 8}, {field_name, 2}, {field_return_type, 6}, - [80] = + [83] = {field_assign, 1, .inherited = true}, - [81] = + [84] = {field_assign, 1}, {field_assign, 2}, - [83] = + [86] = {field_assign, 1, .inherited = true}, {field_pattern, 1}, {field_value, 3}, - [86] = + [89] = {field_message, 2}, - [87] = + [90] = {field_assign, 0, .inherited = true}, - [88] = + [91] = {field_assign, 0, .inherited = true}, {field_pattern, 0}, {field_value, 2}, - [91] = + [94] = {field_name, 1}, {field_return_type, 5}, - [93] = + [96] = {field_body, 9}, {field_name, 2}, {field_parameters, 4}, {field_return_type, 7}, - [97] = + [100] = {field_assign, 2, .inherited = true}, - [98] = + [101] = {field_assign, 1, .inherited = true}, {field_assign, 2, .inherited = true}, - [100] = + [103] = {field_assign, 0, .inherited = true}, {field_assign, 1, .inherited = true}, - [102] = + [105] = {field_assign, 0, .inherited = true}, {field_options, 1}, {field_options, 2}, {field_value, 0}, - [106] = + [109] = {field_assign, 1, .inherited = true}, {field_pattern, 1}, {field_type, 2, .inherited = true}, {field_value, 4}, - [110] = + [113] = {field_subjects, 1}, - [111] = + [114] = {field_assign, 0, .inherited = true}, {field_pattern, 0}, {field_type, 1, .inherited = true}, {field_value, 3}, - [115] = + [118] = {field_name, 1}, {field_parameters, 3}, {field_return_type, 6}, - [118] = + [121] = {field_spread, 4}, - [119] = + [122] = {field_assign, 2, .inherited = true}, {field_assign, 3, .inherited = true}, - [121] = + [124] = {field_index, 0, .inherited = true}, {field_tuple, 0, .inherited = true}, - [123] = + [126] = {field_patterns, 0}, - [124] = + [127] = {field_spread, 5}, - [125] = + [128] = {field_parameters, 2}, - [126] = + [129] = {field_guard, 1}, {field_patterns, 0}, - [128] = + [131] = {field_arguments, 5}, {field_constructor, 0}, {field_spread, 3}, - [131] = + [134] = {field_arguments, 5}, {field_constructor, 0}, {field_module, 0, .inherited = true}, {field_spread, 3}, - [135] = + [138] = {field_return_type, 4}, - [136] = + [139] = {field_parameters, 2}, {field_return_type, 5}, }; @@ -2141,58 +2156,61 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [11] = { [0] = sym_record, }, - [28] = { + [27] = { + [0] = sym_identifier, + }, + [30] = { [2] = sym_alias, }, - [33] = { + [36] = { [5] = alias_sym_function_body, }, - [37] = { + [40] = { [0] = alias_sym_hole, }, - [40] = { + [43] = { [6] = alias_sym_function_body, }, - [42] = { + [45] = { [2] = alias_sym_function_name, }, - [44] = { + [47] = { [2] = alias_sym_pattern_assign, }, - [45] = { + [48] = { [0] = alias_sym_pattern_constructor_unnamed_arg, }, - [50] = { + [53] = { [7] = alias_sym_function_body, }, - [51] = { + [54] = { [2] = sym__pattern_bit_string_segment_arg, }, - [52] = { + [55] = { [2] = alias_sym_bit_string_segment_option_unit, }, - [53] = { + [56] = { [2] = alias_sym_function_name, }, - [61] = { + [64] = { [2] = alias_sym_hole, }, - [62] = { + [65] = { [8] = alias_sym_function_body, }, - [64] = { + [67] = { [4] = alias_sym_function_body, }, - [69] = { + [72] = { [5] = alias_sym_function_body, }, - [73] = { + [76] = { [6] = alias_sym_function_body, }, - [74] = { + [77] = { [0] = sym_var, }, - [75] = { + [78] = { [7] = alias_sym_function_body, }, }; @@ -3706,7 +3724,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [35] = {.lex_state = 3}, [36] = {.lex_state = 3}, [37] = {.lex_state = 3}, - [38] = {.lex_state = 2}, + [38] = {.lex_state = 3}, [39] = {.lex_state = 3}, [40] = {.lex_state = 3}, [41] = {.lex_state = 3}, @@ -3717,7 +3735,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [46] = {.lex_state = 3}, [47] = {.lex_state = 3}, [48] = {.lex_state = 3}, - [49] = {.lex_state = 3}, + [49] = {.lex_state = 2}, [50] = {.lex_state = 3}, [51] = {.lex_state = 3}, [52] = {.lex_state = 3}, @@ -3734,52 +3752,52 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [63] = {.lex_state = 3}, [64] = {.lex_state = 3}, [65] = {.lex_state = 3}, - [66] = {.lex_state = 3}, - [67] = {.lex_state = 2}, + [66] = {.lex_state = 2}, + [67] = {.lex_state = 3}, [68] = {.lex_state = 3}, [69] = {.lex_state = 4}, - [70] = {.lex_state = 4}, + [70] = {.lex_state = 3}, [71] = {.lex_state = 3}, - [72] = {.lex_state = 3}, + [72] = {.lex_state = 4}, [73] = {.lex_state = 3}, [74] = {.lex_state = 3}, [75] = {.lex_state = 4}, [76] = {.lex_state = 4}, [77] = {.lex_state = 3}, - [78] = {.lex_state = 4}, - [79] = {.lex_state = 3}, + [78] = {.lex_state = 3}, + [79] = {.lex_state = 4}, [80] = {.lex_state = 3}, - [81] = {.lex_state = 4}, + [81] = {.lex_state = 3}, [82] = {.lex_state = 3}, [83] = {.lex_state = 4}, - [84] = {.lex_state = 4}, + [84] = {.lex_state = 3}, [85] = {.lex_state = 3}, - [86] = {.lex_state = 3}, + [86] = {.lex_state = 4}, [87] = {.lex_state = 4}, - [88] = {.lex_state = 3}, + [88] = {.lex_state = 4}, [89] = {.lex_state = 4}, [90] = {.lex_state = 4}, [91] = {.lex_state = 4}, [92] = {.lex_state = 3}, - [93] = {.lex_state = 3}, - [94] = {.lex_state = 3}, - [95] = {.lex_state = 4}, - [96] = {.lex_state = 3}, + [93] = {.lex_state = 4}, + [94] = {.lex_state = 4}, + [95] = {.lex_state = 3}, + [96] = {.lex_state = 4}, [97] = {.lex_state = 3}, - [98] = {.lex_state = 4}, - [99] = {.lex_state = 4}, + [98] = {.lex_state = 3}, + [99] = {.lex_state = 3}, [100] = {.lex_state = 4}, - [101] = {.lex_state = 4}, + [101] = {.lex_state = 3}, [102] = {.lex_state = 4}, - [103] = {.lex_state = 3}, - [104] = {.lex_state = 4}, + [103] = {.lex_state = 4}, + [104] = {.lex_state = 3}, [105] = {.lex_state = 4}, - [106] = {.lex_state = 3}, + [106] = {.lex_state = 4}, [107] = {.lex_state = 4}, - [108] = {.lex_state = 4}, - [109] = {.lex_state = 4}, + [108] = {.lex_state = 3}, + [109] = {.lex_state = 3}, [110] = {.lex_state = 4}, - [111] = {.lex_state = 4}, + [111] = {.lex_state = 3}, [112] = {.lex_state = 4}, [113] = {.lex_state = 4}, [114] = {.lex_state = 4}, @@ -3794,19 +3812,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [123] = {.lex_state = 4}, [124] = {.lex_state = 4}, [125] = {.lex_state = 4}, - [126] = {.lex_state = 3}, + [126] = {.lex_state = 4}, [127] = {.lex_state = 4}, [128] = {.lex_state = 4}, - [129] = {.lex_state = 3}, - [130] = {.lex_state = 4}, - [131] = {.lex_state = 4}, + [129] = {.lex_state = 4}, + [130] = {.lex_state = 3}, + [131] = {.lex_state = 3}, [132] = {.lex_state = 4}, - [133] = {.lex_state = 4}, - [134] = {.lex_state = 4}, - [135] = {.lex_state = 4}, - [136] = {.lex_state = 3}, + [133] = {.lex_state = 3}, + [134] = {.lex_state = 3}, + [135] = {.lex_state = 3}, + [136] = {.lex_state = 4}, [137] = {.lex_state = 4}, - [138] = {.lex_state = 3}, + [138] = {.lex_state = 4}, [139] = {.lex_state = 4}, [140] = {.lex_state = 4}, [141] = {.lex_state = 4}, @@ -3815,7 +3833,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [144] = {.lex_state = 4}, [145] = {.lex_state = 4}, [146] = {.lex_state = 4}, - [147] = {.lex_state = 3}, + [147] = {.lex_state = 4}, [148] = {.lex_state = 4}, [149] = {.lex_state = 4}, [150] = {.lex_state = 4}, @@ -3825,20 +3843,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [154] = {.lex_state = 4}, [155] = {.lex_state = 4}, [156] = {.lex_state = 4}, - [157] = {.lex_state = 3}, + [157] = {.lex_state = 4}, [158] = {.lex_state = 4}, [159] = {.lex_state = 4}, [160] = {.lex_state = 4}, [161] = {.lex_state = 4}, - [162] = {.lex_state = 3}, - [163] = {.lex_state = 3}, + [162] = {.lex_state = 4}, + [163] = {.lex_state = 4}, [164] = {.lex_state = 4}, [165] = {.lex_state = 4}, - [166] = {.lex_state = 3}, - [167] = {.lex_state = 4}, + [166] = {.lex_state = 4}, + [167] = {.lex_state = 3}, [168] = {.lex_state = 4}, - [169] = {.lex_state = 4}, - [170] = {.lex_state = 3}, + [169] = {.lex_state = 3}, + [170] = {.lex_state = 4}, [171] = {.lex_state = 3}, [172] = {.lex_state = 3}, [173] = {.lex_state = 3}, @@ -3854,10 +3872,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [183] = {.lex_state = 3}, [184] = {.lex_state = 5}, [185] = {.lex_state = 5}, - [186] = {.lex_state = 6}, + [186] = {.lex_state = 5}, [187] = {.lex_state = 5}, [188] = {.lex_state = 5}, - [189] = {.lex_state = 5}, + [189] = {.lex_state = 6}, [190] = {.lex_state = 5}, [191] = {.lex_state = 5}, [192] = {.lex_state = 5}, @@ -3925,7 +3943,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [254] = {.lex_state = 8}, [255] = {.lex_state = 8}, [256] = {.lex_state = 0}, - [257] = {.lex_state = 0}, + [257] = {.lex_state = 8}, [258] = {.lex_state = 8}, [259] = {.lex_state = 8}, [260] = {.lex_state = 8}, @@ -3934,7 +3952,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [263] = {.lex_state = 8}, [264] = {.lex_state = 8}, [265] = {.lex_state = 8}, - [266] = {.lex_state = 8}, + [266] = {.lex_state = 0}, [267] = {.lex_state = 8}, [268] = {.lex_state = 8}, [269] = {.lex_state = 8}, @@ -3943,74 +3961,74 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [272] = {.lex_state = 8}, [273] = {.lex_state = 8}, [274] = {.lex_state = 8}, - [275] = {.lex_state = 8}, - [276] = {.lex_state = 5}, + [275] = {.lex_state = 5}, + [276] = {.lex_state = 8}, [277] = {.lex_state = 8}, - [278] = {.lex_state = 0}, - [279] = {.lex_state = 5}, + [278] = {.lex_state = 8}, + [279] = {.lex_state = 8}, [280] = {.lex_state = 8}, [281] = {.lex_state = 8}, [282] = {.lex_state = 5}, [283] = {.lex_state = 8}, - [284] = {.lex_state = 8}, - [285] = {.lex_state = 5}, + [284] = {.lex_state = 5}, + [285] = {.lex_state = 8}, [286] = {.lex_state = 8}, - [287] = {.lex_state = 8}, + [287] = {.lex_state = 0}, [288] = {.lex_state = 8}, [289] = {.lex_state = 8}, - [290] = {.lex_state = 8}, - [291] = {.lex_state = 8}, + [290] = {.lex_state = 5}, + [291] = {.lex_state = 0}, [292] = {.lex_state = 5}, [293] = {.lex_state = 0}, - [294] = {.lex_state = 0}, + [294] = {.lex_state = 8}, [295] = {.lex_state = 5}, - [296] = {.lex_state = 5}, - [297] = {.lex_state = 0}, + [296] = {.lex_state = 0}, + [297] = {.lex_state = 5}, [298] = {.lex_state = 5}, - [299] = {.lex_state = 0}, + [299] = {.lex_state = 8}, [300] = {.lex_state = 8}, [301] = {.lex_state = 8}, [302] = {.lex_state = 8}, [303] = {.lex_state = 8}, - [304] = {.lex_state = 8}, + [304] = {.lex_state = 0}, [305] = {.lex_state = 8}, [306] = {.lex_state = 8}, [307] = {.lex_state = 8}, [308] = {.lex_state = 8}, - [309] = {.lex_state = 9}, + [309] = {.lex_state = 8}, [310] = {.lex_state = 8}, [311] = {.lex_state = 8}, - [312] = {.lex_state = 8}, + [312] = {.lex_state = 9}, [313] = {.lex_state = 8}, - [314] = {.lex_state = 9}, - [315] = {.lex_state = 8}, + [314] = {.lex_state = 8}, + [315] = {.lex_state = 9}, [316] = {.lex_state = 8}, [317] = {.lex_state = 8}, [318] = {.lex_state = 8}, - [319] = {.lex_state = 8}, + [319] = {.lex_state = 5}, [320] = {.lex_state = 9}, - [321] = {.lex_state = 9}, - [322] = {.lex_state = 8}, - [323] = {.lex_state = 5}, + [321] = {.lex_state = 8}, + [322] = {.lex_state = 9}, + [323] = {.lex_state = 8}, [324] = {.lex_state = 8}, [325] = {.lex_state = 8}, [326] = {.lex_state = 8}, [327] = {.lex_state = 9}, [328] = {.lex_state = 8}, - [329] = {.lex_state = 9}, - [330] = {.lex_state = 8}, + [329] = {.lex_state = 8}, + [330] = {.lex_state = 9}, [331] = {.lex_state = 5}, [332] = {.lex_state = 5}, - [333] = {.lex_state = 8}, + [333] = {.lex_state = 5}, [334] = {.lex_state = 5}, - [335] = {.lex_state = 5}, + [335] = {.lex_state = 8}, [336] = {.lex_state = 5}, - [337] = {.lex_state = 8}, + [337] = {.lex_state = 5}, [338] = {.lex_state = 5}, [339] = {.lex_state = 5}, [340] = {.lex_state = 5}, [341] = {.lex_state = 5}, - [342] = {.lex_state = 5}, + [342] = {.lex_state = 8}, [343] = {.lex_state = 5}, [344] = {.lex_state = 5}, [345] = {.lex_state = 8}, @@ -4018,11 +4036,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [347] = {.lex_state = 8}, [348] = {.lex_state = 8}, [349] = {.lex_state = 8}, - [350] = {.lex_state = 5}, + [350] = {.lex_state = 8}, [351] = {.lex_state = 8}, [352] = {.lex_state = 8}, [353] = {.lex_state = 8}, - [354] = {.lex_state = 8}, + [354] = {.lex_state = 5}, [355] = {.lex_state = 8}, [356] = {.lex_state = 8}, [357] = {.lex_state = 5}, @@ -4034,21 +4052,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [363] = {.lex_state = 9}, [364] = {.lex_state = 9}, [365] = {.lex_state = 9}, - [366] = {.lex_state = 9}, - [367] = {.lex_state = 10}, + [366] = {.lex_state = 10}, + [367] = {.lex_state = 9}, [368] = {.lex_state = 9}, [369] = {.lex_state = 9}, - [370] = {.lex_state = 9}, + [370] = {.lex_state = 3}, [371] = {.lex_state = 9}, - [372] = {.lex_state = 3}, + [372] = {.lex_state = 9}, [373] = {.lex_state = 9}, - [374] = {.lex_state = 10}, - [375] = {.lex_state = 10}, - [376] = {.lex_state = 10}, - [377] = {.lex_state = 10}, + [374] = {.lex_state = 9}, + [375] = {.lex_state = 9}, + [376] = {.lex_state = 9}, + [377] = {.lex_state = 9}, [378] = {.lex_state = 10}, - [379] = {.lex_state = 10}, - [380] = {.lex_state = 10}, + [379] = {.lex_state = 9}, + [380] = {.lex_state = 9}, [381] = {.lex_state = 10}, [382] = {.lex_state = 9}, [383] = {.lex_state = 10}, @@ -4056,16 +4074,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [385] = {.lex_state = 10}, [386] = {.lex_state = 10}, [387] = {.lex_state = 9}, - [388] = {.lex_state = 9}, + [388] = {.lex_state = 10}, [389] = {.lex_state = 10}, - [390] = {.lex_state = 9}, - [391] = {.lex_state = 9}, - [392] = {.lex_state = 9}, - [393] = {.lex_state = 10}, + [390] = {.lex_state = 10}, + [391] = {.lex_state = 10}, + [392] = {.lex_state = 10}, + [393] = {.lex_state = 9}, [394] = {.lex_state = 10}, [395] = {.lex_state = 10}, [396] = {.lex_state = 10}, - [397] = {.lex_state = 10}, + [397] = {.lex_state = 9}, [398] = {.lex_state = 10}, [399] = {.lex_state = 10}, [400] = {.lex_state = 10}, @@ -4077,7 +4095,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [406] = {.lex_state = 10}, [407] = {.lex_state = 10}, [408] = {.lex_state = 10}, - [409] = {.lex_state = 11}, + [409] = {.lex_state = 10}, [410] = {.lex_state = 10}, [411] = {.lex_state = 10}, [412] = {.lex_state = 10}, @@ -4085,7 +4103,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [414] = {.lex_state = 8}, [415] = {.lex_state = 10}, [416] = {.lex_state = 10}, - [417] = {.lex_state = 10}, + [417] = {.lex_state = 11}, [418] = {.lex_state = 10}, [419] = {.lex_state = 10}, [420] = {.lex_state = 10}, @@ -4110,13 +4128,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [439] = {.lex_state = 10}, [440] = {.lex_state = 10}, [441] = {.lex_state = 10}, - [442] = {.lex_state = 11}, + [442] = {.lex_state = 10}, [443] = {.lex_state = 10}, - [444] = {.lex_state = 11}, - [445] = {.lex_state = 11}, - [446] = {.lex_state = 11}, - [447] = {.lex_state = 11}, - [448] = {.lex_state = 11}, + [444] = {.lex_state = 10}, + [445] = {.lex_state = 10}, + [446] = {.lex_state = 10}, + [447] = {.lex_state = 10}, + [448] = {.lex_state = 10}, [449] = {.lex_state = 11}, [450] = {.lex_state = 11}, [451] = {.lex_state = 11}, @@ -4133,39 +4151,39 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [462] = {.lex_state = 11}, [463] = {.lex_state = 11}, [464] = {.lex_state = 11}, - [465] = {.lex_state = 7}, - [466] = {.lex_state = 7}, - [467] = {.lex_state = 7}, - [468] = {.lex_state = 7}, - [469] = {.lex_state = 7}, - [470] = {.lex_state = 7}, + [465] = {.lex_state = 11}, + [466] = {.lex_state = 11}, + [467] = {.lex_state = 11}, + [468] = {.lex_state = 11}, + [469] = {.lex_state = 11}, + [470] = {.lex_state = 11}, [471] = {.lex_state = 11}, [472] = {.lex_state = 7}, - [473] = {.lex_state = 12}, - [474] = {.lex_state = 0}, - [475] = {.lex_state = 12}, + [473] = {.lex_state = 7}, + [474] = {.lex_state = 7}, + [475] = {.lex_state = 7}, [476] = {.lex_state = 7}, [477] = {.lex_state = 7}, - [478] = {.lex_state = 0}, - [479] = {.lex_state = 7}, - [480] = {.lex_state = 11}, - [481] = {.lex_state = 7}, - [482] = {.lex_state = 11}, + [478] = {.lex_state = 7}, + [479] = {.lex_state = 12}, + [480] = {.lex_state = 0}, + [481] = {.lex_state = 12}, + [482] = {.lex_state = 7}, [483] = {.lex_state = 7}, - [484] = {.lex_state = 7}, + [484] = {.lex_state = 0}, [485] = {.lex_state = 7}, [486] = {.lex_state = 7}, - [487] = {.lex_state = 7}, - [488] = {.lex_state = 7}, - [489] = {.lex_state = 12}, - [490] = {.lex_state = 2}, - [491] = {.lex_state = 11}, - [492] = {.lex_state = 0}, - [493] = {.lex_state = 0}, - [494] = {.lex_state = 0}, - [495] = {.lex_state = 0}, - [496] = {.lex_state = 11}, - [497] = {.lex_state = 2}, + [487] = {.lex_state = 11}, + [488] = {.lex_state = 11}, + [489] = {.lex_state = 7}, + [490] = {.lex_state = 7}, + [491] = {.lex_state = 7}, + [492] = {.lex_state = 7}, + [493] = {.lex_state = 7}, + [494] = {.lex_state = 7}, + [495] = {.lex_state = 12}, + [496] = {.lex_state = 0}, + [497] = {.lex_state = 0}, [498] = {.lex_state = 0}, [499] = {.lex_state = 0}, [500] = {.lex_state = 0}, @@ -4173,137 +4191,137 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [502] = {.lex_state = 0}, [503] = {.lex_state = 0}, [504] = {.lex_state = 0}, - [505] = {.lex_state = 0}, - [506] = {.lex_state = 7}, - [507] = {.lex_state = 2}, - [508] = {.lex_state = 7}, - [509] = {.lex_state = 12}, - [510] = {.lex_state = 12}, - [511] = {.lex_state = 2}, - [512] = {.lex_state = 12}, + [505] = {.lex_state = 11}, + [506] = {.lex_state = 0}, + [507] = {.lex_state = 0}, + [508] = {.lex_state = 2}, + [509] = {.lex_state = 2}, + [510] = {.lex_state = 11}, + [511] = {.lex_state = 0}, + [512] = {.lex_state = 6}, [513] = {.lex_state = 2}, - [514] = {.lex_state = 2}, - [515] = {.lex_state = 11}, - [516] = {.lex_state = 7}, - [517] = {.lex_state = 2}, + [514] = {.lex_state = 12}, + [515] = {.lex_state = 12}, + [516] = {.lex_state = 0}, + [517] = {.lex_state = 0}, [518] = {.lex_state = 2}, [519] = {.lex_state = 2}, - [520] = {.lex_state = 2}, - [521] = {.lex_state = 2}, - [522] = {.lex_state = 7}, + [520] = {.lex_state = 7}, + [521] = {.lex_state = 7}, + [522] = {.lex_state = 0}, [523] = {.lex_state = 0}, - [524] = {.lex_state = 7}, - [525] = {.lex_state = 7}, - [526] = {.lex_state = 11}, - [527] = {.lex_state = 6}, - [528] = {.lex_state = 12}, - [529] = {.lex_state = 0}, - [530] = {.lex_state = 0}, - [531] = {.lex_state = 7}, + [524] = {.lex_state = 12}, + [525] = {.lex_state = 6}, + [526] = {.lex_state = 7}, + [527] = {.lex_state = 0}, + [528] = {.lex_state = 6}, + [529] = {.lex_state = 7}, + [530] = {.lex_state = 7}, + [531] = {.lex_state = 0}, [532] = {.lex_state = 0}, - [533] = {.lex_state = 0}, + [533] = {.lex_state = 12}, [534] = {.lex_state = 0}, [535] = {.lex_state = 0}, - [536] = {.lex_state = 0}, - [537] = {.lex_state = 7}, - [538] = {.lex_state = 11}, - [539] = {.lex_state = 0}, - [540] = {.lex_state = 0}, - [541] = {.lex_state = 0}, - [542] = {.lex_state = 0}, - [543] = {.lex_state = 0}, - [544] = {.lex_state = 12}, - [545] = {.lex_state = 6}, - [546] = {.lex_state = 12}, - [547] = {.lex_state = 2}, - [548] = {.lex_state = 2}, - [549] = {.lex_state = 7}, - [550] = {.lex_state = 6}, - [551] = {.lex_state = 7}, + [536] = {.lex_state = 7}, + [537] = {.lex_state = 11}, + [538] = {.lex_state = 2}, + [539] = {.lex_state = 7}, + [540] = {.lex_state = 2}, + [541] = {.lex_state = 2}, + [542] = {.lex_state = 11}, + [543] = {.lex_state = 12}, + [544] = {.lex_state = 2}, + [545] = {.lex_state = 12}, + [546] = {.lex_state = 0}, + [547] = {.lex_state = 11}, + [548] = {.lex_state = 0}, + [549] = {.lex_state = 2}, + [550] = {.lex_state = 0}, + [551] = {.lex_state = 2}, [552] = {.lex_state = 6}, [553] = {.lex_state = 0}, [554] = {.lex_state = 0}, - [555] = {.lex_state = 0}, + [555] = {.lex_state = 7}, [556] = {.lex_state = 0}, - [557] = {.lex_state = 6}, - [558] = {.lex_state = 0}, + [557] = {.lex_state = 7}, + [558] = {.lex_state = 6}, [559] = {.lex_state = 0}, [560] = {.lex_state = 7}, - [561] = {.lex_state = 12}, - [562] = {.lex_state = 0}, + [561] = {.lex_state = 2}, + [562] = {.lex_state = 2}, [563] = {.lex_state = 0}, [564] = {.lex_state = 0}, [565] = {.lex_state = 0}, [566] = {.lex_state = 0}, - [567] = {.lex_state = 7}, + [567] = {.lex_state = 0}, [568] = {.lex_state = 0}, - [569] = {.lex_state = 2}, - [570] = {.lex_state = 0}, + [569] = {.lex_state = 0}, + [570] = {.lex_state = 2}, [571] = {.lex_state = 7}, - [572] = {.lex_state = 12}, - [573] = {.lex_state = 0}, + [572] = {.lex_state = 0}, + [573] = {.lex_state = 2}, [574] = {.lex_state = 0}, [575] = {.lex_state = 0}, - [576] = {.lex_state = 2}, + [576] = {.lex_state = 12}, [577] = {.lex_state = 0}, [578] = {.lex_state = 0}, - [579] = {.lex_state = 2}, + [579] = {.lex_state = 0}, [580] = {.lex_state = 0}, - [581] = {.lex_state = 0}, + [581] = {.lex_state = 12}, [582] = {.lex_state = 0}, - [583] = {.lex_state = 0}, - [584] = {.lex_state = 7}, - [585] = {.lex_state = 2}, - [586] = {.lex_state = 0}, + [583] = {.lex_state = 2}, + [584] = {.lex_state = 0}, + [585] = {.lex_state = 12}, + [586] = {.lex_state = 7}, [587] = {.lex_state = 0}, - [588] = {.lex_state = 0}, - [589] = {.lex_state = 2}, + [588] = {.lex_state = 2}, + [589] = {.lex_state = 0}, [590] = {.lex_state = 0}, - [591] = {.lex_state = 0}, + [591] = {.lex_state = 12}, [592] = {.lex_state = 0}, - [593] = {.lex_state = 2}, + [593] = {.lex_state = 0}, [594] = {.lex_state = 0}, [595] = {.lex_state = 0}, [596] = {.lex_state = 0}, - [597] = {.lex_state = 0}, - [598] = {.lex_state = 12}, + [597] = {.lex_state = 7}, + [598] = {.lex_state = 0}, [599] = {.lex_state = 0}, [600] = {.lex_state = 0}, [601] = {.lex_state = 0}, [602] = {.lex_state = 0}, [603] = {.lex_state = 0}, - [604] = {.lex_state = 0}, - [605] = {.lex_state = 11}, - [606] = {.lex_state = 0}, + [604] = {.lex_state = 2}, + [605] = {.lex_state = 0}, + [606] = {.lex_state = 2}, [607] = {.lex_state = 0}, [608] = {.lex_state = 0}, [609] = {.lex_state = 0}, - [610] = {.lex_state = 0}, - [611] = {.lex_state = 0}, + [610] = {.lex_state = 2}, + [611] = {.lex_state = 11}, [612] = {.lex_state = 0}, [613] = {.lex_state = 0}, - [614] = {.lex_state = 0}, - [615] = {.lex_state = 12}, + [614] = {.lex_state = 2}, + [615] = {.lex_state = 0}, [616] = {.lex_state = 0}, - [617] = {.lex_state = 0}, - [618] = {.lex_state = 0}, - [619] = {.lex_state = 0}, - [620] = {.lex_state = 10}, - [621] = {.lex_state = 12}, - [622] = {.lex_state = 7}, + [617] = {.lex_state = 2}, + [618] = {.lex_state = 2}, + [619] = {.lex_state = 2}, + [620] = {.lex_state = 0}, + [621] = {.lex_state = 2}, + [622] = {.lex_state = 12}, [623] = {.lex_state = 0}, [624] = {.lex_state = 0}, [625] = {.lex_state = 0}, - [626] = {.lex_state = 2}, - [627] = {.lex_state = 0}, + [626] = {.lex_state = 0}, + [627] = {.lex_state = 11}, [628] = {.lex_state = 0}, - [629] = {.lex_state = 7}, + [629] = {.lex_state = 0}, [630] = {.lex_state = 0}, - [631] = {.lex_state = 2}, + [631] = {.lex_state = 0}, [632] = {.lex_state = 0}, [633] = {.lex_state = 0}, [634] = {.lex_state = 0}, - [635] = {.lex_state = 2}, + [635] = {.lex_state = 7}, [636] = {.lex_state = 0}, [637] = {.lex_state = 0}, [638] = {.lex_state = 0}, @@ -4311,34 +4329,34 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [640] = {.lex_state = 0}, [641] = {.lex_state = 0}, [642] = {.lex_state = 0}, - [643] = {.lex_state = 2}, - [644] = {.lex_state = 10}, + [643] = {.lex_state = 0}, + [644] = {.lex_state = 0}, [645] = {.lex_state = 0}, [646] = {.lex_state = 0}, - [647] = {.lex_state = 0}, - [648] = {.lex_state = 12}, + [647] = {.lex_state = 12}, + [648] = {.lex_state = 7}, [649] = {.lex_state = 0}, - [650] = {.lex_state = 2}, - [651] = {.lex_state = 2}, + [650] = {.lex_state = 0}, + [651] = {.lex_state = 0}, [652] = {.lex_state = 0}, - [653] = {.lex_state = 2}, - [654] = {.lex_state = 12}, - [655] = {.lex_state = 0}, + [653] = {.lex_state = 7}, + [654] = {.lex_state = 0}, + [655] = {.lex_state = 7}, [656] = {.lex_state = 0}, [657] = {.lex_state = 0}, - [658] = {.lex_state = 0}, + [658] = {.lex_state = 10}, [659] = {.lex_state = 0}, [660] = {.lex_state = 0}, [661] = {.lex_state = 0}, - [662] = {.lex_state = 0}, + [662] = {.lex_state = 2}, [663] = {.lex_state = 0}, - [664] = {.lex_state = 0}, - [665] = {.lex_state = 0}, + [664] = {.lex_state = 2}, + [665] = {.lex_state = 2}, [666] = {.lex_state = 0}, - [667] = {.lex_state = 2}, + [667] = {.lex_state = 10}, [668] = {.lex_state = 0}, [669] = {.lex_state = 0}, - [670] = {.lex_state = 12}, + [670] = {.lex_state = 0}, [671] = {.lex_state = 0}, [672] = {.lex_state = 0}, [673] = {.lex_state = 0}, @@ -4346,152 +4364,152 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [675] = {.lex_state = 0}, [676] = {.lex_state = 0}, [677] = {.lex_state = 0}, - [678] = {.lex_state = 12}, - [679] = {.lex_state = 0}, + [678] = {.lex_state = 0}, + [679] = {.lex_state = 12}, [680] = {.lex_state = 0}, [681] = {.lex_state = 0}, [682] = {.lex_state = 0}, [683] = {.lex_state = 0}, [684] = {.lex_state = 0}, [685] = {.lex_state = 0}, - [686] = {.lex_state = 7}, + [686] = {.lex_state = 0}, [687] = {.lex_state = 0}, - [688] = {.lex_state = 2}, + [688] = {.lex_state = 0}, [689] = {.lex_state = 0}, [690] = {.lex_state = 0}, [691] = {.lex_state = 0}, - [692] = {.lex_state = 2}, + [692] = {.lex_state = 0}, [693] = {.lex_state = 0}, [694] = {.lex_state = 0}, [695] = {.lex_state = 0}, [696] = {.lex_state = 0}, [697] = {.lex_state = 0}, - [698] = {.lex_state = 10}, + [698] = {.lex_state = 2}, [699] = {.lex_state = 0}, [700] = {.lex_state = 0}, - [701] = {.lex_state = 11}, + [701] = {.lex_state = 10}, [702] = {.lex_state = 0}, [703] = {.lex_state = 0}, [704] = {.lex_state = 0}, - [705] = {.lex_state = 12}, - [706] = {.lex_state = 12}, - [707] = {.lex_state = 2}, - [708] = {.lex_state = 12}, + [705] = {.lex_state = 0}, + [706] = {.lex_state = 0}, + [707] = {.lex_state = 0}, + [708] = {.lex_state = 0}, [709] = {.lex_state = 0}, [710] = {.lex_state = 0}, - [711] = {.lex_state = 12}, - [712] = {.lex_state = 2}, + [711] = {.lex_state = 2}, + [712] = {.lex_state = 0}, [713] = {.lex_state = 0}, - [714] = {.lex_state = 0}, + [714] = {.lex_state = 10}, [715] = {.lex_state = 12}, - [716] = {.lex_state = 0}, + [716] = {.lex_state = 10}, [717] = {.lex_state = 0}, [718] = {.lex_state = 0}, [719] = {.lex_state = 0}, [720] = {.lex_state = 0}, [721] = {.lex_state = 0}, [722] = {.lex_state = 0}, - [723] = {.lex_state = 12}, + [723] = {.lex_state = 10}, [724] = {.lex_state = 0}, [725] = {.lex_state = 0}, [726] = {.lex_state = 12}, [727] = {.lex_state = 0}, [728] = {.lex_state = 0}, [729] = {.lex_state = 0}, - [730] = {.lex_state = 10}, - [731] = {.lex_state = 12}, + [730] = {.lex_state = 0}, + [731] = {.lex_state = 0}, [732] = {.lex_state = 0}, - [733] = {.lex_state = 0}, - [734] = {.lex_state = 12}, + [733] = {.lex_state = 12}, + [734] = {.lex_state = 0}, [735] = {.lex_state = 0}, [736] = {.lex_state = 0}, - [737] = {.lex_state = 12}, + [737] = {.lex_state = 0}, [738] = {.lex_state = 0}, [739] = {.lex_state = 0}, - [740] = {.lex_state = 0}, - [741] = {.lex_state = 0}, + [740] = {.lex_state = 10}, + [741] = {.lex_state = 10}, [742] = {.lex_state = 0}, - [743] = {.lex_state = 10}, - [744] = {.lex_state = 0}, + [743] = {.lex_state = 12}, + [744] = {.lex_state = 12}, [745] = {.lex_state = 0}, [746] = {.lex_state = 0}, [747] = {.lex_state = 0}, - [748] = {.lex_state = 0}, + [748] = {.lex_state = 10}, [749] = {.lex_state = 0}, - [750] = {.lex_state = 12}, - [751] = {.lex_state = 0}, - [752] = {.lex_state = 2}, + [750] = {.lex_state = 0}, + [751] = {.lex_state = 12}, + [752] = {.lex_state = 0}, [753] = {.lex_state = 0}, - [754] = {.lex_state = 0}, + [754] = {.lex_state = 2}, [755] = {.lex_state = 0}, [756] = {.lex_state = 0}, [757] = {.lex_state = 0}, - [758] = {.lex_state = 0}, - [759] = {.lex_state = 10}, + [758] = {.lex_state = 12}, + [759] = {.lex_state = 12}, [760] = {.lex_state = 0}, - [761] = {.lex_state = 10}, + [761] = {.lex_state = 0}, [762] = {.lex_state = 0}, [763] = {.lex_state = 0}, - [764] = {.lex_state = 0}, - [765] = {.lex_state = 0}, - [766] = {.lex_state = 10}, - [767] = {.lex_state = 10}, + [764] = {.lex_state = 12}, + [765] = {.lex_state = 10}, + [766] = {.lex_state = 12}, + [767] = {.lex_state = 0}, [768] = {.lex_state = 0}, [769] = {.lex_state = 0}, - [770] = {.lex_state = 12}, + [770] = {.lex_state = 2}, [771] = {.lex_state = 0}, - [772] = {.lex_state = 0}, + [772] = {.lex_state = 12}, [773] = {.lex_state = 0}, [774] = {.lex_state = 0}, [775] = {.lex_state = 0}, - [776] = {.lex_state = 0}, - [777] = {.lex_state = 10}, + [776] = {.lex_state = 2}, + [777] = {.lex_state = 0}, [778] = {.lex_state = 0}, [779] = {.lex_state = 0}, [780] = {.lex_state = 0}, - [781] = {.lex_state = 10}, - [782] = {.lex_state = 12}, + [781] = {.lex_state = 0}, + [782] = {.lex_state = 0}, [783] = {.lex_state = 0}, [784] = {.lex_state = 0}, [785] = {.lex_state = 0}, - [786] = {.lex_state = 0}, - [787] = {.lex_state = 2}, - [788] = {.lex_state = 10}, + [786] = {.lex_state = 10}, + [787] = {.lex_state = 0}, + [788] = {.lex_state = 0}, [789] = {.lex_state = 2}, [790] = {.lex_state = 0}, [791] = {.lex_state = 0}, - [792] = {.lex_state = 0}, + [792] = {.lex_state = 12}, [793] = {.lex_state = 0}, [794] = {.lex_state = 0}, [795] = {.lex_state = 0}, [796] = {.lex_state = 0}, [797] = {.lex_state = 0}, - [798] = {.lex_state = 12}, + [798] = {.lex_state = 0}, [799] = {.lex_state = 0}, - [800] = {.lex_state = 12}, + [800] = {.lex_state = 0}, [801] = {.lex_state = 0}, - [802] = {.lex_state = 0}, + [802] = {.lex_state = 12}, [803] = {.lex_state = 12}, [804] = {.lex_state = 12}, [805] = {.lex_state = 10}, - [806] = {.lex_state = 0}, - [807] = {.lex_state = 12}, + [806] = {.lex_state = 12}, + [807] = {.lex_state = 0}, [808] = {.lex_state = 0}, - [809] = {.lex_state = 12}, + [809] = {.lex_state = 0}, [810] = {.lex_state = 0}, - [811] = {.lex_state = 0}, - [812] = {.lex_state = 0}, + [811] = {.lex_state = 12}, + [812] = {.lex_state = 10}, [813] = {.lex_state = 0}, [814] = {.lex_state = 0}, [815] = {.lex_state = 0}, [816] = {.lex_state = 0}, - [817] = {.lex_state = 0}, + [817] = {.lex_state = 10}, [818] = {.lex_state = 0}, [819] = {.lex_state = 0}, - [820] = {.lex_state = 0}, + [820] = {.lex_state = 10}, [821] = {.lex_state = 0}, [822] = {.lex_state = 0}, - [823] = {.lex_state = 0}, + [823] = {.lex_state = 12}, [824] = {.lex_state = 0}, [825] = {.lex_state = 0}, [826] = {.lex_state = 0}, @@ -4502,19 +4520,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [831] = {.lex_state = 0}, [832] = {.lex_state = 0}, [833] = {.lex_state = 0}, - [834] = {.lex_state = 12}, + [834] = {.lex_state = 0}, [835] = {.lex_state = 0}, [836] = {.lex_state = 0}, [837] = {.lex_state = 0}, - [838] = {.lex_state = 2}, - [839] = {.lex_state = 0}, + [838] = {.lex_state = 0}, + [839] = {.lex_state = 10}, [840] = {.lex_state = 0}, [841] = {.lex_state = 0}, - [842] = {.lex_state = 0}, + [842] = {.lex_state = 12}, [843] = {.lex_state = 0}, [844] = {.lex_state = 0}, [845] = {.lex_state = 0}, - [846] = {.lex_state = 0}, + [846] = {.lex_state = 2}, [847] = {.lex_state = 0}, [848] = {.lex_state = 0}, [849] = {.lex_state = 0}, @@ -4523,7 +4541,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [852] = {.lex_state = 0}, [853] = {.lex_state = 0}, [854] = {.lex_state = 0}, - [855] = {.lex_state = 10}, + [855] = {.lex_state = 0}, [856] = {.lex_state = 0}, [857] = {.lex_state = 0}, [858] = {.lex_state = 0}, @@ -4531,7 +4549,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [860] = {.lex_state = 0}, [861] = {.lex_state = 0}, [862] = {.lex_state = 0}, - [863] = {.lex_state = 0}, + [863] = {.lex_state = 10}, [864] = {.lex_state = 0}, [865] = {.lex_state = 0}, [866] = {.lex_state = 0}, @@ -4547,7 +4565,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [876] = {.lex_state = 0}, [877] = {.lex_state = 0}, [878] = {.lex_state = 0}, - [879] = {.lex_state = 0}, + [879] = {.lex_state = 10}, [880] = {.lex_state = 0}, [881] = {.lex_state = 0}, [882] = {.lex_state = 0}, @@ -4558,22 +4576,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [887] = {.lex_state = 0}, [888] = {.lex_state = 0}, [889] = {.lex_state = 0}, - [890] = {.lex_state = 2}, + [890] = {.lex_state = 0}, [891] = {.lex_state = 0}, [892] = {.lex_state = 0}, - [893] = {.lex_state = 10}, + [893] = {.lex_state = 0}, [894] = {.lex_state = 0}, [895] = {.lex_state = 0}, [896] = {.lex_state = 0}, [897] = {.lex_state = 0}, - [898] = {.lex_state = 0}, + [898] = {.lex_state = 2}, [899] = {.lex_state = 0}, [900] = {.lex_state = 0}, [901] = {.lex_state = 0}, [902] = {.lex_state = 0}, [903] = {.lex_state = 0}, [904] = {.lex_state = 0}, - [905] = {.lex_state = 0}, + [905] = {.lex_state = 2}, [906] = {.lex_state = 0}, [907] = {.lex_state = 0}, [908] = {.lex_state = 0}, @@ -4585,21 +4603,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [914] = {.lex_state = 0}, [915] = {.lex_state = 0}, [916] = {.lex_state = 0}, - [917] = {.lex_state = 10}, + [917] = {.lex_state = 0}, [918] = {.lex_state = 0}, - [919] = {.lex_state = 2}, + [919] = {.lex_state = 0}, [920] = {.lex_state = 0}, - [921] = {.lex_state = 10}, - [922] = {.lex_state = 2}, - [923] = {.lex_state = 12}, + [921] = {.lex_state = 0}, + [922] = {.lex_state = 0}, + [923] = {.lex_state = 0}, [924] = {.lex_state = 0}, [925] = {.lex_state = 0}, - [926] = {.lex_state = 0}, - [927] = {.lex_state = 10}, + [926] = {.lex_state = 2}, + [927] = {.lex_state = 0}, [928] = {.lex_state = 0}, - [929] = {.lex_state = 2}, + [929] = {.lex_state = 10}, [930] = {.lex_state = 0}, - [931] = {.lex_state = 0}, + [931] = {.lex_state = 10}, [932] = {.lex_state = 0}, [933] = {.lex_state = 0}, [934] = {.lex_state = 0}, @@ -4612,14 +4630,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [941] = {.lex_state = 0}, [942] = {.lex_state = 0}, [943] = {.lex_state = 0}, - [944] = {.lex_state = 2}, + [944] = {.lex_state = 0}, [945] = {.lex_state = 0}, [946] = {.lex_state = 0}, [947] = {.lex_state = 0}, [948] = {.lex_state = 0}, [949] = {.lex_state = 0}, [950] = {.lex_state = 0}, - [951] = {.lex_state = 2}, + [951] = {.lex_state = 0}, [952] = {.lex_state = 0}, [953] = {.lex_state = 0}, [954] = {.lex_state = 0}, @@ -4627,48 +4645,48 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [956] = {.lex_state = 0}, [957] = {.lex_state = 0}, [958] = {.lex_state = 0}, - [959] = {.lex_state = 0}, + [959] = {.lex_state = 2}, [960] = {.lex_state = 0}, [961] = {.lex_state = 0}, [962] = {.lex_state = 0}, [963] = {.lex_state = 0}, [964] = {.lex_state = 0}, [965] = {.lex_state = 0}, - [966] = {.lex_state = 2}, + [966] = {.lex_state = 0}, [967] = {.lex_state = 0}, [968] = {.lex_state = 0}, [969] = {.lex_state = 0}, [970] = {.lex_state = 0}, - [971] = {.lex_state = 0}, - [972] = {.lex_state = 10}, + [971] = {.lex_state = 2}, + [972] = {.lex_state = 0}, [973] = {.lex_state = 0}, - [974] = {.lex_state = 0}, + [974] = {.lex_state = 2}, [975] = {.lex_state = 0}, [976] = {.lex_state = 0}, [977] = {.lex_state = 0}, [978] = {.lex_state = 0}, - [979] = {.lex_state = 10}, + [979] = {.lex_state = 0}, [980] = {.lex_state = 0}, [981] = {.lex_state = 0}, [982] = {.lex_state = 0}, [983] = {.lex_state = 0}, [984] = {.lex_state = 0}, [985] = {.lex_state = 0}, - [986] = {.lex_state = 2}, + [986] = {.lex_state = 0}, [987] = {.lex_state = 0}, [988] = {.lex_state = 0}, - [989] = {.lex_state = 2}, + [989] = {.lex_state = 0}, [990] = {.lex_state = 0}, [991] = {.lex_state = 0}, [992] = {.lex_state = 0}, - [993] = {.lex_state = 12}, - [994] = {.lex_state = 0}, + [993] = {.lex_state = 0}, + [994] = {.lex_state = 2}, [995] = {.lex_state = 0}, - [996] = {.lex_state = 10}, - [997] = {.lex_state = 0}, - [998] = {.lex_state = 0}, - [999] = {.lex_state = 0}, - [1000] = {.lex_state = 10}, + [996] = {.lex_state = 0}, + [997] = {.lex_state = 2}, + [998] = {.lex_state = 2}, + [999] = {.lex_state = 12}, + [1000] = {.lex_state = 0}, [1001] = {.lex_state = 0}, [1002] = {.lex_state = 0}, [1003] = {.lex_state = 0}, @@ -4676,16 +4694,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1005] = {.lex_state = 0}, [1006] = {.lex_state = 0}, [1007] = {.lex_state = 0}, - [1008] = {.lex_state = 0}, + [1008] = {.lex_state = 12}, [1009] = {.lex_state = 0}, [1010] = {.lex_state = 0}, [1011] = {.lex_state = 0}, - [1012] = {.lex_state = 0}, + [1012] = {.lex_state = 10}, [1013] = {.lex_state = 0}, [1014] = {.lex_state = 0}, [1015] = {.lex_state = 0}, [1016] = {.lex_state = 0}, - [1017] = {.lex_state = 2}, + [1017] = {.lex_state = 0}, [1018] = {.lex_state = 0}, [1019] = {.lex_state = 0}, [1020] = {.lex_state = 0}, @@ -4698,34 +4716,34 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1027] = {.lex_state = 0}, [1028] = {.lex_state = 0}, [1029] = {.lex_state = 0}, - [1030] = {.lex_state = 0}, - [1031] = {.lex_state = 0}, + [1030] = {.lex_state = 12}, + [1031] = {.lex_state = 10}, [1032] = {.lex_state = 0}, - [1033] = {.lex_state = 0}, + [1033] = {.lex_state = 2}, [1034] = {.lex_state = 0}, [1035] = {.lex_state = 0}, [1036] = {.lex_state = 0}, [1037] = {.lex_state = 0}, [1038] = {.lex_state = 0}, [1039] = {.lex_state = 0}, - [1040] = {.lex_state = 2}, + [1040] = {.lex_state = 0}, [1041] = {.lex_state = 0}, [1042] = {.lex_state = 0}, [1043] = {.lex_state = 0}, [1044] = {.lex_state = 0}, [1045] = {.lex_state = 0}, [1046] = {.lex_state = 0}, - [1047] = {.lex_state = 10}, - [1048] = {.lex_state = 12}, - [1049] = {.lex_state = 10}, + [1047] = {.lex_state = 0}, + [1048] = {.lex_state = 0}, + [1049] = {.lex_state = 0}, [1050] = {.lex_state = 0}, [1051] = {.lex_state = 0}, [1052] = {.lex_state = 0}, - [1053] = {.lex_state = 0}, - [1054] = {.lex_state = 12}, - [1055] = {.lex_state = 0}, + [1053] = {.lex_state = 2}, + [1054] = {.lex_state = 0}, + [1055] = {.lex_state = 10}, [1056] = {.lex_state = 0}, - [1057] = {.lex_state = 0}, + [1057] = {.lex_state = 10}, [1058] = {.lex_state = 0}, [1059] = {.lex_state = 0}, [1060] = {.lex_state = 0}, @@ -4748,7 +4766,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1077] = {.lex_state = 0}, [1078] = {.lex_state = 0}, [1079] = {.lex_state = 0}, - [1080] = {.lex_state = 12}, + [1080] = {.lex_state = 0}, + [1081] = {.lex_state = 0}, + [1082] = {.lex_state = 0}, + [1083] = {.lex_state = 0}, + [1084] = {.lex_state = 0}, + [1085] = {.lex_state = 0}, + [1086] = {.lex_state = 0}, + [1087] = {.lex_state = 0}, + [1088] = {.lex_state = 12}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -4837,28 +4863,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__upname] = ACTIONS(1), }, [1] = { - [sym_source_file] = STATE(995), - [sym__statement] = STATE(802), - [sym_target_group] = STATE(802), - [sym_import] = STATE(802), - [sym_public_constant] = STATE(802), - [sym_constant] = STATE(802), - [sym__constant] = STATE(1074), - [sym_public_external_type] = STATE(802), - [sym_external_type] = STATE(802), - [sym__external_type] = STATE(1066), - [sym_public_external_function] = STATE(802), - [sym_external_function] = STATE(802), - [sym__external_function] = STATE(1064), - [sym_function] = STATE(802), - [sym__function] = STATE(1063), - [sym_public_function] = STATE(802), - [sym_type_definition] = STATE(802), - [sym_public_type_definition] = STATE(802), - [sym_public_opaque_type_definition] = STATE(802), - [sym_type_alias] = STATE(802), - [sym_public_type_alias] = STATE(802), - [sym_public_opaque_type_alias] = STATE(802), + [sym_source_file] = STATE(1058), + [sym__statement] = STATE(735), + [sym_target_group] = STATE(735), + [sym_import] = STATE(735), + [sym_public_constant] = STATE(735), + [sym_constant] = STATE(735), + [sym__constant] = STATE(1049), + [sym_public_external_type] = STATE(735), + [sym_external_type] = STATE(735), + [sym__external_type] = STATE(1047), + [sym_public_external_function] = STATE(735), + [sym_external_function] = STATE(735), + [sym__external_function] = STATE(1045), + [sym_function] = STATE(735), + [sym__function] = STATE(1041), + [sym_public_function] = STATE(735), + [sym_type_definition] = STATE(735), + [sym_public_type_definition] = STATE(735), + [sym_public_opaque_type_definition] = STATE(735), + [sym_type_alias] = STATE(735), + [sym_public_type_alias] = STATE(735), + [sym_public_opaque_type_alias] = STATE(735), [ts_builtin_sym_end] = ACTIONS(5), [aux_sym_source_file_token1] = ACTIONS(3), [anon_sym_if] = ACTIONS(7), @@ -4903,34 +4929,34 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(51), 1, sym__upname, - STATE(271), 1, - sym_tuple, - STATE(272), 1, + STATE(255), 1, sym_anonymous_function, - STATE(333), 1, + STATE(270), 1, + sym_tuple, + STATE(335), 1, sym__expression, - STATE(581), 1, + STATE(675), 1, sym_argument, - STATE(793), 1, - sym_identifier, - STATE(794), 1, + STATE(739), 1, sym_discard_var, - STATE(869), 1, + STATE(742), 1, + sym_identifier, + STATE(877), 1, sym__maybe_record_expression, - STATE(892), 1, - sym_arguments, - STATE(981), 1, + STATE(989), 1, sym__maybe_tuple_expression, - STATE(983), 1, + STATE(991), 1, sym__maybe_function_expression, - STATE(1076), 1, + STATE(1074), 1, + sym_arguments, + STATE(1084), 1, sym__record_update_record, - STATE(1077), 1, + STATE(1085), 1, sym__record_update_remote_record, ACTIONS(43), 2, sym_string, sym_float, - STATE(255), 3, + STATE(254), 3, sym_record, sym_remote_record, sym_record_update, @@ -4939,14 +4965,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(251), 6, + STATE(248), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(287), 8, + STATE(278), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -4986,34 +5012,34 @@ static const uint16_t ts_small_parse_table[] = { sym__upname, ACTIONS(53), 1, anon_sym_RPAREN, - STATE(271), 1, - sym_tuple, - STATE(272), 1, + STATE(255), 1, sym_anonymous_function, - STATE(333), 1, + STATE(270), 1, + sym_tuple, + STATE(335), 1, sym__expression, - STATE(581), 1, + STATE(675), 1, sym_argument, - STATE(793), 1, - sym_identifier, - STATE(794), 1, + STATE(739), 1, sym_discard_var, - STATE(869), 1, + STATE(742), 1, + sym_identifier, + STATE(877), 1, sym__maybe_record_expression, - STATE(952), 1, + STATE(960), 1, sym_arguments, - STATE(981), 1, + STATE(989), 1, sym__maybe_tuple_expression, - STATE(983), 1, + STATE(991), 1, sym__maybe_function_expression, - STATE(1076), 1, + STATE(1084), 1, sym__record_update_record, - STATE(1077), 1, + STATE(1085), 1, sym__record_update_remote_record, ACTIONS(43), 2, sym_string, sym_float, - STATE(255), 3, + STATE(254), 3, sym_record, sym_remote_record, sym_record_update, @@ -5022,14 +5048,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(251), 6, + STATE(248), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(287), 8, + STATE(278), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -5069,34 +5095,34 @@ static const uint16_t ts_small_parse_table[] = { sym__upname, ACTIONS(55), 1, anon_sym_RPAREN, - STATE(271), 1, - sym_tuple, - STATE(272), 1, + STATE(255), 1, sym_anonymous_function, - STATE(333), 1, + STATE(270), 1, + sym_tuple, + STATE(335), 1, sym__expression, - STATE(581), 1, + STATE(675), 1, sym_argument, - STATE(793), 1, - sym_identifier, - STATE(794), 1, + STATE(739), 1, sym_discard_var, - STATE(869), 1, + STATE(742), 1, + sym_identifier, + STATE(877), 1, sym__maybe_record_expression, - STATE(886), 1, + STATE(961), 1, sym_arguments, - STATE(981), 1, + STATE(989), 1, sym__maybe_tuple_expression, - STATE(983), 1, + STATE(991), 1, sym__maybe_function_expression, - STATE(1076), 1, + STATE(1084), 1, sym__record_update_record, - STATE(1077), 1, + STATE(1085), 1, sym__record_update_remote_record, ACTIONS(43), 2, sym_string, sym_float, - STATE(255), 3, + STATE(254), 3, sym_record, sym_remote_record, sym_record_update, @@ -5105,14 +5131,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(251), 6, + STATE(248), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(287), 8, + STATE(278), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -5152,34 +5178,34 @@ static const uint16_t ts_small_parse_table[] = { sym__upname, ACTIONS(57), 1, anon_sym_RPAREN, - STATE(271), 1, - sym_tuple, - STATE(272), 1, + STATE(255), 1, sym_anonymous_function, - STATE(333), 1, + STATE(270), 1, + sym_tuple, + STATE(335), 1, sym__expression, - STATE(581), 1, + STATE(675), 1, sym_argument, - STATE(793), 1, - sym_identifier, - STATE(794), 1, + STATE(739), 1, sym_discard_var, - STATE(869), 1, + STATE(742), 1, + sym_identifier, + STATE(877), 1, sym__maybe_record_expression, - STATE(918), 1, + STATE(900), 1, sym_arguments, - STATE(981), 1, + STATE(989), 1, sym__maybe_tuple_expression, - STATE(983), 1, + STATE(991), 1, sym__maybe_function_expression, - STATE(1076), 1, + STATE(1084), 1, sym__record_update_record, - STATE(1077), 1, + STATE(1085), 1, sym__record_update_remote_record, ACTIONS(43), 2, sym_string, sym_float, - STATE(255), 3, + STATE(254), 3, sym_record, sym_remote_record, sym_record_update, @@ -5188,14 +5214,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(251), 6, + STATE(248), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(287), 8, + STATE(278), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -5235,34 +5261,34 @@ static const uint16_t ts_small_parse_table[] = { sym__upname, ACTIONS(59), 1, anon_sym_RPAREN, - STATE(271), 1, - sym_tuple, - STATE(272), 1, + STATE(255), 1, sym_anonymous_function, - STATE(333), 1, + STATE(270), 1, + sym_tuple, + STATE(335), 1, sym__expression, - STATE(581), 1, + STATE(675), 1, sym_argument, - STATE(793), 1, - sym_identifier, - STATE(794), 1, + STATE(739), 1, sym_discard_var, - STATE(869), 1, + STATE(742), 1, + sym_identifier, + STATE(877), 1, sym__maybe_record_expression, - STATE(953), 1, - sym_arguments, - STATE(981), 1, + STATE(989), 1, sym__maybe_tuple_expression, - STATE(983), 1, + STATE(991), 1, sym__maybe_function_expression, - STATE(1076), 1, + STATE(1056), 1, + sym_arguments, + STATE(1084), 1, sym__record_update_record, - STATE(1077), 1, + STATE(1085), 1, sym__record_update_remote_record, ACTIONS(43), 2, sym_string, sym_float, - STATE(255), 3, + STATE(254), 3, sym_record, sym_remote_record, sym_record_update, @@ -5271,14 +5297,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(251), 6, + STATE(248), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(287), 8, + STATE(278), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -5318,34 +5344,34 @@ static const uint16_t ts_small_parse_table[] = { sym__upname, ACTIONS(61), 1, anon_sym_RPAREN, - STATE(271), 1, - sym_tuple, - STATE(272), 1, + STATE(255), 1, sym_anonymous_function, - STATE(333), 1, + STATE(270), 1, + sym_tuple, + STATE(335), 1, sym__expression, - STATE(581), 1, + STATE(675), 1, sym_argument, - STATE(793), 1, - sym_identifier, - STATE(794), 1, + STATE(739), 1, sym_discard_var, - STATE(869), 1, + STATE(742), 1, + sym_identifier, + STATE(877), 1, sym__maybe_record_expression, - STATE(891), 1, + STATE(899), 1, sym_arguments, - STATE(981), 1, + STATE(989), 1, sym__maybe_tuple_expression, - STATE(983), 1, + STATE(991), 1, sym__maybe_function_expression, - STATE(1076), 1, + STATE(1084), 1, sym__record_update_record, - STATE(1077), 1, + STATE(1085), 1, sym__record_update_remote_record, ACTIONS(43), 2, sym_string, sym_float, - STATE(255), 3, + STATE(254), 3, sym_record, sym_remote_record, sym_record_update, @@ -5354,14 +5380,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(251), 6, + STATE(248), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(287), 8, + STATE(278), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -5453,32 +5479,32 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(95), 1, sym__upname, - STATE(22), 1, + STATE(17), 1, aux_sym__expression_seq, - STATE(77), 1, - sym_anonymous_function, - STATE(79), 1, + STATE(70), 1, sym_tuple, - STATE(175), 1, + STATE(71), 1, + sym_anonymous_function, + STATE(177), 1, sym__expression, - STATE(372), 1, + STATE(370), 1, sym_try, - STATE(957), 1, - sym_identifier, - STATE(958), 1, - sym__maybe_function_expression, - STATE(959), 1, - sym__maybe_record_expression, - STATE(962), 1, - sym__maybe_tuple_expression, - STATE(963), 1, - sym__record_update_remote_record, - STATE(964), 1, + STATE(888), 1, sym__record_update_record, + STATE(892), 1, + sym__record_update_remote_record, + STATE(893), 1, + sym__maybe_tuple_expression, + STATE(894), 1, + sym__maybe_record_expression, + STATE(895), 1, + sym__maybe_function_expression, + STATE(896), 1, + sym_identifier, ACTIONS(89), 2, sym_string, sym_float, - STATE(80), 3, + STATE(78), 3, sym_record, sym_remote_record, sym_record_update, @@ -5487,14 +5513,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(62), 6, + STATE(63), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(176), 8, + STATE(178), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -5534,32 +5560,32 @@ static const uint16_t ts_small_parse_table[] = { sym__upname, ACTIONS(97), 1, anon_sym_RBRACE, - STATE(22), 1, + STATE(17), 1, aux_sym__expression_seq, - STATE(77), 1, - sym_anonymous_function, - STATE(79), 1, + STATE(70), 1, sym_tuple, - STATE(175), 1, + STATE(71), 1, + sym_anonymous_function, + STATE(177), 1, sym__expression, - STATE(372), 1, + STATE(370), 1, sym_try, - STATE(957), 1, - sym_identifier, - STATE(958), 1, - sym__maybe_function_expression, - STATE(959), 1, - sym__maybe_record_expression, - STATE(962), 1, - sym__maybe_tuple_expression, - STATE(963), 1, - sym__record_update_remote_record, - STATE(964), 1, + STATE(888), 1, sym__record_update_record, + STATE(892), 1, + sym__record_update_remote_record, + STATE(893), 1, + sym__maybe_tuple_expression, + STATE(894), 1, + sym__maybe_record_expression, + STATE(895), 1, + sym__maybe_function_expression, + STATE(896), 1, + sym_identifier, ACTIONS(89), 2, sym_string, sym_float, - STATE(80), 3, + STATE(78), 3, sym_record, sym_remote_record, sym_record_update, @@ -5568,14 +5594,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(62), 6, + STATE(63), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(176), 8, + STATE(178), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -5615,32 +5641,32 @@ static const uint16_t ts_small_parse_table[] = { sym__upname, ACTIONS(99), 1, anon_sym_RBRACE, - STATE(22), 1, + STATE(17), 1, aux_sym__expression_seq, - STATE(77), 1, - sym_anonymous_function, - STATE(79), 1, + STATE(70), 1, sym_tuple, - STATE(175), 1, + STATE(71), 1, + sym_anonymous_function, + STATE(177), 1, sym__expression, - STATE(372), 1, + STATE(370), 1, sym_try, - STATE(957), 1, - sym_identifier, - STATE(958), 1, - sym__maybe_function_expression, - STATE(959), 1, - sym__maybe_record_expression, - STATE(962), 1, - sym__maybe_tuple_expression, - STATE(963), 1, - sym__record_update_remote_record, - STATE(964), 1, + STATE(888), 1, sym__record_update_record, + STATE(892), 1, + sym__record_update_remote_record, + STATE(893), 1, + sym__maybe_tuple_expression, + STATE(894), 1, + sym__maybe_record_expression, + STATE(895), 1, + sym__maybe_function_expression, + STATE(896), 1, + sym_identifier, ACTIONS(89), 2, sym_string, sym_float, - STATE(80), 3, + STATE(78), 3, sym_record, sym_remote_record, sym_record_update, @@ -5649,14 +5675,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(62), 6, + STATE(63), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(176), 8, + STATE(178), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -5696,32 +5722,32 @@ static const uint16_t ts_small_parse_table[] = { sym__upname, ACTIONS(101), 1, anon_sym_RBRACE, - STATE(22), 1, + STATE(17), 1, aux_sym__expression_seq, - STATE(77), 1, - sym_anonymous_function, - STATE(79), 1, + STATE(70), 1, sym_tuple, - STATE(175), 1, + STATE(71), 1, + sym_anonymous_function, + STATE(177), 1, sym__expression, - STATE(372), 1, + STATE(370), 1, sym_try, - STATE(957), 1, - sym_identifier, - STATE(958), 1, - sym__maybe_function_expression, - STATE(959), 1, - sym__maybe_record_expression, - STATE(962), 1, - sym__maybe_tuple_expression, - STATE(963), 1, - sym__record_update_remote_record, - STATE(964), 1, + STATE(888), 1, sym__record_update_record, + STATE(892), 1, + sym__record_update_remote_record, + STATE(893), 1, + sym__maybe_tuple_expression, + STATE(894), 1, + sym__maybe_record_expression, + STATE(895), 1, + sym__maybe_function_expression, + STATE(896), 1, + sym_identifier, ACTIONS(89), 2, sym_string, sym_float, - STATE(80), 3, + STATE(78), 3, sym_record, sym_remote_record, sym_record_update, @@ -5730,14 +5756,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(62), 6, + STATE(63), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(176), 8, + STATE(178), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -5777,32 +5803,32 @@ static const uint16_t ts_small_parse_table[] = { sym__upname, ACTIONS(103), 1, anon_sym_RBRACE, - STATE(22), 1, + STATE(17), 1, aux_sym__expression_seq, - STATE(77), 1, - sym_anonymous_function, - STATE(79), 1, + STATE(70), 1, sym_tuple, - STATE(175), 1, + STATE(71), 1, + sym_anonymous_function, + STATE(177), 1, sym__expression, - STATE(372), 1, + STATE(370), 1, sym_try, - STATE(957), 1, - sym_identifier, - STATE(958), 1, - sym__maybe_function_expression, - STATE(959), 1, - sym__maybe_record_expression, - STATE(962), 1, - sym__maybe_tuple_expression, - STATE(963), 1, - sym__record_update_remote_record, - STATE(964), 1, + STATE(888), 1, sym__record_update_record, + STATE(892), 1, + sym__record_update_remote_record, + STATE(893), 1, + sym__maybe_tuple_expression, + STATE(894), 1, + sym__maybe_record_expression, + STATE(895), 1, + sym__maybe_function_expression, + STATE(896), 1, + sym_identifier, ACTIONS(89), 2, sym_string, sym_float, - STATE(80), 3, + STATE(78), 3, sym_record, sym_remote_record, sym_record_update, @@ -5811,14 +5837,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(62), 6, + STATE(63), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(176), 8, + STATE(178), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -5858,48 +5884,48 @@ static const uint16_t ts_small_parse_table[] = { sym__upname, ACTIONS(105), 1, anon_sym_RBRACE, - STATE(22), 1, + STATE(17), 1, aux_sym__expression_seq, - STATE(77), 1, - sym_anonymous_function, - STATE(79), 1, + STATE(70), 1, sym_tuple, - STATE(175), 1, + STATE(71), 1, + sym_anonymous_function, + STATE(177), 1, sym__expression, - STATE(372), 1, + STATE(370), 1, sym_try, - STATE(957), 1, - sym_identifier, - STATE(958), 1, - sym__maybe_function_expression, - STATE(959), 1, - sym__maybe_record_expression, - STATE(962), 1, - sym__maybe_tuple_expression, - STATE(963), 1, - sym__record_update_remote_record, - STATE(964), 1, + STATE(888), 1, sym__record_update_record, - ACTIONS(89), 2, - sym_string, - sym_float, - STATE(80), 3, - sym_record, - sym_remote_record, - sym_record_update, - ACTIONS(91), 4, + STATE(892), 1, + sym__record_update_remote_record, + STATE(893), 1, + sym__maybe_tuple_expression, + STATE(894), 1, + sym__maybe_record_expression, + STATE(895), 1, + sym__maybe_function_expression, + STATE(896), 1, + sym_identifier, + ACTIONS(89), 2, + sym_string, + sym_float, + STATE(78), 3, + sym_record, + sym_remote_record, + sym_record_update, + ACTIONS(91), 4, sym__hex, sym__decimal, sym__octal, sym__binary, - STATE(62), 6, + STATE(63), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(176), 8, + STATE(178), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -5939,32 +5965,32 @@ static const uint16_t ts_small_parse_table[] = { sym__upname, ACTIONS(107), 1, anon_sym_RBRACE, - STATE(22), 1, + STATE(17), 1, aux_sym__expression_seq, - STATE(77), 1, - sym_anonymous_function, - STATE(79), 1, + STATE(70), 1, sym_tuple, - STATE(175), 1, + STATE(71), 1, + sym_anonymous_function, + STATE(177), 1, sym__expression, - STATE(372), 1, + STATE(370), 1, sym_try, - STATE(957), 1, - sym_identifier, - STATE(958), 1, - sym__maybe_function_expression, - STATE(959), 1, - sym__maybe_record_expression, - STATE(962), 1, - sym__maybe_tuple_expression, - STATE(963), 1, - sym__record_update_remote_record, - STATE(964), 1, + STATE(888), 1, sym__record_update_record, + STATE(892), 1, + sym__record_update_remote_record, + STATE(893), 1, + sym__maybe_tuple_expression, + STATE(894), 1, + sym__maybe_record_expression, + STATE(895), 1, + sym__maybe_function_expression, + STATE(896), 1, + sym_identifier, ACTIONS(89), 2, sym_string, sym_float, - STATE(80), 3, + STATE(78), 3, sym_record, sym_remote_record, sym_record_update, @@ -5973,14 +5999,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(62), 6, + STATE(63), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(176), 8, + STATE(178), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -6020,32 +6046,32 @@ static const uint16_t ts_small_parse_table[] = { sym__upname, ACTIONS(109), 1, anon_sym_RBRACE, - STATE(22), 1, + STATE(17), 1, aux_sym__expression_seq, - STATE(77), 1, - sym_anonymous_function, - STATE(79), 1, + STATE(70), 1, sym_tuple, - STATE(175), 1, + STATE(71), 1, + sym_anonymous_function, + STATE(177), 1, sym__expression, - STATE(372), 1, + STATE(370), 1, sym_try, - STATE(957), 1, - sym_identifier, - STATE(958), 1, - sym__maybe_function_expression, - STATE(959), 1, - sym__maybe_record_expression, - STATE(962), 1, - sym__maybe_tuple_expression, - STATE(963), 1, - sym__record_update_remote_record, - STATE(964), 1, + STATE(888), 1, sym__record_update_record, + STATE(892), 1, + sym__record_update_remote_record, + STATE(893), 1, + sym__maybe_tuple_expression, + STATE(894), 1, + sym__maybe_record_expression, + STATE(895), 1, + sym__maybe_function_expression, + STATE(896), 1, + sym_identifier, ACTIONS(89), 2, sym_string, sym_float, - STATE(80), 3, + STATE(78), 3, sym_record, sym_remote_record, sym_record_update, @@ -6054,14 +6080,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(62), 6, + STATE(63), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(176), 8, + STATE(178), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -6073,76 +6099,76 @@ static const uint16_t ts_small_parse_table[] = { [1640] = 31, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(65), 1, + ACTIONS(111), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(114), 1, + anon_sym_RBRACE, + ACTIONS(116), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(119), 1, anon_sym_LBRACK, - ACTIONS(73), 1, + ACTIONS(122), 1, anon_sym_LT_LT, - ACTIONS(75), 1, + ACTIONS(125), 1, anon_sym_DASH, - ACTIONS(77), 1, + ACTIONS(128), 1, anon_sym_fn, - ACTIONS(79), 1, + ACTIONS(131), 1, anon_sym_try, - ACTIONS(81), 1, + ACTIONS(134), 1, anon_sym_todo, - ACTIONS(83), 1, + ACTIONS(137), 1, anon_sym_case, - ACTIONS(85), 1, + ACTIONS(140), 1, anon_sym_let, - ACTIONS(87), 1, + ACTIONS(143), 1, anon_sym_assert, - ACTIONS(93), 1, + ACTIONS(152), 1, sym__name, - ACTIONS(95), 1, + ACTIONS(155), 1, sym__upname, - ACTIONS(111), 1, - anon_sym_RBRACE, - STATE(22), 1, + STATE(17), 1, aux_sym__expression_seq, - STATE(77), 1, - sym_anonymous_function, - STATE(79), 1, + STATE(70), 1, sym_tuple, - STATE(175), 1, + STATE(71), 1, + sym_anonymous_function, + STATE(177), 1, sym__expression, - STATE(372), 1, + STATE(370), 1, sym_try, - STATE(957), 1, - sym_identifier, - STATE(958), 1, - sym__maybe_function_expression, - STATE(959), 1, - sym__maybe_record_expression, - STATE(962), 1, - sym__maybe_tuple_expression, - STATE(963), 1, - sym__record_update_remote_record, - STATE(964), 1, + STATE(888), 1, sym__record_update_record, - ACTIONS(89), 2, + STATE(892), 1, + sym__record_update_remote_record, + STATE(893), 1, + sym__maybe_tuple_expression, + STATE(894), 1, + sym__maybe_record_expression, + STATE(895), 1, + sym__maybe_function_expression, + STATE(896), 1, + sym_identifier, + ACTIONS(146), 2, sym_string, sym_float, - STATE(80), 3, + STATE(78), 3, sym_record, sym_remote_record, sym_record_update, - ACTIONS(91), 4, + ACTIONS(149), 4, sym__hex, sym__decimal, sym__octal, sym__binary, - STATE(62), 6, + STATE(63), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(176), 8, + STATE(178), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -6180,34 +6206,34 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(95), 1, sym__upname, - ACTIONS(113), 1, + ACTIONS(158), 1, anon_sym_RBRACE, - STATE(22), 1, + STATE(17), 1, aux_sym__expression_seq, - STATE(77), 1, - sym_anonymous_function, - STATE(79), 1, + STATE(70), 1, sym_tuple, - STATE(175), 1, + STATE(71), 1, + sym_anonymous_function, + STATE(177), 1, sym__expression, - STATE(372), 1, + STATE(370), 1, sym_try, - STATE(957), 1, - sym_identifier, - STATE(958), 1, - sym__maybe_function_expression, - STATE(959), 1, - sym__maybe_record_expression, - STATE(962), 1, - sym__maybe_tuple_expression, - STATE(963), 1, - sym__record_update_remote_record, - STATE(964), 1, + STATE(888), 1, sym__record_update_record, + STATE(892), 1, + sym__record_update_remote_record, + STATE(893), 1, + sym__maybe_tuple_expression, + STATE(894), 1, + sym__maybe_record_expression, + STATE(895), 1, + sym__maybe_function_expression, + STATE(896), 1, + sym_identifier, ACTIONS(89), 2, sym_string, sym_float, - STATE(80), 3, + STATE(78), 3, sym_record, sym_remote_record, sym_record_update, @@ -6216,14 +6242,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(62), 6, + STATE(63), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(176), 8, + STATE(178), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -6261,34 +6287,34 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(95), 1, sym__upname, - ACTIONS(115), 1, + ACTIONS(160), 1, anon_sym_RBRACE, - STATE(22), 1, + STATE(17), 1, aux_sym__expression_seq, - STATE(77), 1, - sym_anonymous_function, - STATE(79), 1, + STATE(70), 1, sym_tuple, - STATE(175), 1, + STATE(71), 1, + sym_anonymous_function, + STATE(177), 1, sym__expression, - STATE(372), 1, + STATE(370), 1, sym_try, - STATE(957), 1, - sym_identifier, - STATE(958), 1, - sym__maybe_function_expression, - STATE(959), 1, - sym__maybe_record_expression, - STATE(962), 1, - sym__maybe_tuple_expression, - STATE(963), 1, - sym__record_update_remote_record, - STATE(964), 1, + STATE(888), 1, sym__record_update_record, + STATE(892), 1, + sym__record_update_remote_record, + STATE(893), 1, + sym__maybe_tuple_expression, + STATE(894), 1, + sym__maybe_record_expression, + STATE(895), 1, + sym__maybe_function_expression, + STATE(896), 1, + sym_identifier, ACTIONS(89), 2, sym_string, sym_float, - STATE(80), 3, + STATE(78), 3, sym_record, sym_remote_record, sym_record_update, @@ -6297,14 +6323,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(62), 6, + STATE(63), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(176), 8, + STATE(178), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -6342,34 +6368,34 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(95), 1, sym__upname, - ACTIONS(117), 1, + ACTIONS(162), 1, anon_sym_RBRACE, - STATE(22), 1, + STATE(17), 1, aux_sym__expression_seq, - STATE(77), 1, - sym_anonymous_function, - STATE(79), 1, + STATE(70), 1, sym_tuple, - STATE(175), 1, + STATE(71), 1, + sym_anonymous_function, + STATE(177), 1, sym__expression, - STATE(372), 1, + STATE(370), 1, sym_try, - STATE(957), 1, - sym_identifier, - STATE(958), 1, - sym__maybe_function_expression, - STATE(959), 1, - sym__maybe_record_expression, - STATE(962), 1, - sym__maybe_tuple_expression, - STATE(963), 1, - sym__record_update_remote_record, - STATE(964), 1, + STATE(888), 1, sym__record_update_record, + STATE(892), 1, + sym__record_update_remote_record, + STATE(893), 1, + sym__maybe_tuple_expression, + STATE(894), 1, + sym__maybe_record_expression, + STATE(895), 1, + sym__maybe_function_expression, + STATE(896), 1, + sym_identifier, ACTIONS(89), 2, sym_string, sym_float, - STATE(80), 3, + STATE(78), 3, sym_record, sym_remote_record, sym_record_update, @@ -6378,14 +6404,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(62), 6, + STATE(63), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(176), 8, + STATE(178), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -6423,34 +6449,34 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(95), 1, sym__upname, - ACTIONS(119), 1, + ACTIONS(164), 1, anon_sym_RBRACE, - STATE(22), 1, + STATE(17), 1, aux_sym__expression_seq, - STATE(77), 1, - sym_anonymous_function, - STATE(79), 1, + STATE(70), 1, sym_tuple, - STATE(175), 1, + STATE(71), 1, + sym_anonymous_function, + STATE(177), 1, sym__expression, - STATE(372), 1, + STATE(370), 1, sym_try, - STATE(957), 1, - sym_identifier, - STATE(958), 1, - sym__maybe_function_expression, - STATE(959), 1, - sym__maybe_record_expression, - STATE(962), 1, - sym__maybe_tuple_expression, - STATE(963), 1, - sym__record_update_remote_record, - STATE(964), 1, + STATE(888), 1, sym__record_update_record, + STATE(892), 1, + sym__record_update_remote_record, + STATE(893), 1, + sym__maybe_tuple_expression, + STATE(894), 1, + sym__maybe_record_expression, + STATE(895), 1, + sym__maybe_function_expression, + STATE(896), 1, + sym_identifier, ACTIONS(89), 2, sym_string, sym_float, - STATE(80), 3, + STATE(78), 3, sym_record, sym_remote_record, sym_record_update, @@ -6459,14 +6485,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(62), 6, + STATE(63), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(176), 8, + STATE(178), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -6478,76 +6504,76 @@ static const uint16_t ts_small_parse_table[] = { [2200] = 31, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(121), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(124), 1, - anon_sym_RBRACE, - ACTIONS(126), 1, + ACTIONS(69), 1, anon_sym_POUND, - ACTIONS(129), 1, + ACTIONS(71), 1, anon_sym_LBRACK, - ACTIONS(132), 1, + ACTIONS(73), 1, anon_sym_LT_LT, - ACTIONS(135), 1, + ACTIONS(75), 1, anon_sym_DASH, - ACTIONS(138), 1, + ACTIONS(77), 1, anon_sym_fn, - ACTIONS(141), 1, + ACTIONS(79), 1, anon_sym_try, - ACTIONS(144), 1, + ACTIONS(81), 1, anon_sym_todo, - ACTIONS(147), 1, + ACTIONS(83), 1, anon_sym_case, - ACTIONS(150), 1, + ACTIONS(85), 1, anon_sym_let, - ACTIONS(153), 1, + ACTIONS(87), 1, anon_sym_assert, - ACTIONS(162), 1, + ACTIONS(93), 1, sym__name, - ACTIONS(165), 1, + ACTIONS(95), 1, sym__upname, - STATE(22), 1, + ACTIONS(166), 1, + anon_sym_RBRACE, + STATE(17), 1, aux_sym__expression_seq, - STATE(77), 1, - sym_anonymous_function, - STATE(79), 1, + STATE(70), 1, sym_tuple, - STATE(175), 1, + STATE(71), 1, + sym_anonymous_function, + STATE(177), 1, sym__expression, - STATE(372), 1, + STATE(370), 1, sym_try, - STATE(957), 1, - sym_identifier, - STATE(958), 1, - sym__maybe_function_expression, - STATE(959), 1, - sym__maybe_record_expression, - STATE(962), 1, - sym__maybe_tuple_expression, - STATE(963), 1, - sym__record_update_remote_record, - STATE(964), 1, + STATE(888), 1, sym__record_update_record, - ACTIONS(156), 2, + STATE(892), 1, + sym__record_update_remote_record, + STATE(893), 1, + sym__maybe_tuple_expression, + STATE(894), 1, + sym__maybe_record_expression, + STATE(895), 1, + sym__maybe_function_expression, + STATE(896), 1, + sym_identifier, + ACTIONS(89), 2, sym_string, sym_float, - STATE(80), 3, + STATE(78), 3, sym_record, sym_remote_record, sym_record_update, - ACTIONS(159), 4, + ACTIONS(91), 4, sym__hex, sym__decimal, sym__octal, sym__binary, - STATE(62), 6, + STATE(63), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(176), 8, + STATE(178), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -6587,32 +6613,32 @@ static const uint16_t ts_small_parse_table[] = { sym__upname, ACTIONS(168), 1, anon_sym_RBRACE, - STATE(22), 1, + STATE(17), 1, aux_sym__expression_seq, - STATE(77), 1, - sym_anonymous_function, - STATE(79), 1, + STATE(70), 1, sym_tuple, - STATE(175), 1, + STATE(71), 1, + sym_anonymous_function, + STATE(177), 1, sym__expression, - STATE(372), 1, + STATE(370), 1, sym_try, - STATE(957), 1, - sym_identifier, - STATE(958), 1, - sym__maybe_function_expression, - STATE(959), 1, - sym__maybe_record_expression, - STATE(962), 1, - sym__maybe_tuple_expression, - STATE(963), 1, - sym__record_update_remote_record, - STATE(964), 1, + STATE(888), 1, sym__record_update_record, - ACTIONS(89), 2, - sym_string, + STATE(892), 1, + sym__record_update_remote_record, + STATE(893), 1, + sym__maybe_tuple_expression, + STATE(894), 1, + sym__maybe_record_expression, + STATE(895), 1, + sym__maybe_function_expression, + STATE(896), 1, + sym_identifier, + ACTIONS(89), 2, + sym_string, sym_float, - STATE(80), 3, + STATE(78), 3, sym_record, sym_remote_record, sym_record_update, @@ -6621,14 +6647,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(62), 6, + STATE(63), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(176), 8, + STATE(178), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -6668,32 +6694,32 @@ static const uint16_t ts_small_parse_table[] = { sym__upname, ACTIONS(170), 1, anon_sym_RBRACE, - STATE(22), 1, + STATE(17), 1, aux_sym__expression_seq, - STATE(77), 1, - sym_anonymous_function, - STATE(79), 1, + STATE(70), 1, sym_tuple, - STATE(175), 1, + STATE(71), 1, + sym_anonymous_function, + STATE(177), 1, sym__expression, - STATE(372), 1, + STATE(370), 1, sym_try, - STATE(957), 1, - sym_identifier, - STATE(958), 1, - sym__maybe_function_expression, - STATE(959), 1, - sym__maybe_record_expression, - STATE(962), 1, - sym__maybe_tuple_expression, - STATE(963), 1, - sym__record_update_remote_record, - STATE(964), 1, + STATE(888), 1, sym__record_update_record, + STATE(892), 1, + sym__record_update_remote_record, + STATE(893), 1, + sym__maybe_tuple_expression, + STATE(894), 1, + sym__maybe_record_expression, + STATE(895), 1, + sym__maybe_function_expression, + STATE(896), 1, + sym_identifier, ACTIONS(89), 2, sym_string, sym_float, - STATE(80), 3, + STATE(78), 3, sym_record, sym_remote_record, sym_record_update, @@ -6702,14 +6728,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(62), 6, + STATE(63), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(176), 8, + STATE(178), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -6749,32 +6775,32 @@ static const uint16_t ts_small_parse_table[] = { sym__upname, ACTIONS(172), 1, anon_sym_RBRACE, - STATE(22), 1, + STATE(17), 1, aux_sym__expression_seq, - STATE(77), 1, - sym_anonymous_function, - STATE(79), 1, + STATE(70), 1, sym_tuple, - STATE(175), 1, + STATE(71), 1, + sym_anonymous_function, + STATE(177), 1, sym__expression, - STATE(372), 1, + STATE(370), 1, sym_try, - STATE(957), 1, - sym_identifier, - STATE(958), 1, - sym__maybe_function_expression, - STATE(959), 1, - sym__maybe_record_expression, - STATE(962), 1, - sym__maybe_tuple_expression, - STATE(963), 1, - sym__record_update_remote_record, - STATE(964), 1, + STATE(888), 1, sym__record_update_record, + STATE(892), 1, + sym__record_update_remote_record, + STATE(893), 1, + sym__maybe_tuple_expression, + STATE(894), 1, + sym__maybe_record_expression, + STATE(895), 1, + sym__maybe_function_expression, + STATE(896), 1, + sym_identifier, ACTIONS(89), 2, sym_string, sym_float, - STATE(80), 3, + STATE(78), 3, sym_record, sym_remote_record, sym_record_update, @@ -6783,14 +6809,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(62), 6, + STATE(63), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(176), 8, + STATE(178), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -6830,32 +6856,32 @@ static const uint16_t ts_small_parse_table[] = { sym__upname, ACTIONS(174), 1, anon_sym_RBRACE, - STATE(22), 1, + STATE(17), 1, aux_sym__expression_seq, - STATE(77), 1, - sym_anonymous_function, - STATE(79), 1, + STATE(70), 1, sym_tuple, - STATE(175), 1, + STATE(71), 1, + sym_anonymous_function, + STATE(177), 1, sym__expression, - STATE(372), 1, + STATE(370), 1, sym_try, - STATE(957), 1, - sym_identifier, - STATE(958), 1, - sym__maybe_function_expression, - STATE(959), 1, - sym__maybe_record_expression, - STATE(962), 1, - sym__maybe_tuple_expression, - STATE(963), 1, - sym__record_update_remote_record, - STATE(964), 1, + STATE(888), 1, sym__record_update_record, + STATE(892), 1, + sym__record_update_remote_record, + STATE(893), 1, + sym__maybe_tuple_expression, + STATE(894), 1, + sym__maybe_record_expression, + STATE(895), 1, + sym__maybe_function_expression, + STATE(896), 1, + sym_identifier, ACTIONS(89), 2, sym_string, sym_float, - STATE(80), 3, + STATE(78), 3, sym_record, sym_remote_record, sym_record_update, @@ -6864,14 +6890,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(62), 6, + STATE(63), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(176), 8, + STATE(178), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -6880,7 +6906,59 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [2760] = 31, + [2760] = 2, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(176), 48, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_SLASH, + 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_DASH, + anon_sym_fn, + anon_sym_try, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + sym_string, + sym_float, + sym__hex, + sym__decimal, + sym__octal, + sym__binary, + sym__name, + sym__upname, + [2814] = 31, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(65), 1, @@ -6909,34 +6987,34 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(95), 1, sym__upname, - ACTIONS(176), 1, + ACTIONS(178), 1, anon_sym_RBRACE, - STATE(22), 1, + STATE(17), 1, aux_sym__expression_seq, - STATE(77), 1, - sym_anonymous_function, - STATE(79), 1, + STATE(70), 1, sym_tuple, - STATE(175), 1, + STATE(71), 1, + sym_anonymous_function, + STATE(177), 1, sym__expression, - STATE(372), 1, + STATE(370), 1, sym_try, - STATE(957), 1, - sym_identifier, - STATE(958), 1, - sym__maybe_function_expression, - STATE(959), 1, - sym__maybe_record_expression, - STATE(962), 1, - sym__maybe_tuple_expression, - STATE(963), 1, - sym__record_update_remote_record, - STATE(964), 1, + STATE(888), 1, sym__record_update_record, + STATE(892), 1, + sym__record_update_remote_record, + STATE(893), 1, + sym__maybe_tuple_expression, + STATE(894), 1, + sym__maybe_record_expression, + STATE(895), 1, + sym__maybe_function_expression, + STATE(896), 1, + sym_identifier, ACTIONS(89), 2, sym_string, sym_float, - STATE(80), 3, + STATE(78), 3, sym_record, sym_remote_record, sym_record_update, @@ -6945,14 +7023,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(62), 6, + STATE(63), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(176), 8, + STATE(178), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -6961,7 +7039,7 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [2872] = 31, + [2926] = 31, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(65), 1, @@ -6990,34 +7068,34 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(95), 1, sym__upname, - ACTIONS(178), 1, + ACTIONS(180), 1, anon_sym_RBRACE, - STATE(22), 1, + STATE(17), 1, aux_sym__expression_seq, - STATE(77), 1, - sym_anonymous_function, - STATE(79), 1, + STATE(70), 1, sym_tuple, - STATE(175), 1, + STATE(71), 1, + sym_anonymous_function, + STATE(177), 1, sym__expression, - STATE(372), 1, + STATE(370), 1, sym_try, - STATE(957), 1, - sym_identifier, - STATE(958), 1, - sym__maybe_function_expression, - STATE(959), 1, - sym__maybe_record_expression, - STATE(962), 1, - sym__maybe_tuple_expression, - STATE(963), 1, - sym__record_update_remote_record, - STATE(964), 1, + STATE(888), 1, sym__record_update_record, + STATE(892), 1, + sym__record_update_remote_record, + STATE(893), 1, + sym__maybe_tuple_expression, + STATE(894), 1, + sym__maybe_record_expression, + STATE(895), 1, + sym__maybe_function_expression, + STATE(896), 1, + sym_identifier, ACTIONS(89), 2, sym_string, sym_float, - STATE(80), 3, + STATE(78), 3, sym_record, sym_remote_record, sym_record_update, @@ -7026,14 +7104,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(62), 6, + STATE(63), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(176), 8, + STATE(178), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -7042,7 +7120,7 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [2984] = 31, + [3038] = 31, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(65), 1, @@ -7071,34 +7149,34 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(95), 1, sym__upname, - ACTIONS(180), 1, + ACTIONS(182), 1, anon_sym_RBRACE, - STATE(22), 1, + STATE(17), 1, aux_sym__expression_seq, - STATE(77), 1, - sym_anonymous_function, - STATE(79), 1, + STATE(70), 1, sym_tuple, - STATE(175), 1, + STATE(71), 1, + sym_anonymous_function, + STATE(177), 1, sym__expression, - STATE(372), 1, + STATE(370), 1, sym_try, - STATE(957), 1, - sym_identifier, - STATE(958), 1, - sym__maybe_function_expression, - STATE(959), 1, - sym__maybe_record_expression, - STATE(962), 1, - sym__maybe_tuple_expression, - STATE(963), 1, - sym__record_update_remote_record, - STATE(964), 1, + STATE(888), 1, sym__record_update_record, + STATE(892), 1, + sym__record_update_remote_record, + STATE(893), 1, + sym__maybe_tuple_expression, + STATE(894), 1, + sym__maybe_record_expression, + STATE(895), 1, + sym__maybe_function_expression, + STATE(896), 1, + sym_identifier, ACTIONS(89), 2, sym_string, sym_float, - STATE(80), 3, + STATE(78), 3, sym_record, sym_remote_record, sym_record_update, @@ -7107,14 +7185,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(62), 6, + STATE(63), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(176), 8, + STATE(178), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -7123,7 +7201,7 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [3096] = 31, + [3150] = 31, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(65), 1, @@ -7152,34 +7230,34 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(95), 1, sym__upname, - ACTIONS(182), 1, + ACTIONS(184), 1, anon_sym_RBRACE, - STATE(22), 1, + STATE(17), 1, aux_sym__expression_seq, - STATE(77), 1, - sym_anonymous_function, - STATE(79), 1, + STATE(70), 1, sym_tuple, - STATE(175), 1, + STATE(71), 1, + sym_anonymous_function, + STATE(177), 1, sym__expression, - STATE(372), 1, + STATE(370), 1, sym_try, - STATE(957), 1, - sym_identifier, - STATE(958), 1, - sym__maybe_function_expression, - STATE(959), 1, - sym__maybe_record_expression, - STATE(962), 1, - sym__maybe_tuple_expression, - STATE(963), 1, - sym__record_update_remote_record, - STATE(964), 1, + STATE(888), 1, sym__record_update_record, + STATE(892), 1, + sym__record_update_remote_record, + STATE(893), 1, + sym__maybe_tuple_expression, + STATE(894), 1, + sym__maybe_record_expression, + STATE(895), 1, + sym__maybe_function_expression, + STATE(896), 1, + sym_identifier, ACTIONS(89), 2, sym_string, sym_float, - STATE(80), 3, + STATE(78), 3, sym_record, sym_remote_record, sym_record_update, @@ -7188,14 +7266,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(62), 6, + STATE(63), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(176), 8, + STATE(178), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -7204,7 +7282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [3208] = 31, + [3262] = 31, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(65), 1, @@ -7233,34 +7311,34 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(95), 1, sym__upname, - ACTIONS(184), 1, + ACTIONS(186), 1, anon_sym_RBRACE, - STATE(22), 1, + STATE(17), 1, aux_sym__expression_seq, - STATE(77), 1, - sym_anonymous_function, - STATE(79), 1, + STATE(70), 1, sym_tuple, - STATE(175), 1, + STATE(71), 1, + sym_anonymous_function, + STATE(177), 1, sym__expression, - STATE(372), 1, + STATE(370), 1, sym_try, - STATE(957), 1, - sym_identifier, - STATE(958), 1, - sym__maybe_function_expression, - STATE(959), 1, - sym__maybe_record_expression, - STATE(962), 1, - sym__maybe_tuple_expression, - STATE(963), 1, - sym__record_update_remote_record, - STATE(964), 1, + STATE(888), 1, sym__record_update_record, + STATE(892), 1, + sym__record_update_remote_record, + STATE(893), 1, + sym__maybe_tuple_expression, + STATE(894), 1, + sym__maybe_record_expression, + STATE(895), 1, + sym__maybe_function_expression, + STATE(896), 1, + sym_identifier, ACTIONS(89), 2, sym_string, sym_float, - STATE(80), 3, + STATE(78), 3, sym_record, sym_remote_record, sym_record_update, @@ -7269,14 +7347,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(62), 6, + STATE(63), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(176), 8, + STATE(178), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -7285,7 +7363,7 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [3320] = 31, + [3374] = 31, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(65), 1, @@ -7314,34 +7392,34 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(95), 1, sym__upname, - ACTIONS(186), 1, + ACTIONS(188), 1, anon_sym_RBRACE, - STATE(22), 1, + STATE(17), 1, aux_sym__expression_seq, - STATE(77), 1, - sym_anonymous_function, - STATE(79), 1, + STATE(70), 1, sym_tuple, - STATE(175), 1, + STATE(71), 1, + sym_anonymous_function, + STATE(177), 1, sym__expression, - STATE(372), 1, + STATE(370), 1, sym_try, - STATE(957), 1, - sym_identifier, - STATE(958), 1, - sym__maybe_function_expression, - STATE(959), 1, - sym__maybe_record_expression, - STATE(962), 1, - sym__maybe_tuple_expression, - STATE(963), 1, - sym__record_update_remote_record, - STATE(964), 1, + STATE(888), 1, sym__record_update_record, + STATE(892), 1, + sym__record_update_remote_record, + STATE(893), 1, + sym__maybe_tuple_expression, + STATE(894), 1, + sym__maybe_record_expression, + STATE(895), 1, + sym__maybe_function_expression, + STATE(896), 1, + sym_identifier, ACTIONS(89), 2, sym_string, sym_float, - STATE(80), 3, + STATE(78), 3, sym_record, sym_remote_record, sym_record_update, @@ -7350,14 +7428,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(62), 6, + STATE(63), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(176), 8, + STATE(178), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -7366,58 +7444,6 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [3432] = 2, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(188), 48, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_SLASH, - 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_DASH, - anon_sym_fn, - anon_sym_try, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_string, - sym_float, - sym__hex, - sym__decimal, - sym__octal, - sym__binary, - sym__name, - sym__upname, [3486] = 30, ACTIONS(3), 1, aux_sym_source_file_token1, @@ -7447,32 +7473,32 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(95), 1, sym__upname, - STATE(28), 1, + STATE(13), 1, aux_sym__expression_seq, - STATE(77), 1, - sym_anonymous_function, - STATE(79), 1, + STATE(70), 1, sym_tuple, - STATE(175), 1, + STATE(71), 1, + sym_anonymous_function, + STATE(177), 1, sym__expression, - STATE(372), 1, + STATE(370), 1, sym_try, - STATE(957), 1, - sym_identifier, - STATE(958), 1, - sym__maybe_function_expression, - STATE(959), 1, - sym__maybe_record_expression, - STATE(962), 1, - sym__maybe_tuple_expression, - STATE(963), 1, - sym__record_update_remote_record, - STATE(964), 1, + STATE(888), 1, sym__record_update_record, + STATE(892), 1, + sym__record_update_remote_record, + STATE(893), 1, + sym__maybe_tuple_expression, + STATE(894), 1, + sym__maybe_record_expression, + STATE(895), 1, + sym__maybe_function_expression, + STATE(896), 1, + sym_identifier, ACTIONS(89), 2, sym_string, sym_float, - STATE(80), 3, + STATE(78), 3, sym_record, sym_remote_record, sym_record_update, @@ -7481,14 +7507,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(62), 6, + STATE(63), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(176), 8, + STATE(178), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -7526,32 +7552,32 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(95), 1, sym__upname, - STATE(11), 1, + STATE(21), 1, aux_sym__expression_seq, - STATE(77), 1, - sym_anonymous_function, - STATE(79), 1, + STATE(70), 1, sym_tuple, - STATE(175), 1, + STATE(71), 1, + sym_anonymous_function, + STATE(177), 1, sym__expression, - STATE(372), 1, + STATE(370), 1, sym_try, - STATE(957), 1, - sym_identifier, - STATE(958), 1, - sym__maybe_function_expression, - STATE(959), 1, - sym__maybe_record_expression, - STATE(962), 1, - sym__maybe_tuple_expression, - STATE(963), 1, - sym__record_update_remote_record, - STATE(964), 1, + STATE(888), 1, sym__record_update_record, + STATE(892), 1, + sym__record_update_remote_record, + STATE(893), 1, + sym__maybe_tuple_expression, + STATE(894), 1, + sym__maybe_record_expression, + STATE(895), 1, + sym__maybe_function_expression, + STATE(896), 1, + sym_identifier, ACTIONS(89), 2, sym_string, sym_float, - STATE(80), 3, + STATE(78), 3, sym_record, sym_remote_record, sym_record_update, @@ -7560,14 +7586,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(62), 6, + STATE(63), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(176), 8, + STATE(178), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -7605,32 +7631,32 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(95), 1, sym__upname, - STATE(16), 1, + STATE(10), 1, aux_sym__expression_seq, - STATE(77), 1, - sym_anonymous_function, - STATE(79), 1, + STATE(70), 1, sym_tuple, - STATE(175), 1, + STATE(71), 1, + sym_anonymous_function, + STATE(177), 1, sym__expression, - STATE(372), 1, + STATE(370), 1, sym_try, - STATE(957), 1, - sym_identifier, - STATE(958), 1, - sym__maybe_function_expression, - STATE(959), 1, - sym__maybe_record_expression, - STATE(962), 1, - sym__maybe_tuple_expression, - STATE(963), 1, - sym__record_update_remote_record, - STATE(964), 1, + STATE(888), 1, sym__record_update_record, + STATE(892), 1, + sym__record_update_remote_record, + STATE(893), 1, + sym__maybe_tuple_expression, + STATE(894), 1, + sym__maybe_record_expression, + STATE(895), 1, + sym__maybe_function_expression, + STATE(896), 1, + sym_identifier, ACTIONS(89), 2, sym_string, sym_float, - STATE(80), 3, + STATE(78), 3, sym_record, sym_remote_record, sym_record_update, @@ -7639,14 +7665,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(62), 6, + STATE(63), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(176), 8, + STATE(178), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -7684,32 +7710,32 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(95), 1, sym__upname, - STATE(26), 1, + STATE(24), 1, aux_sym__expression_seq, - STATE(77), 1, - sym_anonymous_function, - STATE(79), 1, + STATE(70), 1, sym_tuple, - STATE(175), 1, + STATE(71), 1, + sym_anonymous_function, + STATE(177), 1, sym__expression, - STATE(372), 1, + STATE(370), 1, sym_try, - STATE(957), 1, - sym_identifier, - STATE(958), 1, - sym__maybe_function_expression, - STATE(959), 1, - sym__maybe_record_expression, - STATE(962), 1, - sym__maybe_tuple_expression, - STATE(963), 1, - sym__record_update_remote_record, - STATE(964), 1, + STATE(888), 1, sym__record_update_record, + STATE(892), 1, + sym__record_update_remote_record, + STATE(893), 1, + sym__maybe_tuple_expression, + STATE(894), 1, + sym__maybe_record_expression, + STATE(895), 1, + sym__maybe_function_expression, + STATE(896), 1, + sym_identifier, ACTIONS(89), 2, sym_string, sym_float, - STATE(80), 3, + STATE(78), 3, sym_record, sym_remote_record, sym_record_update, @@ -7718,14 +7744,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(62), 6, + STATE(63), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(176), 8, + STATE(178), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -7737,74 +7763,74 @@ static const uint16_t ts_small_parse_table[] = { [3922] = 30, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(21), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(23), 1, + ACTIONS(69), 1, anon_sym_POUND, - ACTIONS(27), 1, + ACTIONS(71), 1, anon_sym_LBRACK, - ACTIONS(29), 1, + ACTIONS(73), 1, anon_sym_LT_LT, - ACTIONS(31), 1, + ACTIONS(75), 1, anon_sym_DASH, - ACTIONS(33), 1, + ACTIONS(77), 1, anon_sym_fn, - ACTIONS(35), 1, + ACTIONS(79), 1, + anon_sym_try, + ACTIONS(81), 1, anon_sym_todo, - ACTIONS(37), 1, + ACTIONS(83), 1, anon_sym_case, - ACTIONS(39), 1, + ACTIONS(85), 1, anon_sym_let, - ACTIONS(41), 1, + ACTIONS(87), 1, anon_sym_assert, - ACTIONS(47), 1, - sym__discard_name, - ACTIONS(49), 1, + ACTIONS(93), 1, sym__name, - ACTIONS(51), 1, + ACTIONS(95), 1, sym__upname, - STATE(271), 1, + STATE(11), 1, + aux_sym__expression_seq, + STATE(70), 1, sym_tuple, - STATE(272), 1, + STATE(71), 1, sym_anonymous_function, - STATE(333), 1, + STATE(177), 1, sym__expression, - STATE(764), 1, - sym_argument, - STATE(793), 1, - sym_identifier, - STATE(794), 1, - sym_discard_var, - STATE(869), 1, - sym__maybe_record_expression, - STATE(981), 1, - sym__maybe_tuple_expression, - STATE(983), 1, - sym__maybe_function_expression, - STATE(1076), 1, + STATE(370), 1, + sym_try, + STATE(888), 1, sym__record_update_record, - STATE(1077), 1, + STATE(892), 1, sym__record_update_remote_record, - ACTIONS(43), 2, + STATE(893), 1, + sym__maybe_tuple_expression, + STATE(894), 1, + sym__maybe_record_expression, + STATE(895), 1, + sym__maybe_function_expression, + STATE(896), 1, + sym_identifier, + ACTIONS(89), 2, sym_string, sym_float, - STATE(255), 3, + STATE(78), 3, sym_record, sym_remote_record, sym_record_update, - ACTIONS(45), 4, + ACTIONS(91), 4, sym__hex, sym__decimal, sym__octal, sym__binary, - STATE(251), 6, + STATE(63), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(287), 8, + STATE(178), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -7842,32 +7868,32 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(95), 1, sym__upname, - STATE(29), 1, + STATE(32), 1, aux_sym__expression_seq, - STATE(77), 1, - sym_anonymous_function, - STATE(79), 1, + STATE(70), 1, sym_tuple, - STATE(175), 1, + STATE(71), 1, + sym_anonymous_function, + STATE(177), 1, sym__expression, - STATE(372), 1, + STATE(370), 1, sym_try, - STATE(957), 1, - sym_identifier, - STATE(958), 1, - sym__maybe_function_expression, - STATE(959), 1, - sym__maybe_record_expression, - STATE(962), 1, - sym__maybe_tuple_expression, - STATE(963), 1, - sym__record_update_remote_record, - STATE(964), 1, + STATE(888), 1, sym__record_update_record, + STATE(892), 1, + sym__record_update_remote_record, + STATE(893), 1, + sym__maybe_tuple_expression, + STATE(894), 1, + sym__maybe_record_expression, + STATE(895), 1, + sym__maybe_function_expression, + STATE(896), 1, + sym_identifier, ACTIONS(89), 2, sym_string, sym_float, - STATE(80), 3, + STATE(78), 3, sym_record, sym_remote_record, sym_record_update, @@ -7876,14 +7902,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(62), 6, + STATE(63), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(176), 8, + STATE(178), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -7921,33 +7947,33 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(95), 1, sym__upname, - STATE(24), 1, + STATE(33), 1, aux_sym__expression_seq, - STATE(77), 1, - sym_anonymous_function, - STATE(79), 1, + STATE(70), 1, sym_tuple, - STATE(175), 1, + STATE(71), 1, + sym_anonymous_function, + STATE(177), 1, sym__expression, - STATE(372), 1, + STATE(370), 1, sym_try, - STATE(957), 1, - sym_identifier, - STATE(958), 1, - sym__maybe_function_expression, - STATE(959), 1, - sym__maybe_record_expression, - STATE(962), 1, - sym__maybe_tuple_expression, - STATE(963), 1, - sym__record_update_remote_record, - STATE(964), 1, + STATE(888), 1, sym__record_update_record, - ACTIONS(89), 2, - sym_string, - sym_float, - STATE(80), 3, - sym_record, + STATE(892), 1, + sym__record_update_remote_record, + STATE(893), 1, + sym__maybe_tuple_expression, + STATE(894), 1, + sym__maybe_record_expression, + STATE(895), 1, + sym__maybe_function_expression, + STATE(896), 1, + sym_identifier, + ACTIONS(89), 2, + sym_string, + sym_float, + STATE(78), 3, + sym_record, sym_remote_record, sym_record_update, ACTIONS(91), 4, @@ -7955,14 +7981,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(62), 6, + STATE(63), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(176), 8, + STATE(178), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -8000,32 +8026,32 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(95), 1, sym__upname, - STATE(18), 1, + STATE(26), 1, aux_sym__expression_seq, - STATE(77), 1, - sym_anonymous_function, - STATE(79), 1, + STATE(70), 1, sym_tuple, - STATE(175), 1, + STATE(71), 1, + sym_anonymous_function, + STATE(177), 1, sym__expression, - STATE(372), 1, + STATE(370), 1, sym_try, - STATE(957), 1, - sym_identifier, - STATE(958), 1, - sym__maybe_function_expression, - STATE(959), 1, - sym__maybe_record_expression, - STATE(962), 1, - sym__maybe_tuple_expression, - STATE(963), 1, - sym__record_update_remote_record, - STATE(964), 1, + STATE(888), 1, sym__record_update_record, + STATE(892), 1, + sym__record_update_remote_record, + STATE(893), 1, + sym__maybe_tuple_expression, + STATE(894), 1, + sym__maybe_record_expression, + STATE(895), 1, + sym__maybe_function_expression, + STATE(896), 1, + sym_identifier, ACTIONS(89), 2, sym_string, sym_float, - STATE(80), 3, + STATE(78), 3, sym_record, sym_remote_record, sym_record_update, @@ -8034,14 +8060,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(62), 6, + STATE(63), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(176), 8, + STATE(178), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -8081,30 +8107,30 @@ static const uint16_t ts_small_parse_table[] = { sym__upname, STATE(30), 1, aux_sym__expression_seq, - STATE(77), 1, - sym_anonymous_function, - STATE(79), 1, + STATE(70), 1, sym_tuple, - STATE(175), 1, + STATE(71), 1, + sym_anonymous_function, + STATE(177), 1, sym__expression, - STATE(372), 1, + STATE(370), 1, sym_try, - STATE(957), 1, - sym_identifier, - STATE(958), 1, - sym__maybe_function_expression, - STATE(959), 1, - sym__maybe_record_expression, - STATE(962), 1, - sym__maybe_tuple_expression, - STATE(963), 1, - sym__record_update_remote_record, - STATE(964), 1, + STATE(888), 1, sym__record_update_record, + STATE(892), 1, + sym__record_update_remote_record, + STATE(893), 1, + sym__maybe_tuple_expression, + STATE(894), 1, + sym__maybe_record_expression, + STATE(895), 1, + sym__maybe_function_expression, + STATE(896), 1, + sym_identifier, ACTIONS(89), 2, sym_string, sym_float, - STATE(80), 3, + STATE(78), 3, sym_record, sym_remote_record, sym_record_update, @@ -8113,14 +8139,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(62), 6, + STATE(63), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(176), 8, + STATE(178), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -8158,32 +8184,32 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(95), 1, sym__upname, - STATE(13), 1, + STATE(22), 1, aux_sym__expression_seq, - STATE(77), 1, - sym_anonymous_function, - STATE(79), 1, + STATE(70), 1, sym_tuple, - STATE(175), 1, + STATE(71), 1, + sym_anonymous_function, + STATE(177), 1, sym__expression, - STATE(372), 1, + STATE(370), 1, sym_try, - STATE(957), 1, - sym_identifier, - STATE(958), 1, - sym__maybe_function_expression, - STATE(959), 1, - sym__maybe_record_expression, - STATE(962), 1, - sym__maybe_tuple_expression, - STATE(963), 1, - sym__record_update_remote_record, - STATE(964), 1, + STATE(888), 1, sym__record_update_record, + STATE(892), 1, + sym__record_update_remote_record, + STATE(893), 1, + sym__maybe_tuple_expression, + STATE(894), 1, + sym__maybe_record_expression, + STATE(895), 1, + sym__maybe_function_expression, + STATE(896), 1, + sym_identifier, ACTIONS(89), 2, sym_string, sym_float, - STATE(80), 3, + STATE(78), 3, sym_record, sym_remote_record, sym_record_update, @@ -8192,14 +8218,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(62), 6, + STATE(63), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(176), 8, + STATE(178), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -8237,32 +8263,32 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(95), 1, sym__upname, - STATE(14), 1, + STATE(12), 1, aux_sym__expression_seq, - STATE(77), 1, - sym_anonymous_function, - STATE(79), 1, + STATE(70), 1, sym_tuple, - STATE(175), 1, + STATE(71), 1, + sym_anonymous_function, + STATE(177), 1, sym__expression, - STATE(372), 1, + STATE(370), 1, sym_try, - STATE(957), 1, - sym_identifier, - STATE(958), 1, - sym__maybe_function_expression, - STATE(959), 1, - sym__maybe_record_expression, - STATE(962), 1, - sym__maybe_tuple_expression, - STATE(963), 1, - sym__record_update_remote_record, - STATE(964), 1, + STATE(888), 1, sym__record_update_record, + STATE(892), 1, + sym__record_update_remote_record, + STATE(893), 1, + sym__maybe_tuple_expression, + STATE(894), 1, + sym__maybe_record_expression, + STATE(895), 1, + sym__maybe_function_expression, + STATE(896), 1, + sym_identifier, ACTIONS(89), 2, sym_string, sym_float, - STATE(80), 3, + STATE(78), 3, sym_record, sym_remote_record, sym_record_update, @@ -8271,14 +8297,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(62), 6, + STATE(63), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(176), 8, + STATE(178), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -8316,32 +8342,32 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(95), 1, sym__upname, - STATE(15), 1, + STATE(9), 1, aux_sym__expression_seq, - STATE(77), 1, - sym_anonymous_function, - STATE(79), 1, + STATE(70), 1, sym_tuple, - STATE(175), 1, + STATE(71), 1, + sym_anonymous_function, + STATE(177), 1, sym__expression, - STATE(372), 1, + STATE(370), 1, sym_try, - STATE(957), 1, - sym_identifier, - STATE(958), 1, - sym__maybe_function_expression, - STATE(959), 1, - sym__maybe_record_expression, - STATE(962), 1, - sym__maybe_tuple_expression, - STATE(963), 1, - sym__record_update_remote_record, - STATE(964), 1, + STATE(888), 1, sym__record_update_record, + STATE(892), 1, + sym__record_update_remote_record, + STATE(893), 1, + sym__maybe_tuple_expression, + STATE(894), 1, + sym__maybe_record_expression, + STATE(895), 1, + sym__maybe_function_expression, + STATE(896), 1, + sym_identifier, ACTIONS(89), 2, sym_string, sym_float, - STATE(80), 3, + STATE(78), 3, sym_record, sym_remote_record, sym_record_update, @@ -8350,14 +8376,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(62), 6, + STATE(63), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(176), 8, + STATE(178), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -8395,32 +8421,32 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(95), 1, sym__upname, - STATE(21), 1, + STATE(31), 1, aux_sym__expression_seq, - STATE(77), 1, - sym_anonymous_function, - STATE(79), 1, + STATE(70), 1, sym_tuple, - STATE(175), 1, + STATE(71), 1, + sym_anonymous_function, + STATE(177), 1, sym__expression, - STATE(372), 1, + STATE(370), 1, sym_try, - STATE(957), 1, - sym_identifier, - STATE(958), 1, - sym__maybe_function_expression, - STATE(959), 1, - sym__maybe_record_expression, - STATE(962), 1, - sym__maybe_tuple_expression, - STATE(963), 1, - sym__record_update_remote_record, - STATE(964), 1, + STATE(888), 1, sym__record_update_record, + STATE(892), 1, + sym__record_update_remote_record, + STATE(893), 1, + sym__maybe_tuple_expression, + STATE(894), 1, + sym__maybe_record_expression, + STATE(895), 1, + sym__maybe_function_expression, + STATE(896), 1, + sym_identifier, ACTIONS(89), 2, sym_string, sym_float, - STATE(80), 3, + STATE(78), 3, sym_record, sym_remote_record, sym_record_update, @@ -8429,14 +8455,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(62), 6, + STATE(63), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(176), 8, + STATE(178), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -8474,32 +8500,32 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(95), 1, sym__upname, - STATE(19), 1, + STATE(23), 1, aux_sym__expression_seq, - STATE(77), 1, - sym_anonymous_function, - STATE(79), 1, + STATE(70), 1, sym_tuple, - STATE(175), 1, + STATE(71), 1, + sym_anonymous_function, + STATE(177), 1, sym__expression, - STATE(372), 1, + STATE(370), 1, sym_try, - STATE(957), 1, - sym_identifier, - STATE(958), 1, - sym__maybe_function_expression, - STATE(959), 1, - sym__maybe_record_expression, - STATE(962), 1, - sym__maybe_tuple_expression, - STATE(963), 1, - sym__record_update_remote_record, - STATE(964), 1, + STATE(888), 1, sym__record_update_record, + STATE(892), 1, + sym__record_update_remote_record, + STATE(893), 1, + sym__maybe_tuple_expression, + STATE(894), 1, + sym__maybe_record_expression, + STATE(895), 1, + sym__maybe_function_expression, + STATE(896), 1, + sym_identifier, ACTIONS(89), 2, sym_string, sym_float, - STATE(80), 3, + STATE(78), 3, sym_record, sym_remote_record, sym_record_update, @@ -8508,14 +8534,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(62), 6, + STATE(63), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(176), 8, + STATE(178), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -8553,32 +8579,32 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(95), 1, sym__upname, - STATE(10), 1, + STATE(20), 1, aux_sym__expression_seq, - STATE(77), 1, - sym_anonymous_function, - STATE(79), 1, + STATE(70), 1, sym_tuple, - STATE(175), 1, + STATE(71), 1, + sym_anonymous_function, + STATE(177), 1, sym__expression, - STATE(372), 1, + STATE(370), 1, sym_try, - STATE(957), 1, - sym_identifier, - STATE(958), 1, - sym__maybe_function_expression, - STATE(959), 1, - sym__maybe_record_expression, - STATE(962), 1, - sym__maybe_tuple_expression, - STATE(963), 1, - sym__record_update_remote_record, - STATE(964), 1, + STATE(888), 1, sym__record_update_record, + STATE(892), 1, + sym__record_update_remote_record, + STATE(893), 1, + sym__maybe_tuple_expression, + STATE(894), 1, + sym__maybe_record_expression, + STATE(895), 1, + sym__maybe_function_expression, + STATE(896), 1, + sym_identifier, ACTIONS(89), 2, sym_string, sym_float, - STATE(80), 3, + STATE(78), 3, sym_record, sym_remote_record, sym_record_update, @@ -8587,14 +8613,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(62), 6, + STATE(63), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(176), 8, + STATE(178), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -8606,74 +8632,74 @@ static const uint16_t ts_small_parse_table[] = { [5121] = 30, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(65), 1, + ACTIONS(21), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(23), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(27), 1, anon_sym_LBRACK, - ACTIONS(73), 1, + ACTIONS(29), 1, anon_sym_LT_LT, - ACTIONS(75), 1, + ACTIONS(31), 1, anon_sym_DASH, - ACTIONS(77), 1, + ACTIONS(33), 1, anon_sym_fn, - ACTIONS(79), 1, - anon_sym_try, - ACTIONS(81), 1, + ACTIONS(35), 1, anon_sym_todo, - ACTIONS(83), 1, + ACTIONS(37), 1, anon_sym_case, - ACTIONS(85), 1, + ACTIONS(39), 1, anon_sym_let, - ACTIONS(87), 1, + ACTIONS(41), 1, anon_sym_assert, - ACTIONS(93), 1, + ACTIONS(47), 1, + sym__discard_name, + ACTIONS(49), 1, sym__name, - ACTIONS(95), 1, + ACTIONS(51), 1, sym__upname, - STATE(12), 1, - aux_sym__expression_seq, - STATE(77), 1, + STATE(255), 1, sym_anonymous_function, - STATE(79), 1, + STATE(270), 1, sym_tuple, - STATE(175), 1, + STATE(335), 1, sym__expression, - STATE(372), 1, - sym_try, - STATE(957), 1, + STATE(739), 1, + sym_discard_var, + STATE(742), 1, sym_identifier, - STATE(958), 1, - sym__maybe_function_expression, - STATE(959), 1, + STATE(750), 1, + sym_argument, + STATE(877), 1, sym__maybe_record_expression, - STATE(962), 1, + STATE(989), 1, sym__maybe_tuple_expression, - STATE(963), 1, - sym__record_update_remote_record, - STATE(964), 1, + STATE(991), 1, + sym__maybe_function_expression, + STATE(1084), 1, sym__record_update_record, - ACTIONS(89), 2, + STATE(1085), 1, + sym__record_update_remote_record, + ACTIONS(43), 2, sym_string, sym_float, - STATE(80), 3, + STATE(254), 3, sym_record, sym_remote_record, sym_record_update, - ACTIONS(91), 4, + ACTIONS(45), 4, sym__hex, sym__decimal, sym__octal, sym__binary, - STATE(62), 6, + STATE(248), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(176), 8, + STATE(278), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -8711,32 +8737,32 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(95), 1, sym__upname, - STATE(27), 1, + STATE(28), 1, aux_sym__expression_seq, - STATE(77), 1, - sym_anonymous_function, - STATE(79), 1, + STATE(70), 1, sym_tuple, - STATE(175), 1, + STATE(71), 1, + sym_anonymous_function, + STATE(177), 1, sym__expression, - STATE(372), 1, + STATE(370), 1, sym_try, - STATE(957), 1, - sym_identifier, - STATE(958), 1, - sym__maybe_function_expression, - STATE(959), 1, - sym__maybe_record_expression, - STATE(962), 1, - sym__maybe_tuple_expression, - STATE(963), 1, - sym__record_update_remote_record, - STATE(964), 1, + STATE(888), 1, sym__record_update_record, + STATE(892), 1, + sym__record_update_remote_record, + STATE(893), 1, + sym__maybe_tuple_expression, + STATE(894), 1, + sym__maybe_record_expression, + STATE(895), 1, + sym__maybe_function_expression, + STATE(896), 1, + sym_identifier, ACTIONS(89), 2, sym_string, sym_float, - STATE(80), 3, + STATE(78), 3, sym_record, sym_remote_record, sym_record_update, @@ -8745,14 +8771,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(62), 6, + STATE(63), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(176), 8, + STATE(178), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -8790,32 +8816,32 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(95), 1, sym__upname, - STATE(17), 1, + STATE(19), 1, aux_sym__expression_seq, - STATE(77), 1, - sym_anonymous_function, - STATE(79), 1, + STATE(70), 1, sym_tuple, - STATE(175), 1, + STATE(71), 1, + sym_anonymous_function, + STATE(177), 1, sym__expression, - STATE(372), 1, + STATE(370), 1, sym_try, - STATE(957), 1, - sym_identifier, - STATE(958), 1, - sym__maybe_function_expression, - STATE(959), 1, - sym__maybe_record_expression, - STATE(962), 1, - sym__maybe_tuple_expression, - STATE(963), 1, - sym__record_update_remote_record, - STATE(964), 1, + STATE(888), 1, sym__record_update_record, + STATE(892), 1, + sym__record_update_remote_record, + STATE(893), 1, + sym__maybe_tuple_expression, + STATE(894), 1, + sym__maybe_record_expression, + STATE(895), 1, + sym__maybe_function_expression, + STATE(896), 1, + sym_identifier, ACTIONS(89), 2, sym_string, sym_float, - STATE(80), 3, + STATE(78), 3, sym_record, sym_remote_record, sym_record_update, @@ -8824,14 +8850,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(62), 6, + STATE(63), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(176), 8, + STATE(178), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -8869,32 +8895,32 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(95), 1, sym__upname, - STATE(20), 1, + STATE(18), 1, aux_sym__expression_seq, - STATE(77), 1, - sym_anonymous_function, - STATE(79), 1, + STATE(70), 1, sym_tuple, - STATE(175), 1, + STATE(71), 1, + sym_anonymous_function, + STATE(177), 1, sym__expression, - STATE(372), 1, + STATE(370), 1, sym_try, - STATE(957), 1, - sym_identifier, - STATE(958), 1, - sym__maybe_function_expression, - STATE(959), 1, - sym__maybe_record_expression, - STATE(962), 1, - sym__maybe_tuple_expression, - STATE(963), 1, - sym__record_update_remote_record, - STATE(964), 1, + STATE(888), 1, sym__record_update_record, + STATE(892), 1, + sym__record_update_remote_record, + STATE(893), 1, + sym__maybe_tuple_expression, + STATE(894), 1, + sym__maybe_record_expression, + STATE(895), 1, + sym__maybe_function_expression, + STATE(896), 1, + sym_identifier, ACTIONS(89), 2, sym_string, sym_float, - STATE(80), 3, + STATE(78), 3, sym_record, sym_remote_record, sym_record_update, @@ -8903,14 +8929,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(62), 6, + STATE(63), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(176), 8, + STATE(178), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -8948,32 +8974,32 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(95), 1, sym__upname, - STATE(23), 1, + STATE(25), 1, aux_sym__expression_seq, - STATE(77), 1, - sym_anonymous_function, - STATE(79), 1, + STATE(70), 1, sym_tuple, - STATE(175), 1, + STATE(71), 1, + sym_anonymous_function, + STATE(177), 1, sym__expression, - STATE(372), 1, + STATE(370), 1, sym_try, - STATE(957), 1, - sym_identifier, - STATE(958), 1, - sym__maybe_function_expression, - STATE(959), 1, - sym__maybe_record_expression, - STATE(962), 1, - sym__maybe_tuple_expression, - STATE(963), 1, - sym__record_update_remote_record, - STATE(964), 1, + STATE(888), 1, sym__record_update_record, + STATE(892), 1, + sym__record_update_remote_record, + STATE(893), 1, + sym__maybe_tuple_expression, + STATE(894), 1, + sym__maybe_record_expression, + STATE(895), 1, + sym__maybe_function_expression, + STATE(896), 1, + sym_identifier, ACTIONS(89), 2, sym_string, sym_float, - STATE(80), 3, + STATE(78), 3, sym_record, sym_remote_record, sym_record_update, @@ -8982,14 +9008,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(62), 6, + STATE(63), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(176), 8, + STATE(178), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -9027,32 +9053,32 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(95), 1, sym__upname, - STATE(25), 1, + STATE(15), 1, aux_sym__expression_seq, - STATE(77), 1, - sym_anonymous_function, - STATE(79), 1, + STATE(70), 1, sym_tuple, - STATE(175), 1, + STATE(71), 1, + sym_anonymous_function, + STATE(177), 1, sym__expression, - STATE(372), 1, + STATE(370), 1, sym_try, - STATE(957), 1, - sym_identifier, - STATE(958), 1, - sym__maybe_function_expression, - STATE(959), 1, - sym__maybe_record_expression, - STATE(962), 1, - sym__maybe_tuple_expression, - STATE(963), 1, - sym__record_update_remote_record, - STATE(964), 1, + STATE(888), 1, sym__record_update_record, + STATE(892), 1, + sym__record_update_remote_record, + STATE(893), 1, + sym__maybe_tuple_expression, + STATE(894), 1, + sym__maybe_record_expression, + STATE(895), 1, + sym__maybe_function_expression, + STATE(896), 1, + sym_identifier, ACTIONS(89), 2, sym_string, sym_float, - STATE(80), 3, + STATE(78), 3, sym_record, sym_remote_record, sym_record_update, @@ -9061,14 +9087,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(62), 6, + STATE(63), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(176), 8, + STATE(178), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -9106,32 +9132,32 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(95), 1, sym__upname, - STATE(32), 1, + STATE(14), 1, aux_sym__expression_seq, - STATE(77), 1, - sym_anonymous_function, - STATE(79), 1, + STATE(70), 1, sym_tuple, - STATE(175), 1, + STATE(71), 1, + sym_anonymous_function, + STATE(177), 1, sym__expression, - STATE(372), 1, + STATE(370), 1, sym_try, - STATE(957), 1, - sym_identifier, - STATE(958), 1, - sym__maybe_function_expression, - STATE(959), 1, - sym__maybe_record_expression, - STATE(962), 1, - sym__maybe_tuple_expression, - STATE(963), 1, - sym__record_update_remote_record, - STATE(964), 1, + STATE(888), 1, sym__record_update_record, + STATE(892), 1, + sym__record_update_remote_record, + STATE(893), 1, + sym__maybe_tuple_expression, + STATE(894), 1, + sym__maybe_record_expression, + STATE(895), 1, + sym__maybe_function_expression, + STATE(896), 1, + sym_identifier, ACTIONS(89), 2, sym_string, sym_float, - STATE(80), 3, + STATE(78), 3, sym_record, sym_remote_record, sym_record_update, @@ -9140,14 +9166,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(62), 6, + STATE(63), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(176), 8, + STATE(178), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -9185,32 +9211,32 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(95), 1, sym__upname, - STATE(31), 1, + STATE(16), 1, aux_sym__expression_seq, - STATE(77), 1, - sym_anonymous_function, - STATE(79), 1, + STATE(70), 1, sym_tuple, - STATE(175), 1, + STATE(71), 1, + sym_anonymous_function, + STATE(177), 1, sym__expression, - STATE(372), 1, + STATE(370), 1, sym_try, - STATE(957), 1, - sym_identifier, - STATE(958), 1, - sym__maybe_function_expression, - STATE(959), 1, - sym__maybe_record_expression, - STATE(962), 1, - sym__maybe_tuple_expression, - STATE(963), 1, - sym__record_update_remote_record, - STATE(964), 1, + STATE(888), 1, sym__record_update_record, + STATE(892), 1, + sym__record_update_remote_record, + STATE(893), 1, + sym__maybe_tuple_expression, + STATE(894), 1, + sym__maybe_record_expression, + STATE(895), 1, + sym__maybe_function_expression, + STATE(896), 1, + sym_identifier, ACTIONS(89), 2, sym_string, sym_float, - STATE(80), 3, + STATE(78), 3, sym_record, sym_remote_record, sym_record_update, @@ -9219,14 +9245,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(62), 6, + STATE(63), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(176), 8, + STATE(178), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -9264,32 +9290,32 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(95), 1, sym__upname, - STATE(9), 1, + STATE(29), 1, aux_sym__expression_seq, - STATE(77), 1, - sym_anonymous_function, - STATE(79), 1, + STATE(70), 1, sym_tuple, - STATE(175), 1, + STATE(71), 1, + sym_anonymous_function, + STATE(177), 1, sym__expression, - STATE(372), 1, + STATE(370), 1, sym_try, - STATE(957), 1, - sym_identifier, - STATE(958), 1, - sym__maybe_function_expression, - STATE(959), 1, - sym__maybe_record_expression, - STATE(962), 1, - sym__maybe_tuple_expression, - STATE(963), 1, - sym__record_update_remote_record, - STATE(964), 1, + STATE(888), 1, sym__record_update_record, + STATE(892), 1, + sym__record_update_remote_record, + STATE(893), 1, + sym__maybe_tuple_expression, + STATE(894), 1, + sym__maybe_record_expression, + STATE(895), 1, + sym__maybe_function_expression, + STATE(896), 1, + sym_identifier, ACTIONS(89), 2, sym_string, sym_float, - STATE(80), 3, + STATE(78), 3, sym_record, sym_remote_record, sym_record_update, @@ -9298,14 +9324,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(62), 6, + STATE(63), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(176), 8, + STATE(178), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -9314,18 +9340,17 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [6102] = 3, + [6102] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(192), 1, - anon_sym_LPAREN, - ACTIONS(190), 45, + ACTIONS(190), 46, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, anon_sym_COMMA, anon_sym_SLASH, anon_sym_POUND, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_GT_GT, @@ -9365,17 +9390,18 @@ static const uint16_t ts_small_parse_table[] = { sym__binary, sym__name, sym__upname, - [6156] = 2, + [6154] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(195), 46, + ACTIONS(194), 1, + anon_sym_LPAREN, + ACTIONS(192), 45, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, anon_sym_COMMA, anon_sym_SLASH, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_GT_GT, @@ -9515,66 +9541,13 @@ static const uint16_t ts_small_parse_table[] = { sym__binary, sym__name, sym__upname, - [6312] = 4, + [6312] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(203), 1, - anon_sym_DOT, - ACTIONS(206), 1, - anon_sym_LPAREN, - ACTIONS(201), 44, + ACTIONS(201), 46, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_DASH, - anon_sym_fn, - anon_sym_try, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_string, - sym_float, - sym__hex, - sym__decimal, - sym__octal, - sym__binary, - sym__name, - sym__upname, - [6368] = 3, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(210), 1, anon_sym_DOT, - ACTIONS(208), 45, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_COMMA, anon_sym_SLASH, anon_sym_POUND, @@ -9618,17 +9591,19 @@ static const uint16_t ts_small_parse_table[] = { sym__binary, sym__name, sym__upname, - [6422] = 2, + [6364] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(213), 46, + ACTIONS(205), 1, + anon_sym_DOT, + ACTIONS(208), 1, + anon_sym_LPAREN, + ACTIONS(203), 44, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_COMMA, anon_sym_SLASH, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_GT_GT, @@ -9668,10 +9643,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary, sym__name, sym__upname, - [6474] = 2, + [6420] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(215), 46, + ACTIONS(210), 46, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, @@ -9718,12 +9693,12 @@ static const uint16_t ts_small_parse_table[] = { sym__binary, sym__name, sym__upname, - [6526] = 3, + [6472] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(217), 1, + ACTIONS(212), 1, anon_sym_LPAREN, - ACTIONS(190), 45, + ACTIONS(192), 45, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, @@ -9769,7 +9744,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary, sym__name, sym__upname, - [6580] = 29, + [6526] = 29, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(21), 1, @@ -9798,30 +9773,30 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(51), 1, sym__upname, - STATE(271), 1, - sym_tuple, - STATE(272), 1, + STATE(255), 1, sym_anonymous_function, - STATE(337), 1, + STATE(270), 1, + sym_tuple, + STATE(345), 1, sym__expression, - STATE(765), 1, + STATE(763), 1, sym_discard_var, - STATE(869), 1, + STATE(877), 1, sym__maybe_record_expression, - STATE(981), 1, + STATE(989), 1, sym__maybe_tuple_expression, - STATE(983), 1, + STATE(991), 1, sym__maybe_function_expression, - STATE(984), 1, + STATE(992), 1, sym_identifier, - STATE(1076), 1, + STATE(1084), 1, sym__record_update_record, - STATE(1077), 1, + STATE(1085), 1, sym__record_update_remote_record, ACTIONS(43), 2, sym_string, sym_float, - STATE(255), 3, + STATE(254), 3, sym_record, sym_remote_record, sym_record_update, @@ -9830,14 +9805,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(251), 6, + STATE(248), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(287), 8, + STATE(278), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -9846,10 +9821,10 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [6686] = 2, + [6632] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(220), 46, + ACTIONS(215), 46, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, @@ -9896,82 +9871,58 @@ static const uint16_t ts_small_parse_table[] = { sym__binary, sym__name, sym__upname, - [6738] = 28, + [6684] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(21), 1, + ACTIONS(219), 1, + anon_sym_DOT, + ACTIONS(217), 45, anon_sym_LBRACE, - ACTIONS(23), 1, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SLASH, anon_sym_POUND, - ACTIONS(27), 1, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(29), 1, anon_sym_LT_LT, - ACTIONS(31), 1, + anon_sym_GT_GT, + anon_sym_COLON, anon_sym_DASH, - ACTIONS(33), 1, anon_sym_fn, - ACTIONS(35), 1, - anon_sym_todo, - ACTIONS(37), 1, - anon_sym_case, - ACTIONS(39), 1, - anon_sym_let, - ACTIONS(41), 1, - anon_sym_assert, - ACTIONS(49), 1, - sym__name, - ACTIONS(51), 1, - sym__upname, - ACTIONS(222), 1, - anon_sym_RPAREN, - STATE(271), 1, - sym_tuple, - STATE(272), 1, - sym_anonymous_function, - STATE(330), 1, - sym__expression, - STATE(869), 1, - sym__maybe_record_expression, - STATE(981), 1, - sym__maybe_tuple_expression, - STATE(983), 1, - sym__maybe_function_expression, - STATE(984), 1, - sym_identifier, - STATE(1076), 1, - sym__record_update_record, - STATE(1077), 1, - sym__record_update_remote_record, - ACTIONS(43), 2, + anon_sym_try, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, sym_string, sym_float, - STATE(255), 3, - sym_record, - sym_remote_record, - sym_record_update, - ACTIONS(45), 4, sym__hex, sym__decimal, sym__octal, sym__binary, - STATE(251), 6, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - sym_var, - STATE(287), 8, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_integer, - [6841] = 28, + sym__name, + sym__upname, + [6738] = 28, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(21), 1, @@ -9998,30 +9949,30 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(51), 1, sym__upname, - ACTIONS(224), 1, - anon_sym_DOT_DOT, - STATE(271), 1, - sym_tuple, - STATE(272), 1, + ACTIONS(222), 1, + anon_sym_RPAREN, + STATE(255), 1, sym_anonymous_function, - STATE(305), 1, + STATE(270), 1, + sym_tuple, + STATE(313), 1, sym__expression, - STATE(869), 1, + STATE(877), 1, sym__maybe_record_expression, - STATE(981), 1, + STATE(989), 1, sym__maybe_tuple_expression, - STATE(983), 1, + STATE(991), 1, sym__maybe_function_expression, - STATE(984), 1, + STATE(992), 1, sym_identifier, - STATE(1076), 1, + STATE(1084), 1, sym__record_update_record, - STATE(1077), 1, + STATE(1085), 1, sym__record_update_remote_record, ACTIONS(43), 2, sym_string, sym_float, - STATE(255), 3, + STATE(254), 3, sym_record, sym_remote_record, sym_record_update, @@ -10030,14 +9981,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(251), 6, + STATE(248), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(287), 8, + STATE(278), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -10046,16 +9997,17 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [6944] = 2, + [6841] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(226), 45, + ACTIONS(224), 1, + anon_sym_DOT, + ACTIONS(203), 44, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_SLASH, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_GT_GT, @@ -10095,16 +10047,17 @@ static const uint16_t ts_small_parse_table[] = { sym__binary, sym__name, sym__upname, - [6995] = 2, + [6894] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(228), 45, + ACTIONS(208), 1, + anon_sym_LPAREN, + ACTIONS(203), 44, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_SLASH, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_GT_GT, @@ -10144,10 +10097,85 @@ static const uint16_t ts_small_parse_table[] = { sym__binary, sym__name, sym__upname, - [7046] = 2, + [6947] = 28, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_POUND, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(29), 1, + anon_sym_LT_LT, + ACTIONS(31), 1, + anon_sym_DASH, + ACTIONS(33), 1, + anon_sym_fn, + ACTIONS(35), 1, + anon_sym_todo, + ACTIONS(37), 1, + anon_sym_case, + ACTIONS(39), 1, + anon_sym_let, + ACTIONS(41), 1, + anon_sym_assert, + ACTIONS(49), 1, + sym__name, + ACTIONS(51), 1, + sym__upname, + STATE(255), 1, + sym_anonymous_function, + STATE(270), 1, + sym_tuple, + STATE(317), 1, + sym__expression, + STATE(877), 1, + sym__maybe_record_expression, + STATE(989), 1, + sym__maybe_tuple_expression, + STATE(991), 1, + sym__maybe_function_expression, + STATE(992), 1, + sym_identifier, + STATE(1044), 1, + sym_case_subjects, + STATE(1084), 1, + sym__record_update_record, + STATE(1085), 1, + sym__record_update_remote_record, + ACTIONS(43), 2, + sym_string, + sym_float, + STATE(254), 3, + sym_record, + sym_remote_record, + sym_record_update, + ACTIONS(45), 4, + sym__hex, + sym__decimal, + sym__octal, + sym__binary, + STATE(248), 6, + sym_expression_group, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + sym_var, + STATE(278), 8, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_list, + sym__expression_bit_string, + sym_let, + sym_assert, + sym_integer, + [7050] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(230), 45, + ACTIONS(226), 45, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, @@ -10193,16 +10221,16 @@ static const uint16_t ts_small_parse_table[] = { sym__binary, sym__name, sym__upname, - [7097] = 2, + [7101] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(232), 45, + ACTIONS(228), 45, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_COMMA, anon_sym_SLASH, anon_sym_POUND, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_GT_GT, @@ -10242,7 +10270,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary, sym__name, sym__upname, - [7148] = 28, + [7152] = 28, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(21), 1, @@ -10269,30 +10297,30 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(51), 1, sym__upname, - STATE(271), 1, - sym_tuple, - STATE(272), 1, + STATE(255), 1, sym_anonymous_function, - STATE(313), 1, + STATE(270), 1, + sym_tuple, + STATE(317), 1, sym__expression, - STATE(869), 1, + STATE(877), 1, sym__maybe_record_expression, - STATE(981), 1, + STATE(989), 1, sym__maybe_tuple_expression, - STATE(983), 1, + STATE(991), 1, sym__maybe_function_expression, - STATE(984), 1, + STATE(992), 1, sym_identifier, - STATE(1036), 1, + STATE(1034), 1, sym_case_subjects, - STATE(1076), 1, + STATE(1084), 1, sym__record_update_record, - STATE(1077), 1, + STATE(1085), 1, sym__record_update_remote_record, ACTIONS(43), 2, sym_string, sym_float, - STATE(255), 3, + STATE(254), 3, sym_record, sym_remote_record, sym_record_update, @@ -10301,14 +10329,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(251), 6, + STATE(248), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(287), 8, + STATE(278), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -10317,7 +10345,7 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [7251] = 28, + [7255] = 28, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(21), 1, @@ -10344,30 +10372,30 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(51), 1, sym__upname, - ACTIONS(234), 1, - anon_sym_DOT_DOT, - STATE(271), 1, - sym_tuple, - STATE(272), 1, + ACTIONS(230), 1, + anon_sym_RBRACK, + STATE(255), 1, sym_anonymous_function, - STATE(305), 1, + STATE(270), 1, + sym_tuple, + STATE(316), 1, sym__expression, - STATE(869), 1, + STATE(877), 1, sym__maybe_record_expression, - STATE(981), 1, + STATE(989), 1, sym__maybe_tuple_expression, - STATE(983), 1, + STATE(991), 1, sym__maybe_function_expression, - STATE(984), 1, + STATE(992), 1, sym_identifier, - STATE(1076), 1, + STATE(1084), 1, sym__record_update_record, - STATE(1077), 1, + STATE(1085), 1, sym__record_update_remote_record, ACTIONS(43), 2, sym_string, sym_float, - STATE(255), 3, + STATE(254), 3, sym_record, sym_remote_record, sym_record_update, @@ -10376,14 +10404,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(251), 6, + STATE(248), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(287), 8, + STATE(278), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -10392,12 +10420,61 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [7354] = 3, + [7358] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(206), 1, - anon_sym_LPAREN, - ACTIONS(201), 44, + ACTIONS(232), 45, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_SLASH, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_DASH, + anon_sym_fn, + anon_sym_try, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + sym_string, + sym_float, + sym__hex, + sym__decimal, + sym__octal, + sym__binary, + sym__name, + sym__upname, + [7409] = 3, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(234), 1, + anon_sym_DOT, + ACTIONS(203), 44, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -10442,7 +10519,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary, sym__name, sym__upname, - [7407] = 28, + [7462] = 28, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(21), 1, @@ -10470,29 +10547,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(51), 1, sym__upname, ACTIONS(236), 1, - anon_sym_DOT_DOT, - STATE(271), 1, - sym_tuple, - STATE(272), 1, + anon_sym_RBRACK, + STATE(255), 1, sym_anonymous_function, - STATE(305), 1, + STATE(270), 1, + sym_tuple, + STATE(321), 1, sym__expression, - STATE(869), 1, + STATE(877), 1, sym__maybe_record_expression, - STATE(981), 1, + STATE(989), 1, sym__maybe_tuple_expression, - STATE(983), 1, + STATE(991), 1, sym__maybe_function_expression, - STATE(984), 1, + STATE(992), 1, sym_identifier, - STATE(1076), 1, + STATE(1084), 1, sym__record_update_record, - STATE(1077), 1, + STATE(1085), 1, sym__record_update_remote_record, ACTIONS(43), 2, sym_string, sym_float, - STATE(255), 3, + STATE(254), 3, sym_record, sym_remote_record, sym_record_update, @@ -10501,14 +10578,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(251), 6, + STATE(248), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(287), 8, + STATE(278), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -10517,14 +10594,13 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [7510] = 3, + [7565] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(238), 1, - anon_sym_DOT, - ACTIONS(201), 44, + ACTIONS(238), 45, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_COMMA, anon_sym_SLASH, anon_sym_POUND, @@ -10567,17 +10643,16 @@ static const uint16_t ts_small_parse_table[] = { sym__binary, sym__name, sym__upname, - [7563] = 3, + [7616] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(240), 1, - anon_sym_DOT, - ACTIONS(201), 44, + ACTIONS(240), 45, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_SLASH, anon_sym_POUND, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_GT_GT, @@ -10617,95 +10692,20 @@ static const uint16_t ts_small_parse_table[] = { sym__binary, sym__name, sym__upname, - [7616] = 28, + [7667] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(21), 1, + ACTIONS(242), 45, anon_sym_LBRACE, - ACTIONS(23), 1, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_SLASH, anon_sym_POUND, - ACTIONS(27), 1, anon_sym_LBRACK, - ACTIONS(29), 1, anon_sym_LT_LT, - ACTIONS(31), 1, - anon_sym_DASH, - ACTIONS(33), 1, - anon_sym_fn, - ACTIONS(35), 1, - anon_sym_todo, - ACTIONS(37), 1, - anon_sym_case, - ACTIONS(39), 1, - anon_sym_let, - ACTIONS(41), 1, - anon_sym_assert, - ACTIONS(49), 1, - sym__name, - ACTIONS(51), 1, - sym__upname, - ACTIONS(242), 1, - anon_sym_DOT_DOT, - STATE(271), 1, - sym_tuple, - STATE(272), 1, - sym_anonymous_function, - STATE(305), 1, - sym__expression, - STATE(869), 1, - sym__maybe_record_expression, - STATE(981), 1, - sym__maybe_tuple_expression, - STATE(983), 1, - sym__maybe_function_expression, - STATE(984), 1, - sym_identifier, - STATE(1076), 1, - sym__record_update_record, - STATE(1077), 1, - sym__record_update_remote_record, - ACTIONS(43), 2, - sym_string, - sym_float, - STATE(255), 3, - sym_record, - sym_remote_record, - sym_record_update, - ACTIONS(45), 4, - sym__hex, - sym__decimal, - sym__octal, - sym__binary, - STATE(251), 6, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - sym_var, - STATE(287), 8, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_integer, - [7719] = 2, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(244), 45, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, + anon_sym_GT_GT, + anon_sym_COLON, anon_sym_DASH, anon_sym_fn, anon_sym_try, @@ -10741,7 +10741,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary, sym__name, sym__upname, - [7770] = 28, + [7718] = 28, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(21), 1, @@ -10768,105 +10768,30 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(51), 1, sym__upname, - ACTIONS(246), 1, - anon_sym_RPAREN, - STATE(271), 1, - sym_tuple, - STATE(272), 1, + STATE(255), 1, sym_anonymous_function, - STATE(326), 1, - sym__expression, - STATE(869), 1, - sym__maybe_record_expression, - STATE(981), 1, - sym__maybe_tuple_expression, - STATE(983), 1, - sym__maybe_function_expression, - STATE(984), 1, - sym_identifier, - STATE(1076), 1, - sym__record_update_record, - STATE(1077), 1, - sym__record_update_remote_record, - ACTIONS(43), 2, - sym_string, - sym_float, - STATE(255), 3, - sym_record, - sym_remote_record, - sym_record_update, - ACTIONS(45), 4, - sym__hex, - sym__decimal, - sym__octal, - sym__binary, - STATE(251), 6, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - sym_var, - STATE(287), 8, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_integer, - [7873] = 28, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(21), 1, - anon_sym_LBRACE, - ACTIONS(23), 1, - anon_sym_POUND, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(29), 1, - anon_sym_LT_LT, - ACTIONS(31), 1, - anon_sym_DASH, - ACTIONS(33), 1, - anon_sym_fn, - ACTIONS(35), 1, - anon_sym_todo, - ACTIONS(37), 1, - anon_sym_case, - ACTIONS(39), 1, - anon_sym_let, - ACTIONS(41), 1, - anon_sym_assert, - ACTIONS(49), 1, - sym__name, - ACTIONS(51), 1, - sym__upname, - STATE(271), 1, + STATE(270), 1, sym_tuple, - STATE(272), 1, - sym_anonymous_function, - STATE(313), 1, + STATE(317), 1, sym__expression, - STATE(869), 1, + STATE(877), 1, sym__maybe_record_expression, - STATE(938), 1, + STATE(946), 1, sym_case_subjects, - STATE(981), 1, + STATE(989), 1, sym__maybe_tuple_expression, - STATE(983), 1, + STATE(991), 1, sym__maybe_function_expression, - STATE(984), 1, + STATE(992), 1, sym_identifier, - STATE(1076), 1, + STATE(1084), 1, sym__record_update_record, - STATE(1077), 1, + STATE(1085), 1, sym__record_update_remote_record, ACTIONS(43), 2, sym_string, sym_float, - STATE(255), 3, + STATE(254), 3, sym_record, sym_remote_record, sym_record_update, @@ -10875,14 +10800,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(251), 6, + STATE(248), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(287), 8, + STATE(278), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -10891,14 +10816,13 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [7976] = 3, + [7821] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(250), 1, - anon_sym_LPAREN, - ACTIONS(248), 44, + ACTIONS(244), 45, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_COMMA, anon_sym_SLASH, anon_sym_POUND, @@ -10941,16 +10865,16 @@ static const uint16_t ts_small_parse_table[] = { sym__binary, sym__name, sym__upname, - [8029] = 2, + [7872] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(252), 45, + ACTIONS(246), 45, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_COMMA, anon_sym_SLASH, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_GT_GT, @@ -10990,7 +10914,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary, sym__name, sym__upname, - [8080] = 28, + [7923] = 28, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(21), 1, @@ -11017,30 +10941,30 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(51), 1, sym__upname, - ACTIONS(254), 1, - anon_sym_RBRACK, - STATE(271), 1, - sym_tuple, - STATE(272), 1, + ACTIONS(248), 1, + anon_sym_DOT_DOT, + STATE(255), 1, sym_anonymous_function, - STATE(310), 1, + STATE(270), 1, + sym_tuple, + STATE(308), 1, sym__expression, - STATE(869), 1, + STATE(877), 1, sym__maybe_record_expression, - STATE(981), 1, + STATE(989), 1, sym__maybe_tuple_expression, - STATE(983), 1, + STATE(991), 1, sym__maybe_function_expression, - STATE(984), 1, + STATE(992), 1, sym_identifier, - STATE(1076), 1, + STATE(1084), 1, sym__record_update_record, - STATE(1077), 1, + STATE(1085), 1, sym__record_update_remote_record, ACTIONS(43), 2, sym_string, sym_float, - STATE(255), 3, + STATE(254), 3, sym_record, sym_remote_record, sym_record_update, @@ -11049,14 +10973,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(251), 6, + STATE(248), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(287), 8, + STATE(278), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -11065,56 +10989,82 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [8183] = 2, + [8026] = 28, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(256), 45, + ACTIONS(21), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_SLASH, + ACTIONS(23), 1, anon_sym_POUND, - anon_sym_LPAREN, + ACTIONS(27), 1, anon_sym_LBRACK, + ACTIONS(29), 1, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, + ACTIONS(31), 1, anon_sym_DASH, + ACTIONS(33), 1, anon_sym_fn, - anon_sym_try, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, + ACTIONS(35), 1, anon_sym_todo, + ACTIONS(37), 1, anon_sym_case, + ACTIONS(39), 1, anon_sym_let, + ACTIONS(41), 1, anon_sym_assert, + ACTIONS(49), 1, + sym__name, + ACTIONS(51), 1, + sym__upname, + ACTIONS(250), 1, + anon_sym_RPAREN, + STATE(255), 1, + sym_anonymous_function, + STATE(270), 1, + sym_tuple, + STATE(309), 1, + sym__expression, + STATE(877), 1, + sym__maybe_record_expression, + STATE(989), 1, + sym__maybe_tuple_expression, + STATE(991), 1, + sym__maybe_function_expression, + STATE(992), 1, + sym_identifier, + STATE(1084), 1, + sym__record_update_record, + STATE(1085), 1, + sym__record_update_remote_record, + ACTIONS(43), 2, sym_string, sym_float, + STATE(254), 3, + sym_record, + sym_remote_record, + sym_record_update, + ACTIONS(45), 4, sym__hex, sym__decimal, sym__octal, sym__binary, - sym__name, - sym__upname, - [8234] = 28, + STATE(248), 6, + sym_expression_group, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + sym_var, + STATE(278), 8, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_list, + sym__expression_bit_string, + sym_let, + sym_assert, + sym_integer, + [8129] = 28, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(21), 1, @@ -11141,30 +11091,30 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(51), 1, sym__upname, - ACTIONS(258), 1, - anon_sym_RPAREN, - STATE(271), 1, - sym_tuple, - STATE(272), 1, + ACTIONS(252), 1, + anon_sym_DOT_DOT, + STATE(255), 1, sym_anonymous_function, - STATE(316), 1, + STATE(270), 1, + sym_tuple, + STATE(308), 1, sym__expression, - STATE(869), 1, + STATE(877), 1, sym__maybe_record_expression, - STATE(981), 1, + STATE(989), 1, sym__maybe_tuple_expression, - STATE(983), 1, + STATE(991), 1, sym__maybe_function_expression, - STATE(984), 1, + STATE(992), 1, sym_identifier, - STATE(1076), 1, + STATE(1084), 1, sym__record_update_record, - STATE(1077), 1, + STATE(1085), 1, sym__record_update_remote_record, ACTIONS(43), 2, sym_string, sym_float, - STATE(255), 3, + STATE(254), 3, sym_record, sym_remote_record, sym_record_update, @@ -11173,14 +11123,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(251), 6, + STATE(248), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(287), 8, + STATE(278), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -11189,7 +11139,7 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [8337] = 28, + [8232] = 28, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(21), 1, @@ -11216,30 +11166,30 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(51), 1, sym__upname, - STATE(271), 1, - sym_tuple, - STATE(272), 1, + ACTIONS(254), 1, + anon_sym_DOT_DOT, + STATE(255), 1, sym_anonymous_function, - STATE(313), 1, + STATE(270), 1, + sym_tuple, + STATE(308), 1, sym__expression, - STATE(869), 1, + STATE(877), 1, sym__maybe_record_expression, - STATE(981), 1, + STATE(989), 1, sym__maybe_tuple_expression, - STATE(983), 1, + STATE(991), 1, sym__maybe_function_expression, - STATE(984), 1, + STATE(992), 1, sym_identifier, - STATE(1026), 1, - sym_case_subjects, - STATE(1076), 1, + STATE(1084), 1, sym__record_update_record, - STATE(1077), 1, + STATE(1085), 1, sym__record_update_remote_record, ACTIONS(43), 2, sym_string, sym_float, - STATE(255), 3, + STATE(254), 3, sym_record, sym_remote_record, sym_record_update, @@ -11248,14 +11198,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(251), 6, + STATE(248), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(287), 8, + STATE(278), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -11264,7 +11214,7 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [8440] = 28, + [8335] = 28, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(21), 1, @@ -11291,30 +11241,30 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(51), 1, sym__upname, - ACTIONS(260), 1, - anon_sym_RBRACK, - STATE(271), 1, - sym_tuple, - STATE(272), 1, + ACTIONS(256), 1, + anon_sym_DOT_DOT, + STATE(255), 1, sym_anonymous_function, - STATE(328), 1, + STATE(270), 1, + sym_tuple, + STATE(308), 1, sym__expression, - STATE(869), 1, + STATE(877), 1, sym__maybe_record_expression, - STATE(981), 1, + STATE(989), 1, sym__maybe_tuple_expression, - STATE(983), 1, + STATE(991), 1, sym__maybe_function_expression, - STATE(984), 1, + STATE(992), 1, sym_identifier, - STATE(1076), 1, + STATE(1084), 1, sym__record_update_record, - STATE(1077), 1, + STATE(1085), 1, sym__record_update_remote_record, ACTIONS(43), 2, sym_string, sym_float, - STATE(255), 3, + STATE(254), 3, sym_record, sym_remote_record, sym_record_update, @@ -11323,14 +11273,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(251), 6, + STATE(248), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(287), 8, + STATE(278), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -11339,65 +11289,91 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [8543] = 2, + [8438] = 28, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(262), 45, + ACTIONS(21), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_SLASH, + ACTIONS(23), 1, anon_sym_POUND, + ACTIONS(27), 1, anon_sym_LBRACK, + ACTIONS(29), 1, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, + ACTIONS(31), 1, anon_sym_DASH, + ACTIONS(33), 1, anon_sym_fn, - anon_sym_try, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, + ACTIONS(35), 1, anon_sym_todo, + ACTIONS(37), 1, anon_sym_case, + ACTIONS(39), 1, anon_sym_let, + ACTIONS(41), 1, anon_sym_assert, + ACTIONS(49), 1, + sym__name, + ACTIONS(51), 1, + sym__upname, + ACTIONS(258), 1, + anon_sym_DOT_DOT, + STATE(255), 1, + sym_anonymous_function, + STATE(270), 1, + sym_tuple, + STATE(308), 1, + sym__expression, + STATE(877), 1, + sym__maybe_record_expression, + STATE(989), 1, + sym__maybe_tuple_expression, + STATE(991), 1, + sym__maybe_function_expression, + STATE(992), 1, + sym_identifier, + STATE(1084), 1, + sym__record_update_record, + STATE(1085), 1, + sym__record_update_remote_record, + ACTIONS(43), 2, sym_string, sym_float, + STATE(254), 3, + sym_record, + sym_remote_record, + sym_record_update, + ACTIONS(45), 4, sym__hex, sym__decimal, sym__octal, sym__binary, - sym__name, - sym__upname, - [8594] = 2, + STATE(248), 6, + sym_expression_group, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + sym_var, + STATE(278), 8, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_list, + sym__expression_bit_string, + sym_let, + sym_assert, + sym_integer, + [8541] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(264), 45, + ACTIONS(260), 45, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_COMMA, anon_sym_SLASH, anon_sym_POUND, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_GT_GT, @@ -11437,7 +11413,157 @@ static const uint16_t ts_small_parse_table[] = { sym__binary, sym__name, sym__upname, - [8645] = 2, + [8592] = 28, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_POUND, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(29), 1, + anon_sym_LT_LT, + ACTIONS(31), 1, + anon_sym_DASH, + ACTIONS(33), 1, + anon_sym_fn, + ACTIONS(35), 1, + anon_sym_todo, + ACTIONS(37), 1, + anon_sym_case, + ACTIONS(39), 1, + anon_sym_let, + ACTIONS(41), 1, + anon_sym_assert, + ACTIONS(49), 1, + sym__name, + ACTIONS(51), 1, + sym__upname, + ACTIONS(262), 1, + anon_sym_RBRACK, + STATE(255), 1, + sym_anonymous_function, + STATE(270), 1, + sym_tuple, + STATE(326), 1, + sym__expression, + STATE(877), 1, + sym__maybe_record_expression, + STATE(989), 1, + sym__maybe_tuple_expression, + STATE(991), 1, + sym__maybe_function_expression, + STATE(992), 1, + sym_identifier, + STATE(1084), 1, + sym__record_update_record, + STATE(1085), 1, + sym__record_update_remote_record, + ACTIONS(43), 2, + sym_string, + sym_float, + STATE(254), 3, + sym_record, + sym_remote_record, + sym_record_update, + ACTIONS(45), 4, + sym__hex, + sym__decimal, + sym__octal, + sym__binary, + STATE(248), 6, + sym_expression_group, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + sym_var, + STATE(278), 8, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_list, + sym__expression_bit_string, + sym_let, + sym_assert, + sym_integer, + [8695] = 28, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_POUND, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(29), 1, + anon_sym_LT_LT, + ACTIONS(31), 1, + anon_sym_DASH, + ACTIONS(33), 1, + anon_sym_fn, + ACTIONS(35), 1, + anon_sym_todo, + ACTIONS(37), 1, + anon_sym_case, + ACTIONS(39), 1, + anon_sym_let, + ACTIONS(41), 1, + anon_sym_assert, + ACTIONS(49), 1, + sym__name, + ACTIONS(51), 1, + sym__upname, + ACTIONS(264), 1, + anon_sym_DOT_DOT, + STATE(255), 1, + sym_anonymous_function, + STATE(270), 1, + sym_tuple, + STATE(308), 1, + sym__expression, + STATE(877), 1, + sym__maybe_record_expression, + STATE(989), 1, + sym__maybe_tuple_expression, + STATE(991), 1, + sym__maybe_function_expression, + STATE(992), 1, + sym_identifier, + STATE(1084), 1, + sym__record_update_record, + STATE(1085), 1, + sym__record_update_remote_record, + ACTIONS(43), 2, + sym_string, + sym_float, + STATE(254), 3, + sym_record, + sym_remote_record, + sym_record_update, + ACTIONS(45), 4, + sym__hex, + sym__decimal, + sym__octal, + sym__binary, + STATE(248), 6, + sym_expression_group, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + sym_var, + STATE(278), 8, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_list, + sym__expression_bit_string, + sym_let, + sym_assert, + sym_integer, + [8798] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(266), 45, @@ -11486,7 +11612,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary, sym__name, sym__upname, - [8696] = 28, + [8849] = 28, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(21), 1, @@ -11514,29 +11640,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(51), 1, sym__upname, ACTIONS(268), 1, - anon_sym_RBRACK, - STATE(271), 1, - sym_tuple, - STATE(272), 1, + anon_sym_RPAREN, + STATE(255), 1, sym_anonymous_function, - STATE(325), 1, + STATE(270), 1, + sym_tuple, + STATE(311), 1, sym__expression, - STATE(869), 1, + STATE(877), 1, sym__maybe_record_expression, - STATE(981), 1, + STATE(989), 1, sym__maybe_tuple_expression, - STATE(983), 1, + STATE(991), 1, sym__maybe_function_expression, - STATE(984), 1, + STATE(992), 1, sym_identifier, - STATE(1076), 1, + STATE(1084), 1, sym__record_update_record, - STATE(1077), 1, + STATE(1085), 1, sym__record_update_remote_record, ACTIONS(43), 2, sym_string, sym_float, - STATE(255), 3, + STATE(254), 3, sym_record, sym_remote_record, sym_record_update, @@ -11545,14 +11671,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(251), 6, + STATE(248), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(287), 8, + STATE(278), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -11561,13 +11687,14 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [8799] = 2, + [8952] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(270), 45, + ACTIONS(272), 1, + anon_sym_LPAREN, + ACTIONS(270), 44, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_COMMA, anon_sym_SLASH, anon_sym_POUND, @@ -11610,10 +11737,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary, sym__name, sym__upname, - [8850] = 2, + [9005] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(272), 45, + ACTIONS(274), 45, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, @@ -11659,7 +11786,56 @@ static const uint16_t ts_small_parse_table[] = { sym__binary, sym__name, sym__upname, - [8901] = 28, + [9056] = 2, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(276), 45, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SLASH, + anon_sym_POUND, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_DASH, + anon_sym_fn, + anon_sym_try, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + sym_string, + sym_float, + sym__hex, + sym__decimal, + sym__octal, + sym__binary, + sym__name, + sym__upname, + [9107] = 27, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(21), 1, @@ -11686,30 +11862,28 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(51), 1, sym__upname, - ACTIONS(274), 1, - anon_sym_DOT_DOT, - STATE(271), 1, - sym_tuple, - STATE(272), 1, + STATE(255), 1, sym_anonymous_function, - STATE(305), 1, + STATE(270), 1, + sym_tuple, + STATE(348), 1, sym__expression, - STATE(869), 1, + STATE(877), 1, sym__maybe_record_expression, - STATE(981), 1, + STATE(989), 1, sym__maybe_tuple_expression, - STATE(983), 1, + STATE(991), 1, sym__maybe_function_expression, - STATE(984), 1, + STATE(992), 1, sym_identifier, - STATE(1076), 1, + STATE(1084), 1, sym__record_update_record, - STATE(1077), 1, + STATE(1085), 1, sym__record_update_remote_record, ACTIONS(43), 2, sym_string, sym_float, - STATE(255), 3, + STATE(254), 3, sym_record, sym_remote_record, sym_record_update, @@ -11718,14 +11892,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(251), 6, + STATE(248), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(287), 8, + STATE(278), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -11734,82 +11908,55 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [9004] = 28, + [9207] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(21), 1, + ACTIONS(278), 44, anon_sym_LBRACE, - ACTIONS(23), 1, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SLASH, anon_sym_POUND, - ACTIONS(27), 1, anon_sym_LBRACK, - ACTIONS(29), 1, anon_sym_LT_LT, - ACTIONS(31), 1, + anon_sym_GT_GT, + anon_sym_COLON, anon_sym_DASH, - ACTIONS(33), 1, anon_sym_fn, - ACTIONS(35), 1, - anon_sym_todo, - ACTIONS(37), 1, - anon_sym_case, - ACTIONS(39), 1, + anon_sym_try, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_todo, + anon_sym_case, anon_sym_let, - ACTIONS(41), 1, anon_sym_assert, - ACTIONS(49), 1, - sym__name, - ACTIONS(51), 1, - sym__upname, - ACTIONS(276), 1, - anon_sym_DOT_DOT, - STATE(271), 1, - sym_tuple, - STATE(272), 1, - sym_anonymous_function, - STATE(305), 1, - sym__expression, - STATE(869), 1, - sym__maybe_record_expression, - STATE(981), 1, - sym__maybe_tuple_expression, - STATE(983), 1, - sym__maybe_function_expression, - STATE(984), 1, - sym_identifier, - STATE(1076), 1, - sym__record_update_record, - STATE(1077), 1, - sym__record_update_remote_record, - ACTIONS(43), 2, sym_string, sym_float, - STATE(255), 3, - sym_record, - sym_remote_record, - sym_record_update, - ACTIONS(45), 4, sym__hex, sym__decimal, sym__octal, sym__binary, - STATE(251), 6, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - sym_var, - STATE(287), 8, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_integer, - [9107] = 27, + sym__name, + sym__upname, + [9257] = 27, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(21), 1, @@ -11836,28 +11983,28 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(51), 1, sym__upname, - STATE(271), 1, - sym_tuple, - STATE(272), 1, + STATE(255), 1, sym_anonymous_function, - STATE(303), 1, + STATE(270), 1, + sym_tuple, + STATE(350), 1, sym__expression, - STATE(869), 1, + STATE(877), 1, sym__maybe_record_expression, - STATE(981), 1, + STATE(989), 1, sym__maybe_tuple_expression, - STATE(983), 1, + STATE(991), 1, sym__maybe_function_expression, - STATE(984), 1, + STATE(992), 1, sym_identifier, - STATE(1076), 1, + STATE(1084), 1, sym__record_update_record, - STATE(1077), 1, + STATE(1085), 1, sym__record_update_remote_record, ACTIONS(43), 2, sym_string, sym_float, - STATE(255), 3, + STATE(254), 3, sym_record, sym_remote_record, sym_record_update, @@ -11866,14 +12013,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(251), 6, + STATE(248), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(287), 8, + STATE(278), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -11882,7 +12029,7 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [9207] = 27, + [9357] = 27, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(21), 1, @@ -11901,125 +12048,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_todo, ACTIONS(37), 1, anon_sym_case, - ACTIONS(51), 1, - sym__upname, - ACTIONS(278), 1, - anon_sym_let, - ACTIONS(280), 1, - anon_sym_assert, - ACTIONS(282), 1, - sym__name, - STATE(271), 1, - sym_tuple, - STATE(272), 1, - sym_anonymous_function, - STATE(318), 1, - sym__expression, - STATE(869), 1, - sym__maybe_record_expression, - STATE(981), 1, - sym__maybe_tuple_expression, - STATE(983), 1, - sym__maybe_function_expression, - STATE(984), 1, - sym_identifier, - STATE(1076), 1, - sym__record_update_record, - STATE(1077), 1, - sym__record_update_remote_record, - ACTIONS(43), 2, - sym_string, - sym_float, - STATE(255), 3, - sym_record, - sym_remote_record, - sym_record_update, - ACTIONS(45), 4, - sym__hex, - sym__decimal, - sym__octal, - sym__binary, - STATE(251), 6, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - sym_var, - STATE(287), 8, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_integer, - [9307] = 27, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(286), 1, - anon_sym_POUND, - ACTIONS(288), 1, - anon_sym_LBRACK, - ACTIONS(290), 1, - anon_sym_LT_LT, - ACTIONS(292), 1, - anon_sym_DASH, - ACTIONS(294), 1, - anon_sym_fn, - ACTIONS(296), 1, - anon_sym_todo, - ACTIONS(298), 1, - anon_sym_case, - ACTIONS(300), 1, + ACTIONS(39), 1, anon_sym_let, - ACTIONS(302), 1, + ACTIONS(41), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(49), 1, sym__name, - ACTIONS(310), 1, + ACTIONS(51), 1, sym__upname, - STATE(206), 1, + STATE(255), 1, sym_anonymous_function, - STATE(208), 1, + STATE(270), 1, sym_tuple, - STATE(223), 1, + STATE(342), 1, sym__expression, - STATE(982), 1, + STATE(877), 1, sym__maybe_record_expression, - STATE(1006), 1, + STATE(989), 1, sym__maybe_tuple_expression, - STATE(1007), 1, + STATE(991), 1, sym__maybe_function_expression, - STATE(1008), 1, + STATE(992), 1, sym_identifier, - STATE(1078), 1, + STATE(1084), 1, sym__record_update_record, - STATE(1079), 1, + STATE(1085), 1, sym__record_update_remote_record, - ACTIONS(304), 2, + ACTIONS(43), 2, sym_string, sym_float, - STATE(199), 3, + STATE(254), 3, sym_record, sym_remote_record, sym_record_update, - ACTIONS(306), 4, + ACTIONS(45), 4, sym__hex, sym__decimal, sym__octal, sym__binary, - STATE(192), 6, + STATE(248), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(230), 8, + STATE(278), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -12028,10 +12102,10 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [9407] = 2, + [9457] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(312), 44, + ACTIONS(280), 44, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -12076,71 +12150,71 @@ static const uint16_t ts_small_parse_table[] = { sym__binary, sym__name, sym__upname, - [9457] = 27, + [9507] = 27, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(284), 1, + ACTIONS(282), 1, anon_sym_LBRACE, - ACTIONS(286), 1, + ACTIONS(284), 1, anon_sym_POUND, - ACTIONS(288), 1, + ACTIONS(286), 1, anon_sym_LBRACK, - ACTIONS(290), 1, + ACTIONS(288), 1, anon_sym_LT_LT, - ACTIONS(292), 1, + ACTIONS(290), 1, anon_sym_DASH, - ACTIONS(294), 1, + ACTIONS(292), 1, anon_sym_fn, - ACTIONS(296), 1, + ACTIONS(294), 1, anon_sym_todo, - ACTIONS(298), 1, + ACTIONS(296), 1, anon_sym_case, - ACTIONS(300), 1, + ACTIONS(298), 1, anon_sym_let, - ACTIONS(302), 1, + ACTIONS(300), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(306), 1, sym__name, - ACTIONS(310), 1, + ACTIONS(308), 1, sym__upname, - STATE(206), 1, + STATE(204), 1, sym_anonymous_function, - STATE(208), 1, + STATE(205), 1, sym_tuple, - STATE(234), 1, + STATE(222), 1, sym__expression, - STATE(982), 1, + STATE(990), 1, sym__maybe_record_expression, - STATE(1006), 1, + STATE(1014), 1, sym__maybe_tuple_expression, - STATE(1007), 1, + STATE(1015), 1, sym__maybe_function_expression, - STATE(1008), 1, + STATE(1016), 1, sym_identifier, - STATE(1078), 1, + STATE(1086), 1, sym__record_update_record, - STATE(1079), 1, + STATE(1087), 1, sym__record_update_remote_record, - ACTIONS(304), 2, + ACTIONS(302), 2, sym_string, sym_float, - STATE(199), 3, + STATE(206), 3, sym_record, sym_remote_record, sym_record_update, - ACTIONS(306), 4, + ACTIONS(304), 4, sym__hex, sym__decimal, sym__octal, sym__binary, - STATE(192), 6, + STATE(195), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(230), 8, + STATE(228), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -12149,71 +12223,71 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [9557] = 27, + [9607] = 27, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(284), 1, + ACTIONS(282), 1, anon_sym_LBRACE, - ACTIONS(286), 1, + ACTIONS(284), 1, anon_sym_POUND, - ACTIONS(288), 1, + ACTIONS(286), 1, anon_sym_LBRACK, - ACTIONS(290), 1, + ACTIONS(288), 1, anon_sym_LT_LT, - ACTIONS(292), 1, + ACTIONS(290), 1, anon_sym_DASH, - ACTIONS(294), 1, + ACTIONS(292), 1, anon_sym_fn, - ACTIONS(296), 1, + ACTIONS(294), 1, anon_sym_todo, - ACTIONS(298), 1, + ACTIONS(296), 1, anon_sym_case, - ACTIONS(300), 1, + ACTIONS(298), 1, anon_sym_let, - ACTIONS(302), 1, + ACTIONS(300), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(306), 1, sym__name, - ACTIONS(310), 1, + ACTIONS(308), 1, sym__upname, - STATE(206), 1, + STATE(204), 1, sym_anonymous_function, - STATE(208), 1, + STATE(205), 1, sym_tuple, - STATE(229), 1, + STATE(218), 1, sym__expression, - STATE(982), 1, + STATE(990), 1, sym__maybe_record_expression, - STATE(1006), 1, + STATE(1014), 1, sym__maybe_tuple_expression, - STATE(1007), 1, + STATE(1015), 1, sym__maybe_function_expression, - STATE(1008), 1, + STATE(1016), 1, sym_identifier, - STATE(1078), 1, + STATE(1086), 1, sym__record_update_record, - STATE(1079), 1, + STATE(1087), 1, sym__record_update_remote_record, - ACTIONS(304), 2, + ACTIONS(302), 2, sym_string, sym_float, - STATE(199), 3, + STATE(206), 3, sym_record, sym_remote_record, sym_record_update, - ACTIONS(306), 4, + ACTIONS(304), 4, sym__hex, sym__decimal, sym__octal, sym__binary, - STATE(192), 6, + STATE(195), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(230), 8, + STATE(228), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -12222,10 +12296,84 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [9657] = 2, + [9707] = 28, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_POUND, + ACTIONS(71), 1, + anon_sym_LBRACK, + ACTIONS(73), 1, + anon_sym_LT_LT, + ACTIONS(75), 1, + anon_sym_DASH, + ACTIONS(77), 1, + anon_sym_fn, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_case, + ACTIONS(93), 1, + sym__name, + ACTIONS(95), 1, + sym__upname, + ACTIONS(310), 1, + anon_sym_GT_GT, + ACTIONS(312), 1, + anon_sym_let, + ACTIONS(314), 1, + anon_sym_assert, + STATE(70), 1, + sym_tuple, + STATE(71), 1, + sym_anonymous_function, + STATE(699), 1, + sym_expression_bit_string_segment, + STATE(888), 1, + sym__record_update_record, + STATE(892), 1, + sym__record_update_remote_record, + STATE(893), 1, + sym__maybe_tuple_expression, + STATE(895), 1, + sym__maybe_function_expression, + STATE(896), 1, + sym_identifier, + STATE(941), 1, + sym__maybe_record_expression, + ACTIONS(316), 2, + sym_string, + sym_float, + STATE(78), 3, + sym_record, + sym_remote_record, + sym_record_update, + ACTIONS(91), 4, + sym__hex, + sym__decimal, + sym__octal, + sym__binary, + STATE(63), 6, + sym_expression_group, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + sym_var, + STATE(639), 7, + sym__expression_unit, + sym_todo, + sym_list, + sym__expression_bit_string, + sym_let, + sym_assert, + sym_integer, + [9809] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(314), 44, + ACTIONS(318), 44, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -12270,71 +12418,119 @@ static const uint16_t ts_small_parse_table[] = { sym__binary, sym__name, sym__upname, - [9707] = 27, + [9859] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(284), 1, + ACTIONS(320), 44, anon_sym_LBRACE, - ACTIONS(286), 1, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SLASH, anon_sym_POUND, - ACTIONS(288), 1, anon_sym_LBRACK, - ACTIONS(290), 1, anon_sym_LT_LT, - ACTIONS(292), 1, + anon_sym_GT_GT, + anon_sym_COLON, anon_sym_DASH, - ACTIONS(294), 1, anon_sym_fn, - ACTIONS(296), 1, + anon_sym_try, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, anon_sym_todo, - ACTIONS(298), 1, anon_sym_case, - ACTIONS(300), 1, anon_sym_let, - ACTIONS(302), 1, anon_sym_assert, - ACTIONS(308), 1, + sym_string, + sym_float, + sym__hex, + sym__decimal, + sym__octal, + sym__binary, sym__name, - ACTIONS(310), 1, sym__upname, - STATE(206), 1, - sym_anonymous_function, - STATE(208), 1, + [9909] = 27, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_POUND, + ACTIONS(71), 1, + anon_sym_LBRACK, + ACTIONS(73), 1, + anon_sym_LT_LT, + ACTIONS(75), 1, + anon_sym_DASH, + ACTIONS(77), 1, + anon_sym_fn, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_case, + ACTIONS(85), 1, + anon_sym_let, + ACTIONS(87), 1, + anon_sym_assert, + ACTIONS(93), 1, + sym__name, + ACTIONS(95), 1, + sym__upname, + STATE(70), 1, sym_tuple, - STATE(220), 1, + STATE(71), 1, + sym_anonymous_function, + STATE(182), 1, sym__expression, - STATE(982), 1, - sym__maybe_record_expression, - STATE(1006), 1, + STATE(888), 1, + sym__record_update_record, + STATE(892), 1, + sym__record_update_remote_record, + STATE(893), 1, sym__maybe_tuple_expression, - STATE(1007), 1, + STATE(894), 1, + sym__maybe_record_expression, + STATE(895), 1, sym__maybe_function_expression, - STATE(1008), 1, + STATE(896), 1, sym_identifier, - STATE(1078), 1, - sym__record_update_record, - STATE(1079), 1, - sym__record_update_remote_record, - ACTIONS(304), 2, + ACTIONS(89), 2, sym_string, sym_float, - STATE(199), 3, + STATE(78), 3, sym_record, sym_remote_record, sym_record_update, - ACTIONS(306), 4, + ACTIONS(91), 4, sym__hex, sym__decimal, sym__octal, sym__binary, - STATE(192), 6, + STATE(63), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(230), 8, + STATE(178), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -12343,7 +12539,55 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [9807] = 27, + [10009] = 2, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(322), 44, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SLASH, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_DASH, + anon_sym_fn, + anon_sym_try, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + sym_string, + sym_float, + sym__hex, + sym__decimal, + sym__octal, + sym__binary, + sym__name, + sym__upname, + [10059] = 27, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(21), 1, @@ -12370,28 +12614,28 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(51), 1, sym__upname, - STATE(271), 1, - sym_tuple, - STATE(272), 1, + STATE(255), 1, sym_anonymous_function, - STATE(356), 1, + STATE(270), 1, + sym_tuple, + STATE(347), 1, sym__expression, - STATE(869), 1, + STATE(877), 1, sym__maybe_record_expression, - STATE(981), 1, + STATE(989), 1, sym__maybe_tuple_expression, - STATE(983), 1, + STATE(991), 1, sym__maybe_function_expression, - STATE(984), 1, + STATE(992), 1, sym_identifier, - STATE(1076), 1, + STATE(1084), 1, sym__record_update_record, - STATE(1077), 1, + STATE(1085), 1, sym__record_update_remote_record, ACTIONS(43), 2, sym_string, sym_float, - STATE(255), 3, + STATE(254), 3, sym_record, sym_remote_record, sym_record_update, @@ -12400,14 +12644,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(251), 6, + STATE(248), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(287), 8, + STATE(278), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -12416,71 +12660,71 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [9907] = 27, + [10159] = 27, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(21), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(23), 1, + ACTIONS(69), 1, anon_sym_POUND, - ACTIONS(27), 1, + ACTIONS(71), 1, anon_sym_LBRACK, - ACTIONS(29), 1, + ACTIONS(73), 1, anon_sym_LT_LT, - ACTIONS(31), 1, + ACTIONS(75), 1, anon_sym_DASH, - ACTIONS(33), 1, + ACTIONS(77), 1, anon_sym_fn, - ACTIONS(35), 1, + ACTIONS(81), 1, anon_sym_todo, - ACTIONS(37), 1, + ACTIONS(83), 1, anon_sym_case, - ACTIONS(39), 1, + ACTIONS(85), 1, anon_sym_let, - ACTIONS(41), 1, + ACTIONS(87), 1, anon_sym_assert, - ACTIONS(49), 1, + ACTIONS(93), 1, sym__name, - ACTIONS(51), 1, + ACTIONS(95), 1, sym__upname, - STATE(271), 1, + STATE(70), 1, sym_tuple, - STATE(272), 1, + STATE(71), 1, sym_anonymous_function, - STATE(354), 1, + STATE(172), 1, sym__expression, - STATE(869), 1, - sym__maybe_record_expression, - STATE(981), 1, + STATE(888), 1, + sym__record_update_record, + STATE(892), 1, + sym__record_update_remote_record, + STATE(893), 1, sym__maybe_tuple_expression, - STATE(983), 1, + STATE(894), 1, + sym__maybe_record_expression, + STATE(895), 1, sym__maybe_function_expression, - STATE(984), 1, + STATE(896), 1, sym_identifier, - STATE(1076), 1, - sym__record_update_record, - STATE(1077), 1, - sym__record_update_remote_record, - ACTIONS(43), 2, + ACTIONS(89), 2, sym_string, sym_float, - STATE(255), 3, + STATE(78), 3, sym_record, sym_remote_record, sym_record_update, - ACTIONS(45), 4, + ACTIONS(91), 4, sym__hex, sym__decimal, sym__octal, sym__binary, - STATE(251), 6, + STATE(63), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(287), 8, + STATE(178), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -12489,71 +12733,71 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [10007] = 27, + [10259] = 27, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(21), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(23), 1, + ACTIONS(69), 1, anon_sym_POUND, - ACTIONS(27), 1, + ACTIONS(71), 1, anon_sym_LBRACK, - ACTIONS(29), 1, + ACTIONS(73), 1, anon_sym_LT_LT, - ACTIONS(31), 1, + ACTIONS(75), 1, anon_sym_DASH, - ACTIONS(33), 1, + ACTIONS(77), 1, anon_sym_fn, - ACTIONS(35), 1, + ACTIONS(81), 1, anon_sym_todo, - ACTIONS(37), 1, + ACTIONS(83), 1, anon_sym_case, - ACTIONS(39), 1, + ACTIONS(85), 1, anon_sym_let, - ACTIONS(41), 1, + ACTIONS(87), 1, anon_sym_assert, - ACTIONS(49), 1, + ACTIONS(93), 1, sym__name, - ACTIONS(51), 1, + ACTIONS(95), 1, sym__upname, - STATE(271), 1, + STATE(70), 1, sym_tuple, - STATE(272), 1, + STATE(71), 1, sym_anonymous_function, - STATE(353), 1, + STATE(176), 1, sym__expression, - STATE(869), 1, - sym__maybe_record_expression, - STATE(981), 1, + STATE(888), 1, + sym__record_update_record, + STATE(892), 1, + sym__record_update_remote_record, + STATE(893), 1, sym__maybe_tuple_expression, - STATE(983), 1, + STATE(894), 1, + sym__maybe_record_expression, + STATE(895), 1, sym__maybe_function_expression, - STATE(984), 1, + STATE(896), 1, sym_identifier, - STATE(1076), 1, - sym__record_update_record, - STATE(1077), 1, - sym__record_update_remote_record, - ACTIONS(43), 2, + ACTIONS(89), 2, sym_string, sym_float, - STATE(255), 3, + STATE(78), 3, sym_record, sym_remote_record, sym_record_update, - ACTIONS(45), 4, + ACTIONS(91), 4, sym__hex, sym__decimal, sym__octal, sym__binary, - STATE(251), 6, + STATE(63), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(287), 8, + STATE(178), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -12562,71 +12806,71 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [10107] = 27, + [10359] = 27, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(284), 1, + ACTIONS(282), 1, anon_sym_LBRACE, - ACTIONS(286), 1, + ACTIONS(284), 1, anon_sym_POUND, - ACTIONS(288), 1, + ACTIONS(286), 1, anon_sym_LBRACK, - ACTIONS(290), 1, + ACTIONS(288), 1, anon_sym_LT_LT, - ACTIONS(292), 1, + ACTIONS(290), 1, anon_sym_DASH, - ACTIONS(294), 1, + ACTIONS(292), 1, anon_sym_fn, - ACTIONS(296), 1, + ACTIONS(294), 1, anon_sym_todo, - ACTIONS(298), 1, + ACTIONS(296), 1, anon_sym_case, - ACTIONS(300), 1, + ACTIONS(298), 1, anon_sym_let, - ACTIONS(302), 1, + ACTIONS(300), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(306), 1, sym__name, - ACTIONS(310), 1, + ACTIONS(308), 1, sym__upname, - STATE(206), 1, + STATE(204), 1, sym_anonymous_function, - STATE(208), 1, + STATE(205), 1, sym_tuple, - STATE(233), 1, + STATE(217), 1, sym__expression, - STATE(982), 1, + STATE(990), 1, sym__maybe_record_expression, - STATE(1006), 1, + STATE(1014), 1, sym__maybe_tuple_expression, - STATE(1007), 1, + STATE(1015), 1, sym__maybe_function_expression, - STATE(1008), 1, + STATE(1016), 1, sym_identifier, - STATE(1078), 1, + STATE(1086), 1, sym__record_update_record, - STATE(1079), 1, + STATE(1087), 1, sym__record_update_remote_record, - ACTIONS(304), 2, + ACTIONS(302), 2, sym_string, sym_float, - STATE(199), 3, + STATE(206), 3, sym_record, sym_remote_record, sym_record_update, - ACTIONS(306), 4, + ACTIONS(304), 4, sym__hex, sym__decimal, sym__octal, sym__binary, - STATE(192), 6, + STATE(195), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(230), 8, + STATE(228), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -12635,71 +12879,71 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [10207] = 27, + [10459] = 27, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(21), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(23), 1, + ACTIONS(69), 1, anon_sym_POUND, - ACTIONS(27), 1, + ACTIONS(71), 1, anon_sym_LBRACK, - ACTIONS(29), 1, + ACTIONS(73), 1, anon_sym_LT_LT, - ACTIONS(31), 1, + ACTIONS(75), 1, anon_sym_DASH, - ACTIONS(33), 1, + ACTIONS(77), 1, anon_sym_fn, - ACTIONS(35), 1, + ACTIONS(81), 1, anon_sym_todo, - ACTIONS(37), 1, + ACTIONS(83), 1, anon_sym_case, - ACTIONS(39), 1, + ACTIONS(85), 1, anon_sym_let, - ACTIONS(41), 1, + ACTIONS(87), 1, anon_sym_assert, - ACTIONS(49), 1, + ACTIONS(93), 1, sym__name, - ACTIONS(51), 1, + ACTIONS(95), 1, sym__upname, - STATE(271), 1, + STATE(70), 1, sym_tuple, - STATE(272), 1, + STATE(71), 1, sym_anonymous_function, - STATE(345), 1, + STATE(181), 1, sym__expression, - STATE(869), 1, - sym__maybe_record_expression, - STATE(981), 1, + STATE(888), 1, + sym__record_update_record, + STATE(892), 1, + sym__record_update_remote_record, + STATE(893), 1, sym__maybe_tuple_expression, - STATE(983), 1, + STATE(894), 1, + sym__maybe_record_expression, + STATE(895), 1, sym__maybe_function_expression, - STATE(984), 1, + STATE(896), 1, sym_identifier, - STATE(1076), 1, - sym__record_update_record, - STATE(1077), 1, - sym__record_update_remote_record, - ACTIONS(43), 2, + ACTIONS(89), 2, sym_string, sym_float, - STATE(255), 3, + STATE(78), 3, sym_record, sym_remote_record, sym_record_update, - ACTIONS(45), 4, + ACTIONS(91), 4, sym__hex, sym__decimal, sym__octal, sym__binary, - STATE(251), 6, + STATE(63), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(287), 8, + STATE(178), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -12708,71 +12952,71 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [10307] = 27, + [10559] = 27, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(21), 1, + ACTIONS(282), 1, anon_sym_LBRACE, - ACTIONS(23), 1, + ACTIONS(284), 1, anon_sym_POUND, - ACTIONS(27), 1, + ACTIONS(286), 1, anon_sym_LBRACK, - ACTIONS(29), 1, + ACTIONS(288), 1, anon_sym_LT_LT, - ACTIONS(31), 1, + ACTIONS(290), 1, anon_sym_DASH, - ACTIONS(33), 1, + ACTIONS(292), 1, anon_sym_fn, - ACTIONS(35), 1, + ACTIONS(294), 1, anon_sym_todo, - ACTIONS(37), 1, + ACTIONS(296), 1, anon_sym_case, - ACTIONS(39), 1, + ACTIONS(298), 1, anon_sym_let, - ACTIONS(41), 1, + ACTIONS(300), 1, anon_sym_assert, - ACTIONS(49), 1, + ACTIONS(306), 1, sym__name, - ACTIONS(51), 1, + ACTIONS(308), 1, sym__upname, - STATE(271), 1, - sym_tuple, - STATE(272), 1, + STATE(204), 1, sym_anonymous_function, - STATE(352), 1, + STATE(205), 1, + sym_tuple, + STATE(235), 1, sym__expression, - STATE(869), 1, + STATE(990), 1, sym__maybe_record_expression, - STATE(981), 1, + STATE(1014), 1, sym__maybe_tuple_expression, - STATE(983), 1, + STATE(1015), 1, sym__maybe_function_expression, - STATE(984), 1, + STATE(1016), 1, sym_identifier, - STATE(1076), 1, + STATE(1086), 1, sym__record_update_record, - STATE(1077), 1, + STATE(1087), 1, sym__record_update_remote_record, - ACTIONS(43), 2, + ACTIONS(302), 2, sym_string, sym_float, - STATE(255), 3, + STATE(206), 3, sym_record, sym_remote_record, sym_record_update, - ACTIONS(45), 4, + ACTIONS(304), 4, sym__hex, sym__decimal, sym__octal, sym__binary, - STATE(251), 6, + STATE(195), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(287), 8, + STATE(228), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -12781,71 +13025,71 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [10407] = 27, + [10659] = 27, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(21), 1, + ACTIONS(282), 1, anon_sym_LBRACE, - ACTIONS(23), 1, + ACTIONS(284), 1, anon_sym_POUND, - ACTIONS(27), 1, + ACTIONS(286), 1, anon_sym_LBRACK, - ACTIONS(29), 1, + ACTIONS(288), 1, anon_sym_LT_LT, - ACTIONS(31), 1, + ACTIONS(290), 1, anon_sym_DASH, - ACTIONS(33), 1, + ACTIONS(292), 1, anon_sym_fn, - ACTIONS(35), 1, + ACTIONS(294), 1, anon_sym_todo, - ACTIONS(37), 1, + ACTIONS(296), 1, anon_sym_case, - ACTIONS(39), 1, + ACTIONS(298), 1, anon_sym_let, - ACTIONS(41), 1, + ACTIONS(300), 1, anon_sym_assert, - ACTIONS(49), 1, + ACTIONS(306), 1, sym__name, - ACTIONS(51), 1, + ACTIONS(308), 1, sym__upname, - STATE(271), 1, - sym_tuple, - STATE(272), 1, + STATE(204), 1, sym_anonymous_function, - STATE(355), 1, + STATE(205), 1, + sym_tuple, + STATE(237), 1, sym__expression, - STATE(869), 1, + STATE(990), 1, sym__maybe_record_expression, - STATE(981), 1, + STATE(1014), 1, sym__maybe_tuple_expression, - STATE(983), 1, + STATE(1015), 1, sym__maybe_function_expression, - STATE(984), 1, + STATE(1016), 1, sym_identifier, - STATE(1076), 1, + STATE(1086), 1, sym__record_update_record, - STATE(1077), 1, + STATE(1087), 1, sym__record_update_remote_record, - ACTIONS(43), 2, + ACTIONS(302), 2, sym_string, sym_float, - STATE(255), 3, + STATE(206), 3, sym_record, sym_remote_record, sym_record_update, - ACTIONS(45), 4, + ACTIONS(304), 4, sym__hex, sym__decimal, sym__octal, sym__binary, - STATE(251), 6, + STATE(195), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(287), 8, + STATE(228), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -12854,71 +13098,71 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [10507] = 27, + [10759] = 27, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(284), 1, + ACTIONS(282), 1, anon_sym_LBRACE, - ACTIONS(286), 1, + ACTIONS(284), 1, anon_sym_POUND, - ACTIONS(288), 1, + ACTIONS(286), 1, anon_sym_LBRACK, - ACTIONS(290), 1, + ACTIONS(288), 1, anon_sym_LT_LT, - ACTIONS(292), 1, + ACTIONS(290), 1, anon_sym_DASH, - ACTIONS(294), 1, + ACTIONS(292), 1, anon_sym_fn, - ACTIONS(296), 1, + ACTIONS(294), 1, anon_sym_todo, - ACTIONS(298), 1, + ACTIONS(296), 1, anon_sym_case, - ACTIONS(300), 1, + ACTIONS(298), 1, anon_sym_let, - ACTIONS(302), 1, + ACTIONS(300), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(306), 1, sym__name, - ACTIONS(310), 1, + ACTIONS(308), 1, sym__upname, - STATE(206), 1, + STATE(204), 1, sym_anonymous_function, - STATE(208), 1, + STATE(205), 1, sym_tuple, - STATE(227), 1, + STATE(236), 1, sym__expression, - STATE(982), 1, + STATE(990), 1, sym__maybe_record_expression, - STATE(1006), 1, + STATE(1014), 1, sym__maybe_tuple_expression, - STATE(1007), 1, + STATE(1015), 1, sym__maybe_function_expression, - STATE(1008), 1, + STATE(1016), 1, sym_identifier, - STATE(1078), 1, + STATE(1086), 1, sym__record_update_record, - STATE(1079), 1, + STATE(1087), 1, sym__record_update_remote_record, - ACTIONS(304), 2, + ACTIONS(302), 2, sym_string, sym_float, - STATE(199), 3, + STATE(206), 3, sym_record, sym_remote_record, sym_record_update, - ACTIONS(306), 4, + ACTIONS(304), 4, sym__hex, sym__decimal, sym__octal, sym__binary, - STATE(192), 6, + STATE(195), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(230), 8, + STATE(228), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -12927,71 +13171,71 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [10607] = 27, + [10859] = 27, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(21), 1, + ACTIONS(282), 1, anon_sym_LBRACE, - ACTIONS(23), 1, + ACTIONS(284), 1, anon_sym_POUND, - ACTIONS(27), 1, + ACTIONS(286), 1, anon_sym_LBRACK, - ACTIONS(29), 1, + ACTIONS(288), 1, anon_sym_LT_LT, - ACTIONS(31), 1, + ACTIONS(290), 1, anon_sym_DASH, - ACTIONS(33), 1, + ACTIONS(292), 1, anon_sym_fn, - ACTIONS(35), 1, + ACTIONS(294), 1, anon_sym_todo, - ACTIONS(37), 1, + ACTIONS(296), 1, anon_sym_case, - ACTIONS(51), 1, - sym__upname, - ACTIONS(278), 1, + ACTIONS(298), 1, anon_sym_let, - ACTIONS(280), 1, + ACTIONS(300), 1, anon_sym_assert, - ACTIONS(282), 1, + ACTIONS(306), 1, sym__name, - STATE(271), 1, - sym_tuple, - STATE(272), 1, + ACTIONS(308), 1, + sym__upname, + STATE(204), 1, sym_anonymous_function, - STATE(315), 1, + STATE(205), 1, + sym_tuple, + STATE(215), 1, sym__expression, - STATE(869), 1, + STATE(990), 1, sym__maybe_record_expression, - STATE(981), 1, + STATE(1014), 1, sym__maybe_tuple_expression, - STATE(983), 1, + STATE(1015), 1, sym__maybe_function_expression, - STATE(984), 1, + STATE(1016), 1, sym_identifier, - STATE(1076), 1, + STATE(1086), 1, sym__record_update_record, - STATE(1077), 1, + STATE(1087), 1, sym__record_update_remote_record, - ACTIONS(43), 2, + ACTIONS(302), 2, sym_string, sym_float, - STATE(255), 3, + STATE(206), 3, sym_record, sym_remote_record, sym_record_update, - ACTIONS(45), 4, + ACTIONS(304), 4, sym__hex, sym__decimal, sym__octal, sym__binary, - STATE(251), 6, + STATE(195), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(287), 8, + STATE(228), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -13000,71 +13244,71 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [10707] = 27, + [10959] = 27, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(284), 1, + ACTIONS(282), 1, anon_sym_LBRACE, - ACTIONS(286), 1, + ACTIONS(284), 1, anon_sym_POUND, - ACTIONS(288), 1, + ACTIONS(286), 1, anon_sym_LBRACK, - ACTIONS(290), 1, + ACTIONS(288), 1, anon_sym_LT_LT, - ACTIONS(292), 1, + ACTIONS(290), 1, anon_sym_DASH, - ACTIONS(294), 1, + ACTIONS(292), 1, anon_sym_fn, - ACTIONS(296), 1, + ACTIONS(294), 1, anon_sym_todo, - ACTIONS(298), 1, + ACTIONS(296), 1, anon_sym_case, - ACTIONS(300), 1, + ACTIONS(298), 1, anon_sym_let, - ACTIONS(302), 1, + ACTIONS(300), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(306), 1, sym__name, - ACTIONS(310), 1, + ACTIONS(308), 1, sym__upname, - STATE(206), 1, + STATE(204), 1, sym_anonymous_function, - STATE(208), 1, + STATE(205), 1, sym_tuple, - STATE(218), 1, + STATE(234), 1, sym__expression, - STATE(982), 1, + STATE(990), 1, sym__maybe_record_expression, - STATE(1006), 1, + STATE(1014), 1, sym__maybe_tuple_expression, - STATE(1007), 1, + STATE(1015), 1, sym__maybe_function_expression, - STATE(1008), 1, + STATE(1016), 1, sym_identifier, - STATE(1078), 1, + STATE(1086), 1, sym__record_update_record, - STATE(1079), 1, + STATE(1087), 1, sym__record_update_remote_record, - ACTIONS(304), 2, + ACTIONS(302), 2, sym_string, sym_float, - STATE(199), 3, + STATE(206), 3, sym_record, sym_remote_record, sym_record_update, - ACTIONS(306), 4, + ACTIONS(304), 4, sym__hex, sym__decimal, sym__octal, sym__binary, - STATE(192), 6, + STATE(195), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(230), 8, + STATE(228), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -13073,71 +13317,71 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [10807] = 27, + [11059] = 27, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(21), 1, + ACTIONS(282), 1, anon_sym_LBRACE, - ACTIONS(23), 1, + ACTIONS(284), 1, anon_sym_POUND, - ACTIONS(27), 1, + ACTIONS(286), 1, anon_sym_LBRACK, - ACTIONS(29), 1, + ACTIONS(288), 1, anon_sym_LT_LT, - ACTIONS(31), 1, + ACTIONS(290), 1, anon_sym_DASH, - ACTIONS(33), 1, + ACTIONS(292), 1, anon_sym_fn, - ACTIONS(35), 1, + ACTIONS(294), 1, anon_sym_todo, - ACTIONS(37), 1, + ACTIONS(296), 1, anon_sym_case, - ACTIONS(39), 1, + ACTIONS(298), 1, anon_sym_let, - ACTIONS(41), 1, + ACTIONS(300), 1, anon_sym_assert, - ACTIONS(49), 1, + ACTIONS(306), 1, sym__name, - ACTIONS(51), 1, + ACTIONS(308), 1, sym__upname, - STATE(271), 1, - sym_tuple, - STATE(272), 1, + STATE(204), 1, sym_anonymous_function, - STATE(358), 1, + STATE(205), 1, + sym_tuple, + STATE(230), 1, sym__expression, - STATE(869), 1, + STATE(990), 1, sym__maybe_record_expression, - STATE(981), 1, + STATE(1014), 1, sym__maybe_tuple_expression, - STATE(983), 1, + STATE(1015), 1, sym__maybe_function_expression, - STATE(984), 1, + STATE(1016), 1, sym_identifier, - STATE(1076), 1, + STATE(1086), 1, sym__record_update_record, - STATE(1077), 1, + STATE(1087), 1, sym__record_update_remote_record, - ACTIONS(43), 2, + ACTIONS(302), 2, sym_string, sym_float, - STATE(255), 3, + STATE(206), 3, sym_record, sym_remote_record, sym_record_update, - ACTIONS(45), 4, + ACTIONS(304), 4, sym__hex, sym__decimal, sym__octal, sym__binary, - STATE(251), 6, + STATE(195), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(287), 8, + STATE(228), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -13146,71 +13390,71 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [10907] = 27, + [11159] = 27, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(21), 1, + ACTIONS(282), 1, anon_sym_LBRACE, - ACTIONS(23), 1, + ACTIONS(284), 1, anon_sym_POUND, - ACTIONS(27), 1, + ACTIONS(286), 1, anon_sym_LBRACK, - ACTIONS(29), 1, + ACTIONS(288), 1, anon_sym_LT_LT, - ACTIONS(31), 1, + ACTIONS(290), 1, anon_sym_DASH, - ACTIONS(33), 1, + ACTIONS(292), 1, anon_sym_fn, - ACTIONS(35), 1, + ACTIONS(294), 1, anon_sym_todo, - ACTIONS(37), 1, + ACTIONS(296), 1, anon_sym_case, - ACTIONS(51), 1, - sym__upname, - ACTIONS(278), 1, + ACTIONS(298), 1, anon_sym_let, - ACTIONS(280), 1, + ACTIONS(300), 1, anon_sym_assert, - ACTIONS(282), 1, + ACTIONS(306), 1, sym__name, - STATE(271), 1, - sym_tuple, - STATE(272), 1, + ACTIONS(308), 1, + sym__upname, + STATE(204), 1, sym_anonymous_function, - STATE(311), 1, + STATE(205), 1, + sym_tuple, + STATE(233), 1, sym__expression, - STATE(869), 1, + STATE(990), 1, sym__maybe_record_expression, - STATE(981), 1, + STATE(1014), 1, sym__maybe_tuple_expression, - STATE(983), 1, + STATE(1015), 1, sym__maybe_function_expression, - STATE(984), 1, + STATE(1016), 1, sym_identifier, - STATE(1076), 1, + STATE(1086), 1, sym__record_update_record, - STATE(1077), 1, + STATE(1087), 1, sym__record_update_remote_record, - ACTIONS(43), 2, + ACTIONS(302), 2, sym_string, sym_float, - STATE(255), 3, + STATE(206), 3, sym_record, sym_remote_record, sym_record_update, - ACTIONS(45), 4, + ACTIONS(304), 4, sym__hex, sym__decimal, sym__octal, sym__binary, - STATE(251), 6, + STATE(195), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(287), 8, + STATE(228), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -13219,71 +13463,71 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [11007] = 27, + [11259] = 27, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(21), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(23), 1, + ACTIONS(69), 1, anon_sym_POUND, - ACTIONS(27), 1, + ACTIONS(71), 1, anon_sym_LBRACK, - ACTIONS(29), 1, + ACTIONS(73), 1, anon_sym_LT_LT, - ACTIONS(31), 1, + ACTIONS(75), 1, anon_sym_DASH, - ACTIONS(33), 1, + ACTIONS(77), 1, anon_sym_fn, - ACTIONS(35), 1, + ACTIONS(81), 1, anon_sym_todo, - ACTIONS(37), 1, + ACTIONS(83), 1, anon_sym_case, - ACTIONS(51), 1, - sym__upname, - ACTIONS(278), 1, + ACTIONS(85), 1, anon_sym_let, - ACTIONS(280), 1, + ACTIONS(87), 1, anon_sym_assert, - ACTIONS(282), 1, + ACTIONS(93), 1, sym__name, - STATE(271), 1, + ACTIONS(95), 1, + sym__upname, + STATE(70), 1, sym_tuple, - STATE(272), 1, + STATE(71), 1, sym_anonymous_function, - STATE(317), 1, + STATE(173), 1, sym__expression, - STATE(869), 1, - sym__maybe_record_expression, - STATE(981), 1, + STATE(888), 1, + sym__record_update_record, + STATE(892), 1, + sym__record_update_remote_record, + STATE(893), 1, sym__maybe_tuple_expression, - STATE(983), 1, + STATE(894), 1, + sym__maybe_record_expression, + STATE(895), 1, sym__maybe_function_expression, - STATE(984), 1, + STATE(896), 1, sym_identifier, - STATE(1076), 1, - sym__record_update_record, - STATE(1077), 1, - sym__record_update_remote_record, - ACTIONS(43), 2, + ACTIONS(89), 2, sym_string, sym_float, - STATE(255), 3, + STATE(78), 3, sym_record, sym_remote_record, sym_record_update, - ACTIONS(45), 4, + ACTIONS(91), 4, sym__hex, sym__decimal, sym__octal, sym__binary, - STATE(251), 6, + STATE(63), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(287), 8, + STATE(178), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -13292,71 +13536,71 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [11107] = 27, + [11359] = 27, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(21), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(23), 1, + ACTIONS(69), 1, anon_sym_POUND, - ACTIONS(27), 1, + ACTIONS(71), 1, anon_sym_LBRACK, - ACTIONS(29), 1, + ACTIONS(73), 1, anon_sym_LT_LT, - ACTIONS(31), 1, + ACTIONS(75), 1, anon_sym_DASH, - ACTIONS(33), 1, + ACTIONS(77), 1, anon_sym_fn, - ACTIONS(35), 1, + ACTIONS(81), 1, anon_sym_todo, - ACTIONS(37), 1, + ACTIONS(83), 1, anon_sym_case, - ACTIONS(51), 1, - sym__upname, - ACTIONS(278), 1, + ACTIONS(85), 1, anon_sym_let, - ACTIONS(280), 1, + ACTIONS(87), 1, anon_sym_assert, - ACTIONS(282), 1, + ACTIONS(93), 1, sym__name, - STATE(271), 1, + ACTIONS(95), 1, + sym__upname, + STATE(70), 1, sym_tuple, - STATE(272), 1, + STATE(71), 1, sym_anonymous_function, - STATE(319), 1, + STATE(174), 1, sym__expression, - STATE(869), 1, - sym__maybe_record_expression, - STATE(981), 1, + STATE(888), 1, + sym__record_update_record, + STATE(892), 1, + sym__record_update_remote_record, + STATE(893), 1, sym__maybe_tuple_expression, - STATE(983), 1, + STATE(894), 1, + sym__maybe_record_expression, + STATE(895), 1, sym__maybe_function_expression, - STATE(984), 1, + STATE(896), 1, sym_identifier, - STATE(1076), 1, - sym__record_update_record, - STATE(1077), 1, - sym__record_update_remote_record, - ACTIONS(43), 2, + ACTIONS(89), 2, sym_string, sym_float, - STATE(255), 3, + STATE(78), 3, sym_record, sym_remote_record, sym_record_update, - ACTIONS(45), 4, + ACTIONS(91), 4, sym__hex, sym__decimal, sym__octal, sym__binary, - STATE(251), 6, + STATE(63), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(287), 8, + STATE(178), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -13365,71 +13609,71 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [11207] = 27, + [11459] = 27, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(21), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(23), 1, + ACTIONS(69), 1, anon_sym_POUND, - ACTIONS(27), 1, + ACTIONS(71), 1, anon_sym_LBRACK, - ACTIONS(29), 1, + ACTIONS(73), 1, anon_sym_LT_LT, - ACTIONS(31), 1, + ACTIONS(75), 1, anon_sym_DASH, - ACTIONS(33), 1, + ACTIONS(77), 1, anon_sym_fn, - ACTIONS(35), 1, + ACTIONS(81), 1, anon_sym_todo, - ACTIONS(37), 1, + ACTIONS(83), 1, anon_sym_case, - ACTIONS(51), 1, - sym__upname, - ACTIONS(278), 1, + ACTIONS(85), 1, anon_sym_let, - ACTIONS(280), 1, + ACTIONS(87), 1, anon_sym_assert, - ACTIONS(282), 1, + ACTIONS(93), 1, sym__name, - STATE(271), 1, + ACTIONS(95), 1, + sym__upname, + STATE(70), 1, sym_tuple, - STATE(272), 1, + STATE(71), 1, sym_anonymous_function, - STATE(322), 1, + STATE(175), 1, sym__expression, - STATE(869), 1, - sym__maybe_record_expression, - STATE(981), 1, + STATE(888), 1, + sym__record_update_record, + STATE(892), 1, + sym__record_update_remote_record, + STATE(893), 1, sym__maybe_tuple_expression, - STATE(983), 1, + STATE(894), 1, + sym__maybe_record_expression, + STATE(895), 1, sym__maybe_function_expression, - STATE(984), 1, + STATE(896), 1, sym_identifier, - STATE(1076), 1, - sym__record_update_record, - STATE(1077), 1, - sym__record_update_remote_record, - ACTIONS(43), 2, + ACTIONS(89), 2, sym_string, sym_float, - STATE(255), 3, + STATE(78), 3, sym_record, sym_remote_record, sym_record_update, - ACTIONS(45), 4, + ACTIONS(91), 4, sym__hex, sym__decimal, sym__octal, sym__binary, - STATE(251), 6, + STATE(63), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(287), 8, + STATE(178), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -13438,71 +13682,71 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [11307] = 27, + [11559] = 27, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(21), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(23), 1, + ACTIONS(69), 1, anon_sym_POUND, - ACTIONS(27), 1, + ACTIONS(71), 1, anon_sym_LBRACK, - ACTIONS(29), 1, + ACTIONS(73), 1, anon_sym_LT_LT, - ACTIONS(31), 1, + ACTIONS(75), 1, anon_sym_DASH, - ACTIONS(33), 1, + ACTIONS(77), 1, anon_sym_fn, - ACTIONS(35), 1, + ACTIONS(81), 1, anon_sym_todo, - ACTIONS(37), 1, + ACTIONS(83), 1, anon_sym_case, - ACTIONS(39), 1, + ACTIONS(85), 1, anon_sym_let, - ACTIONS(41), 1, + ACTIONS(87), 1, anon_sym_assert, - ACTIONS(49), 1, + ACTIONS(93), 1, sym__name, - ACTIONS(51), 1, + ACTIONS(95), 1, sym__upname, - STATE(271), 1, + STATE(70), 1, sym_tuple, - STATE(272), 1, + STATE(71), 1, sym_anonymous_function, - STATE(361), 1, + STATE(171), 1, sym__expression, - STATE(869), 1, - sym__maybe_record_expression, - STATE(981), 1, + STATE(888), 1, + sym__record_update_record, + STATE(892), 1, + sym__record_update_remote_record, + STATE(893), 1, sym__maybe_tuple_expression, - STATE(983), 1, + STATE(894), 1, + sym__maybe_record_expression, + STATE(895), 1, sym__maybe_function_expression, - STATE(984), 1, + STATE(896), 1, sym_identifier, - STATE(1076), 1, - sym__record_update_record, - STATE(1077), 1, - sym__record_update_remote_record, - ACTIONS(43), 2, + ACTIONS(89), 2, sym_string, sym_float, - STATE(255), 3, + STATE(78), 3, sym_record, sym_remote_record, sym_record_update, - ACTIONS(45), 4, + ACTIONS(91), 4, sym__hex, sym__decimal, sym__octal, sym__binary, - STATE(251), 6, + STATE(63), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(287), 8, + STATE(178), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -13511,71 +13755,71 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [11407] = 27, + [11659] = 27, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(284), 1, + ACTIONS(282), 1, anon_sym_LBRACE, - ACTIONS(286), 1, + ACTIONS(284), 1, anon_sym_POUND, - ACTIONS(288), 1, + ACTIONS(286), 1, anon_sym_LBRACK, - ACTIONS(290), 1, + ACTIONS(288), 1, anon_sym_LT_LT, - ACTIONS(292), 1, + ACTIONS(290), 1, anon_sym_DASH, - ACTIONS(294), 1, + ACTIONS(292), 1, anon_sym_fn, - ACTIONS(296), 1, + ACTIONS(294), 1, anon_sym_todo, - ACTIONS(298), 1, + ACTIONS(296), 1, anon_sym_case, - ACTIONS(300), 1, + ACTIONS(298), 1, anon_sym_let, - ACTIONS(302), 1, + ACTIONS(300), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(306), 1, sym__name, - ACTIONS(310), 1, + ACTIONS(308), 1, sym__upname, - STATE(206), 1, + STATE(204), 1, sym_anonymous_function, - STATE(208), 1, + STATE(205), 1, sym_tuple, - STATE(225), 1, + STATE(223), 1, sym__expression, - STATE(982), 1, + STATE(990), 1, sym__maybe_record_expression, - STATE(1006), 1, + STATE(1014), 1, sym__maybe_tuple_expression, - STATE(1007), 1, + STATE(1015), 1, sym__maybe_function_expression, - STATE(1008), 1, + STATE(1016), 1, sym_identifier, - STATE(1078), 1, + STATE(1086), 1, sym__record_update_record, - STATE(1079), 1, + STATE(1087), 1, sym__record_update_remote_record, - ACTIONS(304), 2, + ACTIONS(302), 2, sym_string, sym_float, - STATE(199), 3, + STATE(206), 3, sym_record, sym_remote_record, sym_record_update, - ACTIONS(306), 4, + ACTIONS(304), 4, sym__hex, sym__decimal, sym__octal, sym__binary, - STATE(192), 6, + STATE(195), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(230), 8, + STATE(228), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -13584,7 +13828,7 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [11507] = 27, + [11759] = 27, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(21), 1, @@ -13611,28 +13855,28 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(51), 1, sym__upname, - STATE(271), 1, - sym_tuple, - STATE(272), 1, + STATE(255), 1, sym_anonymous_function, - STATE(359), 1, + STATE(270), 1, + sym_tuple, + STATE(360), 1, sym__expression, - STATE(869), 1, + STATE(877), 1, sym__maybe_record_expression, - STATE(981), 1, + STATE(989), 1, sym__maybe_tuple_expression, - STATE(983), 1, + STATE(991), 1, sym__maybe_function_expression, - STATE(984), 1, + STATE(992), 1, sym_identifier, - STATE(1076), 1, + STATE(1084), 1, sym__record_update_record, - STATE(1077), 1, + STATE(1085), 1, sym__record_update_remote_record, ACTIONS(43), 2, sym_string, sym_float, - STATE(255), 3, + STATE(254), 3, sym_record, sym_remote_record, sym_record_update, @@ -13641,14 +13885,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(251), 6, + STATE(248), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(287), 8, + STATE(278), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -13657,10 +13901,10 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [11607] = 2, + [11859] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(316), 44, + ACTIONS(324), 44, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -13705,80 +13949,55 @@ static const uint16_t ts_small_parse_table[] = { sym__binary, sym__name, sym__upname, - [11657] = 27, + [11909] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(65), 1, + ACTIONS(326), 44, anon_sym_LBRACE, - ACTIONS(69), 1, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SLASH, anon_sym_POUND, - ACTIONS(71), 1, anon_sym_LBRACK, - ACTIONS(73), 1, anon_sym_LT_LT, - ACTIONS(75), 1, + anon_sym_GT_GT, + anon_sym_COLON, anon_sym_DASH, - ACTIONS(77), 1, anon_sym_fn, - ACTIONS(81), 1, + anon_sym_try, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, anon_sym_todo, - ACTIONS(83), 1, anon_sym_case, - ACTIONS(85), 1, anon_sym_let, - ACTIONS(87), 1, anon_sym_assert, - ACTIONS(93), 1, - sym__name, - ACTIONS(95), 1, - sym__upname, - STATE(77), 1, - sym_anonymous_function, - STATE(79), 1, - sym_tuple, - STATE(174), 1, - sym__expression, - STATE(957), 1, - sym_identifier, - STATE(958), 1, - sym__maybe_function_expression, - STATE(959), 1, - sym__maybe_record_expression, - STATE(962), 1, - sym__maybe_tuple_expression, - STATE(963), 1, - sym__record_update_remote_record, - STATE(964), 1, - sym__record_update_record, - ACTIONS(89), 2, sym_string, sym_float, - STATE(80), 3, - sym_record, - sym_remote_record, - sym_record_update, - ACTIONS(91), 4, sym__hex, sym__decimal, sym__octal, sym__binary, - STATE(62), 6, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - sym_var, - STATE(176), 8, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_integer, - [11757] = 27, + sym__name, + sym__upname, + [11959] = 27, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(21), 1, @@ -13805,28 +14024,28 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(51), 1, sym__upname, - STATE(271), 1, - sym_tuple, - STATE(272), 1, + STATE(255), 1, sym_anonymous_function, - STATE(348), 1, + STATE(270), 1, + sym_tuple, + STATE(359), 1, sym__expression, - STATE(869), 1, + STATE(877), 1, sym__maybe_record_expression, - STATE(981), 1, + STATE(989), 1, sym__maybe_tuple_expression, - STATE(983), 1, + STATE(991), 1, sym__maybe_function_expression, - STATE(984), 1, + STATE(992), 1, sym_identifier, - STATE(1076), 1, + STATE(1084), 1, sym__record_update_record, - STATE(1077), 1, + STATE(1085), 1, sym__record_update_remote_record, ACTIONS(43), 2, sym_string, sym_float, - STATE(255), 3, + STATE(254), 3, sym_record, sym_remote_record, sym_record_update, @@ -13835,14 +14054,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(251), 6, + STATE(248), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(287), 8, + STATE(278), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -13851,10 +14070,10 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [11857] = 2, + [12059] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(318), 44, + ACTIONS(328), 44, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -13899,18 +14118,187 @@ static const uint16_t ts_small_parse_table[] = { sym__binary, sym__name, sym__upname, - [11907] = 27, + [12109] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(21), 1, + ACTIONS(330), 44, anon_sym_LBRACE, - ACTIONS(23), 1, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SLASH, anon_sym_POUND, - ACTIONS(27), 1, anon_sym_LBRACK, - ACTIONS(29), 1, anon_sym_LT_LT, - ACTIONS(31), 1, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_DASH, + anon_sym_fn, + anon_sym_try, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + sym_string, + sym_float, + sym__hex, + sym__decimal, + sym__octal, + sym__binary, + sym__name, + sym__upname, + [12159] = 2, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(332), 44, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SLASH, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_DASH, + anon_sym_fn, + anon_sym_try, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + sym_string, + sym_float, + sym__hex, + sym__decimal, + sym__octal, + sym__binary, + sym__name, + sym__upname, + [12209] = 27, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_POUND, + ACTIONS(71), 1, + anon_sym_LBRACK, + ACTIONS(73), 1, + anon_sym_LT_LT, + ACTIONS(75), 1, + anon_sym_DASH, + ACTIONS(77), 1, + anon_sym_fn, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_case, + ACTIONS(85), 1, + anon_sym_let, + ACTIONS(87), 1, + anon_sym_assert, + ACTIONS(93), 1, + sym__name, + ACTIONS(95), 1, + sym__upname, + STATE(70), 1, + sym_tuple, + STATE(71), 1, + sym_anonymous_function, + STATE(183), 1, + sym__expression, + STATE(888), 1, + sym__record_update_record, + STATE(892), 1, + sym__record_update_remote_record, + STATE(893), 1, + sym__maybe_tuple_expression, + STATE(894), 1, + sym__maybe_record_expression, + STATE(895), 1, + sym__maybe_function_expression, + STATE(896), 1, + sym_identifier, + ACTIONS(89), 2, + sym_string, + sym_float, + STATE(78), 3, + sym_record, + sym_remote_record, + sym_record_update, + ACTIONS(91), 4, + sym__hex, + sym__decimal, + sym__octal, + sym__binary, + STATE(63), 6, + sym_expression_group, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + sym_var, + STATE(178), 8, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_list, + sym__expression_bit_string, + sym_let, + sym_assert, + sym_integer, + [12309] = 27, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(21), 1, + anon_sym_LBRACE, + ACTIONS(23), 1, + anon_sym_POUND, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(29), 1, + anon_sym_LT_LT, + ACTIONS(31), 1, anon_sym_DASH, ACTIONS(33), 1, anon_sym_fn, @@ -13926,28 +14314,28 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(51), 1, sym__upname, - STATE(271), 1, - sym_tuple, - STATE(272), 1, + STATE(255), 1, sym_anonymous_function, - STATE(304), 1, + STATE(270), 1, + sym_tuple, + STATE(358), 1, sym__expression, - STATE(869), 1, + STATE(877), 1, sym__maybe_record_expression, - STATE(981), 1, + STATE(989), 1, sym__maybe_tuple_expression, - STATE(983), 1, + STATE(991), 1, sym__maybe_function_expression, - STATE(984), 1, + STATE(992), 1, sym_identifier, - STATE(1076), 1, + STATE(1084), 1, sym__record_update_record, - STATE(1077), 1, + STATE(1085), 1, sym__record_update_remote_record, ACTIONS(43), 2, sym_string, sym_float, - STATE(255), 3, + STATE(254), 3, sym_record, sym_remote_record, sym_record_update, @@ -13956,14 +14344,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(251), 6, + STATE(248), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(287), 8, + STATE(278), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -13972,7 +14360,7 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [12007] = 27, + [12409] = 27, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(21), 1, @@ -13999,28 +14387,28 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(51), 1, sym__upname, - STATE(271), 1, - sym_tuple, - STATE(272), 1, + STATE(255), 1, sym_anonymous_function, - STATE(347), 1, + STATE(270), 1, + sym_tuple, + STATE(279), 1, sym__expression, - STATE(869), 1, + STATE(877), 1, sym__maybe_record_expression, - STATE(981), 1, + STATE(989), 1, sym__maybe_tuple_expression, - STATE(983), 1, + STATE(991), 1, sym__maybe_function_expression, - STATE(984), 1, + STATE(992), 1, sym_identifier, - STATE(1076), 1, + STATE(1084), 1, sym__record_update_record, - STATE(1077), 1, + STATE(1085), 1, sym__record_update_remote_record, ACTIONS(43), 2, sym_string, sym_float, - STATE(255), 3, + STATE(254), 3, sym_record, sym_remote_record, sym_record_update, @@ -14029,14 +14417,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(251), 6, + STATE(248), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(287), 8, + STATE(278), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -14045,7 +14433,7 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [12107] = 27, + [12509] = 27, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(21), 1, @@ -14064,36 +14452,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_todo, ACTIONS(37), 1, anon_sym_case, - ACTIONS(51), 1, - sym__upname, - ACTIONS(278), 1, + ACTIONS(39), 1, anon_sym_let, - ACTIONS(280), 1, + ACTIONS(41), 1, anon_sym_assert, - ACTIONS(282), 1, + ACTIONS(49), 1, sym__name, - STATE(271), 1, - sym_tuple, - STATE(272), 1, + ACTIONS(51), 1, + sym__upname, + STATE(255), 1, sym_anonymous_function, - STATE(324), 1, + STATE(270), 1, + sym_tuple, + STATE(302), 1, sym__expression, - STATE(869), 1, + STATE(877), 1, sym__maybe_record_expression, - STATE(981), 1, + STATE(989), 1, sym__maybe_tuple_expression, - STATE(983), 1, + STATE(991), 1, sym__maybe_function_expression, - STATE(984), 1, + STATE(992), 1, sym_identifier, - STATE(1076), 1, + STATE(1084), 1, sym__record_update_record, - STATE(1077), 1, + STATE(1085), 1, sym__record_update_remote_record, ACTIONS(43), 2, sym_string, sym_float, - STATE(255), 3, + STATE(254), 3, sym_record, sym_remote_record, sym_record_update, @@ -14102,14 +14490,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(251), 6, + STATE(248), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(287), 8, + STATE(278), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -14118,7 +14506,7 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [12207] = 27, + [12609] = 27, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(21), 1, @@ -14137,36 +14525,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_todo, ACTIONS(37), 1, anon_sym_case, - ACTIONS(51), 1, - sym__upname, - ACTIONS(278), 1, + ACTIONS(39), 1, anon_sym_let, - ACTIONS(280), 1, + ACTIONS(41), 1, anon_sym_assert, - ACTIONS(282), 1, + ACTIONS(49), 1, sym__name, - STATE(271), 1, - sym_tuple, - STATE(272), 1, + ACTIONS(51), 1, + sym__upname, + STATE(255), 1, sym_anonymous_function, - STATE(289), 1, + STATE(270), 1, + sym_tuple, + STATE(308), 1, sym__expression, - STATE(869), 1, + STATE(877), 1, sym__maybe_record_expression, - STATE(981), 1, + STATE(989), 1, sym__maybe_tuple_expression, - STATE(983), 1, + STATE(991), 1, sym__maybe_function_expression, - STATE(984), 1, + STATE(992), 1, sym_identifier, - STATE(1076), 1, + STATE(1084), 1, sym__record_update_record, - STATE(1077), 1, + STATE(1085), 1, sym__record_update_remote_record, ACTIONS(43), 2, sym_string, sym_float, - STATE(255), 3, + STATE(254), 3, sym_record, sym_remote_record, sym_record_update, @@ -14175,14 +14563,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(251), 6, + STATE(248), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(287), 8, + STATE(278), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -14191,73 +14579,72 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [12307] = 28, + [12709] = 27, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(65), 1, + ACTIONS(21), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(23), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(27), 1, anon_sym_LBRACK, - ACTIONS(73), 1, + ACTIONS(29), 1, anon_sym_LT_LT, - ACTIONS(75), 1, + ACTIONS(31), 1, anon_sym_DASH, - ACTIONS(77), 1, + ACTIONS(33), 1, anon_sym_fn, - ACTIONS(81), 1, + ACTIONS(35), 1, anon_sym_todo, - ACTIONS(83), 1, + ACTIONS(37), 1, anon_sym_case, - ACTIONS(93), 1, - sym__name, - ACTIONS(95), 1, - sym__upname, - ACTIONS(320), 1, - anon_sym_GT_GT, - ACTIONS(322), 1, + ACTIONS(39), 1, anon_sym_let, - ACTIONS(324), 1, + ACTIONS(41), 1, anon_sym_assert, - STATE(77), 1, + ACTIONS(49), 1, + sym__name, + ACTIONS(51), 1, + sym__upname, + STATE(255), 1, sym_anonymous_function, - STATE(79), 1, + STATE(270), 1, sym_tuple, - STATE(679), 1, - sym_expression_bit_string_segment, - STATE(933), 1, + STATE(301), 1, + sym__expression, + STATE(877), 1, sym__maybe_record_expression, - STATE(957), 1, - sym_identifier, - STATE(958), 1, - sym__maybe_function_expression, - STATE(962), 1, + STATE(989), 1, sym__maybe_tuple_expression, - STATE(963), 1, - sym__record_update_remote_record, - STATE(964), 1, + STATE(991), 1, + sym__maybe_function_expression, + STATE(992), 1, + sym_identifier, + STATE(1084), 1, sym__record_update_record, - ACTIONS(326), 2, + STATE(1085), 1, + sym__record_update_remote_record, + ACTIONS(43), 2, sym_string, sym_float, - STATE(80), 3, + STATE(254), 3, sym_record, sym_remote_record, sym_record_update, - ACTIONS(91), 4, + ACTIONS(45), 4, sym__hex, sym__decimal, sym__octal, sym__binary, - STATE(62), 6, + STATE(248), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(682), 7, + STATE(278), 8, + sym_binary_expression, sym__expression_unit, sym_todo, sym_list, @@ -14265,7 +14652,7 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [12409] = 27, + [12809] = 27, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(21), 1, @@ -14292,28 +14679,28 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(51), 1, sym__upname, - STATE(271), 1, - sym_tuple, - STATE(272), 1, + STATE(255), 1, sym_anonymous_function, - STATE(360), 1, + STATE(270), 1, + sym_tuple, + STATE(299), 1, sym__expression, - STATE(869), 1, + STATE(877), 1, sym__maybe_record_expression, - STATE(981), 1, + STATE(989), 1, sym__maybe_tuple_expression, - STATE(983), 1, + STATE(991), 1, sym__maybe_function_expression, - STATE(984), 1, + STATE(992), 1, sym_identifier, - STATE(1076), 1, + STATE(1084), 1, sym__record_update_record, - STATE(1077), 1, + STATE(1085), 1, sym__record_update_remote_record, ACTIONS(43), 2, sym_string, sym_float, - STATE(255), 3, + STATE(254), 3, sym_record, sym_remote_record, sym_record_update, @@ -14322,14 +14709,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(251), 6, + STATE(248), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(287), 8, + STATE(278), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -14338,66 +14725,18 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [12509] = 2, + [12909] = 27, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(328), 44, + ACTIONS(65), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_SLASH, + ACTIONS(69), 1, anon_sym_POUND, + ACTIONS(71), 1, anon_sym_LBRACK, + ACTIONS(73), 1, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_DASH, - anon_sym_fn, - anon_sym_try, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_string, - sym_float, - sym__hex, - sym__decimal, - sym__octal, - sym__binary, - sym__name, - sym__upname, - [12559] = 28, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_POUND, - ACTIONS(71), 1, - anon_sym_LBRACK, - ACTIONS(73), 1, - anon_sym_LT_LT, - ACTIONS(75), 1, + ACTIONS(75), 1, anon_sym_DASH, ACTIONS(77), 1, anon_sym_fn, @@ -14405,38 +14744,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_todo, ACTIONS(83), 1, anon_sym_case, + ACTIONS(85), 1, + anon_sym_let, + ACTIONS(87), 1, + anon_sym_assert, ACTIONS(93), 1, sym__name, ACTIONS(95), 1, sym__upname, - ACTIONS(322), 1, - anon_sym_let, - ACTIONS(324), 1, - anon_sym_assert, - ACTIONS(330), 1, - anon_sym_GT_GT, - STATE(77), 1, - sym_anonymous_function, - STATE(79), 1, + STATE(70), 1, sym_tuple, - STATE(683), 1, - sym_expression_bit_string_segment, - STATE(933), 1, + STATE(71), 1, + sym_anonymous_function, + STATE(180), 1, + sym__expression, + STATE(888), 1, + sym__record_update_record, + STATE(892), 1, + sym__record_update_remote_record, + STATE(893), 1, + sym__maybe_tuple_expression, + STATE(894), 1, sym__maybe_record_expression, - STATE(957), 1, - sym_identifier, - STATE(958), 1, + STATE(895), 1, sym__maybe_function_expression, - STATE(962), 1, - sym__maybe_tuple_expression, - STATE(963), 1, - sym__record_update_remote_record, - STATE(964), 1, - sym__record_update_record, - ACTIONS(326), 2, + STATE(896), 1, + sym_identifier, + ACTIONS(89), 2, sym_string, sym_float, - STATE(80), 3, + STATE(78), 3, sym_record, sym_remote_record, sym_record_update, @@ -14445,14 +14782,15 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(62), 6, + STATE(63), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(682), 7, + STATE(178), 8, + sym_binary_expression, sym__expression_unit, sym_todo, sym_list, @@ -14460,119 +14798,71 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [12661] = 2, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(332), 44, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_DASH, - anon_sym_fn, - anon_sym_try, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_string, - sym_float, - sym__hex, - sym__decimal, - sym__octal, - sym__binary, - sym__name, - sym__upname, - [12711] = 27, + [13009] = 27, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(284), 1, + ACTIONS(21), 1, anon_sym_LBRACE, - ACTIONS(286), 1, + ACTIONS(23), 1, anon_sym_POUND, - ACTIONS(288), 1, + ACTIONS(27), 1, anon_sym_LBRACK, - ACTIONS(290), 1, + ACTIONS(29), 1, anon_sym_LT_LT, - ACTIONS(292), 1, + ACTIONS(31), 1, anon_sym_DASH, - ACTIONS(294), 1, + ACTIONS(33), 1, anon_sym_fn, - ACTIONS(296), 1, + ACTIONS(35), 1, anon_sym_todo, - ACTIONS(298), 1, + ACTIONS(37), 1, anon_sym_case, - ACTIONS(300), 1, + ACTIONS(39), 1, anon_sym_let, - ACTIONS(302), 1, + ACTIONS(41), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(49), 1, sym__name, - ACTIONS(310), 1, + ACTIONS(51), 1, sym__upname, - STATE(206), 1, + STATE(255), 1, sym_anonymous_function, - STATE(208), 1, + STATE(270), 1, sym_tuple, - STATE(224), 1, + STATE(361), 1, sym__expression, - STATE(982), 1, + STATE(877), 1, sym__maybe_record_expression, - STATE(1006), 1, + STATE(989), 1, sym__maybe_tuple_expression, - STATE(1007), 1, + STATE(991), 1, sym__maybe_function_expression, - STATE(1008), 1, + STATE(992), 1, sym_identifier, - STATE(1078), 1, + STATE(1084), 1, sym__record_update_record, - STATE(1079), 1, + STATE(1085), 1, sym__record_update_remote_record, - ACTIONS(304), 2, + ACTIONS(43), 2, sym_string, sym_float, - STATE(199), 3, + STATE(254), 3, sym_record, sym_remote_record, sym_record_update, - ACTIONS(306), 4, + ACTIONS(45), 4, sym__hex, sym__decimal, sym__octal, sym__binary, - STATE(192), 6, + STATE(248), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(230), 8, + STATE(278), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -14581,71 +14871,71 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [12811] = 27, + [13109] = 27, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(284), 1, + ACTIONS(21), 1, anon_sym_LBRACE, - ACTIONS(286), 1, + ACTIONS(23), 1, anon_sym_POUND, - ACTIONS(288), 1, + ACTIONS(27), 1, anon_sym_LBRACK, - ACTIONS(290), 1, + ACTIONS(29), 1, anon_sym_LT_LT, - ACTIONS(292), 1, + ACTIONS(31), 1, anon_sym_DASH, - ACTIONS(294), 1, + ACTIONS(33), 1, anon_sym_fn, - ACTIONS(296), 1, + ACTIONS(35), 1, anon_sym_todo, - ACTIONS(298), 1, + ACTIONS(37), 1, anon_sym_case, - ACTIONS(300), 1, + ACTIONS(51), 1, + sym__upname, + ACTIONS(334), 1, anon_sym_let, - ACTIONS(302), 1, + ACTIONS(336), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(338), 1, sym__name, - ACTIONS(310), 1, - sym__upname, - STATE(206), 1, + STATE(255), 1, sym_anonymous_function, - STATE(208), 1, + STATE(270), 1, sym_tuple, - STATE(222), 1, + STATE(314), 1, sym__expression, - STATE(982), 1, + STATE(877), 1, sym__maybe_record_expression, - STATE(1006), 1, + STATE(989), 1, sym__maybe_tuple_expression, - STATE(1007), 1, + STATE(991), 1, sym__maybe_function_expression, - STATE(1008), 1, + STATE(992), 1, sym_identifier, - STATE(1078), 1, + STATE(1084), 1, sym__record_update_record, - STATE(1079), 1, + STATE(1085), 1, sym__record_update_remote_record, - ACTIONS(304), 2, + ACTIONS(43), 2, sym_string, sym_float, - STATE(199), 3, + STATE(254), 3, sym_record, sym_remote_record, sym_record_update, - ACTIONS(306), 4, + ACTIONS(45), 4, sym__hex, sym__decimal, sym__octal, sym__binary, - STATE(192), 6, + STATE(248), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(230), 8, + STATE(278), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -14654,73 +14944,72 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [12911] = 28, + [13209] = 27, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(65), 1, + ACTIONS(21), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(23), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(27), 1, anon_sym_LBRACK, - ACTIONS(73), 1, + ACTIONS(29), 1, anon_sym_LT_LT, - ACTIONS(75), 1, + ACTIONS(31), 1, anon_sym_DASH, - ACTIONS(77), 1, + ACTIONS(33), 1, anon_sym_fn, - ACTIONS(81), 1, + ACTIONS(35), 1, anon_sym_todo, - ACTIONS(83), 1, + ACTIONS(37), 1, anon_sym_case, - ACTIONS(93), 1, - sym__name, - ACTIONS(95), 1, - sym__upname, - ACTIONS(322), 1, + ACTIONS(39), 1, anon_sym_let, - ACTIONS(324), 1, + ACTIONS(41), 1, anon_sym_assert, - ACTIONS(334), 1, - anon_sym_GT_GT, - STATE(77), 1, + ACTIONS(49), 1, + sym__name, + ACTIONS(51), 1, + sym__upname, + STATE(255), 1, sym_anonymous_function, - STATE(79), 1, + STATE(270), 1, sym_tuple, - STATE(580), 1, - sym_expression_bit_string_segment, - STATE(933), 1, + STATE(351), 1, + sym__expression, + STATE(877), 1, sym__maybe_record_expression, - STATE(957), 1, - sym_identifier, - STATE(958), 1, - sym__maybe_function_expression, - STATE(962), 1, + STATE(989), 1, sym__maybe_tuple_expression, - STATE(963), 1, - sym__record_update_remote_record, - STATE(964), 1, + STATE(991), 1, + sym__maybe_function_expression, + STATE(992), 1, + sym_identifier, + STATE(1084), 1, sym__record_update_record, - ACTIONS(326), 2, + STATE(1085), 1, + sym__record_update_remote_record, + ACTIONS(43), 2, sym_string, sym_float, - STATE(80), 3, + STATE(254), 3, sym_record, sym_remote_record, sym_record_update, - ACTIONS(91), 4, + ACTIONS(45), 4, sym__hex, sym__decimal, sym__octal, sym__binary, - STATE(62), 6, + STATE(248), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(682), 7, + STATE(278), 8, + sym_binary_expression, sym__expression_unit, sym_todo, sym_list, @@ -14728,71 +15017,71 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [13013] = 27, + [13309] = 27, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(284), 1, + ACTIONS(21), 1, anon_sym_LBRACE, - ACTIONS(286), 1, + ACTIONS(23), 1, anon_sym_POUND, - ACTIONS(288), 1, + ACTIONS(27), 1, anon_sym_LBRACK, - ACTIONS(290), 1, + ACTIONS(29), 1, anon_sym_LT_LT, - ACTIONS(292), 1, + ACTIONS(31), 1, anon_sym_DASH, - ACTIONS(294), 1, + ACTIONS(33), 1, anon_sym_fn, - ACTIONS(296), 1, + ACTIONS(35), 1, anon_sym_todo, - ACTIONS(298), 1, + ACTIONS(37), 1, anon_sym_case, - ACTIONS(300), 1, + ACTIONS(51), 1, + sym__upname, + ACTIONS(334), 1, anon_sym_let, - ACTIONS(302), 1, + ACTIONS(336), 1, anon_sym_assert, - ACTIONS(308), 1, + ACTIONS(338), 1, sym__name, - ACTIONS(310), 1, - sym__upname, - STATE(206), 1, + STATE(255), 1, sym_anonymous_function, - STATE(208), 1, + STATE(270), 1, sym_tuple, - STATE(219), 1, + STATE(318), 1, sym__expression, - STATE(982), 1, + STATE(877), 1, sym__maybe_record_expression, - STATE(1006), 1, + STATE(989), 1, sym__maybe_tuple_expression, - STATE(1007), 1, + STATE(991), 1, sym__maybe_function_expression, - STATE(1008), 1, + STATE(992), 1, sym_identifier, - STATE(1078), 1, + STATE(1084), 1, sym__record_update_record, - STATE(1079), 1, + STATE(1085), 1, sym__record_update_remote_record, - ACTIONS(304), 2, + ACTIONS(43), 2, sym_string, sym_float, - STATE(199), 3, + STATE(254), 3, sym_record, sym_remote_record, sym_record_update, - ACTIONS(306), 4, + ACTIONS(45), 4, sym__hex, sym__decimal, sym__octal, sym__binary, - STATE(192), 6, + STATE(248), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(230), 8, + STATE(278), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -14801,7 +15090,7 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [13113] = 27, + [13409] = 27, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(21), 1, @@ -14822,34 +15111,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, ACTIONS(51), 1, sym__upname, - ACTIONS(278), 1, + ACTIONS(334), 1, anon_sym_let, - ACTIONS(280), 1, + ACTIONS(336), 1, anon_sym_assert, - ACTIONS(282), 1, + ACTIONS(338), 1, sym__name, - STATE(271), 1, - sym_tuple, - STATE(272), 1, + STATE(255), 1, sym_anonymous_function, - STATE(312), 1, + STATE(270), 1, + sym_tuple, + STATE(310), 1, sym__expression, - STATE(869), 1, + STATE(877), 1, sym__maybe_record_expression, - STATE(981), 1, + STATE(989), 1, sym__maybe_tuple_expression, - STATE(983), 1, + STATE(991), 1, sym__maybe_function_expression, - STATE(984), 1, + STATE(992), 1, sym_identifier, - STATE(1076), 1, + STATE(1084), 1, sym__record_update_record, - STATE(1077), 1, + STATE(1085), 1, sym__record_update_remote_record, ACTIONS(43), 2, sym_string, sym_float, - STATE(255), 3, + STATE(254), 3, sym_record, sym_remote_record, sym_record_update, @@ -14858,14 +15147,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(251), 6, + STATE(248), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(287), 8, + STATE(278), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -14874,7 +15163,7 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [13213] = 27, + [13509] = 27, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(21), 1, @@ -14893,36 +15182,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_todo, ACTIONS(37), 1, anon_sym_case, - ACTIONS(39), 1, + ACTIONS(51), 1, + sym__upname, + ACTIONS(334), 1, anon_sym_let, - ACTIONS(41), 1, + ACTIONS(336), 1, anon_sym_assert, - ACTIONS(49), 1, + ACTIONS(338), 1, sym__name, - ACTIONS(51), 1, - sym__upname, - STATE(271), 1, - sym_tuple, - STATE(272), 1, + STATE(255), 1, sym_anonymous_function, - STATE(305), 1, + STATE(270), 1, + sym_tuple, + STATE(323), 1, sym__expression, - STATE(869), 1, + STATE(877), 1, sym__maybe_record_expression, - STATE(981), 1, + STATE(989), 1, sym__maybe_tuple_expression, - STATE(983), 1, + STATE(991), 1, sym__maybe_function_expression, - STATE(984), 1, + STATE(992), 1, sym_identifier, - STATE(1076), 1, + STATE(1084), 1, sym__record_update_record, - STATE(1077), 1, + STATE(1085), 1, sym__record_update_remote_record, ACTIONS(43), 2, sym_string, sym_float, - STATE(255), 3, + STATE(254), 3, sym_record, sym_remote_record, sym_record_update, @@ -14931,14 +15220,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(251), 6, + STATE(248), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(287), 8, + STATE(278), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -14947,71 +15236,71 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [13313] = 27, + [13609] = 27, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(65), 1, + ACTIONS(21), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(23), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(27), 1, anon_sym_LBRACK, - ACTIONS(73), 1, + ACTIONS(29), 1, anon_sym_LT_LT, - ACTIONS(75), 1, + ACTIONS(31), 1, anon_sym_DASH, - ACTIONS(77), 1, + ACTIONS(33), 1, anon_sym_fn, - ACTIONS(81), 1, + ACTIONS(35), 1, anon_sym_todo, - ACTIONS(83), 1, + ACTIONS(37), 1, anon_sym_case, - ACTIONS(85), 1, + ACTIONS(51), 1, + sym__upname, + ACTIONS(334), 1, anon_sym_let, - ACTIONS(87), 1, + ACTIONS(336), 1, anon_sym_assert, - ACTIONS(93), 1, + ACTIONS(338), 1, sym__name, - ACTIONS(95), 1, - sym__upname, - STATE(77), 1, + STATE(255), 1, sym_anonymous_function, - STATE(79), 1, + STATE(270), 1, sym_tuple, - STATE(179), 1, + STATE(324), 1, sym__expression, - STATE(957), 1, - sym_identifier, - STATE(958), 1, - sym__maybe_function_expression, - STATE(959), 1, + STATE(877), 1, sym__maybe_record_expression, - STATE(962), 1, + STATE(989), 1, sym__maybe_tuple_expression, - STATE(963), 1, - sym__record_update_remote_record, - STATE(964), 1, + STATE(991), 1, + sym__maybe_function_expression, + STATE(992), 1, + sym_identifier, + STATE(1084), 1, sym__record_update_record, - ACTIONS(89), 2, + STATE(1085), 1, + sym__record_update_remote_record, + ACTIONS(43), 2, sym_string, sym_float, - STATE(80), 3, + STATE(254), 3, sym_record, sym_remote_record, sym_record_update, - ACTIONS(91), 4, + ACTIONS(45), 4, sym__hex, sym__decimal, sym__octal, sym__binary, - STATE(62), 6, + STATE(248), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(176), 8, + STATE(278), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -15020,71 +15309,71 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [13413] = 27, + [13709] = 27, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(65), 1, + ACTIONS(21), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(23), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(27), 1, anon_sym_LBRACK, - ACTIONS(73), 1, + ACTIONS(29), 1, anon_sym_LT_LT, - ACTIONS(75), 1, + ACTIONS(31), 1, anon_sym_DASH, - ACTIONS(77), 1, + ACTIONS(33), 1, anon_sym_fn, - ACTIONS(81), 1, + ACTIONS(35), 1, anon_sym_todo, - ACTIONS(83), 1, + ACTIONS(37), 1, anon_sym_case, - ACTIONS(85), 1, + ACTIONS(51), 1, + sym__upname, + ACTIONS(334), 1, anon_sym_let, - ACTIONS(87), 1, + ACTIONS(336), 1, anon_sym_assert, - ACTIONS(93), 1, + ACTIONS(338), 1, sym__name, - ACTIONS(95), 1, - sym__upname, - STATE(77), 1, + STATE(255), 1, sym_anonymous_function, - STATE(79), 1, + STATE(270), 1, sym_tuple, - STATE(172), 1, + STATE(325), 1, sym__expression, - STATE(957), 1, - sym_identifier, - STATE(958), 1, - sym__maybe_function_expression, - STATE(959), 1, + STATE(877), 1, sym__maybe_record_expression, - STATE(962), 1, + STATE(989), 1, sym__maybe_tuple_expression, - STATE(963), 1, - sym__record_update_remote_record, - STATE(964), 1, + STATE(991), 1, + sym__maybe_function_expression, + STATE(992), 1, + sym_identifier, + STATE(1084), 1, sym__record_update_record, - ACTIONS(89), 2, + STATE(1085), 1, + sym__record_update_remote_record, + ACTIONS(43), 2, sym_string, sym_float, - STATE(80), 3, + STATE(254), 3, sym_record, sym_remote_record, sym_record_update, - ACTIONS(91), 4, + ACTIONS(45), 4, sym__hex, sym__decimal, sym__octal, sym__binary, - STATE(62), 6, + STATE(248), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(176), 8, + STATE(278), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -15093,119 +15382,71 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [13513] = 2, + [13809] = 27, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(336), 44, + ACTIONS(21), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_SLASH, + ACTIONS(23), 1, anon_sym_POUND, + ACTIONS(27), 1, anon_sym_LBRACK, + ACTIONS(29), 1, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, + ACTIONS(31), 1, anon_sym_DASH, + ACTIONS(33), 1, anon_sym_fn, - anon_sym_try, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, + ACTIONS(35), 1, anon_sym_todo, + ACTIONS(37), 1, anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_string, - sym_float, - sym__hex, - sym__decimal, - sym__octal, - sym__binary, - sym__name, + ACTIONS(51), 1, sym__upname, - [13563] = 27, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_POUND, - ACTIONS(71), 1, - anon_sym_LBRACK, - ACTIONS(73), 1, - anon_sym_LT_LT, - ACTIONS(75), 1, - anon_sym_DASH, - ACTIONS(77), 1, - anon_sym_fn, - ACTIONS(81), 1, - anon_sym_todo, - ACTIONS(83), 1, - anon_sym_case, - ACTIONS(85), 1, + ACTIONS(334), 1, anon_sym_let, - ACTIONS(87), 1, + ACTIONS(336), 1, anon_sym_assert, - ACTIONS(93), 1, + ACTIONS(338), 1, sym__name, - ACTIONS(95), 1, - sym__upname, - STATE(77), 1, + STATE(255), 1, sym_anonymous_function, - STATE(79), 1, + STATE(270), 1, sym_tuple, - STATE(181), 1, + STATE(329), 1, sym__expression, - STATE(957), 1, - sym_identifier, - STATE(958), 1, - sym__maybe_function_expression, - STATE(959), 1, + STATE(877), 1, sym__maybe_record_expression, - STATE(962), 1, + STATE(989), 1, sym__maybe_tuple_expression, - STATE(963), 1, - sym__record_update_remote_record, - STATE(964), 1, + STATE(991), 1, + sym__maybe_function_expression, + STATE(992), 1, + sym_identifier, + STATE(1084), 1, sym__record_update_record, - ACTIONS(89), 2, + STATE(1085), 1, + sym__record_update_remote_record, + ACTIONS(43), 2, sym_string, sym_float, - STATE(80), 3, + STATE(254), 3, sym_record, sym_remote_record, sym_record_update, - ACTIONS(91), 4, + ACTIONS(45), 4, sym__hex, sym__decimal, sym__octal, sym__binary, - STATE(62), 6, + STATE(248), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(176), 8, + STATE(278), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -15214,7 +15455,7 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [13663] = 27, + [13909] = 27, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(21), 1, @@ -15233,36 +15474,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_todo, ACTIONS(37), 1, anon_sym_case, - ACTIONS(39), 1, + ACTIONS(51), 1, + sym__upname, + ACTIONS(334), 1, anon_sym_let, - ACTIONS(41), 1, + ACTIONS(336), 1, anon_sym_assert, - ACTIONS(49), 1, + ACTIONS(338), 1, sym__name, - ACTIONS(51), 1, - sym__upname, - STATE(271), 1, - sym_tuple, - STATE(272), 1, + STATE(255), 1, sym_anonymous_function, - STATE(302), 1, + STATE(270), 1, + sym_tuple, + STATE(279), 1, sym__expression, - STATE(869), 1, + STATE(877), 1, sym__maybe_record_expression, - STATE(981), 1, + STATE(989), 1, sym__maybe_tuple_expression, - STATE(983), 1, + STATE(991), 1, sym__maybe_function_expression, - STATE(984), 1, + STATE(992), 1, sym_identifier, - STATE(1076), 1, + STATE(1084), 1, sym__record_update_record, - STATE(1077), 1, + STATE(1085), 1, sym__record_update_remote_record, ACTIONS(43), 2, sym_string, sym_float, - STATE(255), 3, + STATE(254), 3, sym_record, sym_remote_record, sym_record_update, @@ -15271,14 +15512,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(251), 6, + STATE(248), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(287), 8, + STATE(278), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -15287,71 +15528,71 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [13763] = 27, + [14009] = 27, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(65), 1, + ACTIONS(21), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(23), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(27), 1, anon_sym_LBRACK, - ACTIONS(73), 1, + ACTIONS(29), 1, anon_sym_LT_LT, - ACTIONS(75), 1, + ACTIONS(31), 1, anon_sym_DASH, - ACTIONS(77), 1, + ACTIONS(33), 1, anon_sym_fn, - ACTIONS(81), 1, + ACTIONS(35), 1, anon_sym_todo, - ACTIONS(83), 1, + ACTIONS(37), 1, anon_sym_case, - ACTIONS(85), 1, + ACTIONS(39), 1, anon_sym_let, - ACTIONS(87), 1, + ACTIONS(41), 1, anon_sym_assert, - ACTIONS(93), 1, + ACTIONS(49), 1, sym__name, - ACTIONS(95), 1, + ACTIONS(51), 1, sym__upname, - STATE(77), 1, + STATE(255), 1, sym_anonymous_function, - STATE(79), 1, + STATE(270), 1, sym_tuple, - STATE(173), 1, + STATE(305), 1, sym__expression, - STATE(957), 1, - sym_identifier, - STATE(958), 1, - sym__maybe_function_expression, - STATE(959), 1, + STATE(877), 1, sym__maybe_record_expression, - STATE(962), 1, + STATE(989), 1, sym__maybe_tuple_expression, - STATE(963), 1, - sym__record_update_remote_record, - STATE(964), 1, + STATE(991), 1, + sym__maybe_function_expression, + STATE(992), 1, + sym_identifier, + STATE(1084), 1, sym__record_update_record, - ACTIONS(89), 2, + STATE(1085), 1, + sym__record_update_remote_record, + ACTIONS(43), 2, sym_string, sym_float, - STATE(80), 3, + STATE(254), 3, sym_record, sym_remote_record, sym_record_update, - ACTIONS(91), 4, + ACTIONS(45), 4, sym__hex, sym__decimal, sym__octal, sym__binary, - STATE(62), 6, + STATE(248), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(176), 8, + STATE(278), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -15360,7 +15601,7 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [13863] = 27, + [14109] = 27, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(21), 1, @@ -15387,28 +15628,28 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(51), 1, sym__upname, - STATE(271), 1, - sym_tuple, - STATE(272), 1, + STATE(255), 1, sym_anonymous_function, - STATE(349), 1, + STATE(270), 1, + sym_tuple, + STATE(307), 1, sym__expression, - STATE(869), 1, + STATE(877), 1, sym__maybe_record_expression, - STATE(981), 1, + STATE(989), 1, sym__maybe_tuple_expression, - STATE(983), 1, + STATE(991), 1, sym__maybe_function_expression, - STATE(984), 1, + STATE(992), 1, sym_identifier, - STATE(1076), 1, + STATE(1084), 1, sym__record_update_record, - STATE(1077), 1, + STATE(1085), 1, sym__record_update_remote_record, ACTIONS(43), 2, sym_string, sym_float, - STATE(255), 3, + STATE(254), 3, sym_record, sym_remote_record, sym_record_update, @@ -15417,14 +15658,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(251), 6, + STATE(248), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(287), 8, + STATE(278), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -15433,71 +15674,71 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [13963] = 27, + [14209] = 27, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(65), 1, + ACTIONS(21), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(23), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(27), 1, anon_sym_LBRACK, - ACTIONS(73), 1, + ACTIONS(29), 1, anon_sym_LT_LT, - ACTIONS(75), 1, + ACTIONS(31), 1, anon_sym_DASH, - ACTIONS(77), 1, + ACTIONS(33), 1, anon_sym_fn, - ACTIONS(81), 1, + ACTIONS(35), 1, anon_sym_todo, - ACTIONS(83), 1, + ACTIONS(37), 1, anon_sym_case, - ACTIONS(85), 1, + ACTIONS(39), 1, anon_sym_let, - ACTIONS(87), 1, + ACTIONS(41), 1, anon_sym_assert, - ACTIONS(93), 1, + ACTIONS(49), 1, sym__name, - ACTIONS(95), 1, + ACTIONS(51), 1, sym__upname, - STATE(77), 1, + STATE(255), 1, sym_anonymous_function, - STATE(79), 1, + STATE(270), 1, sym_tuple, - STATE(177), 1, + STATE(306), 1, sym__expression, - STATE(957), 1, - sym_identifier, - STATE(958), 1, - sym__maybe_function_expression, - STATE(959), 1, + STATE(877), 1, sym__maybe_record_expression, - STATE(962), 1, + STATE(989), 1, sym__maybe_tuple_expression, - STATE(963), 1, - sym__record_update_remote_record, - STATE(964), 1, + STATE(991), 1, + sym__maybe_function_expression, + STATE(992), 1, + sym_identifier, + STATE(1084), 1, sym__record_update_record, - ACTIONS(89), 2, + STATE(1085), 1, + sym__record_update_remote_record, + ACTIONS(43), 2, sym_string, sym_float, - STATE(80), 3, + STATE(254), 3, sym_record, sym_remote_record, sym_record_update, - ACTIONS(91), 4, + ACTIONS(45), 4, sym__hex, sym__decimal, sym__octal, sym__binary, - STATE(62), 6, + STATE(248), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(176), 8, + STATE(278), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -15506,71 +15747,71 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [14063] = 27, + [14309] = 27, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(65), 1, + ACTIONS(21), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(23), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(27), 1, anon_sym_LBRACK, - ACTIONS(73), 1, + ACTIONS(29), 1, anon_sym_LT_LT, - ACTIONS(75), 1, + ACTIONS(31), 1, anon_sym_DASH, - ACTIONS(77), 1, + ACTIONS(33), 1, anon_sym_fn, - ACTIONS(81), 1, + ACTIONS(35), 1, anon_sym_todo, - ACTIONS(83), 1, + ACTIONS(37), 1, anon_sym_case, - ACTIONS(85), 1, + ACTIONS(39), 1, anon_sym_let, - ACTIONS(87), 1, + ACTIONS(41), 1, anon_sym_assert, - ACTIONS(93), 1, + ACTIONS(49), 1, sym__name, - ACTIONS(95), 1, + ACTIONS(51), 1, sym__upname, - STATE(77), 1, + STATE(255), 1, sym_anonymous_function, - STATE(79), 1, + STATE(270), 1, sym_tuple, - STATE(183), 1, + STATE(349), 1, sym__expression, - STATE(957), 1, - sym_identifier, - STATE(958), 1, - sym__maybe_function_expression, - STATE(959), 1, + STATE(877), 1, sym__maybe_record_expression, - STATE(962), 1, + STATE(989), 1, sym__maybe_tuple_expression, - STATE(963), 1, - sym__record_update_remote_record, - STATE(964), 1, + STATE(991), 1, + sym__maybe_function_expression, + STATE(992), 1, + sym_identifier, + STATE(1084), 1, sym__record_update_record, - ACTIONS(89), 2, + STATE(1085), 1, + sym__record_update_remote_record, + ACTIONS(43), 2, sym_string, sym_float, - STATE(80), 3, + STATE(254), 3, sym_record, sym_remote_record, sym_record_update, - ACTIONS(91), 4, + ACTIONS(45), 4, sym__hex, sym__decimal, sym__octal, sym__binary, - STATE(62), 6, + STATE(248), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(176), 8, + STATE(278), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -15579,7 +15820,7 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [14163] = 27, + [14409] = 28, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(65), 1, @@ -15598,36 +15839,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_todo, ACTIONS(83), 1, anon_sym_case, - ACTIONS(85), 1, - anon_sym_let, - ACTIONS(87), 1, - anon_sym_assert, ACTIONS(93), 1, sym__name, ACTIONS(95), 1, sym__upname, - STATE(77), 1, - sym_anonymous_function, - STATE(79), 1, + ACTIONS(312), 1, + anon_sym_let, + ACTIONS(314), 1, + anon_sym_assert, + ACTIONS(340), 1, + anon_sym_GT_GT, + STATE(70), 1, sym_tuple, - STATE(182), 1, - sym__expression, - STATE(957), 1, - sym_identifier, - STATE(958), 1, + STATE(71), 1, + sym_anonymous_function, + STATE(607), 1, + sym_expression_bit_string_segment, + STATE(888), 1, + sym__record_update_record, + STATE(892), 1, + sym__record_update_remote_record, + STATE(893), 1, + sym__maybe_tuple_expression, + STATE(895), 1, sym__maybe_function_expression, - STATE(959), 1, + STATE(896), 1, + sym_identifier, + STATE(941), 1, sym__maybe_record_expression, - STATE(962), 1, - sym__maybe_tuple_expression, - STATE(963), 1, - sym__record_update_remote_record, - STATE(964), 1, - sym__record_update_record, - ACTIONS(89), 2, + ACTIONS(316), 2, sym_string, sym_float, - STATE(80), 3, + STATE(78), 3, sym_record, sym_remote_record, sym_record_update, @@ -15636,15 +15879,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(62), 6, + STATE(63), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(176), 8, - sym_binary_expression, + STATE(639), 7, sym__expression_unit, sym_todo, sym_list, @@ -15652,7 +15894,7 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [14263] = 27, + [14511] = 27, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(21), 1, @@ -15679,28 +15921,28 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(51), 1, sym__upname, - STATE(271), 1, - sym_tuple, - STATE(272), 1, + STATE(255), 1, sym_anonymous_function, - STATE(351), 1, + STATE(270), 1, + sym_tuple, + STATE(356), 1, sym__expression, - STATE(869), 1, + STATE(877), 1, sym__maybe_record_expression, - STATE(981), 1, + STATE(989), 1, sym__maybe_tuple_expression, - STATE(983), 1, + STATE(991), 1, sym__maybe_function_expression, - STATE(984), 1, + STATE(992), 1, sym_identifier, - STATE(1076), 1, + STATE(1084), 1, sym__record_update_record, - STATE(1077), 1, + STATE(1085), 1, sym__record_update_remote_record, ACTIONS(43), 2, sym_string, sym_float, - STATE(255), 3, + STATE(254), 3, sym_record, sym_remote_record, sym_record_update, @@ -15709,14 +15951,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(251), 6, + STATE(248), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(287), 8, + STATE(278), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -15725,71 +15967,71 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [14363] = 27, + [14611] = 27, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(65), 1, + ACTIONS(21), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(23), 1, anon_sym_POUND, - ACTIONS(71), 1, + ACTIONS(27), 1, anon_sym_LBRACK, - ACTIONS(73), 1, + ACTIONS(29), 1, anon_sym_LT_LT, - ACTIONS(75), 1, + ACTIONS(31), 1, anon_sym_DASH, - ACTIONS(77), 1, + ACTIONS(33), 1, anon_sym_fn, - ACTIONS(81), 1, + ACTIONS(35), 1, anon_sym_todo, - ACTIONS(83), 1, + ACTIONS(37), 1, anon_sym_case, - ACTIONS(85), 1, + ACTIONS(39), 1, anon_sym_let, - ACTIONS(87), 1, + ACTIONS(41), 1, anon_sym_assert, - ACTIONS(93), 1, + ACTIONS(49), 1, sym__name, - ACTIONS(95), 1, + ACTIONS(51), 1, sym__upname, - STATE(77), 1, + STATE(255), 1, sym_anonymous_function, - STATE(79), 1, + STATE(270), 1, sym_tuple, - STATE(180), 1, + STATE(355), 1, sym__expression, - STATE(957), 1, - sym_identifier, - STATE(958), 1, - sym__maybe_function_expression, - STATE(959), 1, + STATE(877), 1, sym__maybe_record_expression, - STATE(962), 1, + STATE(989), 1, sym__maybe_tuple_expression, - STATE(963), 1, - sym__record_update_remote_record, - STATE(964), 1, + STATE(991), 1, + sym__maybe_function_expression, + STATE(992), 1, + sym_identifier, + STATE(1084), 1, sym__record_update_record, - ACTIONS(89), 2, + STATE(1085), 1, + sym__record_update_remote_record, + ACTIONS(43), 2, sym_string, sym_float, - STATE(80), 3, + STATE(254), 3, sym_record, sym_remote_record, sym_record_update, - ACTIONS(91), 4, + ACTIONS(45), 4, sym__hex, sym__decimal, sym__octal, sym__binary, - STATE(62), 6, + STATE(248), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(176), 8, + STATE(278), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -15798,55 +16040,7 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [14463] = 2, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(338), 44, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_DASH, - anon_sym_fn, - anon_sym_try, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_string, - sym_float, - sym__hex, - sym__decimal, - sym__octal, - sym__binary, - sym__name, - sym__upname, - [14513] = 27, + [14711] = 27, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(21), 1, @@ -15873,28 +16067,28 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(51), 1, sym__upname, - STATE(271), 1, - sym_tuple, - STATE(272), 1, + STATE(255), 1, sym_anonymous_function, - STATE(308), 1, + STATE(270), 1, + sym_tuple, + STATE(300), 1, sym__expression, - STATE(869), 1, + STATE(877), 1, sym__maybe_record_expression, - STATE(981), 1, + STATE(989), 1, sym__maybe_tuple_expression, - STATE(983), 1, + STATE(991), 1, sym__maybe_function_expression, - STATE(984), 1, + STATE(992), 1, sym_identifier, - STATE(1076), 1, + STATE(1084), 1, sym__record_update_record, - STATE(1077), 1, + STATE(1085), 1, sym__record_update_remote_record, ACTIONS(43), 2, sym_string, sym_float, - STATE(255), 3, + STATE(254), 3, sym_record, sym_remote_record, sym_record_update, @@ -15903,14 +16097,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(251), 6, + STATE(248), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(287), 8, + STATE(278), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -15919,7 +16113,7 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [14613] = 27, + [14811] = 28, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(65), 1, @@ -15938,36 +16132,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_todo, ACTIONS(83), 1, anon_sym_case, - ACTIONS(85), 1, - anon_sym_let, - ACTIONS(87), 1, - anon_sym_assert, ACTIONS(93), 1, sym__name, ACTIONS(95), 1, sym__upname, - STATE(77), 1, - sym_anonymous_function, - STATE(79), 1, + ACTIONS(312), 1, + anon_sym_let, + ACTIONS(314), 1, + anon_sym_assert, + ACTIONS(342), 1, + anon_sym_GT_GT, + STATE(70), 1, sym_tuple, - STATE(178), 1, - sym__expression, - STATE(957), 1, - sym_identifier, - STATE(958), 1, + STATE(71), 1, + sym_anonymous_function, + STATE(632), 1, + sym_expression_bit_string_segment, + STATE(888), 1, + sym__record_update_record, + STATE(892), 1, + sym__record_update_remote_record, + STATE(893), 1, + sym__maybe_tuple_expression, + STATE(895), 1, sym__maybe_function_expression, - STATE(959), 1, + STATE(896), 1, + sym_identifier, + STATE(941), 1, sym__maybe_record_expression, - STATE(962), 1, - sym__maybe_tuple_expression, - STATE(963), 1, - sym__record_update_remote_record, - STATE(964), 1, - sym__record_update_record, - ACTIONS(89), 2, + ACTIONS(316), 2, sym_string, sym_float, - STATE(80), 3, + STATE(78), 3, sym_record, sym_remote_record, sym_record_update, @@ -15976,15 +16172,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(62), 6, + STATE(63), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(176), 8, - sym_binary_expression, + STATE(639), 7, sym__expression_unit, sym_todo, sym_list, @@ -15992,7 +16187,7 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [14713] = 27, + [14913] = 27, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(21), 1, @@ -16019,28 +16214,28 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(51), 1, sym__upname, - STATE(271), 1, - sym_tuple, - STATE(272), 1, + STATE(255), 1, sym_anonymous_function, - STATE(307), 1, + STATE(270), 1, + sym_tuple, + STATE(353), 1, sym__expression, - STATE(869), 1, + STATE(877), 1, sym__maybe_record_expression, - STATE(981), 1, + STATE(989), 1, sym__maybe_tuple_expression, - STATE(983), 1, + STATE(991), 1, sym__maybe_function_expression, - STATE(984), 1, + STATE(992), 1, sym_identifier, - STATE(1076), 1, + STATE(1084), 1, sym__record_update_record, - STATE(1077), 1, + STATE(1085), 1, sym__record_update_remote_record, ACTIONS(43), 2, sym_string, sym_float, - STATE(255), 3, + STATE(254), 3, sym_record, sym_remote_record, sym_record_update, @@ -16049,14 +16244,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(251), 6, + STATE(248), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(287), 8, + STATE(278), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -16065,7 +16260,7 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [14813] = 27, + [15013] = 27, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(21), 1, @@ -16092,28 +16287,28 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(51), 1, sym__upname, - STATE(271), 1, - sym_tuple, - STATE(272), 1, + STATE(255), 1, sym_anonymous_function, - STATE(306), 1, + STATE(270), 1, + sym_tuple, + STATE(303), 1, sym__expression, - STATE(869), 1, + STATE(877), 1, sym__maybe_record_expression, - STATE(981), 1, + STATE(989), 1, sym__maybe_tuple_expression, - STATE(983), 1, + STATE(991), 1, sym__maybe_function_expression, - STATE(984), 1, + STATE(992), 1, sym_identifier, - STATE(1076), 1, + STATE(1084), 1, sym__record_update_record, - STATE(1077), 1, + STATE(1085), 1, sym__record_update_remote_record, ACTIONS(43), 2, sym_string, sym_float, - STATE(255), 3, + STATE(254), 3, sym_record, sym_remote_record, sym_record_update, @@ -16122,14 +16317,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(251), 6, + STATE(248), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(287), 8, + STATE(278), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -16138,116 +16333,20 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [14913] = 2, + [15113] = 27, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(340), 44, + ACTIONS(21), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_SLASH, + ACTIONS(23), 1, anon_sym_POUND, + ACTIONS(27), 1, anon_sym_LBRACK, + ACTIONS(29), 1, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, + ACTIONS(31), 1, anon_sym_DASH, - anon_sym_fn, - anon_sym_try, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_string, - sym_float, - sym__hex, - sym__decimal, - sym__octal, - sym__binary, - sym__name, - sym__upname, - [14963] = 2, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(342), 44, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_DASH, - anon_sym_fn, - anon_sym_try, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_string, - sym_float, - sym__hex, - sym__decimal, - sym__octal, - sym__binary, - sym__name, - sym__upname, - [15013] = 27, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(21), 1, - anon_sym_LBRACE, - ACTIONS(23), 1, - anon_sym_POUND, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(29), 1, - anon_sym_LT_LT, - ACTIONS(31), 1, - anon_sym_DASH, - ACTIONS(33), 1, + ACTIONS(33), 1, anon_sym_fn, ACTIONS(35), 1, anon_sym_todo, @@ -16261,28 +16360,28 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(51), 1, sym__upname, - STATE(271), 1, - sym_tuple, - STATE(272), 1, + STATE(255), 1, sym_anonymous_function, - STATE(289), 1, + STATE(270), 1, + sym_tuple, + STATE(352), 1, sym__expression, - STATE(869), 1, + STATE(877), 1, sym__maybe_record_expression, - STATE(981), 1, + STATE(989), 1, sym__maybe_tuple_expression, - STATE(983), 1, + STATE(991), 1, sym__maybe_function_expression, - STATE(984), 1, + STATE(992), 1, sym_identifier, - STATE(1076), 1, + STATE(1084), 1, sym__record_update_record, - STATE(1077), 1, + STATE(1085), 1, sym__record_update_remote_record, ACTIONS(43), 2, sym_string, sym_float, - STATE(255), 3, + STATE(254), 3, sym_record, sym_remote_record, sym_record_update, @@ -16291,14 +16390,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(251), 6, + STATE(248), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(287), 8, + STATE(278), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -16307,71 +16406,71 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [15113] = 27, + [15213] = 27, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(21), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(23), 1, + ACTIONS(69), 1, anon_sym_POUND, - ACTIONS(27), 1, + ACTIONS(71), 1, anon_sym_LBRACK, - ACTIONS(29), 1, + ACTIONS(73), 1, anon_sym_LT_LT, - ACTIONS(31), 1, + ACTIONS(75), 1, anon_sym_DASH, - ACTIONS(33), 1, + ACTIONS(77), 1, anon_sym_fn, - ACTIONS(35), 1, + ACTIONS(81), 1, anon_sym_todo, - ACTIONS(37), 1, + ACTIONS(83), 1, anon_sym_case, - ACTIONS(39), 1, + ACTIONS(85), 1, anon_sym_let, - ACTIONS(41), 1, + ACTIONS(87), 1, anon_sym_assert, - ACTIONS(49), 1, + ACTIONS(93), 1, sym__name, - ACTIONS(51), 1, + ACTIONS(95), 1, sym__upname, - STATE(271), 1, + STATE(70), 1, sym_tuple, - STATE(272), 1, + STATE(71), 1, sym_anonymous_function, - STATE(301), 1, + STATE(179), 1, sym__expression, - STATE(869), 1, - sym__maybe_record_expression, - STATE(981), 1, + STATE(888), 1, + sym__record_update_record, + STATE(892), 1, + sym__record_update_remote_record, + STATE(893), 1, sym__maybe_tuple_expression, - STATE(983), 1, + STATE(894), 1, + sym__maybe_record_expression, + STATE(895), 1, sym__maybe_function_expression, - STATE(984), 1, + STATE(896), 1, sym_identifier, - STATE(1076), 1, - sym__record_update_record, - STATE(1077), 1, - sym__record_update_remote_record, - ACTIONS(43), 2, + ACTIONS(89), 2, sym_string, sym_float, - STATE(255), 3, + STATE(78), 3, sym_record, sym_remote_record, sym_record_update, - ACTIONS(45), 4, + ACTIONS(91), 4, sym__hex, sym__decimal, sym__octal, sym__binary, - STATE(251), 6, + STATE(63), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(287), 8, + STATE(178), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -16380,7 +16479,7 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [15213] = 2, + [15313] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(344), 44, @@ -16428,7 +16527,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary, sym__name, sym__upname, - [15263] = 27, + [15363] = 27, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(21), 1, @@ -16447,36 +16546,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_todo, ACTIONS(37), 1, anon_sym_case, - ACTIONS(39), 1, + ACTIONS(51), 1, + sym__upname, + ACTIONS(334), 1, anon_sym_let, - ACTIONS(41), 1, + ACTIONS(336), 1, anon_sym_assert, - ACTIONS(49), 1, + ACTIONS(338), 1, sym__name, - ACTIONS(51), 1, - sym__upname, - STATE(271), 1, - sym_tuple, - STATE(272), 1, + STATE(255), 1, sym_anonymous_function, - STATE(300), 1, + STATE(270), 1, + sym_tuple, + STATE(328), 1, sym__expression, - STATE(869), 1, + STATE(877), 1, sym__maybe_record_expression, - STATE(981), 1, + STATE(989), 1, sym__maybe_tuple_expression, - STATE(983), 1, + STATE(991), 1, sym__maybe_function_expression, - STATE(984), 1, + STATE(992), 1, sym_identifier, - STATE(1076), 1, + STATE(1084), 1, sym__record_update_record, - STATE(1077), 1, + STATE(1085), 1, sym__record_update_remote_record, ACTIONS(43), 2, sym_string, sym_float, - STATE(255), 3, + STATE(254), 3, sym_record, sym_remote_record, sym_record_update, @@ -16485,14 +16584,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(251), 6, + STATE(248), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(287), 8, + STATE(278), 8, sym_binary_expression, sym__expression_unit, sym_todo, @@ -16501,80 +16600,54 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [15363] = 27, + [15463] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(65), 1, + ACTIONS(346), 43, anon_sym_LBRACE, - ACTIONS(69), 1, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_SLASH, anon_sym_POUND, - ACTIONS(71), 1, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(73), 1, anon_sym_LT_LT, - ACTIONS(75), 1, anon_sym_DASH, - ACTIONS(77), 1, anon_sym_fn, - ACTIONS(81), 1, + anon_sym_try, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, anon_sym_todo, - ACTIONS(83), 1, anon_sym_case, - ACTIONS(85), 1, anon_sym_let, - ACTIONS(87), 1, anon_sym_assert, - ACTIONS(93), 1, - sym__name, - ACTIONS(95), 1, - sym__upname, - STATE(77), 1, - sym_anonymous_function, - STATE(79), 1, - sym_tuple, - STATE(171), 1, - sym__expression, - STATE(957), 1, - sym_identifier, - STATE(958), 1, - sym__maybe_function_expression, - STATE(959), 1, - sym__maybe_record_expression, - STATE(962), 1, - sym__maybe_tuple_expression, - STATE(963), 1, - sym__record_update_remote_record, - STATE(964), 1, - sym__record_update_record, - ACTIONS(89), 2, sym_string, sym_float, - STATE(80), 3, - sym_record, - sym_remote_record, - sym_record_update, - ACTIONS(91), 4, sym__hex, sym__decimal, sym__octal, sym__binary, - STATE(62), 6, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - sym_var, - STATE(176), 8, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_integer, - [15463] = 27, + sym__name, + sym__upname, + [15512] = 27, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(65), 1, @@ -16597,32 +16670,32 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(95), 1, sym__upname, - ACTIONS(322), 1, + ACTIONS(312), 1, anon_sym_let, - ACTIONS(324), 1, + ACTIONS(314), 1, anon_sym_assert, - STATE(77), 1, - sym_anonymous_function, - STATE(79), 1, + STATE(70), 1, sym_tuple, - STATE(739), 1, + STATE(71), 1, + sym_anonymous_function, + STATE(784), 1, sym_expression_bit_string_segment, - STATE(933), 1, - sym__maybe_record_expression, - STATE(957), 1, - sym_identifier, - STATE(958), 1, - sym__maybe_function_expression, - STATE(962), 1, - sym__maybe_tuple_expression, - STATE(963), 1, - sym__record_update_remote_record, - STATE(964), 1, + STATE(888), 1, sym__record_update_record, - ACTIONS(326), 2, + STATE(892), 1, + sym__record_update_remote_record, + STATE(893), 1, + sym__maybe_tuple_expression, + STATE(895), 1, + sym__maybe_function_expression, + STATE(896), 1, + sym_identifier, + STATE(941), 1, + sym__maybe_record_expression, + ACTIONS(316), 2, sym_string, sym_float, - STATE(80), 3, + STATE(78), 3, sym_record, sym_remote_record, sym_record_update, @@ -16631,14 +16704,14 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(62), 6, + STATE(63), 6, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, sym_var, - STATE(682), 7, + STATE(639), 7, sym__expression_unit, sym_todo, sym_list, @@ -16646,16 +16719,14 @@ static const uint16_t ts_small_parse_table[] = { sym_let, sym_assert, sym_integer, - [15562] = 2, + [15611] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(346), 43, + ACTIONS(348), 41, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_SLASH, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_DASH, @@ -16693,17 +16764,26 @@ static const uint16_t ts_small_parse_table[] = { sym__binary, sym__name, sym__upname, - [15611] = 2, + [15658] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(348), 41, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(352), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(350), 5, anon_sym_SLASH, + anon_sym_STAR, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(348), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, - anon_sym_DASH, anon_sym_fn, anon_sym_try, anon_sym_PIPE_PIPE, @@ -16719,13 +16799,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, anon_sym_PIPE_GT, - anon_sym_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, anon_sym_todo, anon_sym_case, anon_sym_let, @@ -16738,30 +16811,26 @@ static const uint16_t ts_small_parse_table[] = { sym__binary, sym__name, sym__upname, - [15658] = 9, + [15709] = 7, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(356), 1, - anon_sym_PIPE_PIPE, ACTIONS(358), 1, - anon_sym_AMP_AMP, - ACTIONS(364), 1, anon_sym_PIPE_GT, - ACTIONS(360), 2, + ACTIONS(354), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(354), 4, + ACTIONS(352), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(352), 5, + ACTIONS(350), 5, anon_sym_SLASH, anon_sym_STAR, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(362), 8, + ACTIONS(356), 8, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_DOT, @@ -16770,43 +16839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(350), 19, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_string, - sym_float, - sym__hex, - sym__decimal, - sym__octal, - sym__binary, - sym__name, - sym__upname, - [15719] = 5, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(364), 1, - anon_sym_PIPE_GT, - ACTIONS(354), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(352), 5, - anon_sym_SLASH, - anon_sym_STAR, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(348), 31, + ACTIONS(348), 21, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, @@ -16816,16 +16849,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, anon_sym_todo, anon_sym_case, anon_sym_let, @@ -16838,30 +16861,28 @@ static const uint16_t ts_small_parse_table[] = { sym__binary, sym__name, sym__upname, - [15772] = 9, + [15766] = 8, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(356), 1, - anon_sym_PIPE_PIPE, ACTIONS(358), 1, - anon_sym_AMP_AMP, - ACTIONS(364), 1, anon_sym_PIPE_GT, - ACTIONS(360), 2, + ACTIONS(360), 1, + anon_sym_AMP_AMP, + ACTIONS(354), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(354), 4, + ACTIONS(352), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(352), 5, + ACTIONS(350), 5, anon_sym_SLASH, anon_sym_STAR, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(362), 8, + ACTIONS(356), 8, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_DOT, @@ -16870,7 +16891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(366), 19, + ACTIONS(348), 20, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, @@ -16878,6 +16899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_fn, anon_sym_try, + anon_sym_PIPE_PIPE, anon_sym_todo, anon_sym_case, anon_sym_let, @@ -16890,30 +16912,28 @@ static const uint16_t ts_small_parse_table[] = { sym__binary, sym__name, sym__upname, - [15833] = 9, + [15825] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(356), 1, - anon_sym_PIPE_PIPE, - ACTIONS(358), 1, - anon_sym_AMP_AMP, - ACTIONS(364), 1, - anon_sym_PIPE_GT, - ACTIONS(360), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(354), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(352), 5, + ACTIONS(350), 5, anon_sym_SLASH, anon_sym_STAR, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(362), 8, + ACTIONS(348), 36, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_DASH, + anon_sym_fn, + anon_sym_try, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_DOT, @@ -16922,14 +16942,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(368), 19, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_fn, - anon_sym_try, + anon_sym_PIPE_GT, + anon_sym_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_todo, anon_sym_case, anon_sym_let, @@ -16942,17 +16958,28 @@ static const uint16_t ts_small_parse_table[] = { sym__binary, sym__name, sym__upname, - [15894] = 2, + [15874] = 5, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(370), 41, + ACTIONS(358), 1, + anon_sym_PIPE_GT, + ACTIONS(352), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(350), 5, + anon_sym_SLASH, + anon_sym_STAR, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(348), 31, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_SLASH, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, - anon_sym_DASH, anon_sym_fn, anon_sym_try, anon_sym_PIPE_PIPE, @@ -16967,14 +16994,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, anon_sym_todo, anon_sym_case, anon_sym_let, @@ -16987,30 +17006,30 @@ static const uint16_t ts_small_parse_table[] = { sym__binary, sym__name, sym__upname, - [15941] = 9, + [15927] = 9, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(356), 1, - anon_sym_PIPE_PIPE, ACTIONS(358), 1, + anon_sym_PIPE_GT, + ACTIONS(360), 1, anon_sym_AMP_AMP, ACTIONS(364), 1, - anon_sym_PIPE_GT, - ACTIONS(360), 2, + anon_sym_PIPE_PIPE, + ACTIONS(354), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(354), 4, + ACTIONS(352), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(352), 5, + ACTIONS(350), 5, anon_sym_SLASH, anon_sym_STAR, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(362), 8, + ACTIONS(356), 8, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_DOT, @@ -17019,7 +17038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(372), 19, + ACTIONS(362), 19, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, @@ -17039,18 +17058,13 @@ static const uint16_t ts_small_parse_table[] = { sym__binary, sym__name, sym__upname, - [16002] = 3, + [15988] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(352), 5, - anon_sym_SLASH, - anon_sym_STAR, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(348), 36, + ACTIONS(366), 41, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_SLASH, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -17073,6 +17087,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, + anon_sym_STAR, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, anon_sym_todo, anon_sym_case, anon_sym_let, @@ -17085,30 +17103,30 @@ static const uint16_t ts_small_parse_table[] = { sym__binary, sym__name, sym__upname, - [16051] = 9, + [16035] = 9, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(356), 1, - anon_sym_PIPE_PIPE, ACTIONS(358), 1, + anon_sym_PIPE_GT, + ACTIONS(360), 1, anon_sym_AMP_AMP, ACTIONS(364), 1, - anon_sym_PIPE_GT, - ACTIONS(360), 2, + anon_sym_PIPE_PIPE, + ACTIONS(354), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(354), 4, + ACTIONS(352), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(352), 5, + ACTIONS(350), 5, anon_sym_SLASH, anon_sym_STAR, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(362), 8, + ACTIONS(356), 8, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_DOT, @@ -17117,7 +17135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(374), 19, + ACTIONS(368), 19, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, @@ -17137,28 +17155,30 @@ static const uint16_t ts_small_parse_table[] = { sym__binary, sym__name, sym__upname, - [16112] = 8, + [16096] = 9, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(358), 1, + anon_sym_PIPE_GT, + ACTIONS(360), 1, anon_sym_AMP_AMP, ACTIONS(364), 1, - anon_sym_PIPE_GT, - ACTIONS(360), 2, + anon_sym_PIPE_PIPE, + ACTIONS(354), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(354), 4, + ACTIONS(352), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(352), 5, + ACTIONS(350), 5, anon_sym_SLASH, anon_sym_STAR, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(362), 8, + ACTIONS(356), 8, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_DOT, @@ -17167,7 +17187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(348), 20, + ACTIONS(370), 19, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, @@ -17175,7 +17195,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_fn, anon_sym_try, - anon_sym_PIPE_PIPE, anon_sym_todo, anon_sym_case, anon_sym_let, @@ -17188,21 +17207,32 @@ static const uint16_t ts_small_parse_table[] = { sym__binary, sym__name, sym__upname, - [16171] = 4, + [16157] = 6, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(354), 4, + ACTIONS(358), 1, + anon_sym_PIPE_GT, + ACTIONS(352), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(352), 5, + ACTIONS(350), 5, anon_sym_SLASH, anon_sym_STAR, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(348), 32, + ACTIONS(356), 8, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(348), 23, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, @@ -17214,15 +17244,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, anon_sym_todo, anon_sym_case, anon_sym_let, @@ -17235,26 +17256,30 @@ static const uint16_t ts_small_parse_table[] = { sym__binary, sym__name, sym__upname, - [16222] = 7, + [16212] = 9, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(364), 1, + ACTIONS(358), 1, anon_sym_PIPE_GT, - ACTIONS(360), 2, + ACTIONS(360), 1, + anon_sym_AMP_AMP, + ACTIONS(364), 1, + anon_sym_PIPE_PIPE, + ACTIONS(354), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(354), 4, + ACTIONS(352), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(352), 5, + ACTIONS(350), 5, anon_sym_SLASH, anon_sym_STAR, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(362), 8, + ACTIONS(356), 8, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_DOT, @@ -17263,7 +17288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(348), 21, + ACTIONS(372), 19, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, @@ -17271,8 +17296,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_fn, anon_sym_try, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_todo, anon_sym_case, anon_sym_let, @@ -17285,23 +17308,30 @@ static const uint16_t ts_small_parse_table[] = { sym__binary, sym__name, sym__upname, - [16279] = 6, + [16273] = 9, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(364), 1, + ACTIONS(358), 1, anon_sym_PIPE_GT, - ACTIONS(354), 4, + ACTIONS(360), 1, + anon_sym_AMP_AMP, + ACTIONS(364), 1, + anon_sym_PIPE_PIPE, + ACTIONS(354), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(352), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(352), 5, + ACTIONS(350), 5, anon_sym_SLASH, anon_sym_STAR, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(362), 8, + ACTIONS(356), 8, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_DOT, @@ -17310,7 +17340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(348), 23, + ACTIONS(374), 19, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, @@ -17318,10 +17348,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_fn, anon_sym_try, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_todo, anon_sym_case, anon_sym_let, @@ -17337,7 +17363,7 @@ static const uint16_t ts_small_parse_table[] = { [16334] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(195), 37, + ACTIONS(215), 37, anon_sym_RBRACE, anon_sym_DOT, anon_sym_SLASH, @@ -17378,7 +17404,7 @@ static const uint16_t ts_small_parse_table[] = { [16377] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(199), 37, + ACTIONS(176), 37, anon_sym_RBRACE, anon_sym_DOT, anon_sym_SLASH, @@ -17419,22 +17445,15 @@ static const uint16_t ts_small_parse_table[] = { [16420] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(63), 37, - anon_sym_if, - anon_sym_LBRACE, + ACTIONS(190), 37, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_COMMA, - anon_sym_as, anon_sym_SLASH, - anon_sym_EQ, + anon_sym_POUND, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_LT_LT, anon_sym_DASH, - anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -17455,12 +17474,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - anon_sym_DOT_DOT, - anon_sym_PIPE, + sym_string, + sym_float, + sym__hex, + sym__decimal, + sym__octal, + sym__binary, + sym__discard_name, + sym__name, + sym__upname, [16463] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(346), 37, + ACTIONS(199), 37, anon_sym_RBRACE, anon_sym_DOT, anon_sym_SLASH, @@ -17498,16 +17524,15 @@ static const uint16_t ts_small_parse_table[] = { sym__discard_name, sym__name, sym__upname, - [16506] = 3, + [16506] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(376), 1, - anon_sym_LPAREN, - ACTIONS(190), 36, + ACTIONS(197), 37, anon_sym_RBRACE, anon_sym_DOT, anon_sym_SLASH, anon_sym_POUND, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_DASH, @@ -17540,18 +17565,25 @@ static const uint16_t ts_small_parse_table[] = { sym__discard_name, sym__name, sym__upname, - [16551] = 2, + [16549] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(215), 37, + ACTIONS(63), 37, + anon_sym_if, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, anon_sym_SLASH, - anon_sym_POUND, + anon_sym_EQ, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT_LT, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_COLON, anon_sym_DASH, + anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -17572,25 +17604,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, - sym_float, - sym__hex, - sym__decimal, - sym__octal, - sym__binary, - sym__discard_name, - sym__name, - sym__upname, - [16594] = 3, + anon_sym_DOT_DOT, + anon_sym_PIPE, + [16592] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(379), 1, - anon_sym_LPAREN, - ACTIONS(190), 36, + ACTIONS(346), 37, anon_sym_RBRACE, anon_sym_DOT, anon_sym_SLASH, anon_sym_POUND, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_DASH, @@ -17623,12 +17647,12 @@ static const uint16_t ts_small_parse_table[] = { sym__discard_name, sym__name, sym__upname, - [16639] = 3, + [16635] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(210), 1, + ACTIONS(219), 1, anon_sym_DOT, - ACTIONS(208), 36, + ACTIONS(217), 36, anon_sym_RBRACE, anon_sym_SLASH, anon_sym_POUND, @@ -17665,15 +17689,14 @@ static const uint16_t ts_small_parse_table[] = { sym__discard_name, sym__name, sym__upname, - [16684] = 4, + [16680] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(203), 1, - anon_sym_DOT, - ACTIONS(206), 1, + ACTIONS(376), 1, anon_sym_LPAREN, - ACTIONS(201), 35, + ACTIONS(192), 36, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_SLASH, anon_sym_POUND, anon_sym_LBRACK, @@ -17708,10 +17731,10 @@ static const uint16_t ts_small_parse_table[] = { sym__discard_name, sym__name, sym__upname, - [16731] = 2, + [16725] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(197), 37, + ACTIONS(210), 37, anon_sym_RBRACE, anon_sym_DOT, anon_sym_SLASH, @@ -17749,15 +17772,16 @@ static const uint16_t ts_small_parse_table[] = { sym__discard_name, sym__name, sym__upname, - [16774] = 2, + [16768] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(220), 37, + ACTIONS(379), 1, + anon_sym_LPAREN, + ACTIONS(192), 36, anon_sym_RBRACE, anon_sym_DOT, anon_sym_SLASH, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_DASH, @@ -17790,15 +17814,17 @@ static const uint16_t ts_small_parse_table[] = { sym__discard_name, sym__name, sym__upname, - [16817] = 2, + [16813] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(188), 37, - anon_sym_RBRACE, + ACTIONS(205), 1, anon_sym_DOT, + ACTIONS(208), 1, + anon_sym_LPAREN, + ACTIONS(203), 35, + anon_sym_RBRACE, anon_sym_SLASH, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_DASH, @@ -17875,7 +17901,7 @@ static const uint16_t ts_small_parse_table[] = { [16903] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(213), 37, + ACTIONS(201), 37, anon_sym_RBRACE, anon_sym_DOT, anon_sym_SLASH, @@ -17916,7 +17942,7 @@ static const uint16_t ts_small_parse_table[] = { [16946] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(188), 37, + ACTIONS(176), 37, anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, @@ -17954,15 +17980,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_DOT_DOT, anon_sym_PIPE, - [16989] = 3, + [16989] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(240), 1, - anon_sym_DOT, - ACTIONS(201), 35, + ACTIONS(228), 36, anon_sym_RBRACE, anon_sym_SLASH, anon_sym_POUND, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_DASH, @@ -17995,14 +18020,14 @@ static const uint16_t ts_small_parse_table[] = { sym__discard_name, sym__name, sym__upname, - [17033] = 2, + [17031] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(228), 36, + ACTIONS(226), 36, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_SLASH, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_DASH, @@ -18035,14 +18060,14 @@ static const uint16_t ts_small_parse_table[] = { sym__discard_name, sym__name, sym__upname, - [17075] = 2, + [17073] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(256), 36, + ACTIONS(232), 36, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_SLASH, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_DASH, @@ -18075,14 +18100,14 @@ static const uint16_t ts_small_parse_table[] = { sym__discard_name, sym__name, sym__upname, - [17117] = 2, + [17115] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(252), 36, + ACTIONS(242), 36, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_SLASH, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_DASH, @@ -18115,10 +18140,10 @@ static const uint16_t ts_small_parse_table[] = { sym__discard_name, sym__name, sym__upname, - [17159] = 2, + [17157] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(244), 36, + ACTIONS(266), 36, anon_sym_RBRACE, anon_sym_DOT, anon_sym_SLASH, @@ -18155,12 +18180,13 @@ static const uint16_t ts_small_parse_table[] = { sym__discard_name, sym__name, sym__upname, - [17201] = 2, + [17199] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(272), 36, + ACTIONS(208), 1, + anon_sym_LPAREN, + ACTIONS(203), 35, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_SLASH, anon_sym_POUND, anon_sym_LBRACK, @@ -18195,12 +18221,13 @@ static const uint16_t ts_small_parse_table[] = { sym__discard_name, sym__name, sym__upname, - [17243] = 2, + [17243] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(230), 36, - anon_sym_RBRACE, + ACTIONS(224), 1, anon_sym_DOT, + ACTIONS(203), 35, + anon_sym_RBRACE, anon_sym_SLASH, anon_sym_POUND, anon_sym_LBRACK, @@ -18235,12 +18262,12 @@ static const uint16_t ts_small_parse_table[] = { sym__discard_name, sym__name, sym__upname, - [17285] = 3, + [17287] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(206), 1, - anon_sym_LPAREN, - ACTIONS(201), 35, + ACTIONS(234), 1, + anon_sym_DOT, + ACTIONS(203), 35, anon_sym_RBRACE, anon_sym_SLASH, anon_sym_POUND, @@ -18276,10 +18303,10 @@ static const uint16_t ts_small_parse_table[] = { sym__discard_name, sym__name, sym__upname, - [17329] = 2, + [17331] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(266), 36, + ACTIONS(238), 36, anon_sym_RBRACE, anon_sym_DOT, anon_sym_SLASH, @@ -18316,13 +18343,12 @@ static const uint16_t ts_small_parse_table[] = { sym__discard_name, sym__name, sym__upname, - [17371] = 3, + [17373] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(238), 1, - anon_sym_DOT, - ACTIONS(201), 35, + ACTIONS(274), 36, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_SLASH, anon_sym_POUND, anon_sym_LBRACK, @@ -18357,14 +18383,15 @@ static const uint16_t ts_small_parse_table[] = { sym__discard_name, sym__name, sym__upname, - [17415] = 2, + [17415] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(226), 36, + ACTIONS(382), 1, + anon_sym_LPAREN, + ACTIONS(270), 35, anon_sym_RBRACE, anon_sym_SLASH, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_DASH, @@ -18397,10 +18424,10 @@ static const uint16_t ts_small_parse_table[] = { sym__discard_name, sym__name, sym__upname, - [17457] = 2, + [17459] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(264), 36, + ACTIONS(244), 36, anon_sym_RBRACE, anon_sym_DOT, anon_sym_SLASH, @@ -18437,15 +18464,14 @@ static const uint16_t ts_small_parse_table[] = { sym__discard_name, sym__name, sym__upname, - [17499] = 3, + [17501] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(382), 1, - anon_sym_LPAREN, - ACTIONS(248), 35, + ACTIONS(240), 36, anon_sym_RBRACE, anon_sym_SLASH, anon_sym_POUND, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_DASH, @@ -18481,11 +18507,11 @@ static const uint16_t ts_small_parse_table[] = { [17543] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(232), 36, + ACTIONS(276), 36, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_SLASH, anon_sym_POUND, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_DASH, @@ -18521,11 +18547,11 @@ static const uint16_t ts_small_parse_table[] = { [17585] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(270), 36, + ACTIONS(260), 36, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_SLASH, anon_sym_POUND, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_DASH, @@ -18561,7 +18587,7 @@ static const uint16_t ts_small_parse_table[] = { [17627] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(262), 36, + ACTIONS(246), 36, anon_sym_RBRACE, anon_sym_DOT, anon_sym_SLASH, @@ -18598,59 +18624,26 @@ static const uint16_t ts_small_parse_table[] = { sym__discard_name, sym__name, sym__upname, - [17669] = 2, + [17669] = 7, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(344), 35, - anon_sym_RBRACE, - anon_sym_SLASH, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(392), 1, + anon_sym_PIPE_GT, + ACTIONS(388), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, + ACTIONS(386), 4, + anon_sym_DASH, anon_sym_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, + ACTIONS(384), 5, + anon_sym_SLASH, anon_sym_STAR, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, - sym_float, - sym__hex, - sym__decimal, - sym__octal, - sym__binary, - sym__discard_name, - sym__name, - sym__upname, - [17710] = 2, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(342), 35, - anon_sym_RBRACE, - anon_sym_SLASH, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(390), 8, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_DOT, @@ -18659,14 +18652,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, + ACTIONS(348), 15, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, sym_string, sym_float, sym__hex, @@ -18676,10 +18668,10 @@ static const uint16_t ts_small_parse_table[] = { sym__discard_name, sym__name, sym__upname, - [17751] = 2, + [17720] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(316), 35, + ACTIONS(318), 35, anon_sym_RBRACE, anon_sym_SLASH, anon_sym_POUND, @@ -18715,16 +18707,16 @@ static const uint16_t ts_small_parse_table[] = { sym__discard_name, sym__name, sym__upname, - [17792] = 9, + [17761] = 9, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(388), 1, + ACTIONS(392), 1, + anon_sym_PIPE_GT, + ACTIONS(394), 1, anon_sym_PIPE_PIPE, - ACTIONS(390), 1, - anon_sym_AMP_AMP, ACTIONS(396), 1, - anon_sym_PIPE_GT, - ACTIONS(392), 2, + anon_sym_AMP_AMP, + ACTIONS(388), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, ACTIONS(386), 4, @@ -18738,7 +18730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(394), 8, + ACTIONS(390), 8, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_DOT, @@ -18747,7 +18739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(372), 13, + ACTIONS(370), 13, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -18761,16 +18753,16 @@ static const uint16_t ts_small_parse_table[] = { sym__discard_name, sym__name, sym__upname, - [17847] = 9, + [17816] = 9, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(388), 1, + ACTIONS(392), 1, + anon_sym_PIPE_GT, + ACTIONS(394), 1, anon_sym_PIPE_PIPE, - ACTIONS(390), 1, - anon_sym_AMP_AMP, ACTIONS(396), 1, - anon_sym_PIPE_GT, - ACTIONS(392), 2, + anon_sym_AMP_AMP, + ACTIONS(388), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, ACTIONS(386), 4, @@ -18784,7 +18776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(394), 8, + ACTIONS(390), 8, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_DOT, @@ -18793,7 +18785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(366), 13, + ACTIONS(368), 13, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -18807,28 +18799,20 @@ static const uint16_t ts_small_parse_table[] = { sym__discard_name, sym__name, sym__upname, - [17902] = 8, + [17871] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(390), 1, + ACTIONS(280), 35, + anon_sym_RBRACE, + anon_sym_SLASH, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_DASH, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(396), 1, - anon_sym_PIPE_GT, - ACTIONS(392), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(386), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(384), 5, - anon_sym_SLASH, - anon_sym_STAR, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(394), 8, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_DOT, @@ -18837,12 +18821,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(348), 14, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, + anon_sym_PIPE_GT, + anon_sym_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, sym_string, sym_float, sym__hex, @@ -18852,10 +18838,10 @@ static const uint16_t ts_small_parse_table[] = { sym__discard_name, sym__name, sym__upname, - [17955] = 2, + [17912] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(318), 35, + ACTIONS(344), 35, anon_sym_RBRACE, anon_sym_SLASH, anon_sym_POUND, @@ -18891,25 +18877,16 @@ static const uint16_t ts_small_parse_table[] = { sym__discard_name, sym__name, sym__upname, - [17996] = 4, + [17953] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(386), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(384), 5, - anon_sym_SLASH, - anon_sym_STAR, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(348), 26, + ACTIONS(330), 35, anon_sym_RBRACE, + anon_sym_SLASH, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, + anon_sym_DASH, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -18923,6 +18900,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, anon_sym_PIPE_GT, + anon_sym_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, sym_string, sym_float, sym__hex, @@ -18932,16 +18916,16 @@ static const uint16_t ts_small_parse_table[] = { sym__discard_name, sym__name, sym__upname, - [18041] = 9, + [17994] = 9, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(388), 1, + ACTIONS(392), 1, + anon_sym_PIPE_GT, + ACTIONS(394), 1, anon_sym_PIPE_PIPE, - ACTIONS(390), 1, - anon_sym_AMP_AMP, ACTIONS(396), 1, - anon_sym_PIPE_GT, - ACTIONS(392), 2, + anon_sym_AMP_AMP, + ACTIONS(388), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, ACTIONS(386), 4, @@ -18955,7 +18939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(394), 8, + ACTIONS(390), 8, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_DOT, @@ -18978,11 +18962,18 @@ static const uint16_t ts_small_parse_table[] = { sym__discard_name, sym__name, sym__upname, - [18096] = 5, + [18049] = 9, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(396), 1, + ACTIONS(392), 1, anon_sym_PIPE_GT, + ACTIONS(394), 1, + anon_sym_PIPE_PIPE, + ACTIONS(396), 1, + anon_sym_AMP_AMP, + ACTIONS(388), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, ACTIONS(386), 4, anon_sym_DASH, anon_sym_PLUS, @@ -18994,15 +18985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(348), 25, - 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(390), 8, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_DOT, @@ -19011,6 +18994,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, + ACTIONS(400), 13, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, sym_string, sym_float, sym__hex, @@ -19020,10 +19008,10 @@ static const uint16_t ts_small_parse_table[] = { sym__discard_name, sym__name, sym__upname, - [18143] = 2, + [18104] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(348), 35, + ACTIONS(278), 35, anon_sym_RBRACE, anon_sym_SLASH, anon_sym_POUND, @@ -19059,7 +19047,7 @@ static const uint16_t ts_small_parse_table[] = { sym__discard_name, sym__name, sym__upname, - [18184] = 2, + [18145] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(328), 35, @@ -19098,23 +19086,20 @@ static const uint16_t ts_small_parse_table[] = { sym__discard_name, sym__name, sym__upname, - [18225] = 6, + [18186] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(396), 1, - anon_sym_PIPE_GT, - ACTIONS(386), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(384), 5, + ACTIONS(326), 35, + anon_sym_RBRACE, anon_sym_SLASH, - anon_sym_STAR, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(394), 8, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_DOT, @@ -19123,15 +19108,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(348), 17, - 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_PIPE_GT, + anon_sym_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, sym_string, sym_float, sym__hex, @@ -19141,10 +19125,10 @@ static const uint16_t ts_small_parse_table[] = { sym__discard_name, sym__name, sym__upname, - [18274] = 2, + [18227] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(338), 35, + ACTIONS(324), 35, anon_sym_RBRACE, anon_sym_SLASH, anon_sym_POUND, @@ -19180,30 +19164,59 @@ static const uint16_t ts_small_parse_table[] = { sym__discard_name, sym__name, sym__upname, - [18315] = 9, + [18268] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(388), 1, + ACTIONS(366), 35, + anon_sym_RBRACE, + anon_sym_SLASH, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_DASH, anon_sym_PIPE_PIPE, - ACTIONS(390), 1, anon_sym_AMP_AMP, - ACTIONS(396), 1, - anon_sym_PIPE_GT, - ACTIONS(392), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(386), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PLUS_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS, + anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(384), 5, - anon_sym_SLASH, anon_sym_STAR, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(394), 8, + sym_string, + sym_float, + sym__hex, + sym__decimal, + sym__octal, + sym__binary, + sym__discard_name, + sym__name, + sym__upname, + [18309] = 2, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(320), 35, + anon_sym_RBRACE, + anon_sym_SLASH, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_DOT, @@ -19212,11 +19225,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(400), 13, + anon_sym_PIPE_GT, + anon_sym_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + sym_string, + sym_float, + sym__hex, + sym__decimal, + sym__octal, + sym__binary, + sym__discard_name, + sym__name, + sym__upname, + [18350] = 3, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(384), 5, + anon_sym_SLASH, + anon_sym_STAR, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(348), 30, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, sym_string, sym_float, sym__hex, @@ -19226,10 +19282,10 @@ static const uint16_t ts_small_parse_table[] = { sym__discard_name, sym__name, sym__upname, - [18370] = 2, + [18393] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(370), 35, + ACTIONS(332), 35, anon_sym_RBRACE, anon_sym_SLASH, anon_sym_POUND, @@ -19265,10 +19321,10 @@ static const uint16_t ts_small_parse_table[] = { sym__discard_name, sym__name, sym__upname, - [18411] = 2, + [18434] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(332), 35, + ACTIONS(322), 35, anon_sym_RBRACE, anon_sym_SLASH, anon_sym_POUND, @@ -19304,10 +19360,10 @@ static const uint16_t ts_small_parse_table[] = { sym__discard_name, sym__name, sym__upname, - [18452] = 2, + [18475] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(312), 35, + ACTIONS(348), 35, anon_sym_RBRACE, anon_sym_SLASH, anon_sym_POUND, @@ -19343,12 +19399,14 @@ static const uint16_t ts_small_parse_table[] = { sym__discard_name, sym__name, sym__upname, - [18493] = 7, + [18516] = 8, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(396), 1, + ACTIONS(392), 1, anon_sym_PIPE_GT, - ACTIONS(392), 2, + ACTIONS(396), 1, + anon_sym_AMP_AMP, + ACTIONS(388), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, ACTIONS(386), 4, @@ -19362,7 +19420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(394), 8, + ACTIONS(390), 8, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_DOT, @@ -19371,13 +19429,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(348), 15, + ACTIONS(348), 14, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, sym_string, sym_float, sym__hex, @@ -19387,21 +19444,25 @@ static const uint16_t ts_small_parse_table[] = { sym__discard_name, sym__name, sym__upname, - [18544] = 3, + [18569] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, + ACTIONS(386), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, ACTIONS(384), 5, anon_sym_SLASH, anon_sym_STAR, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(348), 30, + ACTIONS(348), 26, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, - anon_sym_DASH, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -19415,9 +19476,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, anon_sym_PIPE_GT, - anon_sym_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, sym_string, sym_float, sym__hex, @@ -19427,20 +19485,23 @@ static const uint16_t ts_small_parse_table[] = { sym__discard_name, sym__name, sym__upname, - [18587] = 2, + [18614] = 6, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(340), 35, - anon_sym_RBRACE, - anon_sym_SLASH, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, + ACTIONS(392), 1, + anon_sym_PIPE_GT, + ACTIONS(386), 4, anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(384), 5, + anon_sym_SLASH, + anon_sym_STAR, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(390), 8, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_DOT, @@ -19449,53 +19510,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - sym_string, - sym_float, - sym__hex, - sym__decimal, - sym__octal, - sym__binary, - sym__discard_name, - sym__name, - sym__upname, - [18628] = 2, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(336), 35, + ACTIONS(348), 17, anon_sym_RBRACE, - anon_sym_SLASH, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, - anon_sym_DASH, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, sym_string, sym_float, sym__hex, @@ -19505,16 +19528,27 @@ static const uint16_t ts_small_parse_table[] = { sym__discard_name, sym__name, sym__upname, - [18669] = 2, + [18663] = 5, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(314), 35, - anon_sym_RBRACE, + ACTIONS(392), 1, + anon_sym_PIPE_GT, + ACTIONS(386), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(384), 5, anon_sym_SLASH, + anon_sym_STAR, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(348), 25, + anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, - anon_sym_DASH, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -19527,14 +19561,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, sym_string, sym_float, sym__hex, @@ -19590,17 +19616,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_size, ACTIONS(404), 1, anon_sym_unit, - STATE(738), 1, - sym_pattern_bit_string_segment_options, + STATE(737), 1, + sym_constant_bit_string_segment_options, ACTIONS(45), 4, sym__hex, sym__decimal, sym__octal, sym__binary, - STATE(506), 6, - sym__pattern_bit_string_segment_option, - sym__pattern_bit_string_named_segment_option, - sym__pattern_bit_string_segment_option_size, + STATE(536), 6, + 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_unit, sym__bit_string_segment_option_literal, @@ -19631,14 +19657,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unit, ACTIONS(408), 1, anon_sym_size, - STATE(740), 1, + STATE(787), 1, sym_expression_bit_string_segment_options, ACTIONS(45), 4, sym__hex, sym__decimal, sym__octal, sym__binary, - STATE(537), 6, + STATE(557), 6, sym__expression_bit_string_segment_option, sym__expression_bit_string_named_segment_option, sym__expression_bit_string_segment_option_size, @@ -19672,17 +19698,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unit, ACTIONS(412), 1, anon_sym_size, - STATE(758), 1, - sym_constant_bit_string_segment_options, + STATE(731), 1, + sym_pattern_bit_string_segment_options, ACTIONS(45), 4, sym__hex, sym__decimal, sym__octal, sym__binary, - STATE(524), 6, - sym__constant_bit_string_segment_option, - sym__constant_bit_string_named_segment_option, - sym__constant_bit_string_segment_option_size, + STATE(526), 6, + 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_unit, sym__bit_string_segment_option_literal, @@ -19707,7 +19733,7 @@ static const uint16_t ts_small_parse_table[] = { [18896] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(195), 30, + ACTIONS(210), 30, anon_sym_LBRACE, anon_sym_DOT, anon_sym_COMMA, @@ -19752,10 +19778,10 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(571), 6, - sym__pattern_bit_string_segment_option, - sym__pattern_bit_string_named_segment_option, - sym__pattern_bit_string_segment_option_size, + STATE(648), 6, + 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_unit, sym__bit_string_segment_option_literal, @@ -19777,16 +19803,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_big, anon_sym_little, anon_sym_native, - [18978] = 3, + [18978] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(418), 1, - anon_sym_LPAREN, - ACTIONS(190), 29, + ACTIONS(190), 30, anon_sym_LBRACE, anon_sym_DOT, anon_sym_COMMA, anon_sym_SLASH, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_GT_GT, @@ -19812,46 +19837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - [19016] = 7, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(31), 1, - anon_sym_DASH, - ACTIONS(404), 1, - anon_sym_unit, - ACTIONS(412), 1, - anon_sym_size, - ACTIONS(45), 4, - sym__hex, - sym__decimal, - sym__octal, - sym__binary, - STATE(629), 6, - 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_unit, - sym__bit_string_segment_option_literal, - ACTIONS(421), 17, - anon_sym_binary, - anon_sym_bytes, - anon_sym_int, - anon_sym_float, - anon_sym_bit_string, - anon_sym_bits, - anon_sym_utf8, - anon_sym_utf16, - anon_sym_utf32, - 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, - [19062] = 2, + [19014] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(215), 30, @@ -19885,28 +19871,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - [19098] = 7, + [19050] = 7, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(31), 1, anon_sym_DASH, ACTIONS(404), 1, anon_sym_unit, - ACTIONS(408), 1, + ACTIONS(412), 1, anon_sym_size, ACTIONS(45), 4, sym__hex, sym__decimal, sym__octal, sym__binary, - STATE(622), 6, - sym__expression_bit_string_segment_option, - sym__expression_bit_string_named_segment_option, - sym__expression_bit_string_segment_option_size, + STATE(586), 6, + 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_unit, sym__bit_string_segment_option_literal, - ACTIONS(423), 17, + ACTIONS(418), 17, anon_sym_binary, anon_sym_bytes, anon_sym_int, @@ -19924,15 +19910,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_big, anon_sym_little, anon_sym_native, - [19144] = 2, + [19096] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(220), 30, + ACTIONS(420), 1, + anon_sym_LPAREN, + ACTIONS(192), 29, anon_sym_LBRACE, anon_sym_DOT, anon_sym_COMMA, anon_sym_SLASH, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_GT_GT, @@ -19958,14 +19945,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - [19180] = 3, + [19134] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(425), 1, + ACTIONS(205), 1, + anon_sym_DOT, + ACTIONS(208), 1, anon_sym_LPAREN, - ACTIONS(190), 29, + ACTIONS(203), 28, anon_sym_LBRACE, - anon_sym_DOT, anon_sym_COMMA, anon_sym_SLASH, anon_sym_RPAREN, @@ -19993,15 +19981,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - [19218] = 2, + [19174] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(199), 30, + ACTIONS(423), 1, + anon_sym_LPAREN, + ACTIONS(192), 29, anon_sym_LBRACE, anon_sym_DOT, anon_sym_COMMA, anon_sym_SLASH, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_GT_GT, @@ -20027,17 +20016,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - [19254] = 4, + [19212] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(203), 1, - anon_sym_DOT, - ACTIONS(206), 1, - anon_sym_LPAREN, - ACTIONS(201), 28, + ACTIONS(199), 30, anon_sym_LBRACE, + anon_sym_DOT, anon_sym_COMMA, anon_sym_SLASH, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_GT_GT, @@ -20063,6 +20050,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + [19248] = 7, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(31), 1, + anon_sym_DASH, + ACTIONS(404), 1, + anon_sym_unit, + ACTIONS(408), 1, + anon_sym_size, + ACTIONS(45), 4, + sym__hex, + sym__decimal, + sym__octal, + sym__binary, + STATE(635), 6, + 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_unit, + sym__bit_string_segment_option_literal, + ACTIONS(426), 17, + anon_sym_binary, + anon_sym_bytes, + anon_sym_int, + anon_sym_float, + anon_sym_bit_string, + anon_sym_bits, + anon_sym_utf8, + anon_sym_utf16, + anon_sym_utf32, + 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, [19294] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, @@ -20100,7 +20126,7 @@ static const uint16_t ts_small_parse_table[] = { [19330] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(213), 30, + ACTIONS(201), 30, anon_sym_LBRACE, anon_sym_DOT, anon_sym_COMMA, @@ -20131,20 +20157,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - [19366] = 4, + [19366] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(210), 1, + ACTIONS(234), 1, anon_sym_DOT, - ACTIONS(346), 1, - anon_sym_COLON, - ACTIONS(208), 27, + ACTIONS(203), 28, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SLASH, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_COLON, anon_sym_DASH, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -20166,12 +20191,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - [19405] = 3, + [19403] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(240), 1, - anon_sym_DOT, - ACTIONS(201), 28, + ACTIONS(208), 1, + anon_sym_LPAREN, + ACTIONS(203), 28, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SLASH, @@ -20200,7 +20225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - [19442] = 14, + [19440] = 14, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(7), 1, @@ -20219,60 +20244,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, ACTIONS(428), 1, ts_builtin_sym_end, - STATE(1063), 1, - sym__function, - STATE(1064), 1, - sym__external_function, - STATE(1066), 1, - sym__external_type, - STATE(1074), 1, - sym__constant, - STATE(1037), 17, - sym__statement, - sym_target_group, - sym_import, - sym_public_constant, - sym_constant, - sym_public_external_type, - sym_external_type, - sym_public_external_function, - sym_external_function, - sym_function, - sym_public_function, - sym_type_definition, - sym_public_type_definition, - sym_public_opaque_type_definition, - sym_type_alias, - sym_public_type_alias, - sym_public_opaque_type_alias, - [19501] = 14, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(7), 1, - anon_sym_if, - ACTIONS(9), 1, - anon_sym_import, - ACTIONS(11), 1, - anon_sym_pub, - ACTIONS(13), 1, - anon_sym_const, - ACTIONS(15), 1, - anon_sym_external, - ACTIONS(17), 1, - anon_sym_type, - ACTIONS(19), 1, - anon_sym_fn, - ACTIONS(430), 1, - ts_builtin_sym_end, - STATE(1063), 1, + STATE(1041), 1, sym__function, - STATE(1064), 1, + STATE(1045), 1, sym__external_function, - STATE(1066), 1, + STATE(1047), 1, sym__external_type, - STATE(1074), 1, + STATE(1049), 1, sym__constant, - STATE(1037), 17, + STATE(955), 17, sym__statement, sym_target_group, sym_import, @@ -20290,10 +20270,10 @@ static const uint16_t ts_small_parse_table[] = { sym_type_alias, sym_public_type_alias, sym_public_opaque_type_alias, - [19560] = 2, + [19499] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(256), 29, + ACTIONS(276), 29, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SLASH, @@ -20323,14 +20303,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - [19595] = 2, + [19534] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(252), 29, + ACTIONS(266), 29, anon_sym_LBRACE, + anon_sym_DOT, anon_sym_COMMA, anon_sym_SLASH, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_GT_GT, @@ -20356,14 +20336,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - [19630] = 2, + [19569] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(244), 29, + ACTIONS(260), 29, anon_sym_LBRACE, - anon_sym_DOT, anon_sym_COMMA, anon_sym_SLASH, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_GT_GT, @@ -20389,10 +20369,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - [19665] = 2, + [19604] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(230), 29, + ACTIONS(246), 29, anon_sym_LBRACE, anon_sym_DOT, anon_sym_COMMA, @@ -20422,14 +20402,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - [19700] = 2, + [19639] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(228), 29, + ACTIONS(274), 29, anon_sym_LBRACE, + anon_sym_DOT, anon_sym_COMMA, anon_sym_SLASH, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_GT_GT, @@ -20455,14 +20435,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - [19735] = 2, + [19674] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(226), 29, + ACTIONS(238), 29, anon_sym_LBRACE, + anon_sym_DOT, anon_sym_COMMA, anon_sym_SLASH, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_GT_GT, @@ -20488,14 +20468,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - [19770] = 2, + [19709] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(232), 29, + ACTIONS(228), 29, anon_sym_LBRACE, - anon_sym_DOT, anon_sym_COMMA, anon_sym_SLASH, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_GT_GT, @@ -20521,14 +20501,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - [19805] = 2, + [19744] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(262), 29, + ACTIONS(240), 29, anon_sym_LBRACE, - anon_sym_DOT, anon_sym_COMMA, anon_sym_SLASH, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_GT_GT, @@ -20554,10 +20534,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - [19840] = 2, + [19779] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(270), 29, + ACTIONS(226), 29, anon_sym_LBRACE, anon_sym_DOT, anon_sym_COMMA, @@ -20587,43 +20567,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - [19875] = 2, + [19814] = 14, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(264), 29, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - [19910] = 2, + ACTIONS(7), 1, + anon_sym_if, + ACTIONS(9), 1, + anon_sym_import, + ACTIONS(11), 1, + anon_sym_pub, + ACTIONS(13), 1, + anon_sym_const, + ACTIONS(15), 1, + anon_sym_external, + ACTIONS(17), 1, + anon_sym_type, + ACTIONS(19), 1, + anon_sym_fn, + ACTIONS(430), 1, + ts_builtin_sym_end, + STATE(1041), 1, + sym__function, + STATE(1045), 1, + sym__external_function, + STATE(1047), 1, + sym__external_type, + STATE(1049), 1, + sym__constant, + STATE(955), 17, + sym__statement, + sym_target_group, + sym_import, + sym_public_constant, + sym_constant, + sym_public_external_type, + sym_external_type, + sym_public_external_function, + sym_external_function, + sym_function, + sym_public_function, + sym_type_definition, + sym_public_type_definition, + sym_public_opaque_type_definition, + sym_type_alias, + sym_public_type_alias, + sym_public_opaque_type_alias, + [19873] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(272), 29, + ACTIONS(232), 29, anon_sym_LBRACE, anon_sym_DOT, anon_sym_COMMA, @@ -20653,10 +20645,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - [19945] = 2, + [19908] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(266), 29, + ACTIONS(242), 29, anon_sym_LBRACE, anon_sym_DOT, anon_sym_COMMA, @@ -20686,13 +20678,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - [19980] = 3, + [19943] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(432), 1, - anon_sym_LPAREN, - ACTIONS(248), 28, + ACTIONS(244), 29, anon_sym_LBRACE, + anon_sym_DOT, anon_sym_COMMA, anon_sym_SLASH, anon_sym_RPAREN, @@ -20720,12 +20711,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - [20017] = 3, + [19978] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(238), 1, + ACTIONS(224), 1, anon_sym_DOT, - ACTIONS(201), 28, + ACTIONS(203), 28, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SLASH, @@ -20754,12 +20745,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - [20054] = 3, + [20015] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(206), 1, + ACTIONS(432), 1, anon_sym_LPAREN, - ACTIONS(201), 28, + ACTIONS(270), 28, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SLASH, @@ -20788,17 +20779,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - [20091] = 2, + [20052] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(344), 28, + ACTIONS(219), 1, + anon_sym_DOT, + ACTIONS(346), 1, + anon_sym_COLON, + ACTIONS(217), 27, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SLASH, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, anon_sym_DASH, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -20820,10 +20814,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - [20125] = 2, + [20091] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(328), 28, + ACTIONS(344), 28, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SLASH, @@ -20852,10 +20846,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - [20159] = 2, + [20125] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(342), 28, + ACTIONS(324), 28, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SLASH, @@ -20884,7 +20878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - [20193] = 17, + [20159] = 17, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(31), 1, @@ -20903,18 +20897,18 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(446), 1, sym__upname, - STATE(456), 1, + STATE(453), 1, sym__constructor_pattern, - STATE(496), 1, + STATE(510), 1, sym__pattern, - STATE(526), 1, + STATE(537), 1, sym_case_clause_pattern, - STATE(701), 1, + STATE(627), 1, sym_case_clause_patterns, ACTIONS(442), 2, sym_string, sym_float, - STATE(285), 2, + STATE(282), 2, sym_case_clause, aux_sym_case_repeat1, ACTIONS(45), 4, @@ -20922,7 +20916,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(460), 8, + STATE(457), 8, sym_var, sym_discard_var, sym_remote_constructor_pattern, @@ -20931,10 +20925,10 @@ static const uint16_t ts_small_parse_table[] = { sym__pattern_bit_string, sym_list_pattern, sym_integer, - [20257] = 2, + [20223] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(340), 28, + ACTIONS(332), 28, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SLASH, @@ -20963,100 +20957,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - [20291] = 13, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(7), 1, - anon_sym_if, - ACTIONS(9), 1, - anon_sym_import, - ACTIONS(11), 1, - anon_sym_pub, - ACTIONS(13), 1, - anon_sym_const, - ACTIONS(15), 1, - anon_sym_external, - ACTIONS(17), 1, - anon_sym_type, - ACTIONS(19), 1, - anon_sym_fn, - STATE(1063), 1, - sym__function, - STATE(1064), 1, - sym__external_function, - STATE(1066), 1, - sym__external_type, - STATE(1074), 1, - sym__constant, - STATE(1037), 17, - sym__statement, - sym_target_group, - sym_import, - sym_public_constant, - sym_constant, - sym_public_external_type, - sym_external_type, - sym_public_external_function, - sym_external_function, - sym_function, - sym_public_function, - sym_type_definition, - sym_public_type_definition, - sym_public_opaque_type_definition, - sym_type_alias, - sym_public_type_alias, - sym_public_opaque_type_alias, - [20347] = 17, + [20257] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(31), 1, + ACTIONS(318), 28, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SLASH, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_COLON, anon_sym_DASH, - ACTIONS(47), 1, - sym__discard_name, - ACTIONS(436), 1, - anon_sym_POUND, - ACTIONS(438), 1, - anon_sym_LBRACK, - ACTIONS(440), 1, - anon_sym_LT_LT, - ACTIONS(444), 1, - sym__name, - ACTIONS(446), 1, - sym__upname, - ACTIONS(448), 1, - anon_sym_RBRACE, - STATE(456), 1, - sym__constructor_pattern, - STATE(496), 1, - sym__pattern, - STATE(526), 1, - sym_case_clause_pattern, - STATE(701), 1, - sym_case_clause_patterns, - ACTIONS(442), 2, - sym_string, - sym_float, - STATE(285), 2, - sym_case_clause, - aux_sym_case_repeat1, - ACTIONS(45), 4, - sym__hex, - sym__decimal, - sym__octal, - sym__binary, - STATE(460), 8, - sym_var, - sym_discard_var, - sym_remote_constructor_pattern, - sym_constructor_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - [20411] = 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + [20291] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(338), 28, + ACTIONS(366), 28, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SLASH, @@ -21085,10 +21021,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - [20445] = 2, + [20325] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(314), 28, + ACTIONS(348), 28, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SLASH, @@ -21117,57 +21053,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - [20479] = 17, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(31), 1, - anon_sym_DASH, - ACTIONS(47), 1, - sym__discard_name, - ACTIONS(436), 1, - anon_sym_POUND, - ACTIONS(438), 1, - anon_sym_LBRACK, - ACTIONS(440), 1, - anon_sym_LT_LT, - ACTIONS(444), 1, - sym__name, - ACTIONS(446), 1, - sym__upname, - ACTIONS(450), 1, - anon_sym_RBRACE, - STATE(456), 1, - sym__constructor_pattern, - STATE(496), 1, - sym__pattern, - STATE(526), 1, - sym_case_clause_pattern, - STATE(701), 1, - sym_case_clause_patterns, - ACTIONS(442), 2, - sym_string, - sym_float, - STATE(285), 2, - sym_case_clause, - aux_sym_case_repeat1, - ACTIONS(45), 4, - sym__hex, - sym__decimal, - sym__octal, - sym__binary, - STATE(460), 8, - sym_var, - sym_discard_var, - sym_remote_constructor_pattern, - sym_constructor_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - [20543] = 2, + [20359] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(312), 28, + ACTIONS(278), 28, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SLASH, @@ -21196,10 +21085,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - [20577] = 2, + [20393] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(332), 28, + ACTIONS(320), 28, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SLASH, @@ -21228,45 +21117,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - [20611] = 17, + [20427] = 17, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(452), 1, + ACTIONS(448), 1, anon_sym_RBRACE, - ACTIONS(454), 1, + ACTIONS(450), 1, anon_sym_POUND, - ACTIONS(457), 1, + ACTIONS(453), 1, anon_sym_LBRACK, - ACTIONS(460), 1, + ACTIONS(456), 1, anon_sym_LT_LT, - ACTIONS(463), 1, + ACTIONS(459), 1, anon_sym_DASH, - ACTIONS(472), 1, + ACTIONS(468), 1, sym__discard_name, - ACTIONS(475), 1, + ACTIONS(471), 1, sym__name, - ACTIONS(478), 1, + ACTIONS(474), 1, sym__upname, - STATE(456), 1, + STATE(453), 1, sym__constructor_pattern, - STATE(496), 1, + STATE(510), 1, sym__pattern, - STATE(526), 1, + STATE(537), 1, sym_case_clause_pattern, - STATE(701), 1, + STATE(627), 1, sym_case_clause_patterns, - ACTIONS(466), 2, + ACTIONS(462), 2, sym_string, sym_float, - STATE(285), 2, + STATE(282), 2, sym_case_clause, aux_sym_case_repeat1, - ACTIONS(469), 4, + ACTIONS(465), 4, sym__hex, sym__decimal, sym__octal, sym__binary, - STATE(460), 8, + STATE(457), 8, sym_var, sym_discard_var, sym_remote_constructor_pattern, @@ -21275,10 +21164,10 @@ static const uint16_t ts_small_parse_table[] = { sym__pattern_bit_string, sym_list_pattern, sym_integer, - [20675] = 2, + [20491] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(318), 28, + ACTIONS(326), 28, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SLASH, @@ -21307,42 +21196,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - [20709] = 2, + [20525] = 17, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(370), 28, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, + ACTIONS(31), 1, anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - [20743] = 2, + ACTIONS(47), 1, + sym__discard_name, + ACTIONS(436), 1, + anon_sym_POUND, + ACTIONS(438), 1, + anon_sym_LBRACK, + ACTIONS(440), 1, + anon_sym_LT_LT, + ACTIONS(444), 1, + sym__name, + ACTIONS(446), 1, + sym__upname, + ACTIONS(477), 1, + anon_sym_RBRACE, + STATE(453), 1, + sym__constructor_pattern, + STATE(510), 1, + sym__pattern, + STATE(537), 1, + sym_case_clause_pattern, + STATE(627), 1, + sym_case_clause_patterns, + ACTIONS(442), 2, + sym_string, + sym_float, + STATE(282), 2, + sym_case_clause, + aux_sym_case_repeat1, + ACTIONS(45), 4, + sym__hex, + sym__decimal, + sym__octal, + sym__binary, + STATE(457), 8, + sym_var, + sym_discard_var, + sym_remote_constructor_pattern, + sym_constructor_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + [20589] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(336), 28, + ACTIONS(280), 28, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SLASH, @@ -21371,10 +21275,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - [20777] = 2, + [20623] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(348), 28, + ACTIONS(328), 28, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SLASH, @@ -21403,10 +21307,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - [20811] = 2, + [20657] = 13, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(7), 1, + anon_sym_if, + ACTIONS(9), 1, + anon_sym_import, + ACTIONS(11), 1, + anon_sym_pub, + ACTIONS(13), 1, + anon_sym_const, + ACTIONS(15), 1, + anon_sym_external, + ACTIONS(17), 1, + anon_sym_type, + ACTIONS(19), 1, + anon_sym_fn, + STATE(1041), 1, + sym__function, + STATE(1045), 1, + sym__external_function, + STATE(1047), 1, + sym__external_type, + STATE(1049), 1, + sym__constant, + STATE(955), 17, + sym__statement, + sym_target_group, + sym_import, + sym_public_constant, + sym_constant, + sym_public_external_type, + sym_external_type, + sym_public_external_function, + sym_external_function, + sym_function, + sym_public_function, + sym_type_definition, + sym_public_type_definition, + sym_public_opaque_type_definition, + sym_type_alias, + sym_public_type_alias, + sym_public_opaque_type_alias, + [20713] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(316), 28, + ACTIONS(322), 28, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SLASH, @@ -21435,15 +21382,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - [20845] = 3, + [20747] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(210), 1, - anon_sym_DOT, - ACTIONS(208), 26, + ACTIONS(330), 28, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SLASH, - anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_GT_GT, anon_sym_COLON, anon_sym_DASH, @@ -21467,7 +21414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - [20880] = 16, + [20781] = 17, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(31), 1, @@ -21484,18 +21431,20 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(446), 1, sym__upname, - STATE(456), 1, + ACTIONS(479), 1, + anon_sym_RBRACE, + STATE(453), 1, sym__constructor_pattern, - STATE(496), 1, + STATE(510), 1, sym__pattern, - STATE(526), 1, + STATE(537), 1, sym_case_clause_pattern, - STATE(701), 1, + STATE(627), 1, sym_case_clause_patterns, ACTIONS(442), 2, sym_string, sym_float, - STATE(276), 2, + STATE(282), 2, sym_case_clause, aux_sym_case_repeat1, ACTIONS(45), 4, @@ -21503,7 +21452,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(460), 8, + STATE(457), 8, sym_var, sym_discard_var, sym_remote_constructor_pattern, @@ -21512,7 +21461,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pattern_bit_string, sym_list_pattern, sym_integer, - [20941] = 13, + [20845] = 13, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(481), 1, @@ -21529,15 +21478,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, ACTIONS(493), 1, anon_sym_fn, - STATE(877), 1, + STATE(976), 1, sym__function, - STATE(878), 1, + STATE(978), 1, sym__external_function, - STATE(879), 1, + STATE(979), 1, sym__external_type, - STATE(880), 1, + STATE(980), 1, sym__constant, - STATE(994), 16, + STATE(822), 16, sym__statement, sym_import, sym_public_constant, @@ -21554,49 +21503,7 @@ static const uint16_t ts_small_parse_table[] = { sym_type_alias, sym_public_type_alias, sym_public_opaque_type_alias, - [20996] = 13, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(483), 1, - anon_sym_import, - ACTIONS(485), 1, - anon_sym_pub, - ACTIONS(487), 1, - anon_sym_const, - ACTIONS(489), 1, - anon_sym_external, - ACTIONS(491), 1, - anon_sym_type, - ACTIONS(493), 1, - anon_sym_fn, - ACTIONS(495), 1, - anon_sym_RBRACE, - STATE(877), 1, - sym__function, - STATE(878), 1, - sym__external_function, - STATE(879), 1, - sym__external_type, - STATE(880), 1, - sym__constant, - STATE(771), 16, - sym__statement, - sym_import, - sym_public_constant, - sym_constant, - sym_public_external_type, - sym_external_type, - sym_public_external_function, - sym_external_function, - sym_function, - sym_public_function, - sym_type_definition, - sym_public_type_definition, - sym_public_opaque_type_definition, - sym_type_alias, - sym_public_type_alias, - sym_public_opaque_type_alias, - [21051] = 16, + [20900] = 16, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(31), 1, @@ -21613,18 +21520,18 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(446), 1, sym__upname, - STATE(456), 1, + STATE(453), 1, sym__constructor_pattern, - STATE(496), 1, + STATE(510), 1, sym__pattern, - STATE(526), 1, + STATE(537), 1, sym_case_clause_pattern, - STATE(701), 1, + STATE(627), 1, sym_case_clause_patterns, ACTIONS(442), 2, sym_string, sym_float, - STATE(282), 2, + STATE(275), 2, sym_case_clause, aux_sym_case_repeat1, ACTIONS(45), 4, @@ -21632,7 +21539,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(460), 8, + STATE(457), 8, sym_var, sym_discard_var, sym_remote_constructor_pattern, @@ -21641,7 +21548,81 @@ static const uint16_t ts_small_parse_table[] = { sym__pattern_bit_string, sym_list_pattern, sym_integer, - [21112] = 16, + [20961] = 13, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(483), 1, + anon_sym_import, + ACTIONS(485), 1, + anon_sym_pub, + ACTIONS(487), 1, + anon_sym_const, + ACTIONS(489), 1, + anon_sym_external, + ACTIONS(491), 1, + anon_sym_type, + ACTIONS(493), 1, + anon_sym_fn, + ACTIONS(495), 1, + anon_sym_RBRACE, + STATE(976), 1, + sym__function, + STATE(978), 1, + sym__external_function, + STATE(979), 1, + sym__external_type, + STATE(980), 1, + sym__constant, + STATE(822), 16, + sym__statement, + sym_import, + sym_public_constant, + sym_constant, + sym_public_external_type, + sym_external_type, + sym_public_external_function, + sym_external_function, + sym_function, + sym_public_function, + sym_type_definition, + sym_public_type_definition, + sym_public_opaque_type_definition, + sym_type_alias, + sym_public_type_alias, + sym_public_opaque_type_alias, + [21016] = 3, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(219), 1, + anon_sym_DOT, + ACTIONS(217), 26, + anon_sym_COMMA, + anon_sym_SLASH, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + [21051] = 16, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(31), 1, @@ -21658,18 +21639,18 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(446), 1, sym__upname, - STATE(456), 1, + STATE(453), 1, sym__constructor_pattern, - STATE(496), 1, + STATE(510), 1, sym__pattern, - STATE(526), 1, + STATE(537), 1, sym_case_clause_pattern, - STATE(701), 1, + STATE(627), 1, sym_case_clause_patterns, ACTIONS(442), 2, sym_string, sym_float, - STATE(279), 2, + STATE(284), 2, sym_case_clause, aux_sym_case_repeat1, ACTIONS(45), 4, @@ -21677,7 +21658,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(460), 8, + STATE(457), 8, sym_var, sym_discard_var, sym_remote_constructor_pattern, @@ -21686,7 +21667,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pattern_bit_string, sym_list_pattern, sym_integer, - [21173] = 13, + [21112] = 13, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(483), 1, @@ -21703,15 +21684,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, ACTIONS(497), 1, anon_sym_RBRACE, - STATE(877), 1, + STATE(976), 1, sym__function, - STATE(878), 1, + STATE(978), 1, sym__external_function, - STATE(879), 1, + STATE(979), 1, sym__external_type, - STATE(880), 1, + STATE(980), 1, sym__constant, - STATE(994), 16, + STATE(771), 16, sym__statement, sym_import, sym_public_constant, @@ -21728,6 +21709,51 @@ static const uint16_t ts_small_parse_table[] = { sym_type_alias, sym_public_type_alias, sym_public_opaque_type_alias, + [21167] = 16, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(31), 1, + anon_sym_DASH, + ACTIONS(47), 1, + sym__discard_name, + ACTIONS(436), 1, + anon_sym_POUND, + ACTIONS(438), 1, + anon_sym_LBRACK, + ACTIONS(440), 1, + anon_sym_LT_LT, + ACTIONS(444), 1, + sym__name, + ACTIONS(446), 1, + sym__upname, + STATE(453), 1, + sym__constructor_pattern, + STATE(510), 1, + sym__pattern, + STATE(537), 1, + sym_case_clause_pattern, + STATE(627), 1, + sym_case_clause_patterns, + ACTIONS(442), 2, + sym_string, + sym_float, + STATE(290), 2, + sym_case_clause, + aux_sym_case_repeat1, + ACTIONS(45), 4, + sym__hex, + sym__decimal, + sym__octal, + sym__binary, + STATE(457), 8, + sym_var, + sym_discard_var, + sym_remote_constructor_pattern, + sym_constructor_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, [21228] = 16, ACTIONS(3), 1, aux_sym_source_file_token1, @@ -21749,11 +21775,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, ACTIONS(501), 1, anon_sym_DOT_DOT, - STATE(456), 1, + STATE(453), 1, sym__constructor_pattern, - STATE(504), 1, + STATE(500), 1, sym__pattern, - STATE(924), 1, + STATE(1027), 1, sym_list_pattern_tail, ACTIONS(442), 2, sym_string, @@ -21763,7 +21789,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(460), 8, + STATE(457), 8, sym_var, sym_discard_var, sym_remote_constructor_pattern, @@ -21772,65 +21798,33 @@ static const uint16_t ts_small_parse_table[] = { sym__pattern_bit_string, sym_list_pattern, sym_integer, - [21288] = 12, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(483), 1, - anon_sym_import, - ACTIONS(485), 1, - anon_sym_pub, - ACTIONS(487), 1, - anon_sym_const, - ACTIONS(489), 1, - anon_sym_external, - ACTIONS(491), 1, - anon_sym_type, - ACTIONS(493), 1, - anon_sym_fn, - STATE(877), 1, - sym__function, - STATE(878), 1, - sym__external_function, - STATE(879), 1, - sym__external_type, - STATE(880), 1, - sym__constant, - STATE(994), 16, - sym__statement, - sym_import, - sym_public_constant, - sym_constant, - sym_public_external_type, - sym_external_type, - sym_public_external_function, - sym_external_function, - sym_function, - sym_public_function, - sym_type_definition, - sym_public_type_definition, - sym_public_opaque_type_definition, - sym_type_alias, - sym_public_type_alias, - sym_public_opaque_type_alias, - [21340] = 3, + [21288] = 7, ACTIONS(3), 1, aux_sym_source_file_token1, + ACTIONS(511), 1, + anon_sym_PIPE_GT, + ACTIONS(507), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(505), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, ACTIONS(503), 5, anon_sym_SLASH, anon_sym_STAR, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(348), 21, + ACTIONS(348), 6, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_DASH, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(509), 8, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_DOT, @@ -21839,38 +21833,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - [21374] = 8, + [21330] = 9, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(507), 1, - anon_sym_AMP_AMP, - ACTIONS(513), 1, + ACTIONS(511), 1, anon_sym_PIPE_GT, - ACTIONS(509), 2, + ACTIONS(513), 1, + anon_sym_PIPE_PIPE, + ACTIONS(515), 1, + anon_sym_AMP_AMP, + ACTIONS(507), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(368), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, ACTIONS(505), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(348), 5, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_PIPE_PIPE, ACTIONS(503), 5, anon_sym_SLASH, anon_sym_STAR, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(511), 8, + ACTIONS(509), 8, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_DOT, @@ -21879,35 +21870,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [21418] = 9, + [21376] = 8, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(507), 1, - anon_sym_AMP_AMP, - ACTIONS(513), 1, + ACTIONS(511), 1, anon_sym_PIPE_GT, ACTIONS(515), 1, - anon_sym_PIPE_PIPE, - ACTIONS(509), 2, + anon_sym_AMP_AMP, + ACTIONS(507), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(366), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, ACTIONS(505), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, + ACTIONS(348), 5, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_PIPE_PIPE, ACTIONS(503), 5, anon_sym_SLASH, anon_sym_STAR, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(511), 8, + ACTIONS(509), 8, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_DOT, @@ -21916,33 +21906,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [21464] = 7, + [21420] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(513), 1, - anon_sym_PIPE_GT, - ACTIONS(509), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(505), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, ACTIONS(503), 5, anon_sym_SLASH, anon_sym_STAR, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(348), 6, + ACTIONS(348), 21, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, + anon_sym_DASH, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(511), 8, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_DOT, @@ -21951,72 +21933,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [21506] = 9, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(507), 1, - anon_sym_AMP_AMP, - ACTIONS(513), 1, anon_sym_PIPE_GT, - ACTIONS(515), 1, - anon_sym_PIPE_PIPE, - ACTIONS(509), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(372), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(505), 4, - anon_sym_DASH, anon_sym_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(503), 5, - anon_sym_SLASH, - anon_sym_STAR, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(511), 8, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [21552] = 9, + [21454] = 9, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(507), 1, - anon_sym_AMP_AMP, - ACTIONS(513), 1, + ACTIONS(511), 1, anon_sym_PIPE_GT, - ACTIONS(515), 1, + ACTIONS(513), 1, anon_sym_PIPE_PIPE, - ACTIONS(509), 2, + ACTIONS(515), 1, + anon_sym_AMP_AMP, + ACTIONS(507), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(370), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, ACTIONS(505), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(517), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, ACTIONS(503), 5, anon_sym_SLASH, anon_sym_STAR, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(511), 8, + ACTIONS(509), 8, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_DOT, @@ -22025,11 +21974,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [21598] = 6, + [21500] = 12, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(483), 1, + anon_sym_import, + ACTIONS(485), 1, + anon_sym_pub, + ACTIONS(487), 1, + anon_sym_const, + ACTIONS(489), 1, + anon_sym_external, + ACTIONS(491), 1, + anon_sym_type, + ACTIONS(493), 1, + anon_sym_fn, + STATE(976), 1, + sym__function, + STATE(978), 1, + sym__external_function, + STATE(979), 1, + sym__external_type, + STATE(980), 1, + sym__constant, + STATE(822), 16, + sym__statement, + sym_import, + sym_public_constant, + sym_constant, + sym_public_external_type, + sym_external_type, + sym_public_external_function, + sym_external_function, + sym_function, + sym_public_function, + sym_type_definition, + sym_public_type_definition, + sym_public_opaque_type_definition, + sym_type_alias, + sym_public_type_alias, + sym_public_opaque_type_alias, + [21552] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(513), 1, - anon_sym_PIPE_GT, ACTIONS(505), 4, anon_sym_DASH, anon_sym_PLUS, @@ -22041,7 +22028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(348), 8, + ACTIONS(348), 17, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -22050,7 +22037,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(511), 8, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_DOT, @@ -22059,10 +22045,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [21638] = 5, + anon_sym_PIPE_GT, + [21588] = 5, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(513), 1, + ACTIONS(511), 1, anon_sym_PIPE_GT, ACTIONS(505), 4, anon_sym_DASH, @@ -22092,9 +22079,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [21676] = 4, + [21626] = 6, ACTIONS(3), 1, aux_sym_source_file_token1, + ACTIONS(511), 1, + anon_sym_PIPE_GT, ACTIONS(505), 4, anon_sym_DASH, anon_sym_PLUS, @@ -22106,7 +22095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(348), 17, + ACTIONS(348), 8, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -22115,6 +22104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(509), 8, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_DOT, @@ -22123,63 +22113,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - [21712] = 13, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(31), 1, - anon_sym_DASH, - ACTIONS(519), 1, - anon_sym_LBRACE, - ACTIONS(521), 1, - anon_sym_POUND, - ACTIONS(523), 1, - anon_sym_LBRACK, - ACTIONS(525), 1, - anon_sym_LT_LT, - ACTIONS(529), 1, - sym__name, - ACTIONS(531), 1, - sym__upname, - STATE(379), 1, - sym__constant_record, - STATE(406), 1, - sym__case_clause_tuple_access, - ACTIONS(527), 2, - sym_string, - sym_float, - ACTIONS(45), 4, - sym__hex, - sym__decimal, - sym__octal, - sym__binary, - STATE(410), 10, - sym__constant_value, - sym__constant_tuple, - sym__constant_list, - sym__constant_bit_string, - sym__constant_remote_record, - sym__case_clause_guard_expression, - sym__case_clause_guard_binary_expression, - sym__case_clause_guard_unit, - sym_var, - sym_integer, - [21765] = 11, + [21666] = 9, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(507), 1, - anon_sym_AMP_AMP, - ACTIONS(513), 1, + ACTIONS(511), 1, anon_sym_PIPE_GT, - ACTIONS(515), 1, + ACTIONS(513), 1, anon_sym_PIPE_PIPE, - ACTIONS(533), 1, - anon_sym_COMMA, - ACTIONS(535), 1, - anon_sym_RBRACK, - STATE(599), 1, - aux_sym_tuple_repeat1, - ACTIONS(509), 2, + ACTIONS(515), 1, + anon_sym_AMP_AMP, + ACTIONS(507), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, ACTIONS(505), 4, @@ -22187,13 +22130,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, + ACTIONS(517), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, ACTIONS(503), 5, anon_sym_SLASH, anon_sym_STAR, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(511), 8, + ACTIONS(509), 8, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_DOT, @@ -22202,34 +22150,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [21814] = 9, + [21712] = 11, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(541), 1, + ACTIONS(511), 1, + anon_sym_PIPE_GT, + ACTIONS(513), 1, anon_sym_PIPE_PIPE, - ACTIONS(543), 1, + ACTIONS(515), 1, anon_sym_AMP_AMP, - ACTIONS(549), 1, - anon_sym_PIPE_GT, - ACTIONS(545), 2, + ACTIONS(519), 1, + anon_sym_COMMA, + ACTIONS(521), 1, + anon_sym_RPAREN, + STATE(692), 1, + aux_sym_tuple_repeat1, + ACTIONS(507), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(372), 3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(539), 4, + ACTIONS(505), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(537), 5, + ACTIONS(503), 5, anon_sym_SLASH, anon_sym_STAR, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(547), 8, + ACTIONS(509), 8, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_DOT, @@ -22238,34 +22188,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [21859] = 9, + [21761] = 5, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(541), 1, - anon_sym_PIPE_PIPE, - ACTIONS(543), 1, - anon_sym_AMP_AMP, - ACTIONS(549), 1, + ACTIONS(527), 1, anon_sym_PIPE_GT, - ACTIONS(545), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(366), 3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(539), 4, + ACTIONS(525), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(537), 5, + ACTIONS(523), 5, anon_sym_SLASH, anon_sym_STAR, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(547), 8, + ACTIONS(348), 15, + anon_sym_COMMA, + 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, anon_sym_LT_EQ, anon_sym_LT_DOT, @@ -22274,22 +22220,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [21904] = 11, + [21798] = 11, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(507), 1, - anon_sym_AMP_AMP, - ACTIONS(513), 1, + ACTIONS(511), 1, anon_sym_PIPE_GT, - ACTIONS(515), 1, + ACTIONS(513), 1, anon_sym_PIPE_PIPE, - ACTIONS(551), 1, - anon_sym_LBRACE, - ACTIONS(553), 1, + ACTIONS(515), 1, + anon_sym_AMP_AMP, + ACTIONS(519), 1, anon_sym_COMMA, - STATE(566), 1, + ACTIONS(529), 1, + anon_sym_RPAREN, + STATE(598), 1, aux_sym_tuple_repeat1, - ACTIONS(509), 2, + ACTIONS(507), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, ACTIONS(505), 4, @@ -22303,7 +22249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(511), 8, + ACTIONS(509), 8, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_DOT, @@ -22312,28 +22258,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [21953] = 13, + [21847] = 14, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(31), 1, anon_sym_DASH, - ACTIONS(519), 1, + ACTIONS(531), 1, anon_sym_LBRACE, - ACTIONS(521), 1, + ACTIONS(533), 1, anon_sym_POUND, - ACTIONS(523), 1, + ACTIONS(535), 1, anon_sym_LBRACK, - ACTIONS(525), 1, + ACTIONS(537), 1, anon_sym_LT_LT, - ACTIONS(529), 1, + ACTIONS(541), 1, sym__name, - ACTIONS(531), 1, + ACTIONS(543), 1, sym__upname, - STATE(379), 1, + STATE(384), 1, + sym__constant_remote_record, + STATE(388), 1, sym__constant_record, STATE(406), 1, sym__case_clause_tuple_access, - ACTIONS(555), 2, + ACTIONS(539), 2, sym_string, sym_float, ACTIONS(45), 4, @@ -22341,64 +22289,32 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(414), 10, + STATE(420), 9, sym__constant_value, sym__constant_tuple, sym__constant_list, sym__constant_bit_string, - sym__constant_remote_record, sym__case_clause_guard_expression, sym__case_clause_guard_binary_expression, sym__case_clause_guard_unit, sym_var, sym_integer, - [22006] = 4, + [21902] = 11, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(539), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(537), 5, - anon_sym_SLASH, - anon_sym_STAR, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(348), 16, - anon_sym_COMMA, - 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, - anon_sym_LT_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, + ACTIONS(511), 1, anon_sym_PIPE_GT, - [22041] = 11, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(507), 1, - anon_sym_AMP_AMP, ACTIONS(513), 1, - anon_sym_PIPE_GT, - ACTIONS(515), 1, anon_sym_PIPE_PIPE, - ACTIONS(553), 1, + ACTIONS(515), 1, + anon_sym_AMP_AMP, + ACTIONS(519), 1, anon_sym_COMMA, - ACTIONS(557), 1, + ACTIONS(545), 1, anon_sym_RPAREN, - STATE(658), 1, + STATE(637), 1, aux_sym_tuple_repeat1, - ACTIONS(509), 2, + ACTIONS(507), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, ACTIONS(505), 4, @@ -22412,7 +22328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(511), 8, + ACTIONS(509), 8, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_DOT, @@ -22421,97 +22337,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [22090] = 5, + [21951] = 9, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(549), 1, + ACTIONS(527), 1, anon_sym_PIPE_GT, - ACTIONS(539), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(537), 5, - anon_sym_SLASH, - anon_sym_STAR, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(348), 15, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_COLON, + ACTIONS(547), 1, anon_sym_PIPE_PIPE, + ACTIONS(549), 1, anon_sym_AMP_AMP, + ACTIONS(551), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [22127] = 6, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(549), 1, - anon_sym_PIPE_GT, - ACTIONS(539), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(537), 5, - anon_sym_SLASH, - anon_sym_STAR, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(348), 7, + ACTIONS(368), 3, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(547), 8, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [22166] = 7, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(549), 1, - anon_sym_PIPE_GT, - ACTIONS(545), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(539), 4, + ACTIONS(525), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(348), 5, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(537), 5, + ACTIONS(523), 5, anon_sym_SLASH, anon_sym_STAR, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(547), 8, + ACTIONS(553), 8, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_DOT, @@ -22520,68 +22373,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [22207] = 13, + [21996] = 14, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(31), 1, anon_sym_DASH, - ACTIONS(519), 1, + ACTIONS(531), 1, anon_sym_LBRACE, - ACTIONS(521), 1, + ACTIONS(533), 1, anon_sym_POUND, - ACTIONS(523), 1, + ACTIONS(535), 1, anon_sym_LBRACK, - ACTIONS(525), 1, + ACTIONS(537), 1, anon_sym_LT_LT, - ACTIONS(529), 1, + ACTIONS(541), 1, sym__name, - ACTIONS(531), 1, + ACTIONS(543), 1, sym__upname, - STATE(379), 1, - sym__constant_record, - STATE(406), 1, - sym__case_clause_tuple_access, - ACTIONS(559), 2, - sym_string, - sym_float, - ACTIONS(45), 4, - sym__hex, - sym__decimal, - sym__octal, - sym__binary, - STATE(401), 10, - sym__constant_value, - sym__constant_tuple, - sym__constant_list, - sym__constant_bit_string, + STATE(384), 1, sym__constant_remote_record, - sym__case_clause_guard_expression, - sym__case_clause_guard_binary_expression, - sym__case_clause_guard_unit, - sym_var, - sym_integer, - [22260] = 13, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(31), 1, - anon_sym_DASH, - ACTIONS(519), 1, - anon_sym_LBRACE, - ACTIONS(521), 1, - anon_sym_POUND, - ACTIONS(523), 1, - anon_sym_LBRACK, - ACTIONS(525), 1, - anon_sym_LT_LT, - ACTIONS(529), 1, - sym__name, - ACTIONS(531), 1, - sym__upname, - STATE(379), 1, + STATE(388), 1, sym__constant_record, STATE(406), 1, sym__case_clause_tuple_access, - ACTIONS(561), 2, + ACTIONS(555), 2, sym_string, sym_float, ACTIONS(45), 4, @@ -22589,44 +22404,46 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(403), 10, + STATE(414), 9, sym__constant_value, sym__constant_tuple, sym__constant_list, sym__constant_bit_string, - sym__constant_remote_record, sym__case_clause_guard_expression, sym__case_clause_guard_binary_expression, sym__case_clause_guard_unit, sym_var, sym_integer, - [22313] = 8, + [22051] = 11, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(543), 1, - anon_sym_AMP_AMP, - ACTIONS(549), 1, + ACTIONS(511), 1, anon_sym_PIPE_GT, - ACTIONS(545), 2, + ACTIONS(513), 1, + anon_sym_PIPE_PIPE, + ACTIONS(515), 1, + anon_sym_AMP_AMP, + ACTIONS(557), 1, + anon_sym_COMMA, + ACTIONS(559), 1, + anon_sym_RBRACK, + STATE(602), 1, + aux_sym_tuple_repeat1, + ACTIONS(507), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(348), 4, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - ACTIONS(539), 4, + ACTIONS(505), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(537), 5, + ACTIONS(503), 5, anon_sym_SLASH, anon_sym_STAR, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(547), 8, + ACTIONS(509), 8, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_DOT, @@ -22635,94 +22452,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [22356] = 15, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(31), 1, - anon_sym_DASH, - ACTIONS(47), 1, - sym__discard_name, - ACTIONS(436), 1, - anon_sym_POUND, - ACTIONS(438), 1, - anon_sym_LBRACK, - ACTIONS(440), 1, - anon_sym_LT_LT, - ACTIONS(444), 1, - sym__name, - ACTIONS(446), 1, - sym__upname, - ACTIONS(563), 1, - anon_sym_GT_GT, - STATE(456), 1, - sym__constructor_pattern, - STATE(563), 1, - sym__pattern, - STATE(564), 1, - sym_pattern_bit_string_segment, - ACTIONS(442), 2, - sym_string, - sym_float, - ACTIONS(45), 4, - sym__hex, - sym__decimal, - sym__octal, - sym__binary, - STATE(460), 8, - sym_var, - sym_discard_var, - sym_remote_constructor_pattern, - sym_constructor_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - [22413] = 3, + [22100] = 11, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(537), 5, - anon_sym_SLASH, - anon_sym_STAR, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(348), 20, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_DASH, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, + ACTIONS(511), 1, anon_sym_PIPE_GT, - anon_sym_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - [22446] = 11, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(507), 1, - anon_sym_AMP_AMP, ACTIONS(513), 1, - anon_sym_PIPE_GT, - ACTIONS(515), 1, anon_sym_PIPE_PIPE, - ACTIONS(565), 1, + ACTIONS(515), 1, + anon_sym_AMP_AMP, + ACTIONS(519), 1, anon_sym_COMMA, - ACTIONS(567), 1, - anon_sym_RBRACK, - STATE(603), 1, + ACTIONS(561), 1, + anon_sym_LBRACE, + STATE(700), 1, aux_sym_tuple_repeat1, - ACTIONS(509), 2, + ACTIONS(507), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, ACTIONS(505), 4, @@ -22736,7 +22481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(511), 8, + ACTIONS(509), 8, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_DOT, @@ -22745,36 +22490,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [22495] = 11, + [22149] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(507), 1, - anon_sym_AMP_AMP, - ACTIONS(513), 1, - anon_sym_PIPE_GT, - ACTIONS(515), 1, - anon_sym_PIPE_PIPE, - ACTIONS(553), 1, - anon_sym_COMMA, - ACTIONS(569), 1, - anon_sym_RPAREN, - STATE(634), 1, - aux_sym_tuple_repeat1, - ACTIONS(509), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(505), 4, + ACTIONS(525), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(503), 5, + ACTIONS(523), 5, anon_sym_SLASH, anon_sym_STAR, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(511), 8, + ACTIONS(348), 16, + anon_sym_COMMA, + 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, anon_sym_LT_EQ, anon_sym_LT_DOT, @@ -22783,28 +22520,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [22544] = 13, + anon_sym_PIPE_GT, + [22184] = 15, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(31), 1, anon_sym_DASH, - ACTIONS(519), 1, - anon_sym_LBRACE, - ACTIONS(521), 1, + ACTIONS(47), 1, + sym__discard_name, + ACTIONS(436), 1, anon_sym_POUND, - ACTIONS(523), 1, + ACTIONS(438), 1, anon_sym_LBRACK, - ACTIONS(525), 1, + ACTIONS(440), 1, anon_sym_LT_LT, - ACTIONS(529), 1, + ACTIONS(444), 1, sym__name, + ACTIONS(446), 1, + sym__upname, + ACTIONS(563), 1, + anon_sym_GT_GT, + STATE(453), 1, + sym__constructor_pattern, + STATE(646), 1, + sym__pattern, + STATE(654), 1, + sym_pattern_bit_string_segment, + ACTIONS(442), 2, + sym_string, + sym_float, + ACTIONS(45), 4, + sym__hex, + sym__decimal, + sym__octal, + sym__binary, + STATE(457), 8, + sym_var, + sym_discard_var, + sym_remote_constructor_pattern, + sym_constructor_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + [22241] = 14, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(31), 1, + anon_sym_DASH, ACTIONS(531), 1, + anon_sym_LBRACE, + ACTIONS(533), 1, + anon_sym_POUND, + ACTIONS(535), 1, + anon_sym_LBRACK, + ACTIONS(537), 1, + anon_sym_LT_LT, + ACTIONS(541), 1, + sym__name, + ACTIONS(543), 1, sym__upname, - STATE(379), 1, + STATE(384), 1, + sym__constant_remote_record, + STATE(388), 1, sym__constant_record, STATE(406), 1, sym__case_clause_tuple_access, - ACTIONS(571), 2, + ACTIONS(565), 2, sym_string, sym_float, ACTIONS(45), 4, @@ -22812,33 +22594,32 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(402), 10, + STATE(410), 9, sym__constant_value, sym__constant_tuple, sym__constant_list, sym__constant_bit_string, - sym__constant_remote_record, sym__case_clause_guard_expression, sym__case_clause_guard_binary_expression, sym__case_clause_guard_unit, sym_var, sym_integer, - [22597] = 11, + [22296] = 11, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(507), 1, - anon_sym_AMP_AMP, - ACTIONS(513), 1, + ACTIONS(511), 1, anon_sym_PIPE_GT, - ACTIONS(515), 1, + ACTIONS(513), 1, anon_sym_PIPE_PIPE, - ACTIONS(573), 1, + ACTIONS(515), 1, + anon_sym_AMP_AMP, + ACTIONS(567), 1, anon_sym_COMMA, - ACTIONS(575), 1, + ACTIONS(569), 1, anon_sym_RBRACK, - STATE(624), 1, + STATE(625), 1, aux_sym_tuple_repeat1, - ACTIONS(509), 2, + ACTIONS(507), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, ACTIONS(505), 4, @@ -22852,7 +22633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(511), 8, + ACTIONS(509), 8, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_DOT, @@ -22861,28 +22642,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [22646] = 13, + [22345] = 14, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(31), 1, anon_sym_DASH, - ACTIONS(519), 1, + ACTIONS(531), 1, anon_sym_LBRACE, - ACTIONS(521), 1, + ACTIONS(533), 1, anon_sym_POUND, - ACTIONS(523), 1, + ACTIONS(535), 1, anon_sym_LBRACK, - ACTIONS(525), 1, + ACTIONS(537), 1, anon_sym_LT_LT, - ACTIONS(529), 1, + ACTIONS(541), 1, sym__name, - ACTIONS(531), 1, + ACTIONS(543), 1, sym__upname, - STATE(379), 1, + STATE(384), 1, + sym__constant_remote_record, + STATE(388), 1, sym__constant_record, STATE(406), 1, sym__case_clause_tuple_access, - ACTIONS(577), 2, + ACTIONS(571), 2, sym_string, sym_float, ACTIONS(45), 4, @@ -22890,47 +22673,41 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(398), 10, + STATE(408), 9, sym__constant_value, sym__constant_tuple, sym__constant_list, sym__constant_bit_string, - sym__constant_remote_record, sym__case_clause_guard_expression, sym__case_clause_guard_binary_expression, sym__case_clause_guard_unit, sym_var, sym_integer, - [22699] = 11, + [22400] = 6, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(507), 1, - anon_sym_AMP_AMP, - ACTIONS(513), 1, + ACTIONS(527), 1, anon_sym_PIPE_GT, - ACTIONS(515), 1, - anon_sym_PIPE_PIPE, - ACTIONS(553), 1, - anon_sym_COMMA, - ACTIONS(579), 1, - anon_sym_RPAREN, - STATE(568), 1, - aux_sym_tuple_repeat1, - ACTIONS(509), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(505), 4, + ACTIONS(525), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(503), 5, + ACTIONS(523), 5, anon_sym_SLASH, anon_sym_STAR, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(511), 8, + ACTIONS(348), 7, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(553), 8, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_DOT, @@ -22939,30 +22716,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [22748] = 14, + [22439] = 7, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(31), 1, + ACTIONS(527), 1, + anon_sym_PIPE_GT, + ACTIONS(551), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(525), 4, anon_sym_DASH, - ACTIONS(47), 1, - sym__discard_name, - ACTIONS(436), 1, - anon_sym_POUND, - ACTIONS(438), 1, + anon_sym_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(348), 5, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(523), 5, + anon_sym_SLASH, + anon_sym_STAR, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(553), 8, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [22480] = 8, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(527), 1, + anon_sym_PIPE_GT, + ACTIONS(549), 1, + anon_sym_AMP_AMP, + ACTIONS(551), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(348), 4, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + ACTIONS(525), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(523), 5, + anon_sym_SLASH, + anon_sym_STAR, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(553), 8, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [22523] = 11, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(511), 1, + anon_sym_PIPE_GT, + ACTIONS(513), 1, + anon_sym_PIPE_PIPE, + ACTIONS(515), 1, + anon_sym_AMP_AMP, + ACTIONS(573), 1, + anon_sym_COMMA, + ACTIONS(575), 1, + anon_sym_RBRACK, + STATE(694), 1, + aux_sym_tuple_repeat1, + ACTIONS(507), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(505), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(503), 5, + anon_sym_SLASH, + anon_sym_STAR, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(509), 8, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [22572] = 14, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(31), 1, + anon_sym_DASH, + ACTIONS(531), 1, + anon_sym_LBRACE, + ACTIONS(533), 1, + anon_sym_POUND, + ACTIONS(535), 1, anon_sym_LBRACK, - ACTIONS(440), 1, + ACTIONS(537), 1, anon_sym_LT_LT, - ACTIONS(444), 1, + ACTIONS(541), 1, sym__name, - ACTIONS(446), 1, + ACTIONS(543), 1, sym__upname, - STATE(162), 1, - sym__assignment, - STATE(456), 1, - sym__constructor_pattern, - STATE(692), 1, - sym__pattern, - ACTIONS(442), 2, + STATE(384), 1, + sym__constant_remote_record, + STATE(388), 1, + sym__constant_record, + STATE(406), 1, + sym__case_clause_tuple_access, + ACTIONS(577), 2, sym_string, sym_float, ACTIONS(45), 4, @@ -22970,16 +22854,124 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(460), 8, + STATE(409), 9, + sym__constant_value, + sym__constant_tuple, + sym__constant_list, + sym__constant_bit_string, + sym__case_clause_guard_expression, + sym__case_clause_guard_binary_expression, + sym__case_clause_guard_unit, + sym_var, + sym_integer, + [22627] = 9, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(527), 1, + anon_sym_PIPE_GT, + ACTIONS(547), 1, + anon_sym_PIPE_PIPE, + ACTIONS(549), 1, + anon_sym_AMP_AMP, + ACTIONS(551), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(370), 3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + ACTIONS(525), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(523), 5, + anon_sym_SLASH, + anon_sym_STAR, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(553), 8, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [22672] = 3, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(523), 5, + anon_sym_SLASH, + anon_sym_STAR, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(348), 20, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_DASH, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + [22705] = 14, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(31), 1, + anon_sym_DASH, + ACTIONS(531), 1, + anon_sym_LBRACE, + ACTIONS(533), 1, + anon_sym_POUND, + ACTIONS(535), 1, + anon_sym_LBRACK, + ACTIONS(537), 1, + anon_sym_LT_LT, + ACTIONS(541), 1, + sym__name, + ACTIONS(543), 1, + sym__upname, + STATE(384), 1, + sym__constant_remote_record, + STATE(388), 1, + sym__constant_record, + STATE(406), 1, + sym__case_clause_tuple_access, + ACTIONS(579), 2, + sym_string, + sym_float, + ACTIONS(45), 4, + sym__hex, + sym__decimal, + sym__octal, + sym__binary, + STATE(411), 9, + sym__constant_value, + sym__constant_tuple, + sym__constant_list, + sym__constant_bit_string, + sym__case_clause_guard_expression, + sym__case_clause_guard_binary_expression, + sym__case_clause_guard_unit, sym_var, - sym_discard_var, - sym_remote_constructor_pattern, - sym_constructor_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, sym_integer, - [22802] = 14, + [22760] = 14, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(31), 1, @@ -22996,12 +22988,12 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(446), 1, sym__upname, - STATE(280), 1, - sym__assignment, - STATE(456), 1, + STATE(453), 1, sym__constructor_pattern, - STATE(667), 1, + STATE(646), 1, sym__pattern, + STATE(734), 1, + sym_pattern_bit_string_segment, ACTIONS(442), 2, sym_string, sym_float, @@ -23010,7 +23002,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(460), 8, + STATE(457), 8, sym_var, sym_discard_var, sym_remote_constructor_pattern, @@ -23019,42 +23011,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pattern_bit_string, sym_list_pattern, sym_integer, - [22856] = 9, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(507), 1, - anon_sym_AMP_AMP, - ACTIONS(513), 1, - anon_sym_PIPE_GT, - ACTIONS(515), 1, - anon_sym_PIPE_PIPE, - ACTIONS(509), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(581), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(505), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(503), 5, - anon_sym_SLASH, - anon_sym_STAR, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(511), 8, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [22900] = 14, + [22814] = 14, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(31), 1, @@ -23071,11 +23028,11 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(446), 1, sym__upname, - STATE(157), 1, + STATE(226), 1, sym__assignment, - STATE(456), 1, + STATE(453), 1, sym__constructor_pattern, - STATE(667), 1, + STATE(588), 1, sym__pattern, ACTIONS(442), 2, sym_string, @@ -23085,7 +23042,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(460), 8, + STATE(457), 8, sym_var, sym_discard_var, sym_remote_constructor_pattern, @@ -23094,7 +23051,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pattern_bit_string, sym_list_pattern, sym_integer, - [22954] = 14, + [22868] = 14, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(31), 1, @@ -23111,11 +23068,11 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(446), 1, sym__upname, - STATE(157), 1, + STATE(283), 1, sym__assignment, - STATE(456), 1, + STATE(453), 1, sym__constructor_pattern, - STATE(692), 1, + STATE(606), 1, sym__pattern, ACTIONS(442), 2, sym_string, @@ -23125,7 +23082,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(460), 8, + STATE(457), 8, sym_var, sym_discard_var, sym_remote_constructor_pattern, @@ -23134,7 +23091,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pattern_bit_string, sym_list_pattern, sym_integer, - [23008] = 14, + [22922] = 14, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(31), 1, @@ -23151,11 +23108,11 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(446), 1, sym__upname, - STATE(162), 1, + STATE(274), 1, sym__assignment, - STATE(456), 1, + STATE(453), 1, sym__constructor_pattern, - STATE(667), 1, + STATE(698), 1, sym__pattern, ACTIONS(442), 2, sym_string, @@ -23165,7 +23122,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(460), 8, + STATE(457), 8, sym_var, sym_discard_var, sym_remote_constructor_pattern, @@ -23174,19 +23131,19 @@ static const uint16_t ts_small_parse_table[] = { sym__pattern_bit_string, sym_list_pattern, sym_integer, - [23062] = 9, + [22976] = 9, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(507), 1, - anon_sym_AMP_AMP, - ACTIONS(513), 1, + ACTIONS(511), 1, anon_sym_PIPE_GT, - ACTIONS(515), 1, + ACTIONS(513), 1, anon_sym_PIPE_PIPE, - ACTIONS(509), 2, - anon_sym_EQ_EQ, + ACTIONS(515), 1, + anon_sym_AMP_AMP, + ACTIONS(507), 2, + anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(583), 2, + ACTIONS(581), 2, anon_sym_COMMA, anon_sym_RPAREN, ACTIONS(505), 4, @@ -23200,7 +23157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(511), 8, + ACTIONS(509), 8, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_DOT, @@ -23209,7 +23166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [23106] = 14, + [23020] = 14, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(31), 1, @@ -23226,11 +23183,11 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(446), 1, sym__upname, - STATE(277), 1, + STATE(274), 1, sym__assignment, - STATE(456), 1, + STATE(453), 1, sym__constructor_pattern, - STATE(667), 1, + STATE(606), 1, sym__pattern, ACTIONS(442), 2, sym_string, @@ -23240,7 +23197,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(460), 8, + STATE(457), 8, sym_var, sym_discard_var, sym_remote_constructor_pattern, @@ -23249,7 +23206,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pattern_bit_string, sym_list_pattern, sym_integer, - [23160] = 14, + [23074] = 14, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(31), 1, @@ -23266,11 +23223,51 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(446), 1, sym__upname, - STATE(235), 1, + STATE(130), 1, sym__assignment, - STATE(456), 1, + STATE(453), 1, + sym__constructor_pattern, + STATE(606), 1, + sym__pattern, + ACTIONS(442), 2, + sym_string, + sym_float, + ACTIONS(45), 4, + sym__hex, + sym__decimal, + sym__octal, + sym__binary, + STATE(457), 8, + sym_var, + sym_discard_var, + sym_remote_constructor_pattern, + sym_constructor_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + [23128] = 14, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(31), 1, + anon_sym_DASH, + ACTIONS(47), 1, + sym__discard_name, + ACTIONS(436), 1, + anon_sym_POUND, + ACTIONS(438), 1, + anon_sym_LBRACK, + ACTIONS(440), 1, + anon_sym_LT_LT, + ACTIONS(444), 1, + sym__name, + ACTIONS(446), 1, + sym__upname, + ACTIONS(583), 1, + anon_sym_RPAREN, + STATE(453), 1, sym__constructor_pattern, - STATE(576), 1, + STATE(568), 1, sym__pattern, ACTIONS(442), 2, sym_string, @@ -23280,7 +23277,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(460), 8, + STATE(457), 8, sym_var, sym_discard_var, sym_remote_constructor_pattern, @@ -23289,7 +23286,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pattern_bit_string, sym_list_pattern, sym_integer, - [23214] = 14, + [23182] = 14, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(31), 1, @@ -23306,11 +23303,11 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(446), 1, sym__upname, - STATE(228), 1, + STATE(283), 1, sym__assignment, - STATE(456), 1, + STATE(453), 1, sym__constructor_pattern, - STATE(576), 1, + STATE(698), 1, sym__pattern, ACTIONS(442), 2, sym_string, @@ -23320,7 +23317,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(460), 8, + STATE(457), 8, sym_var, sym_discard_var, sym_remote_constructor_pattern, @@ -23329,7 +23326,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pattern_bit_string, sym_list_pattern, sym_integer, - [23268] = 14, + [23236] = 14, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(31), 1, @@ -23346,11 +23343,11 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(446), 1, sym__upname, - ACTIONS(585), 1, - anon_sym_RPAREN, - STATE(456), 1, + STATE(227), 1, + sym__assignment, + STATE(453), 1, sym__constructor_pattern, - STATE(675), 1, + STATE(588), 1, sym__pattern, ACTIONS(442), 2, sym_string, @@ -23360,7 +23357,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(460), 8, + STATE(457), 8, sym_var, sym_discard_var, sym_remote_constructor_pattern, @@ -23369,7 +23366,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pattern_bit_string, sym_list_pattern, sym_integer, - [23322] = 14, + [23290] = 14, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(31), 1, @@ -23386,12 +23383,12 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(446), 1, sym__upname, - STATE(456), 1, + STATE(130), 1, + sym__assignment, + STATE(453), 1, sym__constructor_pattern, - STATE(563), 1, + STATE(610), 1, sym__pattern, - STATE(741), 1, - sym_pattern_bit_string_segment, ACTIONS(442), 2, sym_string, sym_float, @@ -23400,7 +23397,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(460), 8, + STATE(457), 8, sym_var, sym_discard_var, sym_remote_constructor_pattern, @@ -23409,7 +23406,42 @@ static const uint16_t ts_small_parse_table[] = { sym__pattern_bit_string, sym_list_pattern, sym_integer, - [23376] = 14, + [23344] = 9, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(511), 1, + anon_sym_PIPE_GT, + ACTIONS(513), 1, + anon_sym_PIPE_PIPE, + ACTIONS(515), 1, + anon_sym_AMP_AMP, + ACTIONS(507), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(585), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(505), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(503), 5, + anon_sym_SLASH, + anon_sym_STAR, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(509), 8, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [23388] = 14, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(31), 1, @@ -23426,11 +23458,11 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(446), 1, sym__upname, - STATE(280), 1, + STATE(131), 1, sym__assignment, - STATE(456), 1, + STATE(453), 1, sym__constructor_pattern, - STATE(579), 1, + STATE(606), 1, sym__pattern, ACTIONS(442), 2, sym_string, @@ -23440,7 +23472,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(460), 8, + STATE(457), 8, sym_var, sym_discard_var, sym_remote_constructor_pattern, @@ -23449,7 +23481,7 @@ static const uint16_t ts_small_parse_table[] = { sym__pattern_bit_string, sym_list_pattern, sym_integer, - [23430] = 14, + [23442] = 14, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(31), 1, @@ -23466,11 +23498,11 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(446), 1, sym__upname, - STATE(277), 1, + STATE(131), 1, sym__assignment, - STATE(456), 1, + STATE(453), 1, sym__constructor_pattern, - STATE(579), 1, + STATE(610), 1, sym__pattern, ACTIONS(442), 2, sym_string, @@ -23480,7 +23512,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(460), 8, + STATE(457), 8, sym_var, sym_discard_var, sym_remote_constructor_pattern, @@ -23489,16 +23521,16 @@ static const uint16_t ts_small_parse_table[] = { sym__pattern_bit_string, sym_list_pattern, sym_integer, - [23484] = 9, + [23496] = 9, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(507), 1, - anon_sym_AMP_AMP, - ACTIONS(513), 1, + ACTIONS(511), 1, anon_sym_PIPE_GT, - ACTIONS(515), 1, + ACTIONS(513), 1, anon_sym_PIPE_PIPE, - ACTIONS(509), 2, + ACTIONS(515), 1, + anon_sym_AMP_AMP, + ACTIONS(507), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, ACTIONS(587), 2, @@ -23515,7 +23547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(511), 8, + ACTIONS(509), 8, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_DOT, @@ -23524,7 +23556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [23528] = 14, + [23540] = 14, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(31), 1, @@ -23541,11 +23573,11 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(446), 1, sym__upname, - STATE(456), 1, + STATE(453), 1, sym__constructor_pattern, - STATE(496), 1, + STATE(510), 1, sym__pattern, - STATE(605), 1, + STATE(611), 1, sym_case_clause_pattern, ACTIONS(442), 2, sym_string, @@ -23555,7 +23587,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(460), 8, + STATE(457), 8, sym_var, sym_discard_var, sym_remote_constructor_pattern, @@ -23564,18 +23596,18 @@ static const uint16_t ts_small_parse_table[] = { sym__pattern_bit_string, sym_list_pattern, sym_integer, - [23582] = 9, + [23594] = 9, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(507), 1, - anon_sym_AMP_AMP, - ACTIONS(513), 1, + ACTIONS(511), 1, anon_sym_PIPE_GT, - ACTIONS(515), 1, + ACTIONS(513), 1, anon_sym_PIPE_PIPE, + ACTIONS(515), 1, + anon_sym_AMP_AMP, ACTIONS(589), 1, - anon_sym_COMMA, - ACTIONS(509), 2, + anon_sym_RBRACK, + ACTIONS(507), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, ACTIONS(505), 4, @@ -23589,7 +23621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(511), 8, + ACTIONS(509), 8, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_DOT, @@ -23598,18 +23630,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [23625] = 9, + [23637] = 9, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(507), 1, - anon_sym_AMP_AMP, - ACTIONS(513), 1, + ACTIONS(511), 1, anon_sym_PIPE_GT, - ACTIONS(515), 1, + ACTIONS(513), 1, anon_sym_PIPE_PIPE, + ACTIONS(515), 1, + anon_sym_AMP_AMP, ACTIONS(591), 1, - anon_sym_COMMA, - ACTIONS(509), 2, + anon_sym_RBRACK, + ACTIONS(507), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, ACTIONS(505), 4, @@ -23623,7 +23655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(511), 8, + ACTIONS(509), 8, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_DOT, @@ -23632,18 +23664,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [23668] = 9, + [23680] = 9, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(507), 1, - anon_sym_AMP_AMP, - ACTIONS(513), 1, + ACTIONS(511), 1, anon_sym_PIPE_GT, - ACTIONS(515), 1, + ACTIONS(513), 1, anon_sym_PIPE_PIPE, + ACTIONS(515), 1, + anon_sym_AMP_AMP, ACTIONS(593), 1, anon_sym_RBRACK, - ACTIONS(509), 2, + ACTIONS(507), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, ACTIONS(505), 4, @@ -23657,7 +23689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(511), 8, + ACTIONS(509), 8, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_DOT, @@ -23666,56 +23698,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [23711] = 13, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(31), 1, - anon_sym_DASH, - ACTIONS(47), 1, - sym__discard_name, - ACTIONS(436), 1, - anon_sym_POUND, - ACTIONS(438), 1, - anon_sym_LBRACK, - ACTIONS(440), 1, - anon_sym_LT_LT, - ACTIONS(444), 1, - sym__name, - ACTIONS(446), 1, - sym__upname, - STATE(456), 1, - sym__constructor_pattern, - STATE(482), 1, - sym__pattern, - ACTIONS(442), 2, - sym_string, - sym_float, - ACTIONS(45), 4, - sym__hex, - sym__decimal, - sym__octal, - sym__binary, - STATE(460), 8, - sym_var, - sym_discard_var, - sym_remote_constructor_pattern, - sym_constructor_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - [23762] = 9, + [23723] = 9, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(507), 1, - anon_sym_AMP_AMP, - ACTIONS(513), 1, + ACTIONS(511), 1, anon_sym_PIPE_GT, - ACTIONS(515), 1, + ACTIONS(513), 1, anon_sym_PIPE_PIPE, + ACTIONS(515), 1, + anon_sym_AMP_AMP, ACTIONS(595), 1, anon_sym_RBRACK, - ACTIONS(509), 2, + ACTIONS(507), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, ACTIONS(505), 4, @@ -23729,7 +23723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(511), 8, + ACTIONS(509), 8, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_DOT, @@ -23738,18 +23732,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [23805] = 9, + [23766] = 9, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(507), 1, - anon_sym_AMP_AMP, - ACTIONS(513), 1, + ACTIONS(511), 1, anon_sym_PIPE_GT, - ACTIONS(515), 1, + ACTIONS(513), 1, anon_sym_PIPE_PIPE, + ACTIONS(515), 1, + anon_sym_AMP_AMP, ACTIONS(597), 1, - anon_sym_RPAREN, - ACTIONS(509), 2, + anon_sym_COMMA, + ACTIONS(507), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, ACTIONS(505), 4, @@ -23763,7 +23757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(511), 8, + ACTIONS(509), 8, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_DOT, @@ -23772,18 +23766,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [23848] = 9, + [23809] = 9, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(507), 1, - anon_sym_AMP_AMP, - ACTIONS(513), 1, + ACTIONS(511), 1, anon_sym_PIPE_GT, - ACTIONS(515), 1, + ACTIONS(513), 1, anon_sym_PIPE_PIPE, + ACTIONS(515), 1, + anon_sym_AMP_AMP, ACTIONS(599), 1, anon_sym_RBRACK, - ACTIONS(509), 2, + ACTIONS(507), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, ACTIONS(505), 4, @@ -23797,7 +23791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(511), 8, + ACTIONS(509), 8, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_DOT, @@ -23806,18 +23800,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [23891] = 9, + [23852] = 9, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(507), 1, - anon_sym_AMP_AMP, - ACTIONS(513), 1, + ACTIONS(511), 1, anon_sym_PIPE_GT, - ACTIONS(515), 1, + ACTIONS(513), 1, anon_sym_PIPE_PIPE, + ACTIONS(515), 1, + anon_sym_AMP_AMP, ACTIONS(601), 1, - anon_sym_COMMA, - ACTIONS(509), 2, + anon_sym_RBRACK, + ACTIONS(507), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, ACTIONS(505), 4, @@ -23831,7 +23825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(511), 8, + ACTIONS(509), 8, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_DOT, @@ -23840,18 +23834,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [23934] = 9, + [23895] = 13, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(507), 1, - anon_sym_AMP_AMP, - ACTIONS(513), 1, + ACTIONS(31), 1, + anon_sym_DASH, + ACTIONS(47), 1, + sym__discard_name, + ACTIONS(436), 1, + anon_sym_POUND, + ACTIONS(438), 1, + anon_sym_LBRACK, + ACTIONS(440), 1, + anon_sym_LT_LT, + ACTIONS(444), 1, + sym__name, + ACTIONS(446), 1, + sym__upname, + STATE(453), 1, + sym__constructor_pattern, + STATE(488), 1, + sym__pattern, + ACTIONS(442), 2, + sym_string, + sym_float, + ACTIONS(45), 4, + sym__hex, + sym__decimal, + sym__octal, + sym__binary, + STATE(457), 8, + sym_var, + sym_discard_var, + sym_remote_constructor_pattern, + sym_constructor_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + [23946] = 9, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(511), 1, anon_sym_PIPE_GT, - ACTIONS(515), 1, + ACTIONS(513), 1, anon_sym_PIPE_PIPE, + ACTIONS(515), 1, + anon_sym_AMP_AMP, ACTIONS(603), 1, - anon_sym_RBRACK, - ACTIONS(509), 2, + anon_sym_COMMA, + ACTIONS(507), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, ACTIONS(505), 4, @@ -23865,7 +23897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(511), 8, + ACTIONS(509), 8, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_DOT, @@ -23874,18 +23906,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [23977] = 9, + [23989] = 9, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(507), 1, - anon_sym_AMP_AMP, - ACTIONS(513), 1, + ACTIONS(511), 1, anon_sym_PIPE_GT, - ACTIONS(515), 1, + ACTIONS(513), 1, anon_sym_PIPE_PIPE, + ACTIONS(515), 1, + anon_sym_AMP_AMP, ACTIONS(605), 1, anon_sym_COMMA, - ACTIONS(509), 2, + ACTIONS(507), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, ACTIONS(505), 4, @@ -23899,7 +23931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(511), 8, + ACTIONS(509), 8, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_DOT, @@ -23908,7 +23940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [24020] = 13, + [24032] = 13, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(31), 1, @@ -23925,9 +23957,9 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(446), 1, sym__upname, - STATE(456), 1, + STATE(453), 1, sym__constructor_pattern, - STATE(688), 1, + STATE(619), 1, sym__pattern, ACTIONS(442), 2, sym_string, @@ -23937,7 +23969,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(460), 8, + STATE(457), 8, sym_var, sym_discard_var, sym_remote_constructor_pattern, @@ -23946,18 +23978,18 @@ static const uint16_t ts_small_parse_table[] = { sym__pattern_bit_string, sym_list_pattern, sym_integer, - [24071] = 9, + [24083] = 9, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(507), 1, - anon_sym_AMP_AMP, - ACTIONS(513), 1, + ACTIONS(511), 1, anon_sym_PIPE_GT, - ACTIONS(515), 1, + ACTIONS(513), 1, anon_sym_PIPE_PIPE, + ACTIONS(515), 1, + anon_sym_AMP_AMP, ACTIONS(607), 1, - anon_sym_RBRACK, - ACTIONS(509), 2, + anon_sym_COMMA, + ACTIONS(507), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, ACTIONS(505), 4, @@ -23971,7 +24003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(511), 8, + ACTIONS(509), 8, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_DOT, @@ -23980,18 +24012,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [24114] = 9, + [24126] = 9, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(507), 1, - anon_sym_AMP_AMP, - ACTIONS(513), 1, + ACTIONS(511), 1, anon_sym_PIPE_GT, - ACTIONS(515), 1, + ACTIONS(513), 1, anon_sym_PIPE_PIPE, + ACTIONS(515), 1, + anon_sym_AMP_AMP, ACTIONS(609), 1, - anon_sym_RBRACK, - ACTIONS(509), 2, + anon_sym_COMMA, + ACTIONS(507), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, ACTIONS(505), 4, @@ -24005,7 +24037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(511), 8, + ACTIONS(509), 8, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_DOT, @@ -24014,18 +24046,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [24157] = 9, + [24169] = 9, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(507), 1, - anon_sym_AMP_AMP, - ACTIONS(513), 1, + ACTIONS(511), 1, anon_sym_PIPE_GT, - ACTIONS(515), 1, + ACTIONS(513), 1, anon_sym_PIPE_PIPE, + ACTIONS(515), 1, + anon_sym_AMP_AMP, ACTIONS(611), 1, anon_sym_COMMA, - ACTIONS(509), 2, + ACTIONS(507), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, ACTIONS(505), 4, @@ -24039,7 +24071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(511), 8, + ACTIONS(509), 8, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_DOT, @@ -24048,18 +24080,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [24200] = 9, + [24212] = 9, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(507), 1, - anon_sym_AMP_AMP, - ACTIONS(513), 1, + ACTIONS(511), 1, anon_sym_PIPE_GT, - ACTIONS(515), 1, + ACTIONS(513), 1, anon_sym_PIPE_PIPE, + ACTIONS(515), 1, + anon_sym_AMP_AMP, ACTIONS(613), 1, - anon_sym_COMMA, - ACTIONS(509), 2, + anon_sym_RPAREN, + ACTIONS(507), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, ACTIONS(505), 4, @@ -24073,7 +24105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(511), 8, + ACTIONS(509), 8, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_DOT, @@ -24082,27 +24114,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [24243] = 13, + [24255] = 15, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(75), 1, anon_sym_DASH, - ACTIONS(521), 1, + ACTIONS(533), 1, anon_sym_POUND, - ACTIONS(523), 1, + ACTIONS(535), 1, anon_sym_LBRACK, - ACTIONS(525), 1, + ACTIONS(537), 1, anon_sym_LT_LT, - ACTIONS(531), 1, + ACTIONS(543), 1, sym__upname, ACTIONS(615), 1, - anon_sym_GT_GT, + anon_sym_RPAREN, ACTIONS(619), 1, sym__name, - STATE(379), 1, + STATE(384), 1, + sym__constant_remote_record, + STATE(388), 1, sym__constant_record, - STATE(702), 1, - sym_constant_bit_string_segment, + STATE(687), 1, + sym__constant_record_argument, + STATE(838), 1, + sym_identifier, ACTIONS(617), 2, sym_string, sym_float, @@ -24111,34 +24147,37 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(697), 6, + STATE(778), 5, sym__constant_value, sym__constant_tuple, sym__constant_list, sym__constant_bit_string, - sym__constant_remote_record, sym_integer, - [24292] = 13, + [24309] = 15, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(75), 1, anon_sym_DASH, - ACTIONS(521), 1, + ACTIONS(533), 1, anon_sym_POUND, - ACTIONS(523), 1, + ACTIONS(535), 1, anon_sym_LBRACK, - ACTIONS(525), 1, + ACTIONS(537), 1, anon_sym_LT_LT, - ACTIONS(531), 1, + ACTIONS(543), 1, sym__upname, ACTIONS(619), 1, sym__name, ACTIONS(621), 1, - anon_sym_GT_GT, - STATE(379), 1, + anon_sym_RPAREN, + STATE(384), 1, + sym__constant_remote_record, + STATE(388), 1, sym__constant_record, - STATE(663), 1, - sym_constant_bit_string_segment, + STATE(603), 1, + sym__constant_record_argument, + STATE(838), 1, + sym_identifier, ACTIONS(617), 2, sym_string, sym_float, @@ -24147,34 +24186,37 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(697), 6, + STATE(778), 5, sym__constant_value, sym__constant_tuple, sym__constant_list, sym__constant_bit_string, - sym__constant_remote_record, sym_integer, - [24341] = 13, + [24363] = 15, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(75), 1, anon_sym_DASH, - ACTIONS(521), 1, + ACTIONS(533), 1, anon_sym_POUND, - ACTIONS(523), 1, + ACTIONS(535), 1, anon_sym_LBRACK, - ACTIONS(525), 1, + ACTIONS(537), 1, anon_sym_LT_LT, - ACTIONS(531), 1, + ACTIONS(543), 1, sym__upname, ACTIONS(619), 1, sym__name, ACTIONS(623), 1, - anon_sym_GT_GT, - STATE(379), 1, + anon_sym_RPAREN, + STATE(384), 1, + sym__constant_remote_record, + STATE(388), 1, sym__constant_record, - STATE(573), 1, - sym_constant_bit_string_segment, + STATE(630), 1, + sym__constant_record_argument, + STATE(838), 1, + sym_identifier, ACTIONS(617), 2, sym_string, sym_float, @@ -24183,66 +24225,35 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(697), 6, + STATE(778), 5, sym__constant_value, sym__constant_tuple, sym__constant_list, sym__constant_bit_string, - sym__constant_remote_record, sym_integer, - [24390] = 12, + [24417] = 14, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(75), 1, anon_sym_DASH, - ACTIONS(521), 1, + ACTIONS(533), 1, anon_sym_POUND, - ACTIONS(523), 1, + ACTIONS(535), 1, anon_sym_LBRACK, - ACTIONS(525), 1, + ACTIONS(537), 1, anon_sym_LT_LT, - ACTIONS(531), 1, + ACTIONS(543), 1, sym__upname, ACTIONS(619), 1, sym__name, - ACTIONS(625), 1, - anon_sym_RBRACK, - STATE(379), 1, - sym__constant_record, - ACTIONS(627), 2, - sym_string, - sym_float, - ACTIONS(91), 4, - sym__hex, - sym__decimal, - sym__octal, - sym__binary, - STATE(614), 6, - sym__constant_value, - sym__constant_tuple, - sym__constant_list, - sym__constant_bit_string, + STATE(384), 1, sym__constant_remote_record, - sym_integer, - [24436] = 12, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(75), 1, - anon_sym_DASH, - ACTIONS(521), 1, - anon_sym_POUND, - ACTIONS(523), 1, - anon_sym_LBRACK, - ACTIONS(525), 1, - anon_sym_LT_LT, - ACTIONS(531), 1, - sym__upname, - ACTIONS(619), 1, - sym__name, - STATE(379), 1, + STATE(388), 1, sym__constant_record, - STATE(775), 1, - sym_constant_bit_string_segment, + STATE(810), 1, + sym__constant_record_argument, + STATE(838), 1, + sym_identifier, ACTIONS(617), 2, sym_string, sym_float, @@ -24251,19 +24262,20 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(697), 6, + STATE(778), 5, sym__constant_value, sym__constant_tuple, sym__constant_list, sym__constant_bit_string, - sym__constant_remote_record, sym_integer, - [24482] = 3, + [24468] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(631), 1, + ACTIONS(627), 1, anon_sym_LPAREN, - ACTIONS(629), 19, + STATE(392), 1, + sym__constant_record_arguments, + ACTIONS(625), 19, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -24283,26 +24295,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [24510] = 12, + [24499] = 14, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(75), 1, anon_sym_DASH, - ACTIONS(521), 1, + ACTIONS(533), 1, anon_sym_POUND, - ACTIONS(523), 1, + ACTIONS(535), 1, anon_sym_LBRACK, - ACTIONS(525), 1, + ACTIONS(537), 1, anon_sym_LT_LT, - ACTIONS(531), 1, + ACTIONS(543), 1, sym__upname, - ACTIONS(619), 1, - sym__name, + ACTIONS(629), 1, + anon_sym_GT_GT, ACTIONS(633), 1, - anon_sym_RBRACK, - STATE(379), 1, + sym__name, + STATE(384), 1, + sym__constant_remote_record, + STATE(388), 1, sym__constant_record, - ACTIONS(635), 2, + STATE(672), 1, + sym_constant_bit_string_segment, + ACTIONS(631), 2, sym_string, sym_float, ACTIONS(91), 4, @@ -24310,33 +24326,36 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(687), 6, + STATE(593), 5, sym__constant_value, sym__constant_tuple, sym__constant_list, sym__constant_bit_string, - sym__constant_remote_record, sym_integer, - [24556] = 12, + [24550] = 14, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(75), 1, anon_sym_DASH, - ACTIONS(521), 1, + ACTIONS(533), 1, anon_sym_POUND, - ACTIONS(523), 1, + ACTIONS(535), 1, anon_sym_LBRACK, - ACTIONS(525), 1, + ACTIONS(537), 1, anon_sym_LT_LT, - ACTIONS(531), 1, + ACTIONS(543), 1, sym__upname, - ACTIONS(619), 1, + ACTIONS(633), 1, sym__name, - ACTIONS(637), 1, - anon_sym_RPAREN, - STATE(379), 1, + ACTIONS(635), 1, + anon_sym_GT_GT, + STATE(384), 1, + sym__constant_remote_record, + STATE(388), 1, sym__constant_record, - ACTIONS(639), 2, + STATE(659), 1, + sym_constant_bit_string_segment, + ACTIONS(631), 2, sym_string, sym_float, ACTIONS(91), 4, @@ -24344,33 +24363,36 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(661), 6, + STATE(593), 5, sym__constant_value, sym__constant_tuple, sym__constant_list, sym__constant_bit_string, - sym__constant_remote_record, sym_integer, - [24602] = 12, + [24601] = 14, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(75), 1, anon_sym_DASH, - ACTIONS(521), 1, + ACTIONS(533), 1, anon_sym_POUND, - ACTIONS(523), 1, + ACTIONS(535), 1, anon_sym_LBRACK, - ACTIONS(525), 1, + ACTIONS(537), 1, anon_sym_LT_LT, - ACTIONS(531), 1, + ACTIONS(543), 1, sym__upname, - ACTIONS(619), 1, + ACTIONS(633), 1, sym__name, - ACTIONS(641), 1, - anon_sym_RBRACK, - STATE(379), 1, + ACTIONS(637), 1, + anon_sym_GT_GT, + STATE(384), 1, + sym__constant_remote_record, + STATE(388), 1, sym__constant_record, - ACTIONS(643), 2, + STATE(590), 1, + sym_constant_bit_string_segment, + ACTIONS(631), 2, sym_string, sym_float, ACTIONS(91), 4, @@ -24378,33 +24400,58 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(696), 6, + STATE(593), 5, sym__constant_value, sym__constant_tuple, sym__constant_list, sym__constant_bit_string, - sym__constant_remote_record, sym_integer, - [24648] = 12, + [24652] = 2, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(362), 20, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_DASH, + anon_sym_fn, + anon_sym_try, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + sym_string, + sym_float, + sym__hex, + sym__decimal, + sym__octal, + sym__binary, + sym__name, + sym__upname, + [24678] = 13, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(75), 1, anon_sym_DASH, - ACTIONS(521), 1, + ACTIONS(533), 1, anon_sym_POUND, - ACTIONS(523), 1, + ACTIONS(535), 1, anon_sym_LBRACK, - ACTIONS(525), 1, + ACTIONS(537), 1, anon_sym_LT_LT, - ACTIONS(531), 1, + ACTIONS(543), 1, sym__upname, - ACTIONS(619), 1, + ACTIONS(633), 1, sym__name, - ACTIONS(645), 1, + ACTIONS(639), 1, anon_sym_RPAREN, - STATE(379), 1, + STATE(384), 1, + sym__constant_remote_record, + STATE(388), 1, sym__constant_record, - ACTIONS(647), 2, + ACTIONS(641), 2, sym_string, sym_float, ACTIONS(91), 4, @@ -24412,57 +24459,69 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(681), 6, + STATE(584), 5, sym__constant_value, sym__constant_tuple, sym__constant_list, sym__constant_bit_string, - sym__constant_remote_record, sym_integer, - [24694] = 2, + [24726] = 13, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(368), 20, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(75), 1, + anon_sym_DASH, + ACTIONS(533), 1, anon_sym_POUND, + ACTIONS(535), 1, anon_sym_LBRACK, + ACTIONS(537), 1, anon_sym_LT_LT, - anon_sym_DASH, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, + ACTIONS(543), 1, + sym__upname, + ACTIONS(633), 1, + sym__name, + STATE(384), 1, + sym__constant_remote_record, + STATE(388), 1, + sym__constant_record, + STATE(738), 1, + sym_constant_bit_string_segment, + ACTIONS(631), 2, sym_string, sym_float, + ACTIONS(91), 4, sym__hex, sym__decimal, sym__octal, sym__binary, - sym__name, - sym__upname, - [24720] = 12, + STATE(593), 5, + sym__constant_value, + sym__constant_tuple, + sym__constant_list, + sym__constant_bit_string, + sym_integer, + [24774] = 13, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(75), 1, anon_sym_DASH, - ACTIONS(521), 1, + ACTIONS(533), 1, anon_sym_POUND, - ACTIONS(523), 1, + ACTIONS(535), 1, anon_sym_LBRACK, - ACTIONS(525), 1, + ACTIONS(537), 1, anon_sym_LT_LT, - ACTIONS(531), 1, + ACTIONS(543), 1, sym__upname, - ACTIONS(619), 1, + ACTIONS(633), 1, sym__name, - ACTIONS(649), 1, - anon_sym_RPAREN, - STATE(379), 1, + ACTIONS(643), 1, + anon_sym_RBRACK, + STATE(384), 1, + sym__constant_remote_record, + STATE(388), 1, sym__constant_record, - ACTIONS(651), 2, + ACTIONS(645), 2, sym_string, sym_float, ACTIONS(91), 4, @@ -24470,63 +24529,156 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(611), 6, + STATE(670), 5, sym__constant_value, sym__constant_tuple, sym__constant_list, sym__constant_bit_string, - sym__constant_remote_record, sym_integer, - [24766] = 2, + [24822] = 13, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(653), 19, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(75), 1, + anon_sym_DASH, + ACTIONS(533), 1, + anon_sym_POUND, + ACTIONS(535), 1, + anon_sym_LBRACK, + ACTIONS(537), 1, + anon_sym_LT_LT, + ACTIONS(543), 1, + sym__upname, + ACTIONS(633), 1, + sym__name, + ACTIONS(647), 1, anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [24791] = 2, + STATE(384), 1, + sym__constant_remote_record, + STATE(388), 1, + sym__constant_record, + ACTIONS(649), 2, + sym_string, + sym_float, + ACTIONS(91), 4, + sym__hex, + sym__decimal, + sym__octal, + sym__binary, + STATE(660), 5, + sym__constant_value, + sym__constant_tuple, + sym__constant_list, + sym__constant_bit_string, + sym_integer, + [24870] = 13, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(655), 19, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(75), 1, + anon_sym_DASH, + ACTIONS(533), 1, + anon_sym_POUND, + ACTIONS(535), 1, + anon_sym_LBRACK, + ACTIONS(537), 1, + anon_sym_LT_LT, + ACTIONS(543), 1, + sym__upname, + ACTIONS(633), 1, + sym__name, + ACTIONS(651), 1, anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [24816] = 2, + STATE(384), 1, + sym__constant_remote_record, + STATE(388), 1, + sym__constant_record, + ACTIONS(653), 2, + sym_string, + sym_float, + ACTIONS(91), 4, + sym__hex, + sym__decimal, + sym__octal, + sym__binary, + STATE(642), 5, + sym__constant_value, + sym__constant_tuple, + sym__constant_list, + sym__constant_bit_string, + sym_integer, + [24918] = 13, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(75), 1, + anon_sym_DASH, + ACTIONS(533), 1, + anon_sym_POUND, + ACTIONS(535), 1, + anon_sym_LBRACK, + ACTIONS(537), 1, + anon_sym_LT_LT, + ACTIONS(543), 1, + sym__upname, + ACTIONS(633), 1, + sym__name, + ACTIONS(655), 1, + anon_sym_RPAREN, + STATE(384), 1, + sym__constant_remote_record, + STATE(388), 1, + sym__constant_record, + ACTIONS(657), 2, + sym_string, + sym_float, + ACTIONS(91), 4, + sym__hex, + sym__decimal, + sym__octal, + sym__binary, + STATE(681), 5, + sym__constant_value, + sym__constant_tuple, + sym__constant_list, + sym__constant_bit_string, + sym_integer, + [24966] = 13, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(75), 1, + anon_sym_DASH, + ACTIONS(533), 1, + anon_sym_POUND, + ACTIONS(535), 1, + anon_sym_LBRACK, + ACTIONS(537), 1, + anon_sym_LT_LT, + ACTIONS(543), 1, + sym__upname, + ACTIONS(633), 1, + sym__name, + ACTIONS(659), 1, + anon_sym_RBRACK, + STATE(384), 1, + sym__constant_remote_record, + STATE(388), 1, + sym__constant_record, + ACTIONS(661), 2, + sym_string, + sym_float, + ACTIONS(91), 4, + sym__hex, + sym__decimal, + sym__octal, + sym__binary, + STATE(594), 5, + sym__constant_value, + sym__constant_tuple, + sym__constant_list, + sym__constant_bit_string, + sym_integer, + [25014] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(657), 19, + ACTIONS(663), 19, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -24546,10 +24698,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [24841] = 2, + [25039] = 12, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(665), 1, + anon_sym_POUND, + ACTIONS(667), 1, + anon_sym_LBRACK, + ACTIONS(669), 1, + anon_sym_LT_LT, + ACTIONS(671), 1, + anon_sym_DASH, + ACTIONS(677), 1, + sym__name, + ACTIONS(679), 1, + sym__upname, + STATE(910), 1, + sym__constant_remote_record, + STATE(913), 1, + sym__constant_record, + ACTIONS(673), 2, + sym_string, + sym_float, + ACTIONS(675), 4, + sym__hex, + sym__decimal, + sym__octal, + sym__binary, + STATE(914), 5, + sym__constant_value, + sym__constant_tuple, + sym__constant_list, + sym__constant_bit_string, + sym_integer, + [25084] = 12, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(681), 1, + anon_sym_POUND, + ACTIONS(683), 1, + anon_sym_LBRACK, + ACTIONS(685), 1, + anon_sym_LT_LT, + ACTIONS(687), 1, + anon_sym_DASH, + ACTIONS(693), 1, + sym__name, + ACTIONS(695), 1, + sym__upname, + STATE(873), 1, + sym__constant_remote_record, + STATE(875), 1, + sym__constant_record, + ACTIONS(689), 2, + sym_string, + sym_float, + ACTIONS(691), 4, + sym__hex, + sym__decimal, + sym__octal, + sym__binary, + STATE(942), 5, + sym__constant_value, + sym__constant_tuple, + sym__constant_list, + sym__constant_bit_string, + sym_integer, + [25129] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(659), 19, + ACTIONS(697), 19, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -24569,10 +24787,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [24866] = 2, + [25154] = 12, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(665), 1, + anon_sym_POUND, + ACTIONS(667), 1, + anon_sym_LBRACK, + ACTIONS(669), 1, + anon_sym_LT_LT, + ACTIONS(671), 1, + anon_sym_DASH, + ACTIONS(677), 1, + sym__name, + ACTIONS(679), 1, + sym__upname, + STATE(910), 1, + sym__constant_remote_record, + STATE(913), 1, + sym__constant_record, + ACTIONS(699), 2, + sym_string, + sym_float, + ACTIONS(675), 4, + sym__hex, + sym__decimal, + sym__octal, + sym__binary, + STATE(821), 5, + sym__constant_value, + sym__constant_tuple, + sym__constant_list, + sym__constant_bit_string, + sym_integer, + [25199] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(661), 19, + ACTIONS(701), 19, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -24592,10 +24843,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [24891] = 2, + [25224] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(663), 19, + ACTIONS(703), 19, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -24615,10 +24866,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [24916] = 2, + [25249] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(665), 19, + ACTIONS(705), 19, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -24638,10 +24889,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [24941] = 2, + [25274] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(667), 19, + ACTIONS(707), 19, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -24661,42 +24912,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [24966] = 11, + [25299] = 12, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(669), 1, + ACTIONS(75), 1, + anon_sym_DASH, + ACTIONS(533), 1, anon_sym_POUND, - ACTIONS(671), 1, + ACTIONS(535), 1, anon_sym_LBRACK, - ACTIONS(673), 1, + ACTIONS(537), 1, anon_sym_LT_LT, - ACTIONS(675), 1, - anon_sym_DASH, - ACTIONS(681), 1, - sym__name, - ACTIONS(683), 1, + ACTIONS(543), 1, sym__upname, - STATE(841), 1, + ACTIONS(633), 1, + sym__name, + STATE(384), 1, + sym__constant_remote_record, + STATE(388), 1, sym__constant_record, - ACTIONS(677), 2, + ACTIONS(709), 2, sym_string, sym_float, - ACTIONS(679), 4, + ACTIONS(91), 4, sym__hex, sym__decimal, sym__octal, sym__binary, - STATE(862), 6, + STATE(797), 5, sym__constant_value, sym__constant_tuple, sym__constant_list, sym__constant_bit_string, - sym__constant_remote_record, sym_integer, - [25009] = 2, + [25344] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(685), 19, + ACTIONS(711), 19, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -24716,10 +24968,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [25034] = 2, + [25369] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(687), 19, + ACTIONS(713), 19, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -24739,10 +24991,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [25059] = 2, + [25394] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(689), 19, + ACTIONS(715), 19, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -24762,10 +25014,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [25084] = 2, + [25419] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(691), 19, + ACTIONS(717), 19, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -24785,56 +25037,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [25109] = 11, + [25444] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(669), 1, - anon_sym_POUND, - ACTIONS(671), 1, - anon_sym_LBRACK, - ACTIONS(673), 1, - anon_sym_LT_LT, - ACTIONS(675), 1, - anon_sym_DASH, - ACTIONS(681), 1, - sym__name, - ACTIONS(683), 1, - sym__upname, - STATE(841), 1, - sym__constant_record, - ACTIONS(693), 2, - sym_string, - sym_float, - ACTIONS(679), 4, - sym__hex, - sym__decimal, - sym__octal, - sym__binary, - STATE(858), 6, - sym__constant_value, - sym__constant_tuple, - sym__constant_list, - sym__constant_bit_string, - sym__constant_remote_record, - sym_integer, - [25152] = 11, + ACTIONS(719), 19, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [25469] = 12, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(75), 1, anon_sym_DASH, - ACTIONS(521), 1, + ACTIONS(533), 1, anon_sym_POUND, - ACTIONS(523), 1, + ACTIONS(535), 1, anon_sym_LBRACK, - ACTIONS(525), 1, + ACTIONS(537), 1, anon_sym_LT_LT, - ACTIONS(531), 1, + ACTIONS(543), 1, sym__upname, - ACTIONS(619), 1, + ACTIONS(633), 1, sym__name, - STATE(379), 1, + STATE(384), 1, + sym__constant_remote_record, + STATE(388), 1, sym__constant_record, - ACTIONS(695), 2, + ACTIONS(721), 2, sym_string, sym_float, ACTIONS(91), 4, @@ -24842,17 +25087,16 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__octal, sym__binary, - STATE(595), 6, + STATE(682), 5, sym__constant_value, sym__constant_tuple, sym__constant_list, sym__constant_bit_string, - sym__constant_remote_record, sym_integer, - [25195] = 2, + [25514] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(697), 19, + ACTIONS(723), 19, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -24872,106 +25116,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [25220] = 11, + [25539] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(699), 1, - anon_sym_POUND, - ACTIONS(701), 1, - anon_sym_LBRACK, - ACTIONS(703), 1, - anon_sym_LT_LT, - ACTIONS(705), 1, - anon_sym_DASH, - ACTIONS(711), 1, - sym__name, - ACTIONS(713), 1, - sym__upname, - STATE(1021), 1, - sym__constant_record, - ACTIONS(707), 2, - sym_string, - sym_float, - ACTIONS(709), 4, - sym__hex, - sym__decimal, - sym__octal, - sym__binary, - STATE(1001), 6, - sym__constant_value, - sym__constant_tuple, - sym__constant_list, - sym__constant_bit_string, - sym__constant_remote_record, - sym_integer, - [25263] = 11, - ACTIONS(3), 1, + ACTIONS(725), 19, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [25564] = 2, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(727), 19, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [25589] = 12, + ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(699), 1, + ACTIONS(681), 1, anon_sym_POUND, - ACTIONS(701), 1, + ACTIONS(683), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(685), 1, anon_sym_LT_LT, - ACTIONS(705), 1, + ACTIONS(687), 1, anon_sym_DASH, - ACTIONS(711), 1, + ACTIONS(693), 1, sym__name, - ACTIONS(713), 1, + ACTIONS(695), 1, sym__upname, - STATE(1021), 1, + STATE(873), 1, + sym__constant_remote_record, + STATE(875), 1, sym__constant_record, - ACTIONS(715), 2, + ACTIONS(729), 2, sym_string, sym_float, - ACTIONS(709), 4, + ACTIONS(691), 4, sym__hex, sym__decimal, sym__octal, sym__binary, - STATE(1022), 6, + STATE(949), 5, sym__constant_value, sym__constant_tuple, sym__constant_list, sym__constant_bit_string, - sym__constant_remote_record, sym_integer, - [25306] = 11, + [25634] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(75), 1, - anon_sym_DASH, - ACTIONS(521), 1, - anon_sym_POUND, - ACTIONS(523), 1, - anon_sym_LBRACK, - ACTIONS(525), 1, - anon_sym_LT_LT, - ACTIONS(531), 1, - sym__upname, - ACTIONS(619), 1, - sym__name, - STATE(379), 1, - sym__constant_record, - ACTIONS(717), 2, - sym_string, - sym_float, - ACTIONS(91), 4, - sym__hex, - sym__decimal, - sym__octal, - sym__binary, - STATE(790), 6, - sym__constant_value, - sym__constant_tuple, - sym__constant_list, - sym__constant_bit_string, - sym__constant_remote_record, - sym_integer, - [25349] = 2, + ACTIONS(731), 19, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [25659] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(719), 19, + ACTIONS(733), 19, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -24991,28 +25241,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [25374] = 11, + [25684] = 11, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(721), 1, + ACTIONS(735), 1, anon_sym_POUND, - ACTIONS(723), 1, + ACTIONS(737), 1, anon_sym_RPAREN, - ACTIONS(725), 1, + ACTIONS(739), 1, anon_sym_fn, - ACTIONS(727), 1, + ACTIONS(741), 1, sym__discard_name, - ACTIONS(729), 1, + ACTIONS(743), 1, sym__name, - ACTIONS(731), 1, + ACTIONS(745), 1, sym__upname, - STATE(703), 1, - sym_external_function_parameter, - STATE(998), 1, + STATE(652), 1, + sym_type_constructor_argument, + STATE(850), 1, + sym_type_constructor_arguments, + STATE(851), 1, sym_identifier, - STATE(999), 1, - sym_external_function_parameters, - STATE(710), 7, + STATE(749), 7, sym__type, sym_type_hole, sym_tuple_type, @@ -25020,28 +25270,28 @@ static const uint16_t ts_small_parse_table[] = { sym_type, sym_remote_type, sym_type_var, - [25414] = 11, + [25724] = 11, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(721), 1, + ACTIONS(735), 1, anon_sym_POUND, - ACTIONS(725), 1, + ACTIONS(739), 1, anon_sym_fn, - ACTIONS(727), 1, + ACTIONS(741), 1, sym__discard_name, - ACTIONS(729), 1, + ACTIONS(743), 1, sym__name, - ACTIONS(731), 1, + ACTIONS(745), 1, sym__upname, - ACTIONS(733), 1, + ACTIONS(747), 1, anon_sym_RPAREN, - STATE(703), 1, + STATE(578), 1, sym_external_function_parameter, - STATE(998), 1, + STATE(815), 1, sym_identifier, - STATE(1067), 1, + STATE(1075), 1, sym_external_function_parameters, - STATE(710), 7, + STATE(808), 7, sym__type, sym_type_hole, sym_tuple_type, @@ -25049,28 +25299,28 @@ static const uint16_t ts_small_parse_table[] = { sym_type, sym_remote_type, sym_type_var, - [25454] = 11, + [25764] = 11, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(721), 1, + ACTIONS(735), 1, anon_sym_POUND, - ACTIONS(725), 1, + ACTIONS(739), 1, anon_sym_fn, - ACTIONS(727), 1, + ACTIONS(741), 1, sym__discard_name, - ACTIONS(729), 1, + ACTIONS(743), 1, sym__name, - ACTIONS(731), 1, + ACTIONS(745), 1, sym__upname, - ACTIONS(735), 1, + ACTIONS(749), 1, anon_sym_RPAREN, - STATE(602), 1, - sym_type_constructor_argument, - STATE(976), 1, + STATE(578), 1, + sym_external_function_parameter, + STATE(815), 1, sym_identifier, - STATE(977), 1, - sym_type_constructor_arguments, - STATE(784), 7, + STATE(818), 1, + sym_external_function_parameters, + STATE(808), 7, sym__type, sym_type_hole, sym_tuple_type, @@ -25078,12 +25328,12 @@ static const uint16_t ts_small_parse_table[] = { sym_type, sym_remote_type, sym_type_var, - [25494] = 3, + [25804] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(737), 1, + ACTIONS(751), 1, anon_sym_DOT, - ACTIONS(208), 14, + ACTIONS(217), 14, anon_sym_RBRACE, anon_sym_DASH_GT, anon_sym_PIPE_PIPE, @@ -25098,17 +25348,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [25517] = 3, + [25827] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(739), 6, + ACTIONS(753), 14, anon_sym_RBRACE, anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(741), 8, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_DOT, @@ -25117,10 +25366,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [25539] = 2, + [25847] = 9, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(735), 1, + anon_sym_POUND, + ACTIONS(739), 1, + anon_sym_fn, + ACTIONS(741), 1, + sym__discard_name, + ACTIONS(743), 1, + sym__name, + ACTIONS(745), 1, + sym__upname, + STATE(747), 1, + sym_external_function_parameter, + STATE(815), 1, + sym_identifier, + STATE(808), 7, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_remote_type, + sym_type_var, + [25881] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(743), 14, + ACTIONS(755), 14, anon_sym_RBRACE, anon_sym_DASH_GT, anon_sym_PIPE_PIPE, @@ -25135,10 +25409,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [25559] = 2, + [25901] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(745), 14, + ACTIONS(757), 14, anon_sym_RBRACE, anon_sym_DASH_GT, anon_sym_PIPE_PIPE, @@ -25153,16 +25427,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [25579] = 2, + [25921] = 5, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(739), 14, - anon_sym_RBRACE, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, + ACTIONS(761), 1, anon_sym_AMP_AMP, + ACTIONS(763), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(759), 3, + anon_sym_RBRACE, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + ACTIONS(765), 8, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_DOT, @@ -25171,19 +25448,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [25599] = 5, + [25947] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(747), 1, - anon_sym_AMP_AMP, - ACTIONS(749), 2, + ACTIONS(763), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(739), 3, + ACTIONS(759), 4, anon_sym_RBRACE, anon_sym_DASH_GT, anon_sym_PIPE_PIPE, - ACTIONS(741), 8, + anon_sym_AMP_AMP, + ACTIONS(765), 8, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_DOT, @@ -25192,18 +25468,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [25625] = 4, + [25971] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(749), 2, + ACTIONS(759), 6, + anon_sym_RBRACE, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(739), 4, + ACTIONS(765), 8, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [25993] = 2, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(759), 14, anon_sym_RBRACE, anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(741), 8, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_DOT, @@ -25212,24 +25505,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [25649] = 9, + [26013] = 9, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(721), 1, + ACTIONS(735), 1, anon_sym_POUND, - ACTIONS(725), 1, + ACTIONS(739), 1, anon_sym_fn, - ACTIONS(727), 1, + ACTIONS(741), 1, sym__discard_name, - ACTIONS(729), 1, + ACTIONS(743), 1, sym__name, - ACTIONS(731), 1, + ACTIONS(745), 1, sym__upname, - STATE(753), 1, - sym_external_function_parameter, - STATE(998), 1, + STATE(781), 1, + sym_type_constructor_argument, + STATE(851), 1, sym_identifier, - STATE(710), 7, + STATE(749), 7, sym__type, sym_type_hole, sym_tuple_type, @@ -25237,24 +25530,22 @@ static const uint16_t ts_small_parse_table[] = { sym_type, sym_remote_type, sym_type_var, - [25683] = 9, + [26047] = 8, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(721), 1, + ACTIONS(735), 1, anon_sym_POUND, - ACTIONS(725), 1, + ACTIONS(739), 1, anon_sym_fn, - ACTIONS(727), 1, + ACTIONS(741), 1, sym__discard_name, - ACTIONS(729), 1, - sym__name, - ACTIONS(731), 1, + ACTIONS(745), 1, sym__upname, - STATE(763), 1, - sym_type_constructor_argument, - STATE(976), 1, - sym_identifier, - STATE(784), 7, + ACTIONS(767), 1, + anon_sym_RPAREN, + ACTIONS(769), 1, + sym__name, + STATE(638), 7, sym__type, sym_type_hole, sym_tuple_type, @@ -25262,16 +25553,19 @@ static const uint16_t ts_small_parse_table[] = { sym_type, sym_remote_type, sym_type_var, - [25717] = 2, + [26078] = 6, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(751), 14, + ACTIONS(761), 1, + anon_sym_AMP_AMP, + ACTIONS(771), 1, anon_sym_RBRACE, - anon_sym_DASH_GT, + ACTIONS(773), 1, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(763), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(765), 8, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_DOT, @@ -25280,22 +25574,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [25737] = 8, + [26105] = 8, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(721), 1, + ACTIONS(735), 1, anon_sym_POUND, - ACTIONS(725), 1, + ACTIONS(739), 1, anon_sym_fn, - ACTIONS(727), 1, + ACTIONS(741), 1, sym__discard_name, - ACTIONS(731), 1, + ACTIONS(745), 1, sym__upname, - ACTIONS(753), 1, - anon_sym_RPAREN, - ACTIONS(755), 1, + ACTIONS(769), 1, sym__name, - STATE(601), 7, + ACTIONS(775), 1, + anon_sym_RPAREN, + STATE(708), 7, sym__type, sym_type_hole, sym_tuple_type, @@ -25303,22 +25597,22 @@ static const uint16_t ts_small_parse_table[] = { sym_type, sym_remote_type, sym_type_var, - [25768] = 8, + [26136] = 8, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(721), 1, + ACTIONS(735), 1, anon_sym_POUND, - ACTIONS(725), 1, + ACTIONS(739), 1, anon_sym_fn, - ACTIONS(727), 1, + ACTIONS(741), 1, sym__discard_name, - ACTIONS(731), 1, + ACTIONS(745), 1, sym__upname, - ACTIONS(755), 1, + ACTIONS(769), 1, sym__name, - ACTIONS(757), 1, + ACTIONS(777), 1, anon_sym_RPAREN, - STATE(632), 7, + STATE(623), 7, sym__type, sym_type_hole, sym_tuple_type, @@ -25326,14 +25620,14 @@ static const uint16_t ts_small_parse_table[] = { sym_type, sym_remote_type, sym_type_var, - [25799] = 4, + [26167] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(761), 1, + ACTIONS(781), 1, anon_sym_LPAREN, - STATE(447), 1, + STATE(451), 1, sym_pattern_constructor_args, - ACTIONS(759), 11, + ACTIONS(779), 11, anon_sym_if, anon_sym_COMMA, anon_sym_as, @@ -25345,43 +25639,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [25822] = 6, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(747), 1, - anon_sym_AMP_AMP, - ACTIONS(763), 1, - anon_sym_DASH_GT, - ACTIONS(765), 1, - anon_sym_PIPE_PIPE, - ACTIONS(749), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(741), 8, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [25849] = 8, + [26190] = 8, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(721), 1, + ACTIONS(735), 1, anon_sym_POUND, - ACTIONS(725), 1, + ACTIONS(739), 1, anon_sym_fn, - ACTIONS(727), 1, + ACTIONS(741), 1, sym__discard_name, - ACTIONS(731), 1, + ACTIONS(745), 1, sym__upname, - ACTIONS(755), 1, + ACTIONS(769), 1, sym__name, - ACTIONS(767), 1, + ACTIONS(783), 1, anon_sym_RPAREN, - STATE(600), 7, + STATE(706), 7, sym__type, sym_type_hole, sym_tuple_type, @@ -25389,22 +25662,22 @@ static const uint16_t ts_small_parse_table[] = { sym_type, sym_remote_type, sym_type_var, - [25880] = 8, + [26221] = 8, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(721), 1, + ACTIONS(735), 1, anon_sym_POUND, - ACTIONS(725), 1, + ACTIONS(739), 1, anon_sym_fn, - ACTIONS(727), 1, + ACTIONS(741), 1, sym__discard_name, - ACTIONS(731), 1, + ACTIONS(745), 1, sym__upname, - ACTIONS(755), 1, - sym__name, ACTIONS(769), 1, + sym__name, + ACTIONS(785), 1, anon_sym_RPAREN, - STATE(559), 7, + STATE(688), 7, sym__type, sym_type_hole, sym_tuple_type, @@ -25412,42 +25685,19 @@ static const uint16_t ts_small_parse_table[] = { sym_type, sym_remote_type, sym_type_var, - [25911] = 8, + [26252] = 6, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(721), 1, - anon_sym_POUND, - ACTIONS(725), 1, - anon_sym_fn, - ACTIONS(727), 1, - sym__discard_name, - ACTIONS(731), 1, - sym__upname, - ACTIONS(755), 1, - sym__name, - ACTIONS(771), 1, - anon_sym_RPAREN, - STATE(617), 7, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_remote_type, - sym_type_var, - [25942] = 6, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(747), 1, + ACTIONS(761), 1, anon_sym_AMP_AMP, - ACTIONS(765), 1, - anon_sym_PIPE_PIPE, ACTIONS(773), 1, - anon_sym_RBRACE, - ACTIONS(749), 2, + anon_sym_PIPE_PIPE, + ACTIONS(787), 1, + anon_sym_DASH_GT, + ACTIONS(763), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(741), 8, + ACTIONS(765), 8, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_DOT, @@ -25456,22 +25706,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [25969] = 8, + [26279] = 8, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(721), 1, + ACTIONS(735), 1, anon_sym_POUND, - ACTIONS(725), 1, + ACTIONS(739), 1, anon_sym_fn, - ACTIONS(727), 1, + ACTIONS(741), 1, sym__discard_name, - ACTIONS(731), 1, + ACTIONS(745), 1, sym__upname, - ACTIONS(755), 1, + ACTIONS(769), 1, sym__name, - ACTIONS(775), 1, + ACTIONS(789), 1, anon_sym_RPAREN, - STATE(594), 7, + STATE(702), 7, sym__type, sym_type_hole, sym_tuple_type, @@ -25479,22 +25729,22 @@ static const uint16_t ts_small_parse_table[] = { sym_type, sym_remote_type, sym_type_var, - [26000] = 8, + [26310] = 8, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(721), 1, + ACTIONS(735), 1, anon_sym_POUND, - ACTIONS(725), 1, + ACTIONS(739), 1, anon_sym_fn, - ACTIONS(727), 1, + ACTIONS(741), 1, sym__discard_name, - ACTIONS(731), 1, + ACTIONS(745), 1, sym__upname, - ACTIONS(755), 1, + ACTIONS(769), 1, sym__name, - ACTIONS(777), 1, + ACTIONS(791), 1, anon_sym_RPAREN, - STATE(577), 7, + STATE(624), 7, sym__type, sym_type_hole, sym_tuple_type, @@ -25502,20 +25752,20 @@ static const uint16_t ts_small_parse_table[] = { sym_type, sym_remote_type, sym_type_var, - [26031] = 7, + [26341] = 7, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(721), 1, + ACTIONS(735), 1, anon_sym_POUND, - ACTIONS(725), 1, + ACTIONS(739), 1, anon_sym_fn, - ACTIONS(727), 1, + ACTIONS(741), 1, sym__discard_name, - ACTIONS(731), 1, + ACTIONS(745), 1, sym__upname, - ACTIONS(755), 1, + ACTIONS(769), 1, sym__name, - STATE(774), 7, + STATE(777), 7, sym__type, sym_type_hole, sym_tuple_type, @@ -25523,20 +25773,20 @@ static const uint16_t ts_small_parse_table[] = { sym_type, sym_remote_type, sym_type_var, - [26059] = 7, + [26369] = 7, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(779), 1, + ACTIONS(735), 1, anon_sym_POUND, - ACTIONS(781), 1, + ACTIONS(739), 1, anon_sym_fn, - ACTIONS(783), 1, + ACTIONS(741), 1, sym__discard_name, - ACTIONS(785), 1, - sym__name, - ACTIONS(787), 1, + ACTIONS(745), 1, sym__upname, - STATE(971), 7, + ACTIONS(769), 1, + sym__name, + STATE(518), 7, sym__type, sym_type_hole, sym_tuple_type, @@ -25544,20 +25794,20 @@ static const uint16_t ts_small_parse_table[] = { sym_type, sym_remote_type, sym_type_var, - [26087] = 7, + [26397] = 7, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(721), 1, + ACTIONS(735), 1, anon_sym_POUND, - ACTIONS(725), 1, + ACTIONS(739), 1, anon_sym_fn, - ACTIONS(727), 1, + ACTIONS(741), 1, sym__discard_name, - ACTIONS(731), 1, + ACTIONS(745), 1, sym__upname, - ACTIONS(755), 1, + ACTIONS(769), 1, sym__name, - STATE(1044), 7, + STATE(997), 7, sym__type, sym_type_hole, sym_tuple_type, @@ -25565,20 +25815,20 @@ static const uint16_t ts_small_parse_table[] = { sym_type, sym_remote_type, sym_type_var, - [26115] = 7, + [26425] = 7, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(721), 1, + ACTIONS(735), 1, anon_sym_POUND, - ACTIONS(725), 1, + ACTIONS(739), 1, anon_sym_fn, - ACTIONS(727), 1, + ACTIONS(741), 1, sym__discard_name, - ACTIONS(731), 1, + ACTIONS(745), 1, sym__upname, - ACTIONS(755), 1, + ACTIONS(769), 1, sym__name, - STATE(520), 7, + STATE(1050), 7, sym__type, sym_type_hole, sym_tuple_type, @@ -25586,20 +25836,20 @@ static const uint16_t ts_small_parse_table[] = { sym_type, sym_remote_type, sym_type_var, - [26143] = 7, + [26453] = 7, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(721), 1, + ACTIONS(735), 1, anon_sym_POUND, - ACTIONS(725), 1, + ACTIONS(739), 1, anon_sym_fn, - ACTIONS(727), 1, + ACTIONS(741), 1, sym__discard_name, - ACTIONS(731), 1, + ACTIONS(745), 1, sym__upname, - ACTIONS(755), 1, + ACTIONS(769), 1, sym__name, - STATE(1043), 7, + STATE(994), 7, sym__type, sym_type_hole, sym_tuple_type, @@ -25607,20 +25857,41 @@ static const uint16_t ts_small_parse_table[] = { sym_type, sym_remote_type, sym_type_var, - [26171] = 7, + [26481] = 7, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(789), 1, + ACTIONS(735), 1, anon_sym_POUND, - ACTIONS(791), 1, + ACTIONS(739), 1, anon_sym_fn, - ACTIONS(793), 1, + ACTIONS(741), 1, sym__discard_name, - ACTIONS(795), 1, + ACTIONS(745), 1, + sym__upname, + ACTIONS(769), 1, sym__name, + STATE(981), 7, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_remote_type, + sym_type_var, + [26509] = 7, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(793), 1, + anon_sym_POUND, + ACTIONS(795), 1, + anon_sym_fn, ACTIONS(797), 1, + sym__discard_name, + ACTIONS(799), 1, + sym__name, + ACTIONS(801), 1, sym__upname, - STATE(817), 7, + STATE(880), 7, sym__type, sym_type_hole, sym_tuple_type, @@ -25628,20 +25899,20 @@ static const uint16_t ts_small_parse_table[] = { sym_type, sym_remote_type, sym_type_var, - [26199] = 7, + [26537] = 7, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(721), 1, + ACTIONS(735), 1, anon_sym_POUND, - ACTIONS(725), 1, + ACTIONS(739), 1, anon_sym_fn, - ACTIONS(727), 1, + ACTIONS(741), 1, sym__discard_name, - ACTIONS(731), 1, + ACTIONS(745), 1, sym__upname, - ACTIONS(755), 1, + ACTIONS(769), 1, sym__name, - STATE(519), 7, + STATE(901), 7, sym__type, sym_type_hole, sym_tuple_type, @@ -25649,20 +25920,20 @@ static const uint16_t ts_small_parse_table[] = { sym_type, sym_remote_type, sym_type_var, - [26227] = 7, + [26565] = 7, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(721), 1, + ACTIONS(735), 1, anon_sym_POUND, - ACTIONS(725), 1, + ACTIONS(739), 1, anon_sym_fn, - ACTIONS(727), 1, + ACTIONS(741), 1, sym__discard_name, - ACTIONS(731), 1, + ACTIONS(745), 1, sym__upname, - ACTIONS(755), 1, + ACTIONS(769), 1, sym__name, - STATE(929), 7, + STATE(1025), 7, sym__type, sym_type_hole, sym_tuple_type, @@ -25670,20 +25941,20 @@ static const uint16_t ts_small_parse_table[] = { sym_type, sym_remote_type, sym_type_var, - [26255] = 7, + [26593] = 7, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(721), 1, + ACTIONS(735), 1, anon_sym_POUND, - ACTIONS(725), 1, + ACTIONS(739), 1, anon_sym_fn, - ACTIONS(727), 1, + ACTIONS(741), 1, sym__discard_name, - ACTIONS(731), 1, + ACTIONS(745), 1, sym__upname, - ACTIONS(755), 1, + ACTIONS(769), 1, sym__name, - STATE(899), 7, + STATE(998), 7, sym__type, sym_type_hole, sym_tuple_type, @@ -25691,20 +25962,20 @@ static const uint16_t ts_small_parse_table[] = { sym_type, sym_remote_type, sym_type_var, - [26283] = 7, + [26621] = 7, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(721), 1, + ACTIONS(735), 1, anon_sym_POUND, - ACTIONS(725), 1, + ACTIONS(739), 1, anon_sym_fn, - ACTIONS(727), 1, + ACTIONS(741), 1, sym__discard_name, - ACTIONS(731), 1, + ACTIONS(745), 1, sym__upname, - ACTIONS(755), 1, + ACTIONS(769), 1, sym__name, - STATE(748), 7, + STATE(665), 7, sym__type, sym_type_hole, sym_tuple_type, @@ -25712,20 +25983,20 @@ static const uint16_t ts_small_parse_table[] = { sym_type, sym_remote_type, sym_type_var, - [26311] = 7, + [26649] = 7, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(789), 1, + ACTIONS(793), 1, anon_sym_POUND, - ACTIONS(791), 1, + ACTIONS(795), 1, anon_sym_fn, - ACTIONS(793), 1, + ACTIONS(797), 1, sym__discard_name, - ACTIONS(795), 1, + ACTIONS(799), 1, sym__name, - ACTIONS(797), 1, + ACTIONS(801), 1, sym__upname, - STATE(825), 7, + STATE(932), 7, sym__type, sym_type_hole, sym_tuple_type, @@ -25733,20 +26004,20 @@ static const uint16_t ts_small_parse_table[] = { sym_type, sym_remote_type, sym_type_var, - [26339] = 7, + [26677] = 7, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(721), 1, + ACTIONS(803), 1, anon_sym_POUND, - ACTIONS(725), 1, + ACTIONS(805), 1, anon_sym_fn, - ACTIONS(727), 1, + ACTIONS(807), 1, sym__discard_name, - ACTIONS(731), 1, - sym__upname, - ACTIONS(755), 1, + ACTIONS(809), 1, sym__name, - STATE(934), 7, + ACTIONS(811), 1, + sym__upname, + STATE(856), 7, sym__type, sym_type_hole, sym_tuple_type, @@ -25754,20 +26025,20 @@ static const uint16_t ts_small_parse_table[] = { sym_type, sym_remote_type, sym_type_var, - [26367] = 7, + [26705] = 7, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(721), 1, + ACTIONS(735), 1, anon_sym_POUND, - ACTIONS(725), 1, + ACTIONS(739), 1, anon_sym_fn, - ACTIONS(727), 1, + ACTIONS(741), 1, sym__discard_name, - ACTIONS(731), 1, + ACTIONS(745), 1, sym__upname, - ACTIONS(755), 1, + ACTIONS(769), 1, sym__name, - STATE(944), 7, + STATE(1052), 7, sym__type, sym_type_hole, sym_tuple_type, @@ -25775,20 +26046,20 @@ static const uint16_t ts_small_parse_table[] = { sym_type, sym_remote_type, sym_type_var, - [26395] = 7, + [26733] = 7, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(721), 1, + ACTIONS(735), 1, anon_sym_POUND, - ACTIONS(725), 1, + ACTIONS(739), 1, anon_sym_fn, - ACTIONS(727), 1, + ACTIONS(741), 1, sym__discard_name, - ACTIONS(731), 1, + ACTIONS(745), 1, sym__upname, - ACTIONS(755), 1, + ACTIONS(769), 1, sym__name, - STATE(1035), 7, + STATE(780), 7, sym__type, sym_type_hole, sym_tuple_type, @@ -25796,20 +26067,20 @@ static const uint16_t ts_small_parse_table[] = { sym_type, sym_remote_type, sym_type_var, - [26423] = 7, + [26761] = 7, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(721), 1, + ACTIONS(735), 1, anon_sym_POUND, - ACTIONS(725), 1, + ACTIONS(739), 1, anon_sym_fn, - ACTIONS(727), 1, + ACTIONS(741), 1, sym__discard_name, - ACTIONS(731), 1, + ACTIONS(745), 1, sym__upname, - ACTIONS(755), 1, + ACTIONS(769), 1, sym__name, - STATE(1034), 7, + STATE(541), 7, sym__type, sym_type_hole, sym_tuple_type, @@ -25817,20 +26088,20 @@ static const uint16_t ts_small_parse_table[] = { sym_type, sym_remote_type, sym_type_var, - [26451] = 7, + [26789] = 7, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(721), 1, + ACTIONS(793), 1, anon_sym_POUND, - ACTIONS(725), 1, + ACTIONS(795), 1, anon_sym_fn, - ACTIONS(727), 1, + ACTIONS(797), 1, sym__discard_name, - ACTIONS(731), 1, - sym__upname, - ACTIONS(755), 1, + ACTIONS(799), 1, sym__name, - STATE(1027), 7, + ACTIONS(801), 1, + sym__upname, + STATE(874), 7, sym__type, sym_type_hole, sym_tuple_type, @@ -25838,20 +26109,20 @@ static const uint16_t ts_small_parse_table[] = { sym_type, sym_remote_type, sym_type_var, - [26479] = 7, + [26817] = 7, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(721), 1, + ACTIONS(735), 1, anon_sym_POUND, - ACTIONS(725), 1, + ACTIONS(739), 1, anon_sym_fn, - ACTIONS(727), 1, + ACTIONS(741), 1, sym__discard_name, - ACTIONS(731), 1, + ACTIONS(745), 1, sym__upname, - ACTIONS(755), 1, + ACTIONS(769), 1, sym__name, - STATE(1024), 7, + STATE(1032), 7, sym__type, sym_type_hole, sym_tuple_type, @@ -25859,20 +26130,20 @@ static const uint16_t ts_small_parse_table[] = { sym_type, sym_remote_type, sym_type_var, - [26507] = 7, + [26845] = 7, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(721), 1, + ACTIONS(735), 1, anon_sym_POUND, - ACTIONS(725), 1, + ACTIONS(739), 1, anon_sym_fn, - ACTIONS(727), 1, + ACTIONS(741), 1, sym__discard_name, - ACTIONS(731), 1, + ACTIONS(745), 1, sym__upname, - ACTIONS(755), 1, + ACTIONS(769), 1, sym__name, - STATE(887), 7, + STATE(1035), 7, sym__type, sym_type_hole, sym_tuple_type, @@ -25880,20 +26151,20 @@ static const uint16_t ts_small_parse_table[] = { sym_type, sym_remote_type, sym_type_var, - [26535] = 7, + [26873] = 7, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(789), 1, + ACTIONS(803), 1, anon_sym_POUND, - ACTIONS(791), 1, + ACTIONS(805), 1, anon_sym_fn, - ACTIONS(793), 1, + ACTIONS(807), 1, sym__discard_name, - ACTIONS(795), 1, + ACTIONS(809), 1, sym__name, - ACTIONS(797), 1, + ACTIONS(811), 1, sym__upname, - STATE(859), 7, + STATE(841), 7, sym__type, sym_type_hole, sym_tuple_type, @@ -25901,20 +26172,20 @@ static const uint16_t ts_small_parse_table[] = { sym_type, sym_remote_type, sym_type_var, - [26563] = 7, + [26901] = 7, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(721), 1, + ACTIONS(735), 1, anon_sym_POUND, - ACTIONS(725), 1, + ACTIONS(739), 1, anon_sym_fn, - ACTIONS(727), 1, + ACTIONS(741), 1, sym__discard_name, - ACTIONS(731), 1, + ACTIONS(745), 1, sym__upname, - ACTIONS(755), 1, + ACTIONS(769), 1, sym__name, - STATE(773), 7, + STATE(1042), 7, sym__type, sym_type_hole, sym_tuple_type, @@ -25922,20 +26193,20 @@ static const uint16_t ts_small_parse_table[] = { sym_type, sym_remote_type, sym_type_var, - [26591] = 7, + [26929] = 7, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(721), 1, + ACTIONS(735), 1, anon_sym_POUND, - ACTIONS(725), 1, + ACTIONS(739), 1, anon_sym_fn, - ACTIONS(727), 1, + ACTIONS(741), 1, sym__discard_name, - ACTIONS(731), 1, + ACTIONS(745), 1, sym__upname, - ACTIONS(755), 1, + ACTIONS(769), 1, sym__name, - STATE(569), 7, + STATE(1051), 7, sym__type, sym_type_hole, sym_tuple_type, @@ -25943,20 +26214,20 @@ static const uint16_t ts_small_parse_table[] = { sym_type, sym_remote_type, sym_type_var, - [26619] = 7, + [26957] = 7, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(721), 1, + ACTIONS(735), 1, anon_sym_POUND, - ACTIONS(725), 1, + ACTIONS(739), 1, anon_sym_fn, - ACTIONS(727), 1, + ACTIONS(741), 1, sym__discard_name, - ACTIONS(731), 1, + ACTIONS(745), 1, sym__upname, - ACTIONS(755), 1, + ACTIONS(769), 1, sym__name, - STATE(956), 7, + STATE(1043), 7, sym__type, sym_type_hole, sym_tuple_type, @@ -25964,20 +26235,20 @@ static const uint16_t ts_small_parse_table[] = { sym_type, sym_remote_type, sym_type_var, - [26647] = 7, + [26985] = 7, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(779), 1, + ACTIONS(803), 1, anon_sym_POUND, - ACTIONS(781), 1, + ACTIONS(805), 1, anon_sym_fn, - ACTIONS(783), 1, + ACTIONS(807), 1, sym__discard_name, - ACTIONS(785), 1, + ACTIONS(809), 1, sym__name, - ACTIONS(787), 1, + ACTIONS(811), 1, sym__upname, - STATE(942), 7, + STATE(944), 7, sym__type, sym_type_hole, sym_tuple_type, @@ -25985,20 +26256,20 @@ static const uint16_t ts_small_parse_table[] = { sym_type, sym_remote_type, sym_type_var, - [26675] = 7, + [27013] = 7, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(779), 1, + ACTIONS(735), 1, anon_sym_POUND, - ACTIONS(781), 1, + ACTIONS(739), 1, anon_sym_fn, - ACTIONS(783), 1, + ACTIONS(741), 1, sym__discard_name, - ACTIONS(785), 1, - sym__name, - ACTIONS(787), 1, + ACTIONS(745), 1, sym__upname, - STATE(1014), 7, + ACTIONS(769), 1, + sym__name, + STATE(753), 7, sym__type, sym_type_hole, sym_tuple_type, @@ -26006,20 +26277,20 @@ static const uint16_t ts_small_parse_table[] = { sym_type, sym_remote_type, sym_type_var, - [26703] = 7, + [27041] = 7, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(721), 1, + ACTIONS(735), 1, anon_sym_POUND, - ACTIONS(725), 1, + ACTIONS(739), 1, anon_sym_fn, - ACTIONS(727), 1, + ACTIONS(741), 1, sym__discard_name, - ACTIONS(731), 1, + ACTIONS(745), 1, sym__upname, - ACTIONS(755), 1, + ACTIONS(769), 1, sym__name, - STATE(989), 7, + STATE(926), 7, sym__type, sym_type_hole, sym_tuple_type, @@ -26027,12 +26298,12 @@ static const uint16_t ts_small_parse_table[] = { sym_type, sym_remote_type, sym_type_var, - [26731] = 3, + [27069] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(799), 1, + ACTIONS(813), 1, anon_sym_DOT, - ACTIONS(208), 11, + ACTIONS(217), 11, anon_sym_if, anon_sym_COMMA, anon_sym_as, @@ -26044,31 +26315,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [26751] = 7, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(721), 1, - anon_sym_POUND, - ACTIONS(725), 1, - anon_sym_fn, - ACTIONS(727), 1, - sym__discard_name, - ACTIONS(731), 1, - sym__upname, - ACTIONS(755), 1, - sym__name, - STATE(986), 7, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_remote_type, - sym_type_var, - [26779] = 2, + [27089] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(801), 11, + ACTIONS(815), 11, anon_sym_if, anon_sym_COMMA, anon_sym_as, @@ -26080,10 +26330,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [26796] = 2, + [27106] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(803), 11, + ACTIONS(817), 11, anon_sym_if, anon_sym_COMMA, anon_sym_as, @@ -26095,10 +26345,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [26813] = 2, + [27123] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(805), 11, + ACTIONS(819), 11, anon_sym_if, anon_sym_COMMA, anon_sym_as, @@ -26110,10 +26360,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [26830] = 2, + [27140] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(807), 11, + ACTIONS(821), 11, anon_sym_if, anon_sym_COMMA, anon_sym_as, @@ -26125,10 +26375,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [26847] = 2, + [27157] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(809), 11, + ACTIONS(823), 11, anon_sym_if, anon_sym_COMMA, anon_sym_as, @@ -26140,10 +26390,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [26864] = 2, + [27174] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(811), 11, + ACTIONS(825), 11, anon_sym_if, anon_sym_COMMA, anon_sym_as, @@ -26155,10 +26405,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [26881] = 2, + [27191] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(813), 11, + ACTIONS(827), 11, anon_sym_if, anon_sym_COMMA, anon_sym_as, @@ -26170,13 +26420,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [26898] = 2, + [27208] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(815), 11, + ACTIONS(831), 1, + anon_sym_as, + ACTIONS(829), 10, anon_sym_if, anon_sym_COMMA, - anon_sym_as, anon_sym_EQ, anon_sym_RPAREN, anon_sym_RBRACK, @@ -26185,10 +26436,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [26915] = 2, + [27227] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(817), 11, + ACTIONS(833), 11, anon_sym_if, anon_sym_COMMA, anon_sym_as, @@ -26200,10 +26451,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [26932] = 2, + [27244] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(819), 11, + ACTIONS(835), 11, anon_sym_if, anon_sym_COMMA, anon_sym_as, @@ -26215,10 +26466,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [26949] = 2, + [27261] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(821), 11, + ACTIONS(837), 11, anon_sym_if, anon_sym_COMMA, anon_sym_as, @@ -26230,10 +26481,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [26966] = 2, + [27278] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(823), 11, + ACTIONS(839), 11, anon_sym_if, anon_sym_COMMA, anon_sym_as, @@ -26245,10 +26496,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [26983] = 2, + [27295] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(825), 11, + ACTIONS(841), 11, anon_sym_if, anon_sym_COMMA, anon_sym_as, @@ -26260,10 +26511,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [27000] = 2, + [27312] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(827), 11, + ACTIONS(843), 11, anon_sym_if, anon_sym_COMMA, anon_sym_as, @@ -26275,10 +26526,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [27017] = 2, + [27329] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(829), 11, + ACTIONS(845), 11, anon_sym_if, anon_sym_COMMA, anon_sym_as, @@ -26290,10 +26541,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [27034] = 2, + [27346] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(831), 11, + ACTIONS(847), 11, anon_sym_if, anon_sym_COMMA, anon_sym_as, @@ -26305,14 +26556,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [27051] = 3, + [27363] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(835), 1, - anon_sym_as, - ACTIONS(833), 10, + ACTIONS(849), 11, anon_sym_if, anon_sym_COMMA, + anon_sym_as, anon_sym_EQ, anon_sym_RPAREN, anon_sym_RBRACK, @@ -26321,10 +26571,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [27070] = 2, + [27380] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(837), 11, + ACTIONS(851), 11, anon_sym_if, anon_sym_COMMA, anon_sym_as, @@ -26336,10 +26586,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [27087] = 2, + [27397] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(839), 11, + ACTIONS(853), 11, anon_sym_if, anon_sym_COMMA, anon_sym_as, @@ -26351,10 +26601,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [27104] = 2, + [27414] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(841), 11, + ACTIONS(855), 11, anon_sym_if, anon_sym_COMMA, anon_sym_as, @@ -26366,10 +26616,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [27121] = 2, + [27431] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(843), 11, + ACTIONS(857), 11, anon_sym_if, anon_sym_COMMA, anon_sym_as, @@ -26381,191 +26631,194 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [27138] = 11, + [27448] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(845), 1, + ACTIONS(859), 10, + anon_sym_if, + anon_sym_COMMA, + anon_sym_EQ, anon_sym_RPAREN, - ACTIONS(847), 1, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_DOT_DOT, + anon_sym_PIPE, + [27464] = 7, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(741), 1, sym__discard_name, - ACTIONS(849), 1, + ACTIONS(861), 1, + anon_sym_POUND, + ACTIONS(863), 1, + anon_sym_RPAREN, + ACTIONS(865), 1, sym__name, - STATE(483), 1, - sym_identifier, - STATE(505), 1, - sym__discard_param, - STATE(535), 1, - sym__name_param, - STATE(539), 1, - sym__labelled_name_param, - STATE(542), 1, - sym__labelled_discard_param, - STATE(646), 1, - sym_function_parameter, - STATE(1046), 1, - sym_function_parameters, - [27172] = 7, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(727), 1, - sym__discard_name, - ACTIONS(851), 1, - anon_sym_POUND, - ACTIONS(853), 1, - anon_sym_RPAREN, - ACTIONS(855), 1, - sym__name, - ACTIONS(857), 1, + ACTIONS(867), 1, sym__upname, - STATE(640), 5, + STATE(620), 5, sym__constant_type, sym_constant_tuple_type, sym_constant_type, sym_constant_remote_type, sym_type_hole, - [27198] = 11, + [27490] = 11, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(847), 1, + ACTIONS(869), 1, + anon_sym_RPAREN, + ACTIONS(871), 1, sym__discard_name, - ACTIONS(849), 1, + ACTIONS(873), 1, sym__name, - ACTIONS(859), 1, - anon_sym_RPAREN, - STATE(483), 1, + STATE(489), 1, sym_identifier, - STATE(505), 1, - sym__discard_param, - STATE(535), 1, + STATE(511), 1, sym__name_param, - STATE(539), 1, - sym__labelled_name_param, - STATE(542), 1, + STATE(516), 1, sym__labelled_discard_param, - STATE(646), 1, + STATE(517), 1, + sym__discard_param, + STATE(522), 1, + sym__labelled_name_param, + STATE(677), 1, sym_function_parameter, - STATE(1060), 1, + STATE(1061), 1, sym_function_parameters, - [27232] = 11, + [27524] = 11, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(847), 1, + ACTIONS(871), 1, sym__discard_name, - ACTIONS(849), 1, + ACTIONS(873), 1, sym__name, - ACTIONS(861), 1, + ACTIONS(875), 1, anon_sym_RPAREN, - STATE(483), 1, + STATE(489), 1, sym_identifier, - STATE(505), 1, - sym__discard_param, - STATE(535), 1, + STATE(511), 1, sym__name_param, - STATE(539), 1, - sym__labelled_name_param, - STATE(542), 1, + STATE(516), 1, sym__labelled_discard_param, - STATE(646), 1, + STATE(517), 1, + sym__discard_param, + STATE(522), 1, + sym__labelled_name_param, + STATE(677), 1, sym_function_parameter, - STATE(1053), 1, + STATE(1054), 1, sym_function_parameters, - [27266] = 7, + [27558] = 7, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(727), 1, + ACTIONS(741), 1, sym__discard_name, - ACTIONS(851), 1, + ACTIONS(861), 1, anon_sym_POUND, - ACTIONS(855), 1, + ACTIONS(865), 1, sym__name, - ACTIONS(857), 1, + ACTIONS(867), 1, sym__upname, - ACTIONS(863), 1, + ACTIONS(877), 1, anon_sym_RPAREN, - STATE(652), 5, + STATE(608), 5, sym__constant_type, sym_constant_tuple_type, sym_constant_type, sym_constant_remote_type, sym_type_hole, - [27292] = 11, + [27584] = 11, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(847), 1, + ACTIONS(871), 1, sym__discard_name, - ACTIONS(849), 1, + ACTIONS(873), 1, sym__name, - ACTIONS(865), 1, + ACTIONS(879), 1, anon_sym_RPAREN, - STATE(483), 1, + STATE(489), 1, sym_identifier, - STATE(505), 1, - sym__discard_param, - STATE(535), 1, + STATE(511), 1, sym__name_param, - STATE(539), 1, - sym__labelled_name_param, - STATE(542), 1, + STATE(516), 1, sym__labelled_discard_param, - STATE(646), 1, + STATE(517), 1, + sym__discard_param, + STATE(522), 1, + sym__labelled_name_param, + STATE(677), 1, sym_function_parameter, - STATE(1013), 1, + STATE(872), 1, sym_function_parameters, - [27326] = 2, + [27618] = 11, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(867), 10, - anon_sym_if, - anon_sym_COMMA, - anon_sym_EQ, + ACTIONS(871), 1, + sym__discard_name, + ACTIONS(873), 1, + sym__name, + ACTIONS(881), 1, anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - [27342] = 11, + STATE(489), 1, + sym_identifier, + STATE(511), 1, + sym__name_param, + STATE(516), 1, + sym__labelled_discard_param, + STATE(517), 1, + sym__discard_param, + STATE(522), 1, + sym__labelled_name_param, + STATE(677), 1, + sym_function_parameter, + STATE(1026), 1, + sym_function_parameters, + [27652] = 11, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(847), 1, + ACTIONS(871), 1, sym__discard_name, - ACTIONS(849), 1, + ACTIONS(873), 1, sym__name, - ACTIONS(869), 1, + ACTIONS(883), 1, anon_sym_RPAREN, - STATE(483), 1, + STATE(489), 1, sym_identifier, - STATE(505), 1, - sym__discard_param, - STATE(535), 1, + STATE(511), 1, sym__name_param, - STATE(539), 1, - sym__labelled_name_param, - STATE(542), 1, + STATE(516), 1, sym__labelled_discard_param, - STATE(646), 1, + STATE(517), 1, + sym__discard_param, + STATE(522), 1, + sym__labelled_name_param, + STATE(677), 1, sym_function_parameter, - STATE(925), 1, + STATE(1068), 1, sym_function_parameters, - [27376] = 6, + [27686] = 9, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(75), 1, - anon_sym_DASH, - ACTIONS(871), 1, + ACTIONS(446), 1, + sym__upname, + ACTIONS(885), 1, + anon_sym_RPAREN, + ACTIONS(887), 1, + anon_sym_DOT_DOT, + ACTIONS(889), 1, sym__name, - STATE(881), 1, - sym__pattern_bit_string_segment_arg, - STATE(882), 2, - sym_var, - sym_integer, - ACTIONS(91), 4, - sym__hex, - sym__decimal, - sym__octal, - sym__binary, - [27399] = 10, + STATE(453), 1, + sym__constructor_pattern, + STATE(580), 1, + sym_constructor_pattern, + STATE(1071), 1, + sym_pattern_spread, + STATE(496), 2, + sym__pattern_constructor_arg, + sym_pattern_constructor_named_arg, + [27715] = 10, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(13), 1, @@ -26574,73 +26827,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, ACTIONS(19), 1, anon_sym_fn, - ACTIONS(873), 1, + ACTIONS(891), 1, anon_sym_type, - ACTIONS(875), 1, + ACTIONS(893), 1, anon_sym_opaque, - STATE(1055), 1, + STATE(1018), 1, sym__function, - STATE(1056), 1, + STATE(1019), 1, sym__external_function, - STATE(1057), 1, + STATE(1020), 1, sym__external_type, - STATE(1058), 1, + STATE(1021), 1, sym__constant, - [27430] = 9, + [27746] = 6, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(446), 1, - sym__upname, - ACTIONS(877), 1, - anon_sym_RPAREN, - ACTIONS(879), 1, - anon_sym_DOT_DOT, - ACTIONS(881), 1, + ACTIONS(75), 1, + anon_sym_DASH, + ACTIONS(895), 1, sym__name, - STATE(456), 1, - sym__constructor_pattern, - STATE(685), 1, - sym_constructor_pattern, - STATE(905), 1, - sym_pattern_spread, - STATE(502), 2, - sym__pattern_constructor_arg, - sym_pattern_constructor_named_arg, - [27459] = 6, + STATE(1000), 1, + sym__pattern_bit_string_segment_arg, + STATE(1002), 2, + sym_var, + sym_integer, + ACTIONS(91), 4, + sym__hex, + sym__decimal, + sym__octal, + sym__binary, + [27769] = 6, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(727), 1, + ACTIONS(741), 1, sym__discard_name, - ACTIONS(851), 1, + ACTIONS(861), 1, anon_sym_POUND, - ACTIONS(855), 1, + ACTIONS(865), 1, sym__name, - ACTIONS(857), 1, + ACTIONS(867), 1, sym__upname, - STATE(747), 5, + STATE(905), 5, sym__constant_type, sym_constant_tuple_type, sym_constant_type, sym_constant_remote_type, sym_type_hole, - [27482] = 6, + [27792] = 6, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(727), 1, + ACTIONS(741), 1, sym__discard_name, - ACTIONS(851), 1, + ACTIONS(861), 1, anon_sym_POUND, - ACTIONS(855), 1, + ACTIONS(865), 1, sym__name, - ACTIONS(857), 1, + ACTIONS(867), 1, sym__upname, - STATE(1017), 5, + STATE(745), 5, sym__constant_type, sym_constant_tuple_type, sym_constant_type, sym_constant_remote_type, sym_type_hole, - [27505] = 10, + [27815] = 10, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(487), 1, @@ -26649,71 +26899,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, ACTIONS(493), 1, anon_sym_fn, - ACTIONS(883), 1, + ACTIONS(897), 1, anon_sym_type, - ACTIONS(885), 1, + ACTIONS(899), 1, anon_sym_opaque, - STATE(873), 1, - sym__function, - STATE(874), 1, + STATE(813), 1, sym__external_function, - STATE(875), 1, + STATE(972), 1, + sym__function, + STATE(973), 1, sym__external_type, - STATE(876), 1, + STATE(975), 1, sym__constant, - [27536] = 9, + [27846] = 6, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(31), 1, + anon_sym_DASH, + ACTIONS(543), 1, + sym__upname, + STATE(396), 1, + sym__constant_record, + STATE(404), 1, + sym_integer, + ACTIONS(45), 4, + sym__hex, + sym__decimal, + sym__octal, + sym__binary, + [27868] = 9, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(847), 1, + ACTIONS(871), 1, sym__discard_name, - ACTIONS(849), 1, + ACTIONS(873), 1, sym__name, - STATE(483), 1, + STATE(489), 1, sym_identifier, - STATE(505), 1, - sym__discard_param, - STATE(535), 1, + STATE(511), 1, sym__name_param, - STATE(539), 1, - sym__labelled_name_param, - STATE(542), 1, + STATE(516), 1, sym__labelled_discard_param, - STATE(808), 1, + STATE(517), 1, + sym__discard_param, + STATE(522), 1, + sym__labelled_name_param, + STATE(713), 1, sym_function_parameter, - [27564] = 4, + [27896] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(889), 1, + ACTIONS(903), 1, anon_sym_COMMA, - STATE(480), 1, + STATE(487), 1, aux_sym_case_clause_pattern_repeat1, - ACTIONS(887), 6, + ACTIONS(901), 6, anon_sym_if, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [27582] = 6, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(31), 1, - anon_sym_DASH, - ACTIONS(531), 1, - sym__upname, - STATE(380), 1, - sym__constant_record, - STATE(400), 1, - sym_integer, - ACTIONS(45), 4, - sym__hex, - sym__decimal, - sym__octal, - sym__binary, - [27604] = 2, + [27914] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(892), 7, + ACTIONS(906), 7, anon_sym_if, anon_sym_COMMA, anon_sym_RPAREN, @@ -26721,4027 +26971,4025 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [27617] = 5, + [27927] = 5, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(849), 1, + ACTIONS(873), 1, sym__name, - ACTIONS(896), 1, + ACTIONS(910), 1, sym__discard_name, - STATE(673), 1, + STATE(577), 1, sym_identifier, - ACTIONS(894), 3, + ACTIONS(908), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [27635] = 4, + [27945] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(75), 1, anon_sym_DASH, - STATE(59), 1, + STATE(61), 1, sym_integer, ACTIONS(91), 4, sym__hex, sym__decimal, sym__octal, sym__binary, - [27651] = 4, + [27961] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(292), 1, + ACTIONS(75), 1, anon_sym_DASH, - STATE(184), 1, + STATE(1065), 1, sym_integer, - ACTIONS(306), 4, + ACTIONS(91), 4, sym__hex, sym__decimal, sym__octal, sym__binary, - [27667] = 4, + [27977] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(31), 1, + ACTIONS(75), 1, anon_sym_DASH, - STATE(242), 1, + STATE(1066), 1, sym_integer, - ACTIONS(45), 4, + ACTIONS(91), 4, sym__hex, sym__decimal, sym__octal, sym__binary, - [27683] = 4, + [27993] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(75), 1, + ACTIONS(290), 1, anon_sym_DASH, - STATE(914), 1, + STATE(187), 1, sym_integer, - ACTIONS(91), 4, + ACTIONS(304), 4, sym__hex, sym__decimal, sym__octal, sym__binary, - [27699] = 4, + [28009] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(75), 1, + ACTIONS(31), 1, anon_sym_DASH, - STATE(913), 1, + STATE(250), 1, sym_integer, - ACTIONS(91), 4, + ACTIONS(45), 4, sym__hex, sym__decimal, sym__octal, sym__binary, - [27715] = 6, + [28025] = 6, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(446), 1, sym__upname, - ACTIONS(881), 1, + ACTIONS(889), 1, sym__name, - STATE(456), 1, + STATE(453), 1, sym__constructor_pattern, - STATE(685), 1, + STATE(580), 1, sym_constructor_pattern, - STATE(612), 2, + STATE(629), 2, sym__pattern_constructor_arg, sym_pattern_constructor_named_arg, - [27735] = 3, + [28045] = 6, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(900), 1, - anon_sym_LPAREN, - ACTIONS(898), 4, - anon_sym_LBRACE, + ACTIONS(887), 1, + anon_sym_DOT_DOT, + ACTIONS(912), 1, anon_sym_COMMA, - anon_sym_EQ, + ACTIONS(914), 1, anon_sym_RPAREN, - [27748] = 4, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(904), 1, - anon_sym_COMMA, - STATE(480), 1, - aux_sym_case_clause_pattern_repeat1, - ACTIONS(902), 3, - anon_sym_if, - anon_sym_DASH_GT, - anon_sym_PIPE, - [27763] = 4, - ACTIONS(910), 1, + STATE(499), 1, + aux_sym_pattern_constructor_args_repeat1, + STATE(1037), 1, + sym_pattern_spread, + [28064] = 4, + ACTIONS(920), 1, anon_sym_SLASH, - STATE(503), 1, + STATE(507), 1, aux_sym_module_repeat1, - ACTIONS(906), 2, + ACTIONS(916), 2, ts_builtin_sym_end, aux_sym_source_file_token1, - ACTIONS(908), 2, + ACTIONS(918), 2, anon_sym_DOT, anon_sym_as, - [27778] = 4, - ACTIONS(910), 1, + [28079] = 4, + ACTIONS(920), 1, anon_sym_SLASH, - STATE(492), 1, + STATE(497), 1, aux_sym_module_repeat1, - ACTIONS(912), 2, + ACTIONS(922), 2, ts_builtin_sym_end, aux_sym_source_file_token1, - ACTIONS(914), 2, + ACTIONS(924), 2, anon_sym_DOT, anon_sym_as, - [27793] = 4, - ACTIONS(912), 1, + [28094] = 6, + ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(916), 1, - anon_sym_SLASH, - STATE(495), 1, - aux_sym_module_repeat1, - ACTIONS(914), 3, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_as, - [27808] = 4, - ACTIONS(906), 1, + ACTIONS(887), 1, + anon_sym_DOT_DOT, + ACTIONS(912), 1, + anon_sym_COMMA, + ACTIONS(926), 1, + anon_sym_RPAREN, + STATE(534), 1, + aux_sym_pattern_constructor_args_repeat1, + STATE(1024), 1, + sym_pattern_spread, + [28113] = 6, + ACTIONS(3), 1, aux_sym_source_file_token1, + ACTIONS(501), 1, + anon_sym_DOT_DOT, + ACTIONS(928), 1, + anon_sym_COMMA, + ACTIONS(930), 1, + anon_sym_RBRACK, + STATE(502), 1, + aux_sym_case_clause_pattern_repeat1, + STATE(1082), 1, + sym_list_pattern_tail, + [28132] = 4, ACTIONS(916), 1, + aux_sym_source_file_token1, + ACTIONS(932), 1, anon_sym_SLASH, - STATE(501), 1, + STATE(504), 1, aux_sym_module_repeat1, - ACTIONS(908), 3, + ACTIONS(918), 3, anon_sym_RBRACE, anon_sym_DOT, anon_sym_as, - [27823] = 4, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(904), 1, - anon_sym_COMMA, - STATE(491), 1, - aux_sym_case_clause_pattern_repeat1, - ACTIONS(918), 3, - anon_sym_if, - anon_sym_DASH_GT, - anon_sym_PIPE, - [27838] = 3, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(922), 1, - anon_sym_DOT, - ACTIONS(920), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [27851] = 6, + [28147] = 6, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(501), 1, anon_sym_DOT_DOT, - ACTIONS(904), 1, + ACTIONS(928), 1, anon_sym_COMMA, - ACTIONS(924), 1, + ACTIONS(934), 1, anon_sym_RBRACK, - STATE(480), 1, + STATE(487), 1, aux_sym_case_clause_pattern_repeat1, - STATE(898), 1, + STATE(1048), 1, sym_list_pattern_tail, - [27870] = 6, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(879), 1, - anon_sym_DOT_DOT, - ACTIONS(926), 1, - anon_sym_COMMA, - ACTIONS(928), 1, - anon_sym_RPAREN, - STATE(530), 1, - aux_sym_pattern_constructor_args_repeat1, - STATE(853), 1, - sym_pattern_spread, - [27889] = 4, + [28166] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(930), 1, + ACTIONS(936), 1, anon_sym_COMMA, - STATE(500), 1, + STATE(503), 1, aux_sym_tuple_repeat1, ACTIONS(517), 3, anon_sym_LBRACE, anon_sym_RPAREN, anon_sym_RBRACK, - [27904] = 4, - ACTIONS(933), 1, + [28181] = 4, + ACTIONS(939), 1, aux_sym_source_file_token1, - ACTIONS(937), 1, + ACTIONS(943), 1, anon_sym_SLASH, - STATE(501), 1, + STATE(504), 1, aux_sym_module_repeat1, - ACTIONS(935), 3, + ACTIONS(941), 3, anon_sym_RBRACE, anon_sym_DOT, anon_sym_as, - [27919] = 6, + [28196] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(879), 1, - anon_sym_DOT_DOT, - ACTIONS(926), 1, + ACTIONS(928), 1, anon_sym_COMMA, - ACTIONS(940), 1, - anon_sym_RPAREN, - STATE(499), 1, - aux_sym_pattern_constructor_args_repeat1, - STATE(895), 1, - sym_pattern_spread, - [27938] = 4, - ACTIONS(942), 1, + STATE(487), 1, + aux_sym_case_clause_pattern_repeat1, + ACTIONS(946), 3, + anon_sym_if, + anon_sym_DASH_GT, + anon_sym_PIPE, + [28211] = 4, + ACTIONS(922), 1, + aux_sym_source_file_token1, + ACTIONS(932), 1, anon_sym_SLASH, - STATE(503), 1, + STATE(501), 1, + aux_sym_module_repeat1, + ACTIONS(924), 3, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_as, + [28226] = 4, + ACTIONS(948), 1, + anon_sym_SLASH, + STATE(507), 1, aux_sym_module_repeat1, - ACTIONS(933), 2, + ACTIONS(939), 2, ts_builtin_sym_end, aux_sym_source_file_token1, - ACTIONS(935), 2, + ACTIONS(941), 2, anon_sym_DOT, anon_sym_as, - [27953] = 6, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(501), 1, - anon_sym_DOT_DOT, - ACTIONS(904), 1, - anon_sym_COMMA, - ACTIONS(945), 1, - anon_sym_RBRACK, - STATE(498), 1, - aux_sym_case_clause_pattern_repeat1, - STATE(907), 1, - sym_list_pattern_tail, - [27972] = 4, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(949), 1, - anon_sym_COLON, - STATE(719), 1, - sym__type_annotation, - ACTIONS(947), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [27986] = 4, + [28241] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(953), 1, - anon_sym_DASH, - STATE(525), 1, - aux_sym_pattern_bit_string_segment_options_repeat1, - ACTIONS(951), 2, + anon_sym_DOT, + ACTIONS(951), 4, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_GT_GT, - [28000] = 2, + anon_sym_EQ, + anon_sym_RPAREN, + [28254] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, + ACTIONS(957), 1, + anon_sym_LPAREN, ACTIONS(955), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, - [28010] = 4, + [28267] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(959), 1, - anon_sym_DASH, - STATE(516), 1, - aux_sym_expression_bit_string_segment_options_repeat1, - ACTIONS(957), 2, + ACTIONS(928), 1, anon_sym_COMMA, - anon_sym_GT_GT, - [28024] = 5, + STATE(505), 1, + aux_sym_case_clause_pattern_repeat1, + ACTIONS(959), 3, + anon_sym_if, + anon_sym_DASH_GT, + anon_sym_PIPE, + [28282] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(849), 1, - sym__name, - STATE(597), 1, - sym_record_update_argument, - STATE(884), 1, - sym_identifier, - STATE(885), 1, - sym_record_update_arguments, - [28040] = 5, + ACTIONS(963), 1, + anon_sym_COLON, + STATE(798), 1, + sym__type_annotation, + ACTIONS(961), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [28296] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(849), 1, - sym__name, - STATE(597), 1, - sym_record_update_argument, - STATE(883), 1, - sym_record_update_arguments, - STATE(884), 1, - sym_identifier, - [28056] = 2, + ACTIONS(965), 4, + sym__hex, + sym__decimal, + sym__octal, + sym__binary, + [28306] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(961), 4, + ACTIONS(967), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, - [28066] = 5, + [28316] = 5, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(849), 1, + ACTIONS(873), 1, sym__name, - STATE(597), 1, + STATE(605), 1, sym_record_update_argument, - STATE(884), 1, + STATE(1005), 1, sym_identifier, - STATE(903), 1, + STATE(1007), 1, sym_record_update_arguments, - [28082] = 2, + [28332] = 5, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(963), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [28092] = 2, + ACTIONS(873), 1, + sym__name, + STATE(605), 1, + sym_record_update_argument, + STATE(1004), 1, + sym_record_update_arguments, + STATE(1005), 1, + sym_identifier, + [28348] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(965), 4, - anon_sym_LBRACE, + ACTIONS(963), 1, + anon_sym_COLON, + STATE(801), 1, + sym__type_annotation, + ACTIONS(969), 2, anon_sym_COMMA, - anon_sym_EQ, anon_sym_RPAREN, - [28102] = 4, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(969), 1, - anon_sym_PIPE, - STATE(538), 1, - aux_sym_case_clause_patterns_repeat1, - ACTIONS(967), 2, - anon_sym_if, - anon_sym_DASH_GT, - [28116] = 4, + [28362] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(973), 1, - anon_sym_DASH, - STATE(516), 1, - aux_sym_expression_bit_string_segment_options_repeat1, + ACTIONS(963), 1, + anon_sym_COLON, + STATE(800), 1, + sym__type_annotation, ACTIONS(971), 2, anon_sym_COMMA, - anon_sym_GT_GT, - [28130] = 2, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(976), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [28140] = 2, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(978), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_EQ, anon_sym_RPAREN, - [28150] = 2, + [28376] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(980), 4, + ACTIONS(973), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, - [28160] = 2, + [28386] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(982), 4, + ACTIONS(975), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, - [28170] = 2, + [28396] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(984), 4, - anon_sym_LBRACE, + ACTIONS(979), 1, + anon_sym_DASH, + STATE(520), 1, + aux_sym_expression_bit_string_segment_options_repeat1, + ACTIONS(977), 2, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [28180] = 4, + anon_sym_GT_GT, + [28410] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(47), 1, sym__discard_name, - ACTIONS(871), 1, + ACTIONS(895), 1, sym__name, - STATE(908), 2, + STATE(993), 2, sym_var, sym_discard_var, - [28194] = 4, + [28424] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(986), 1, - anon_sym_RBRACE, - ACTIONS(988), 1, + ACTIONS(963), 1, + anon_sym_COLON, + STATE(799), 1, + sym__type_annotation, + ACTIONS(982), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [28438] = 5, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(984), 1, sym__upname, - STATE(523), 2, - sym_type_constructor, - aux_sym_type_constructors_repeat1, - [28208] = 4, + STATE(776), 1, + sym_type_name, + STATE(987), 1, + sym__type_alias, + STATE(988), 1, + sym__custom_type_definition, + [28454] = 5, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(993), 1, - anon_sym_DASH, - STATE(531), 1, - aux_sym_constant_bit_string_segment_options_repeat1, - ACTIONS(991), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [28222] = 4, + ACTIONS(873), 1, + sym__name, + STATE(605), 1, + sym_record_update_argument, + STATE(969), 1, + sym_record_update_arguments, + STATE(1005), 1, + sym_identifier, + [28470] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(953), 1, + ACTIONS(986), 4, + sym__hex, + sym__decimal, + sym__octal, + sym__binary, + [28480] = 4, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(990), 1, anon_sym_DASH, - STATE(551), 1, + STATE(529), 1, aux_sym_pattern_bit_string_segment_options_repeat1, - ACTIONS(995), 2, + ACTIONS(988), 2, anon_sym_COMMA, anon_sym_GT_GT, - [28236] = 4, + [28494] = 5, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(969), 1, - anon_sym_PIPE, - STATE(515), 1, - aux_sym_case_clause_patterns_repeat1, - ACTIONS(997), 2, - anon_sym_if, - anon_sym_DASH_GT, - [28250] = 2, + ACTIONS(984), 1, + sym__upname, + STATE(776), 1, + sym_type_name, + STATE(1003), 1, + sym__type_alias, + STATE(1006), 1, + sym__custom_type_definition, + [28510] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(999), 4, + ACTIONS(992), 4, sym__hex, sym__decimal, sym__octal, sym__binary, - [28260] = 5, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(849), 1, - sym__name, - STATE(597), 1, - sym_record_update_argument, - STATE(884), 1, - sym_identifier, - STATE(904), 1, - sym_record_update_arguments, - [28276] = 4, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(346), 1, - anon_sym_COLON, - ACTIONS(922), 1, - anon_sym_DOT, - ACTIONS(920), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [28290] = 4, + [28520] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1001), 1, + ACTIONS(990), 1, + anon_sym_DASH, + STATE(555), 1, + aux_sym_pattern_bit_string_segment_options_repeat1, + ACTIONS(994), 2, anon_sym_COMMA, - STATE(530), 1, - aux_sym_pattern_constructor_args_repeat1, - ACTIONS(1004), 2, - anon_sym_RPAREN, - anon_sym_DOT_DOT, - [28304] = 4, + anon_sym_GT_GT, + [28534] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(993), 1, + ACTIONS(998), 1, anon_sym_DASH, - STATE(549), 1, + STATE(530), 1, aux_sym_constant_bit_string_segment_options_repeat1, - ACTIONS(1006), 2, + ACTIONS(996), 2, anon_sym_COMMA, anon_sym_GT_GT, - [28318] = 5, + [28548] = 5, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1008), 1, + ACTIONS(984), 1, sym__upname, STATE(789), 1, sym_type_name, - STATE(863), 1, + STATE(953), 1, sym__type_alias, - STATE(864), 1, + STATE(954), 1, sym__custom_type_definition, - [28334] = 5, + [28564] = 5, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1008), 1, + ACTIONS(984), 1, sym__upname, STATE(789), 1, sym_type_name, - STATE(868), 1, + STATE(963), 1, sym__type_alias, - STATE(870), 1, + STATE(964), 1, sym__custom_type_definition, - [28350] = 5, + [28580] = 5, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1008), 1, + ACTIONS(873), 1, + sym__name, + STATE(605), 1, + sym_record_update_argument, + STATE(968), 1, + sym_record_update_arguments, + STATE(1005), 1, + sym_identifier, + [28596] = 4, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(1001), 1, + anon_sym_COMMA, + STATE(534), 1, + aux_sym_pattern_constructor_args_repeat1, + ACTIONS(1004), 2, + anon_sym_RPAREN, + anon_sym_DOT_DOT, + [28610] = 5, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(984), 1, sym__upname, STATE(789), 1, sym_type_name, - STATE(871), 1, + STATE(965), 1, sym__type_alias, - STATE(872), 1, + STATE(966), 1, sym__custom_type_definition, - [28366] = 4, + [28626] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(949), 1, - anon_sym_COLON, - STATE(729), 1, - sym__type_annotation, - ACTIONS(1010), 2, + ACTIONS(1008), 1, + anon_sym_DASH, + STATE(560), 1, + aux_sym_constant_bit_string_segment_options_repeat1, + ACTIONS(1006), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [28380] = 4, + anon_sym_GT_GT, + [28640] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1012), 1, + anon_sym_PIPE, + STATE(547), 1, + aux_sym_case_clause_patterns_repeat1, + ACTIONS(1010), 2, + anon_sym_if, + anon_sym_DASH_GT, + [28654] = 2, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(1014), 4, + anon_sym_LBRACE, anon_sym_COMMA, - STATE(536), 1, - aux_sym__constant_tuple_repeat1, - ACTIONS(1015), 2, + anon_sym_EQ, anon_sym_RPAREN, - anon_sym_RBRACK, - [28394] = 4, + [28664] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(959), 1, + ACTIONS(1018), 1, anon_sym_DASH, - STATE(508), 1, + STATE(520), 1, aux_sym_expression_bit_string_segment_options_repeat1, - ACTIONS(1017), 2, + ACTIONS(1016), 2, anon_sym_COMMA, anon_sym_GT_GT, - [28408] = 4, + [28678] = 2, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(1020), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [28688] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1021), 1, + ACTIONS(1022), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [28698] = 4, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(1026), 1, anon_sym_PIPE, - STATE(538), 1, + STATE(542), 1, aux_sym_case_clause_patterns_repeat1, - ACTIONS(1019), 2, + ACTIONS(1024), 2, anon_sym_if, anon_sym_DASH_GT, - [28422] = 4, + [28712] = 5, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(949), 1, - anon_sym_COLON, - STATE(722), 1, - sym__type_annotation, - ACTIONS(1024), 2, + ACTIONS(873), 1, + sym__name, + STATE(605), 1, + sym_record_update_argument, + STATE(912), 1, + sym_record_update_arguments, + STATE(1005), 1, + sym_identifier, + [28728] = 2, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(1029), 4, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_EQ, anon_sym_RPAREN, - [28436] = 2, - ACTIONS(933), 1, + [28738] = 5, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(873), 1, + sym__name, + STATE(605), 1, + sym_record_update_argument, + STATE(911), 1, + sym_record_update_arguments, + STATE(1005), 1, + sym_identifier, + [28754] = 2, + ACTIONS(939), 1, aux_sym_source_file_token1, - ACTIONS(935), 4, + ACTIONS(941), 4, anon_sym_RBRACE, anon_sym_DOT, anon_sym_as, anon_sym_SLASH, - [28446] = 4, + [28764] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1026), 1, + ACTIONS(1012), 1, + anon_sym_PIPE, + STATE(542), 1, + aux_sym_case_clause_patterns_repeat1, + ACTIONS(1031), 2, + anon_sym_if, + anon_sym_DASH_GT, + [28778] = 4, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(1033), 1, + anon_sym_RBRACE, + ACTIONS(1035), 1, sym__upname, - STATE(846), 1, - sym_type_constructors, - STATE(543), 2, + STATE(563), 2, sym_type_constructor, aux_sym_type_constructors_repeat1, - [28460] = 4, + [28792] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(949), 1, - anon_sym_COLON, - STATE(718), 1, - sym__type_annotation, - ACTIONS(1028), 2, + ACTIONS(1039), 1, + anon_sym_LPAREN, + ACTIONS(1037), 3, anon_sym_COMMA, + anon_sym_EQ, anon_sym_RPAREN, - [28474] = 4, + [28804] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1026), 1, + ACTIONS(1035), 1, sym__upname, - ACTIONS(1030), 1, - anon_sym_RBRACE, - STATE(523), 2, + STATE(887), 1, + sym_type_constructors, + STATE(548), 2, sym_type_constructor, aux_sym_type_constructors_repeat1, - [28488] = 5, + [28818] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(849), 1, - sym__name, - STATE(597), 1, - sym_record_update_argument, - STATE(884), 1, - sym_identifier, - STATE(960), 1, - sym_record_update_arguments, - [28504] = 2, + ACTIONS(1041), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [28828] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1032), 4, + ACTIONS(1043), 4, sym__hex, sym__decimal, sym__octal, sym__binary, - [28514] = 5, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(849), 1, - sym__name, - STATE(597), 1, - sym_record_update_argument, - STATE(884), 1, - sym_identifier, - STATE(961), 1, - sym_record_update_arguments, - [28530] = 3, + [28838] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1036), 1, - anon_sym_LPAREN, - ACTIONS(1034), 3, + ACTIONS(1045), 1, anon_sym_COMMA, - anon_sym_EQ, + STATE(553), 1, + aux_sym__constant_tuple_repeat1, + ACTIONS(1048), 2, anon_sym_RPAREN, - [28542] = 2, + anon_sym_RBRACK, + [28852] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1038), 4, - anon_sym_LBRACE, + ACTIONS(346), 1, + anon_sym_COLON, + ACTIONS(953), 1, + anon_sym_DOT, + ACTIONS(951), 2, anon_sym_COMMA, - anon_sym_EQ, anon_sym_RPAREN, - [28552] = 4, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(1042), 1, - anon_sym_DASH, - STATE(549), 1, - aux_sym_constant_bit_string_segment_options_repeat1, - ACTIONS(1040), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [28566] = 2, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(1045), 4, - sym__hex, - sym__decimal, - sym__octal, - sym__binary, - [28576] = 4, + [28866] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1049), 1, + ACTIONS(1052), 1, anon_sym_DASH, - STATE(551), 1, + STATE(555), 1, aux_sym_pattern_bit_string_segment_options_repeat1, - ACTIONS(1047), 2, + ACTIONS(1050), 2, anon_sym_COMMA, anon_sym_GT_GT, - [28590] = 2, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(1052), 4, - sym__hex, - sym__decimal, - sym__octal, - sym__binary, - [28600] = 2, - ACTIONS(933), 2, + [28880] = 2, + ACTIONS(939), 2, ts_builtin_sym_end, aux_sym_source_file_token1, - ACTIONS(935), 3, + ACTIONS(941), 3, anon_sym_DOT, anon_sym_as, anon_sym_SLASH, - [28610] = 4, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(1026), 1, - sym__upname, - STATE(1016), 1, - sym_type_constructors, - STATE(543), 2, - sym_type_constructor, - aux_sym_type_constructors_repeat1, - [28624] = 5, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(1008), 1, - sym__upname, - STATE(787), 1, - sym_type_name, - STATE(1029), 1, - sym__type_alias, - STATE(1030), 1, - sym__custom_type_definition, - [28640] = 5, + [28890] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1008), 1, - sym__upname, - STATE(787), 1, - sym_type_name, - STATE(1041), 1, - sym__type_alias, - STATE(1042), 1, - sym__custom_type_definition, - [28656] = 2, + ACTIONS(1018), 1, + anon_sym_DASH, + STATE(539), 1, + aux_sym_expression_bit_string_segment_options_repeat1, + ACTIONS(1055), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [28904] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1054), 4, + ACTIONS(1057), 4, sym__hex, sym__decimal, sym__octal, sym__binary, - [28666] = 5, + [28914] = 5, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1008), 1, + ACTIONS(984), 1, sym__upname, - STATE(787), 1, + STATE(776), 1, sym_type_name, - STATE(1051), 1, + STATE(930), 1, sym__type_alias, - STATE(1052), 1, + STATE(937), 1, sym__custom_type_definition, - [28682] = 4, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(1056), 1, - anon_sym_COMMA, - ACTIONS(1058), 1, - anon_sym_RPAREN, - STATE(668), 1, - aux_sym_tuple_type_repeat1, - [28695] = 2, + [28930] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1060), 3, + ACTIONS(1008), 1, + anon_sym_DASH, + STATE(530), 1, + aux_sym_constant_bit_string_segment_options_repeat1, + ACTIONS(1059), 2, anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_DASH, - [28704] = 4, + [28944] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(849), 1, - sym__name, - STATE(796), 1, - sym_record_update_argument, - STATE(884), 1, - sym_identifier, - [28717] = 4, + ACTIONS(1061), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [28954] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1062), 1, + ACTIONS(1063), 4, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(1064), 1, + anon_sym_EQ, anon_sym_RPAREN, - STATE(575), 1, - aux_sym_record_update_arguments_repeat1, - [28730] = 3, + [28964] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1068), 1, - anon_sym_COLON, - ACTIONS(1066), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [28741] = 4, + ACTIONS(1065), 1, + anon_sym_RBRACE, + ACTIONS(1067), 1, + sym__upname, + STATE(563), 2, + sym_type_constructor, + aux_sym_type_constructors_repeat1, + [28978] = 4, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(1035), 1, + sym__upname, + STATE(854), 1, + sym_type_constructors, + STATE(548), 2, + sym_type_constructor, + aux_sym_type_constructors_repeat1, + [28992] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1070), 1, anon_sym_COMMA, ACTIONS(1072), 1, - anon_sym_GT_GT, - STATE(677), 1, - aux_sym__pattern_bit_string_repeat1, - [28754] = 4, + anon_sym_RPAREN, + STATE(553), 1, + aux_sym__constant_tuple_repeat1, + [29005] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1074), 1, anon_sym_COMMA, ACTIONS(1076), 1, anon_sym_RPAREN, - STATE(633), 1, - aux_sym_type_name_repeat1, - [28767] = 4, + STATE(649), 1, + aux_sym_arguments_repeat1, + [29018] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(553), 1, - anon_sym_COMMA, ACTIONS(1078), 1, - anon_sym_LBRACE, - STATE(500), 1, - aux_sym_tuple_repeat1, - [28780] = 2, + anon_sym_COMMA, + ACTIONS(1081), 1, + anon_sym_RPAREN, + STATE(567), 1, + aux_sym__constant_record_arguments_repeat1, + [29031] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1080), 3, + ACTIONS(928), 1, anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DASH, - [28789] = 4, + ACTIONS(1083), 1, + anon_sym_RPAREN, + STATE(697), 1, + aux_sym_case_clause_pattern_repeat1, + [29044] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(553), 1, + ACTIONS(1085), 1, anon_sym_COMMA, - ACTIONS(1082), 1, + ACTIONS(1087), 1, anon_sym_RPAREN, - STATE(500), 1, - aux_sym_tuple_repeat1, - [28802] = 2, + STATE(691), 1, + aux_sym_function_parameters_repeat1, + [29057] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1084), 3, + ACTIONS(1089), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, - [28811] = 4, + [29066] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1086), 1, + ACTIONS(1091), 3, anon_sym_COMMA, - ACTIONS(1088), 1, anon_sym_GT_GT, - STATE(662), 1, - aux_sym__expression_bit_string_repeat1, - [28824] = 2, + anon_sym_DASH, + [29075] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1047), 3, + ACTIONS(1093), 1, anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DASH, - [28833] = 4, + ACTIONS(1096), 1, + anon_sym_RPAREN, + STATE(572), 1, + aux_sym_constant_tuple_type_repeat1, + [29088] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1090), 1, + ACTIONS(1098), 3, + anon_sym_COMMA, + anon_sym_EQ, anon_sym_RPAREN, - ACTIONS(1092), 1, - sym__name, - STATE(609), 1, - sym__constant_record_arg, - [28846] = 4, + [29097] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1094), 1, - anon_sym_COMMA, - ACTIONS(1096), 1, - anon_sym_GT_GT, - STATE(607), 1, - aux_sym__constant_bit_string_repeat1, - [28859] = 3, ACTIONS(1100), 1, - anon_sym_DOT, + anon_sym_COMMA, ACTIONS(1102), 1, - anon_sym_as, - ACTIONS(1098), 2, - ts_builtin_sym_end, - aux_sym_source_file_token1, - [28870] = 4, + anon_sym_GT_GT, + STATE(676), 1, + aux_sym__pattern_bit_string_repeat1, + [29110] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1104), 1, + ACTIONS(1104), 3, anon_sym_COMMA, - ACTIONS(1107), 1, anon_sym_RPAREN, - STATE(575), 1, - aux_sym_record_update_arguments_repeat1, - [28883] = 4, + anon_sym_COLON, + [29119] = 4, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(1106), 1, + sym__name, + ACTIONS(1108), 1, + sym__upname, + STATE(668), 1, + sym_unqualified_import, + [29132] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(949), 1, + ACTIONS(1110), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(1109), 1, - anon_sym_EQ, - STATE(966), 1, - sym__type_annotation, - [28896] = 4, + [29141] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1056), 1, + ACTIONS(1112), 1, anon_sym_COMMA, - ACTIONS(1111), 1, + ACTIONS(1114), 1, anon_sym_RPAREN, - STATE(636), 1, - aux_sym_tuple_type_repeat1, - [28909] = 4, + STATE(634), 1, + aux_sym_external_function_parameters_repeat1, + [29154] = 4, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(1116), 1, + anon_sym_COMMA, + ACTIONS(1119), 1, + anon_sym_RPAREN, + STATE(579), 1, + aux_sym_record_update_arguments_repeat1, + [29167] = 2, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(1121), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DOT_DOT, + [29176] = 4, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(1106), 1, + sym__name, + ACTIONS(1108), 1, + sym__upname, + STATE(729), 1, + sym_unqualified_import, + [29189] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1113), 1, + ACTIONS(1123), 1, anon_sym_RBRACE, - ACTIONS(1115), 1, + ACTIONS(1125), 1, anon_sym_COMMA, - STATE(578), 1, + STATE(685), 1, aux_sym_import_repeat1, - [28922] = 4, + [29202] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(949), 1, - anon_sym_COLON, - ACTIONS(1118), 1, + ACTIONS(1127), 1, anon_sym_EQ, - STATE(890), 1, - sym__type_annotation, - [28935] = 4, + ACTIONS(1129), 1, + anon_sym_COLON, + STATE(846), 1, + sym__constant_type_annotation, + [29215] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1086), 1, + ACTIONS(1070), 1, anon_sym_COMMA, - ACTIONS(1120), 1, - anon_sym_GT_GT, - STATE(570), 1, - aux_sym__expression_bit_string_repeat1, - [28948] = 4, + ACTIONS(1131), 1, + anon_sym_RPAREN, + STATE(683), 1, + aux_sym__constant_tuple_repeat1, + [29228] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1122), 1, - anon_sym_COMMA, - ACTIONS(1124), 1, - anon_sym_RPAREN, - STATE(690), 1, - aux_sym_arguments_repeat1, - [28961] = 4, + ACTIONS(873), 1, + sym__name, + STATE(796), 1, + sym_record_update_argument, + STATE(1005), 1, + sym_identifier, + [29241] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1086), 1, + ACTIONS(1050), 3, anon_sym_COMMA, - ACTIONS(1126), 1, anon_sym_GT_GT, - STATE(662), 1, - aux_sym__expression_bit_string_repeat1, - [28974] = 4, - ACTIONS(1098), 1, + anon_sym_DASH, + [29250] = 4, + ACTIONS(1133), 1, aux_sym_source_file_token1, - ACTIONS(1128), 1, + ACTIONS(1135), 1, anon_sym_RBRACE, - ACTIONS(1130), 1, + ACTIONS(1137), 1, anon_sym_DOT, - ACTIONS(1132), 1, + ACTIONS(1139), 1, anon_sym_as, - [28987] = 2, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(1134), 3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DASH, - [28996] = 4, + [29263] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1136), 1, - anon_sym_EQ, - ACTIONS(1138), 1, + ACTIONS(963), 1, anon_sym_COLON, - STATE(838), 1, - sym__constant_type_annotation, - [29009] = 4, + ACTIONS(1141), 1, + anon_sym_EQ, + STATE(974), 1, + sym__type_annotation, + [29276] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1056), 1, + ACTIONS(1070), 1, anon_sym_COMMA, - ACTIONS(1140), 1, - anon_sym_RPAREN, - STATE(610), 1, - aux_sym_tuple_type_repeat1, - [29022] = 4, + ACTIONS(1143), 1, + anon_sym_RBRACK, + STATE(553), 1, + aux_sym__constant_tuple_repeat1, + [29289] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1056), 1, + ACTIONS(1145), 1, anon_sym_COMMA, - ACTIONS(1142), 1, + ACTIONS(1147), 1, + anon_sym_GT_GT, + STATE(592), 1, + aux_sym__constant_bit_string_repeat1, + [29302] = 4, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(1149), 1, anon_sym_RPAREN, - STATE(610), 1, - aux_sym_tuple_type_repeat1, - [29035] = 4, + ACTIONS(1151), 1, + sym__name, + STATE(695), 1, + sym_type_parameter, + [29315] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1144), 1, + ACTIONS(1145), 1, anon_sym_COMMA, - ACTIONS(1146), 1, - anon_sym_RBRACK, - STATE(536), 1, - aux_sym__constant_tuple_repeat1, - [29048] = 4, + ACTIONS(1153), 1, + anon_sym_GT_GT, + STATE(671), 1, + aux_sym__constant_bit_string_repeat1, + [29328] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1138), 1, + ACTIONS(1157), 1, anon_sym_COLON, - ACTIONS(1148), 1, - anon_sym_EQ, - STATE(1040), 1, - sym__constant_type_annotation, - [29061] = 4, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(1150), 1, + ACTIONS(1155), 2, anon_sym_COMMA, - ACTIONS(1152), 1, - anon_sym_RPAREN, - STATE(649), 1, - aux_sym__constant_record_repeat1, - [29074] = 4, + anon_sym_GT_GT, + [29339] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1144), 1, + ACTIONS(1070), 1, anon_sym_COMMA, - ACTIONS(1154), 1, - anon_sym_RPAREN, - STATE(536), 1, + ACTIONS(1159), 1, + anon_sym_RBRACK, + STATE(589), 1, aux_sym__constant_tuple_repeat1, - [29087] = 4, + [29352] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1144), 1, + ACTIONS(1161), 1, anon_sym_COMMA, - ACTIONS(1156), 1, + ACTIONS(1164), 1, anon_sym_RPAREN, - STATE(536), 1, - aux_sym__constant_tuple_repeat1, - [29100] = 3, + STATE(595), 1, + aux_sym_type_constructor_arguments_repeat1, + [29365] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1160), 1, - anon_sym_LPAREN, - ACTIONS(1158), 2, - anon_sym_LBRACE, - anon_sym_EQ, - [29111] = 4, + ACTIONS(1125), 1, + anon_sym_COMMA, + ACTIONS(1166), 1, + anon_sym_RBRACE, + STATE(582), 1, + aux_sym_import_repeat1, + [29378] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1056), 1, + ACTIONS(1168), 3, anon_sym_COMMA, - ACTIONS(1162), 1, - anon_sym_RPAREN, - STATE(666), 1, - aux_sym_tuple_type_repeat1, - [29124] = 2, + anon_sym_GT_GT, + anon_sym_DASH, + [29387] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1015), 3, + ACTIONS(519), 1, anon_sym_COMMA, + ACTIONS(1170), 1, anon_sym_RPAREN, - anon_sym_RBRACK, - [29133] = 4, + STATE(503), 1, + aux_sym_tuple_repeat1, + [29400] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1086), 1, + ACTIONS(1172), 1, anon_sym_COMMA, - ACTIONS(1164), 1, + ACTIONS(1174), 1, anon_sym_GT_GT, - STATE(662), 1, + STATE(689), 1, aux_sym__expression_bit_string_repeat1, - [29146] = 4, + [29413] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1062), 1, + ACTIONS(1178), 1, + anon_sym_as, + ACTIONS(1176), 2, + anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(1166), 1, - anon_sym_RPAREN, - STATE(562), 1, - aux_sym_record_update_arguments_repeat1, - [29159] = 4, + [29424] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1168), 1, - sym__name, - ACTIONS(1170), 1, - sym__upname, - STATE(689), 1, - sym_unqualified_import, - [29172] = 4, + ACTIONS(1180), 1, + anon_sym_as, + ACTIONS(1176), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [29435] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1172), 1, + ACTIONS(1182), 1, anon_sym_COMMA, - ACTIONS(1174), 1, + ACTIONS(1184), 1, anon_sym_RBRACK, - STATE(500), 1, + STATE(503), 1, aux_sym_tuple_repeat1, - [29185] = 4, + [29448] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1056), 1, + ACTIONS(1186), 1, anon_sym_COMMA, - ACTIONS(1176), 1, + ACTIONS(1188), 1, anon_sym_RPAREN, - STATE(586), 1, - aux_sym_tuple_type_repeat1, - [29198] = 4, + STATE(666), 1, + aux_sym__constant_record_arguments_repeat1, + [29461] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1056), 1, + ACTIONS(1190), 3, anon_sym_COMMA, - ACTIONS(1178), 1, + anon_sym_EQ, anon_sym_RPAREN, - STATE(587), 1, - aux_sym_tuple_type_repeat1, - [29211] = 4, + [29470] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1180), 1, + ACTIONS(1192), 1, anon_sym_COMMA, - ACTIONS(1182), 1, + ACTIONS(1194), 1, anon_sym_RPAREN, - STATE(665), 1, - aux_sym_type_constructor_arguments_repeat1, - [29224] = 4, + STATE(626), 1, + aux_sym_record_update_arguments_repeat1, + [29483] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1184), 1, + ACTIONS(963), 1, + anon_sym_COLON, + ACTIONS(1196), 1, + anon_sym_EQ, + STATE(959), 1, + sym__type_annotation, + [29496] = 4, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(1172), 1, anon_sym_COMMA, - ACTIONS(1186), 1, - anon_sym_RBRACK, - STATE(500), 1, - aux_sym_tuple_repeat1, - [29237] = 4, + ACTIONS(1198), 1, + anon_sym_GT_GT, + STATE(599), 1, + aux_sym__expression_bit_string_repeat1, + [29509] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1150), 1, + ACTIONS(1200), 1, anon_sym_COMMA, - ACTIONS(1188), 1, + ACTIONS(1202), 1, anon_sym_RPAREN, - STATE(590), 1, - aux_sym__constant_record_repeat1, - [29250] = 2, + STATE(663), 1, + aux_sym_constant_tuple_type_repeat1, + [29522] = 3, + ACTIONS(3), 1, + aux_sym_source_file_token1, + STATE(1038), 1, + sym_target, + ACTIONS(1204), 2, + anon_sym_erlang, + anon_sym_javascript, + [29533] = 4, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(963), 1, + anon_sym_COLON, + ACTIONS(1206), 1, + anon_sym_EQ, + STATE(1053), 1, + sym__type_annotation, + [29546] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1019), 3, + ACTIONS(1024), 3, anon_sym_if, anon_sym_DASH_GT, anon_sym_PIPE, - [29259] = 4, + [29555] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1094), 1, + ACTIONS(1208), 1, anon_sym_COMMA, - ACTIONS(1190), 1, - anon_sym_GT_GT, - STATE(618), 1, - aux_sym__constant_bit_string_repeat1, - [29272] = 4, + ACTIONS(1210), 1, + anon_sym_RPAREN, + STATE(615), 1, + aux_sym_tuple_type_repeat1, + [29568] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1094), 1, + ACTIONS(1208), 1, anon_sym_COMMA, - ACTIONS(1192), 1, - anon_sym_GT_GT, - STATE(618), 1, - aux_sym__constant_bit_string_repeat1, - [29285] = 4, + ACTIONS(1212), 1, + anon_sym_RPAREN, + STATE(615), 1, + aux_sym_tuple_type_repeat1, + [29581] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1144), 1, - anon_sym_COMMA, - ACTIONS(1194), 1, - anon_sym_RBRACK, - STATE(536), 1, - aux_sym__constant_tuple_repeat1, - [29298] = 4, + ACTIONS(1216), 1, + anon_sym_LPAREN, + ACTIONS(1214), 2, + anon_sym_LBRACE, + anon_sym_EQ, + [29592] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1150), 1, + ACTIONS(1218), 1, anon_sym_COMMA, - ACTIONS(1196), 1, + ACTIONS(1221), 1, anon_sym_RPAREN, - STATE(700), 1, - aux_sym__constant_record_repeat1, - [29311] = 4, + STATE(615), 1, + aux_sym_tuple_type_repeat1, + [29605] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1198), 1, + ACTIONS(1186), 1, anon_sym_COMMA, - ACTIONS(1201), 1, + ACTIONS(1223), 1, anon_sym_RPAREN, - STATE(610), 1, - aux_sym_tuple_type_repeat1, - [29324] = 4, + STATE(567), 1, + aux_sym__constant_record_arguments_repeat1, + [29618] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1144), 1, + ACTIONS(1225), 3, anon_sym_COMMA, - ACTIONS(1203), 1, + anon_sym_EQ, anon_sym_RPAREN, - STATE(591), 1, - aux_sym__constant_tuple_repeat1, - [29337] = 2, + [29627] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1004), 3, + ACTIONS(1227), 3, anon_sym_COMMA, + anon_sym_EQ, anon_sym_RPAREN, - anon_sym_DOT_DOT, - [29346] = 2, + [29636] = 4, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(963), 1, + anon_sym_COLON, + ACTIONS(1229), 1, + anon_sym_EQ, + STATE(1033), 1, + sym__type_annotation, + [29649] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1205), 3, + ACTIONS(1200), 1, anon_sym_COMMA, + ACTIONS(1231), 1, anon_sym_RPAREN, - anon_sym_DOT_DOT, - [29355] = 4, + STATE(661), 1, + aux_sym_constant_tuple_type_repeat1, + [29662] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1144), 1, - anon_sym_COMMA, - ACTIONS(1207), 1, - anon_sym_RBRACK, - STATE(588), 1, - aux_sym__constant_tuple_repeat1, - [29368] = 4, + ACTIONS(1129), 1, + anon_sym_COLON, + ACTIONS(1233), 1, + anon_sym_EQ, + STATE(971), 1, + sym__constant_type_annotation, + [29675] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1209), 1, - anon_sym_RPAREN, - ACTIONS(1211), 1, + ACTIONS(1106), 1, sym__name, - STATE(641), 1, - sym_type_parameter, - [29381] = 4, + ACTIONS(1108), 1, + sym__upname, + STATE(596), 1, + sym_unqualified_import, + [29688] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1213), 1, - anon_sym_RBRACE, - ACTIONS(1215), 1, + ACTIONS(1208), 1, anon_sym_COMMA, - STATE(578), 1, - aux_sym_import_repeat1, - [29394] = 4, + ACTIONS(1235), 1, + anon_sym_RPAREN, + STATE(612), 1, + aux_sym_tuple_type_repeat1, + [29701] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1056), 1, + ACTIONS(1208), 1, anon_sym_COMMA, - ACTIONS(1217), 1, + ACTIONS(1237), 1, anon_sym_RPAREN, - STATE(694), 1, + STATE(613), 1, aux_sym_tuple_type_repeat1, - [29407] = 4, + [29714] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1219), 1, + ACTIONS(1239), 1, anon_sym_COMMA, - ACTIONS(1222), 1, - anon_sym_GT_GT, - STATE(618), 1, - aux_sym__constant_bit_string_repeat1, - [29420] = 4, + ACTIONS(1241), 1, + anon_sym_RBRACK, + STATE(503), 1, + aux_sym_tuple_repeat1, + [29727] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1224), 1, + ACTIONS(1192), 1, anon_sym_COMMA, - ACTIONS(1227), 1, + ACTIONS(1243), 1, anon_sym_RPAREN, - STATE(619), 1, - aux_sym_type_constructor_arguments_repeat1, - [29433] = 4, + STATE(579), 1, + aux_sym_record_update_arguments_repeat1, + [29740] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1229), 1, - anon_sym_LPAREN, - ACTIONS(1231), 1, + ACTIONS(1245), 1, + anon_sym_if, + ACTIONS(1247), 1, anon_sym_DASH_GT, - STATE(921), 1, - sym_function_parameter_types, - [29446] = 4, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(1168), 1, - sym__name, - ACTIONS(1170), 1, - sym__upname, - STATE(672), 1, - sym_unqualified_import, - [29459] = 2, + STATE(1031), 1, + sym_case_clause_guard, + [29753] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(971), 3, + ACTIONS(1172), 1, anon_sym_COMMA, + ACTIONS(1249), 1, anon_sym_GT_GT, - anon_sym_DASH, - [29468] = 4, + STATE(689), 1, + aux_sym__expression_bit_string_repeat1, + [29766] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1150), 1, + ACTIONS(1004), 3, anon_sym_COMMA, - ACTIONS(1233), 1, anon_sym_RPAREN, - STATE(649), 1, - aux_sym__constant_record_repeat1, - [29481] = 4, + anon_sym_DOT_DOT, + [29775] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1235), 1, + ACTIONS(1186), 1, anon_sym_COMMA, - ACTIONS(1237), 1, - anon_sym_RBRACK, - STATE(500), 1, - aux_sym_tuple_repeat1, - [29494] = 4, + ACTIONS(1251), 1, + anon_sym_RPAREN, + STATE(616), 1, + aux_sym__constant_record_arguments_repeat1, + [29788] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1074), 1, + ACTIONS(1253), 3, anon_sym_COMMA, - ACTIONS(1239), 1, anon_sym_RPAREN, - STATE(565), 1, - aux_sym_type_name_repeat1, - [29507] = 2, + anon_sym_DOT_DOT, + [29797] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1241), 3, + ACTIONS(1172), 1, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [29516] = 4, + ACTIONS(1255), 1, + anon_sym_GT_GT, + STATE(628), 1, + aux_sym__expression_bit_string_repeat1, + [29810] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1074), 1, + ACTIONS(1145), 1, anon_sym_COMMA, - ACTIONS(1243), 1, - anon_sym_RPAREN, - STATE(633), 1, - aux_sym_type_name_repeat1, - [29529] = 4, + ACTIONS(1257), 1, + anon_sym_GT_GT, + STATE(671), 1, + aux_sym__constant_bit_string_repeat1, + [29823] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1245), 1, + ACTIONS(1112), 1, anon_sym_COMMA, - ACTIONS(1248), 1, + ACTIONS(1259), 1, anon_sym_RPAREN, - STATE(628), 1, - aux_sym_arguments_repeat1, - [29542] = 2, + STATE(656), 1, + aux_sym_external_function_parameters_repeat1, + [29836] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1040), 3, + ACTIONS(977), 3, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_DASH, - [29551] = 4, + [29845] = 3, + ACTIONS(1261), 1, + anon_sym_DOT, + ACTIONS(1263), 1, + anon_sym_as, + ACTIONS(1133), 2, + ts_builtin_sym_end, + aux_sym_source_file_token1, + [29856] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1250), 1, + ACTIONS(519), 1, anon_sym_COMMA, - ACTIONS(1252), 1, + ACTIONS(1265), 1, anon_sym_RPAREN, - STATE(638), 1, - aux_sym_constant_tuple_type_repeat1, - [29564] = 2, + STATE(503), 1, + aux_sym_tuple_repeat1, + [29869] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1254), 3, + ACTIONS(1208), 1, anon_sym_COMMA, - anon_sym_EQ, + ACTIONS(1267), 1, anon_sym_RPAREN, - [29573] = 4, + STATE(703), 1, + aux_sym_tuple_type_repeat1, + [29882] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1056), 1, + ACTIONS(1271), 1, + anon_sym_COLON, + ACTIONS(1269), 2, anon_sym_COMMA, - ACTIONS(1256), 1, - anon_sym_RPAREN, - STATE(691), 1, - aux_sym_tuple_type_repeat1, - [29586] = 4, + anon_sym_GT_GT, + [29893] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1258), 1, + ACTIONS(1208), 1, anon_sym_COMMA, - ACTIONS(1261), 1, + ACTIONS(1273), 1, anon_sym_RPAREN, - STATE(633), 1, - aux_sym_type_name_repeat1, - [29599] = 4, + STATE(615), 1, + aux_sym_tuple_type_repeat1, + [29906] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(553), 1, + ACTIONS(1070), 1, anon_sym_COMMA, - ACTIONS(1263), 1, - anon_sym_RPAREN, - STATE(500), 1, - aux_sym_tuple_repeat1, - [29612] = 2, + ACTIONS(1275), 1, + anon_sym_RBRACK, + STATE(553), 1, + aux_sym__constant_tuple_repeat1, + [29919] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1265), 3, + ACTIONS(1070), 1, anon_sym_COMMA, - anon_sym_EQ, + ACTIONS(1277), 1, anon_sym_RPAREN, - [29621] = 4, + STATE(565), 1, + aux_sym__constant_tuple_repeat1, + [29932] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1056), 1, + ACTIONS(1208), 1, anon_sym_COMMA, - ACTIONS(1267), 1, + ACTIONS(1279), 1, anon_sym_RPAREN, - STATE(610), 1, + STATE(615), 1, aux_sym_tuple_type_repeat1, - [29634] = 4, + [29945] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1269), 1, + ACTIONS(1281), 1, anon_sym_COMMA, - ACTIONS(1271), 1, + ACTIONS(1283), 1, anon_sym_RPAREN, - STATE(639), 1, - aux_sym_external_function_parameters_repeat1, - [29647] = 4, + STATE(651), 1, + aux_sym_type_name_repeat1, + [29958] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1273), 1, + ACTIONS(1208), 1, anon_sym_COMMA, - ACTIONS(1276), 1, + ACTIONS(1285), 1, anon_sym_RPAREN, - STATE(638), 1, - aux_sym_constant_tuple_type_repeat1, - [29660] = 4, + STATE(615), 1, + aux_sym_tuple_type_repeat1, + [29971] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1278), 1, + ACTIONS(1289), 1, + anon_sym_COLON, + ACTIONS(1287), 2, anon_sym_COMMA, - ACTIONS(1281), 1, + anon_sym_GT_GT, + [29982] = 4, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(1151), 1, + sym__name, + ACTIONS(1291), 1, anon_sym_RPAREN, - STATE(639), 1, - aux_sym_external_function_parameters_repeat1, - [29673] = 4, + STATE(657), 1, + sym_type_parameter, + [29995] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1250), 1, + ACTIONS(996), 3, anon_sym_COMMA, - ACTIONS(1283), 1, - anon_sym_RPAREN, - STATE(676), 1, - aux_sym_constant_tuple_type_repeat1, - [29686] = 4, + anon_sym_GT_GT, + anon_sym_DASH, + [30004] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1074), 1, + ACTIONS(1293), 1, anon_sym_COMMA, - ACTIONS(1285), 1, + ACTIONS(1296), 1, anon_sym_RPAREN, - STATE(695), 1, - aux_sym_type_name_repeat1, - [29699] = 3, + STATE(649), 1, + aux_sym_arguments_repeat1, + [30017] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1289), 1, - anon_sym_LPAREN, - ACTIONS(1287), 2, - anon_sym_RBRACE, - sym__upname, - [29710] = 2, + ACTIONS(1298), 1, + anon_sym_COMMA, + ACTIONS(1300), 1, + anon_sym_RPAREN, + STATE(595), 1, + aux_sym_type_constructor_arguments_repeat1, + [30030] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1291), 3, + ACTIONS(1302), 1, anon_sym_COMMA, - anon_sym_EQ, + ACTIONS(1305), 1, anon_sym_RPAREN, - [29719] = 4, + STATE(651), 1, + aux_sym_type_name_repeat1, + [30043] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1229), 1, - anon_sym_LPAREN, - ACTIONS(1293), 1, - anon_sym_DASH_GT, - STATE(996), 1, - sym_function_parameter_types, - [29732] = 4, + ACTIONS(1298), 1, + anon_sym_COMMA, + ACTIONS(1307), 1, + anon_sym_RPAREN, + STATE(650), 1, + aux_sym_type_constructor_arguments_repeat1, + [30056] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(446), 1, - sym__upname, - STATE(456), 1, - sym__constructor_pattern, - STATE(613), 1, - sym_constructor_pattern, - [29745] = 4, + ACTIONS(1309), 3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DASH, + [30065] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1295), 1, + ACTIONS(1100), 1, anon_sym_COMMA, - ACTIONS(1297), 1, - anon_sym_RPAREN, - STATE(680), 1, - aux_sym_function_parameters_repeat1, - [29758] = 4, + ACTIONS(1311), 1, + anon_sym_GT_GT, + STATE(574), 1, + aux_sym__pattern_bit_string_repeat1, + [30078] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1299), 1, + ACTIONS(1313), 3, anon_sym_COMMA, - ACTIONS(1302), 1, anon_sym_GT_GT, - STATE(647), 1, - aux_sym__pattern_bit_string_repeat1, - [29771] = 4, + anon_sym_DASH, + [30087] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1211), 1, - sym__name, - ACTIONS(1304), 1, + ACTIONS(1315), 1, + anon_sym_COMMA, + ACTIONS(1318), 1, anon_sym_RPAREN, - STATE(625), 1, - sym_type_parameter, - [29784] = 4, + STATE(656), 1, + aux_sym_external_function_parameters_repeat1, + [30100] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1306), 1, + ACTIONS(1281), 1, anon_sym_COMMA, - ACTIONS(1309), 1, + ACTIONS(1320), 1, anon_sym_RPAREN, - STATE(649), 1, - aux_sym__constant_record_repeat1, - [29797] = 2, + STATE(674), 1, + aux_sym_type_name_repeat1, + [30113] = 4, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(1322), 1, + anon_sym_LPAREN, + ACTIONS(1324), 1, + anon_sym_DASH_GT, + STATE(863), 1, + sym_function_parameter_types, + [30126] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1311), 3, + ACTIONS(1145), 1, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [29806] = 2, + ACTIONS(1326), 1, + anon_sym_GT_GT, + STATE(633), 1, + aux_sym__constant_bit_string_repeat1, + [30139] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1313), 3, + ACTIONS(1070), 1, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [29815] = 4, + ACTIONS(1328), 1, + anon_sym_RBRACK, + STATE(641), 1, + aux_sym__constant_tuple_repeat1, + [30152] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1250), 1, + ACTIONS(1200), 1, anon_sym_COMMA, - ACTIONS(1315), 1, + ACTIONS(1330), 1, anon_sym_RPAREN, - STATE(630), 1, + STATE(572), 1, aux_sym_constant_tuple_type_repeat1, - [29828] = 2, + [30165] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1317), 3, + ACTIONS(1332), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, - [29837] = 4, + [30174] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1092), 1, - sym__name, - ACTIONS(1319), 1, + ACTIONS(1200), 1, + anon_sym_COMMA, + ACTIONS(1334), 1, anon_sym_RPAREN, - STATE(604), 1, - sym__constant_record_arg, - [29850] = 4, + STATE(572), 1, + aux_sym_constant_tuple_type_repeat1, + [30187] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1150), 1, + ACTIONS(1336), 3, anon_sym_COMMA, - ACTIONS(1321), 1, + anon_sym_EQ, anon_sym_RPAREN, - STATE(623), 1, - aux_sym__constant_record_repeat1, - [29863] = 3, + [30196] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1325), 1, - anon_sym_COLON, - ACTIONS(1323), 2, + ACTIONS(1338), 3, anon_sym_COMMA, + anon_sym_EQ, anon_sym_RPAREN, - [29874] = 4, + [30205] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1094), 1, + ACTIONS(1186), 1, anon_sym_COMMA, - ACTIONS(1327), 1, - anon_sym_GT_GT, - STATE(618), 1, - aux_sym__constant_bit_string_repeat1, - [29887] = 4, + ACTIONS(1340), 1, + anon_sym_RPAREN, + STATE(567), 1, + aux_sym__constant_record_arguments_repeat1, + [30218] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(553), 1, - anon_sym_COMMA, - ACTIONS(1329), 1, - anon_sym_RPAREN, - STATE(500), 1, - aux_sym_tuple_repeat1, - [29900] = 4, + ACTIONS(1322), 1, + anon_sym_LPAREN, + ACTIONS(1342), 1, + anon_sym_DASH_GT, + STATE(929), 1, + sym_function_parameter_types, + [30231] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1144), 1, + ACTIONS(1125), 1, anon_sym_COMMA, - ACTIONS(1331), 1, - anon_sym_RBRACK, - STATE(536), 1, - aux_sym__constant_tuple_repeat1, - [29913] = 4, + ACTIONS(1344), 1, + anon_sym_RBRACE, + STATE(680), 1, + aux_sym_import_repeat1, + [30244] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(904), 1, + ACTIONS(1281), 1, anon_sym_COMMA, - ACTIONS(1333), 1, + ACTIONS(1346), 1, anon_sym_RPAREN, - STATE(480), 1, - aux_sym_case_clause_pattern_repeat1, - [29926] = 4, + STATE(644), 1, + aux_sym_type_name_repeat1, + [30257] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1144), 1, + ACTIONS(1070), 1, anon_sym_COMMA, - ACTIONS(1335), 1, - anon_sym_RPAREN, - STATE(592), 1, + ACTIONS(1348), 1, + anon_sym_RBRACK, + STATE(684), 1, aux_sym__constant_tuple_repeat1, - [29939] = 4, + [30270] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1337), 1, + ACTIONS(1350), 1, anon_sym_COMMA, - ACTIONS(1340), 1, + ACTIONS(1353), 1, anon_sym_GT_GT, - STATE(662), 1, - aux_sym__expression_bit_string_repeat1, - [29952] = 4, + STATE(671), 1, + aux_sym__constant_bit_string_repeat1, + [30283] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1094), 1, + ACTIONS(1145), 1, anon_sym_COMMA, - ACTIONS(1342), 1, + ACTIONS(1355), 1, anon_sym_GT_GT, - STATE(606), 1, + STATE(686), 1, aux_sym__constant_bit_string_repeat1, - [29965] = 3, + [30296] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1346), 1, - anon_sym_as, - ACTIONS(1344), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [29976] = 4, + ACTIONS(446), 1, + sym__upname, + STATE(453), 1, + sym__constructor_pattern, + STATE(631), 1, + sym_constructor_pattern, + [30309] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1180), 1, + ACTIONS(1281), 1, anon_sym_COMMA, - ACTIONS(1348), 1, + ACTIONS(1357), 1, anon_sym_RPAREN, - STATE(619), 1, - aux_sym_type_constructor_arguments_repeat1, - [29989] = 4, + STATE(651), 1, + aux_sym_type_name_repeat1, + [30322] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1056), 1, + ACTIONS(1074), 1, anon_sym_COMMA, - ACTIONS(1350), 1, + ACTIONS(1359), 1, anon_sym_RPAREN, - STATE(610), 1, - aux_sym_tuple_type_repeat1, - [30002] = 4, + STATE(566), 1, + aux_sym_arguments_repeat1, + [30335] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(949), 1, - anon_sym_COLON, - ACTIONS(1352), 1, - anon_sym_EQ, - STATE(951), 1, - sym__type_annotation, - [30015] = 4, + ACTIONS(1361), 1, + anon_sym_COMMA, + ACTIONS(1364), 1, + anon_sym_GT_GT, + STATE(676), 1, + aux_sym__pattern_bit_string_repeat1, + [30348] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1056), 1, + ACTIONS(1085), 1, anon_sym_COMMA, - ACTIONS(1354), 1, + ACTIONS(1366), 1, anon_sym_RPAREN, - STATE(610), 1, - aux_sym_tuple_type_repeat1, - [30028] = 4, - ACTIONS(3), 1, + STATE(569), 1, + aux_sym_function_parameters_repeat1, + [30361] = 3, + ACTIONS(1370), 1, + anon_sym_LPAREN, + STATE(825), 1, + sym__constant_record_arguments, + ACTIONS(1368), 2, + ts_builtin_sym_end, aux_sym_source_file_token1, - ACTIONS(1215), 1, - anon_sym_COMMA, - ACTIONS(1356), 1, - anon_sym_RBRACE, - STATE(578), 1, - aux_sym_import_repeat1, - [30041] = 4, + [30372] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1168), 1, + ACTIONS(1151), 1, sym__name, - ACTIONS(1170), 1, - sym__upname, - STATE(762), 1, - sym_unqualified_import, - [30054] = 3, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(1358), 1, - anon_sym_as, - ACTIONS(1344), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [30065] = 4, + ACTIONS(1372), 1, + anon_sym_RPAREN, + STATE(669), 1, + sym_type_parameter, + [30385] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1215), 1, + ACTIONS(1125), 1, anon_sym_COMMA, - ACTIONS(1360), 1, + ACTIONS(1374), 1, anon_sym_RBRACE, - STATE(669), 1, + STATE(685), 1, aux_sym_import_repeat1, - [30078] = 2, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(1362), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [30087] = 2, + [30398] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1364), 3, + ACTIONS(1070), 1, anon_sym_COMMA, + ACTIONS(1376), 1, anon_sym_RPAREN, - anon_sym_COLON, - [30096] = 4, + STATE(707), 1, + aux_sym__constant_tuple_repeat1, + [30411] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(904), 1, + ACTIONS(1048), 3, anon_sym_COMMA, - ACTIONS(1366), 1, anon_sym_RPAREN, - STATE(660), 1, - aux_sym_case_clause_pattern_repeat1, - [30109] = 4, + anon_sym_RBRACK, + [30420] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1250), 1, + ACTIONS(1070), 1, anon_sym_COMMA, - ACTIONS(1368), 1, + ACTIONS(1378), 1, anon_sym_RPAREN, - STATE(638), 1, - aux_sym_constant_tuple_type_repeat1, - [30122] = 4, + STATE(553), 1, + aux_sym__constant_tuple_repeat1, + [30433] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1070), 1, anon_sym_COMMA, - ACTIONS(1370), 1, - anon_sym_GT_GT, - STATE(647), 1, - aux_sym__pattern_bit_string_repeat1, - [30135] = 4, + ACTIONS(1380), 1, + anon_sym_RBRACK, + STATE(553), 1, + aux_sym__constant_tuple_repeat1, + [30446] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1211), 1, - sym__name, - ACTIONS(1372), 1, - anon_sym_RPAREN, - STATE(699), 1, - sym_type_parameter, - [30148] = 4, + ACTIONS(1382), 1, + anon_sym_RBRACE, + ACTIONS(1384), 1, + anon_sym_COMMA, + STATE(685), 1, + aux_sym_import_repeat1, + [30459] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1086), 1, + ACTIONS(1145), 1, anon_sym_COMMA, - ACTIONS(1374), 1, + ACTIONS(1387), 1, anon_sym_GT_GT, - STATE(582), 1, - aux_sym__expression_bit_string_repeat1, - [30161] = 4, + STATE(671), 1, + aux_sym__constant_bit_string_repeat1, + [30472] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1295), 1, + ACTIONS(1186), 1, anon_sym_COMMA, - ACTIONS(1376), 1, + ACTIONS(1389), 1, anon_sym_RPAREN, - STATE(684), 1, - aux_sym_function_parameters_repeat1, - [30174] = 4, + STATE(705), 1, + aux_sym__constant_record_arguments_repeat1, + [30485] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1144), 1, + ACTIONS(1208), 1, anon_sym_COMMA, - ACTIONS(1378), 1, + ACTIONS(1391), 1, anon_sym_RPAREN, STATE(704), 1, - aux_sym__constant_tuple_repeat1, - [30187] = 3, + aux_sym_tuple_type_repeat1, + [30498] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1382), 1, - anon_sym_COLON, - ACTIONS(1380), 2, + ACTIONS(1393), 1, anon_sym_COMMA, + ACTIONS(1396), 1, anon_sym_GT_GT, - [30198] = 4, + STATE(689), 1, + aux_sym__expression_bit_string_repeat1, + [30511] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1086), 1, + ACTIONS(1281), 1, anon_sym_COMMA, - ACTIONS(1384), 1, - anon_sym_GT_GT, - STATE(596), 1, - aux_sym__expression_bit_string_repeat1, - [30211] = 4, + ACTIONS(1398), 1, + anon_sym_RPAREN, + STATE(651), 1, + aux_sym_type_name_repeat1, + [30524] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1386), 1, + ACTIONS(1400), 1, anon_sym_COMMA, - ACTIONS(1389), 1, + ACTIONS(1403), 1, anon_sym_RPAREN, - STATE(684), 1, + STATE(691), 1, aux_sym_function_parameters_repeat1, - [30224] = 2, + [30537] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1391), 3, + ACTIONS(519), 1, anon_sym_COMMA, + ACTIONS(1405), 1, anon_sym_RPAREN, - anon_sym_DOT_DOT, - [30233] = 2, + STATE(503), 1, + aux_sym_tuple_repeat1, + [30550] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1393), 3, + ACTIONS(1172), 1, anon_sym_COMMA, + ACTIONS(1407), 1, anon_sym_GT_GT, - anon_sym_DASH, - [30242] = 4, + STATE(689), 1, + aux_sym__expression_bit_string_repeat1, + [30563] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1144), 1, + ACTIONS(1409), 1, anon_sym_COMMA, - ACTIONS(1395), 1, + ACTIONS(1411), 1, anon_sym_RBRACK, - STATE(608), 1, - aux_sym__constant_tuple_repeat1, - [30255] = 4, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(949), 1, - anon_sym_COLON, - ACTIONS(1397), 1, - anon_sym_EQ, - STATE(922), 1, - sym__type_annotation, - [30268] = 4, + STATE(503), 1, + aux_sym_tuple_repeat1, + [30576] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1215), 1, + ACTIONS(1281), 1, anon_sym_COMMA, - ACTIONS(1399), 1, - anon_sym_RBRACE, - STATE(616), 1, - aux_sym_import_repeat1, - [30281] = 4, + ACTIONS(1413), 1, + anon_sym_RPAREN, + STATE(690), 1, + aux_sym_type_name_repeat1, + [30589] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1122), 1, - anon_sym_COMMA, - ACTIONS(1401), 1, - anon_sym_RPAREN, - STATE(628), 1, - aux_sym_arguments_repeat1, - [30294] = 4, + ACTIONS(1417), 1, + anon_sym_LPAREN, + ACTIONS(1415), 2, + anon_sym_RBRACE, + sym__upname, + [30600] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1056), 1, + ACTIONS(928), 1, anon_sym_COMMA, - ACTIONS(1403), 1, + ACTIONS(1419), 1, anon_sym_RPAREN, - STATE(610), 1, - aux_sym_tuple_type_repeat1, - [30307] = 4, + STATE(487), 1, + aux_sym_case_clause_pattern_repeat1, + [30613] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(949), 1, + ACTIONS(963), 1, anon_sym_COLON, - ACTIONS(1405), 1, + ACTIONS(1421), 1, anon_sym_EQ, - STATE(919), 1, + STATE(898), 1, sym__type_annotation, - [30320] = 3, - ACTIONS(3), 1, - aux_sym_source_file_token1, - STATE(1061), 1, - sym_target, - ACTIONS(1407), 2, - anon_sym_erlang, - anon_sym_javascript, - [30331] = 4, + [30626] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1056), 1, - anon_sym_COMMA, - ACTIONS(1409), 1, - anon_sym_RPAREN, - STATE(610), 1, - aux_sym_tuple_type_repeat1, - [30344] = 4, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(1074), 1, - anon_sym_COMMA, - ACTIONS(1411), 1, - anon_sym_RPAREN, - STATE(633), 1, - aux_sym_type_name_repeat1, - [30357] = 4, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(1144), 1, + ACTIONS(1172), 1, anon_sym_COMMA, - ACTIONS(1413), 1, - anon_sym_RBRACK, - STATE(659), 1, - aux_sym__constant_tuple_repeat1, - [30370] = 3, + ACTIONS(1423), 1, + anon_sym_GT_GT, + STATE(693), 1, + aux_sym__expression_bit_string_repeat1, + [30639] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1417), 1, - anon_sym_COLON, - ACTIONS(1415), 2, + ACTIONS(519), 1, anon_sym_COMMA, - anon_sym_GT_GT, - [30381] = 4, + ACTIONS(1425), 1, + anon_sym_LBRACE, + STATE(503), 1, + aux_sym_tuple_repeat1, + [30652] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1229), 1, + ACTIONS(1322), 1, anon_sym_LPAREN, - ACTIONS(1419), 1, + ACTIONS(1427), 1, anon_sym_DASH_GT, - STATE(855), 1, + STATE(817), 1, sym_function_parameter_types, - [30394] = 4, + [30665] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1074), 1, + ACTIONS(1208), 1, anon_sym_COMMA, - ACTIONS(1421), 1, + ACTIONS(1429), 1, anon_sym_RPAREN, - STATE(627), 1, - aux_sym_type_name_repeat1, - [30407] = 4, + STATE(640), 1, + aux_sym_tuple_type_repeat1, + [30678] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1150), 1, + ACTIONS(1208), 1, anon_sym_COMMA, - ACTIONS(1423), 1, + ACTIONS(1431), 1, anon_sym_RPAREN, - STATE(649), 1, - aux_sym__constant_record_repeat1, - [30420] = 4, + STATE(615), 1, + aux_sym_tuple_type_repeat1, + [30691] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1425), 1, - anon_sym_if, - ACTIONS(1427), 1, - anon_sym_DASH_GT, - STATE(893), 1, - sym_case_clause_guard, - [30433] = 4, + ACTIONS(1208), 1, + anon_sym_COMMA, + ACTIONS(1433), 1, + anon_sym_RPAREN, + STATE(615), 1, + aux_sym_tuple_type_repeat1, + [30704] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1094), 1, + ACTIONS(1186), 1, anon_sym_COMMA, - ACTIONS(1429), 1, - anon_sym_GT_GT, - STATE(657), 1, - aux_sym__constant_bit_string_repeat1, - [30446] = 4, + ACTIONS(1435), 1, + anon_sym_RPAREN, + STATE(567), 1, + aux_sym__constant_record_arguments_repeat1, + [30717] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1269), 1, + ACTIONS(1208), 1, anon_sym_COMMA, - ACTIONS(1431), 1, + ACTIONS(1437), 1, anon_sym_RPAREN, - STATE(637), 1, - aux_sym_external_function_parameters_repeat1, - [30459] = 4, + STATE(643), 1, + aux_sym_tuple_type_repeat1, + [30730] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1144), 1, + ACTIONS(1070), 1, anon_sym_COMMA, - ACTIONS(1433), 1, + ACTIONS(1439), 1, anon_sym_RPAREN, - STATE(536), 1, + STATE(553), 1, aux_sym__constant_tuple_repeat1, - [30472] = 4, + [30743] = 4, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1092), 1, - sym__name, - ACTIONS(1435), 1, + ACTIONS(1208), 1, + anon_sym_COMMA, + ACTIONS(1441), 1, anon_sym_RPAREN, - STATE(655), 1, - sym__constant_record_arg, - [30485] = 3, + STATE(645), 1, + aux_sym_tuple_type_repeat1, + [30756] = 4, + ACTIONS(625), 1, + anon_sym_RBRACE, + ACTIONS(1368), 1, + aux_sym_source_file_token1, + ACTIONS(1443), 1, + anon_sym_LPAREN, + STATE(866), 1, + sym__constant_record_arguments, + [30769] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(849), 1, - sym__name, - STATE(585), 1, - sym_identifier, - [30495] = 2, + ACTIONS(745), 1, + sym__upname, + STATE(513), 1, + sym_type, + [30779] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1437), 2, + ACTIONS(1445), 2, anon_sym_LBRACE, anon_sym_EQ, - [30503] = 3, + [30787] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1439), 1, - sym__name, - STATE(61), 1, - sym_identifier, - [30513] = 3, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(713), 1, + ACTIONS(1447), 1, sym__upname, - STATE(985), 1, - sym__constant_record, - [30523] = 2, + STATE(262), 1, + sym_record, + [30797] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1441), 2, + ACTIONS(1403), 2, anon_sym_COMMA, anon_sym_RPAREN, - [30531] = 3, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(1211), 1, - sym__name, - STATE(754), 1, - sym_type_parameter, - [30541] = 2, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(1443), 2, - anon_sym_LBRACE, - anon_sym_EQ, - [30549] = 3, + [30805] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1445), 1, - sym_string, - STATE(910), 1, - sym_external_function_body, - [30559] = 3, - ACTIONS(1158), 1, - anon_sym_RBRACE, - ACTIONS(1447), 1, - aux_sym_source_file_token1, ACTIONS(1449), 1, - anon_sym_LPAREN, - [30569] = 3, + anon_sym_LBRACE, + ACTIONS(1451), 1, + anon_sym_DASH_GT, + [30815] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1451), 1, - sym__name, - STATE(915), 1, - sym_alias, - [30579] = 3, - ACTIONS(629), 1, - anon_sym_RBRACE, ACTIONS(1453), 1, - aux_sym_source_file_token1, - ACTIONS(1455), 1, - anon_sym_LPAREN, - [30589] = 3, + sym__name, + STATE(188), 1, + sym_identifier, + [30825] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, + ACTIONS(1455), 1, + anon_sym_LBRACE, ACTIONS(1457), 1, - anon_sym_COMMA, - ACTIONS(1459), 1, - anon_sym_RPAREN, - [30599] = 2, + anon_sym_DASH_GT, + [30835] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1461), 2, + ACTIONS(1459), 2, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_RPAREN, - [30607] = 2, + [30843] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1463), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [30615] = 3, - ACTIONS(920), 1, - anon_sym_RBRACE, + ACTIONS(1461), 1, + sym_string, + STATE(889), 1, + sym_external_function_body, + [30853] = 2, ACTIONS(1465), 1, - aux_sym_source_file_token1, - ACTIONS(1467), 1, anon_sym_DOT, - [30625] = 3, - ACTIONS(898), 1, + ACTIONS(1463), 2, + ts_builtin_sym_end, + aux_sym_source_file_token1, + [30861] = 3, + ACTIONS(1214), 1, anon_sym_RBRACE, - ACTIONS(1469), 1, + ACTIONS(1467), 1, aux_sym_source_file_token1, - ACTIONS(1471), 1, + ACTIONS(1469), 1, anon_sym_LPAREN, - [30635] = 2, + [30871] = 2, + ACTIONS(1473), 1, + anon_sym_LPAREN, + ACTIONS(1471), 2, + ts_builtin_sym_end, + aux_sym_source_file_token1, + [30879] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1473), 2, + ACTIONS(1475), 2, anon_sym_COMMA, anon_sym_RPAREN, - [30643] = 3, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(1475), 1, - sym__name, - STATE(865), 1, - sym_alias, - [30653] = 3, + [30887] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1477), 1, - sym__upname, - STATE(867), 1, - sym_type_name, - [30663] = 3, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(683), 1, - sym__upname, - STATE(829), 1, - sym__constant_record, - [30673] = 3, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(849), 1, - sym__name, - STATE(61), 1, - sym_identifier, - [30683] = 2, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(208), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [30691] = 3, + anon_sym_LBRACE, + ACTIONS(1479), 1, + anon_sym_DASH_GT, + [30897] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(797), 1, - sym__upname, - STATE(824), 1, - sym_type, - [30701] = 2, + ACTIONS(1461), 1, + sym_string, + STATE(903), 1, + sym_external_function_body, + [30907] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1479), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [30709] = 3, + ACTIONS(1481), 1, + sym_string, + STATE(1069), 1, + sym_external_function_body, + [30917] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1481), 1, - anon_sym_LBRACE, ACTIONS(1483), 1, - anon_sym_DASH_GT, - [30719] = 3, - ACTIONS(3), 1, + sym__name, + STATE(984), 1, + sym_alias, + [30927] = 3, + ACTIONS(951), 1, + anon_sym_RBRACE, + ACTIONS(1463), 1, aux_sym_source_file_token1, ACTIONS(1485), 1, - sym__name, - STATE(583), 1, - sym_module, - [30729] = 3, + anon_sym_DOT, + [30937] = 3, + ACTIONS(955), 1, + anon_sym_RBRACE, + ACTIONS(1471), 1, + aux_sym_source_file_token1, ACTIONS(1487), 1, + anon_sym_LPAREN, + [30947] = 2, + ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1490), 1, + ACTIONS(1382), 2, anon_sym_RBRACE, - STATE(732), 1, - aux_sym_target_group_repeat1, - [30739] = 2, - ACTIONS(1494), 1, + anon_sym_COMMA, + [30955] = 2, + ACTIONS(1491), 1, anon_sym_as, - ACTIONS(1492), 2, + ACTIONS(1489), 2, ts_builtin_sym_end, aux_sym_source_file_token1, - [30747] = 3, + [30963] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1475), 1, - sym__name, - STATE(850), 1, - sym_alias, - [30757] = 3, - ACTIONS(481), 1, - anon_sym_RBRACE, - ACTIONS(1496), 1, - aux_sym_source_file_token1, - STATE(732), 1, - aux_sym_target_group_repeat1, - [30767] = 2, + ACTIONS(1493), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [30971] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1309), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [30775] = 3, + ACTIONS(695), 1, + sym__upname, + STATE(860), 1, + sym__constant_record, + [30981] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(849), 1, + ACTIONS(873), 1, sym__name, - STATE(250), 1, + STATE(60), 1, sym_identifier, - [30785] = 2, + [30991] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1498), 2, + ACTIONS(1364), 2, anon_sym_COMMA, anon_sym_GT_GT, - [30793] = 2, + [30999] = 3, + ACTIONS(1495), 1, + ts_builtin_sym_end, + ACTIONS(1497), 1, + aux_sym_source_file_token1, + STATE(783), 1, + aux_sym_source_file_repeat1, + [31009] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1340), 2, + ACTIONS(811), 1, + sym__upname, + STATE(855), 1, + sym_type, + [31019] = 2, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(1499), 2, anon_sym_COMMA, anon_sym_GT_GT, - [30801] = 2, + [31027] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1500), 2, + ACTIONS(1353), 2, anon_sym_COMMA, anon_sym_GT_GT, - [30809] = 2, + [31035] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1302), 2, + ACTIONS(1501), 2, anon_sym_COMMA, - anon_sym_GT_GT, - [30817] = 3, + anon_sym_RPAREN, + [31043] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1502), 1, - sym_string, - STATE(845), 1, - sym_external_function_body, - [30827] = 3, + ACTIONS(1503), 1, + anon_sym_LBRACE, + ACTIONS(1505), 1, + anon_sym_DASH_GT, + [31053] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1504), 1, + ACTIONS(1507), 1, anon_sym_LBRACE, - ACTIONS(1506), 1, + ACTIONS(1509), 1, anon_sym_DASH_GT, - [30837] = 2, - ACTIONS(1508), 1, - anon_sym_LPAREN, - ACTIONS(1469), 2, - ts_builtin_sym_end, + [31063] = 3, + ACTIONS(3), 1, aux_sym_source_file_token1, - [30845] = 2, - ACTIONS(1510), 1, + ACTIONS(1511), 1, anon_sym_DOT, - ACTIONS(1465), 2, - ts_builtin_sym_end, - aux_sym_source_file_token1, - [30853] = 2, + ACTIONS(1513), 1, + anon_sym_COLON, + [31073] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1512), 2, - anon_sym_RBRACE, - sym__upname, - [30861] = 2, + ACTIONS(1515), 1, + sym__name, + STATE(904), 1, + sym_alias, + [31083] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1276), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [30869] = 2, + ACTIONS(873), 1, + sym__name, + STATE(252), 1, + sym_identifier, + [31093] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1514), 2, + ACTIONS(1096), 2, anon_sym_COMMA, anon_sym_RPAREN, - [30877] = 3, - ACTIONS(1516), 1, - aux_sym_source_file_token1, - ACTIONS(1518), 1, - anon_sym_RBRACE, - ACTIONS(1520), 1, - anon_sym_as, - [30887] = 3, + [31101] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1475), 1, - sym__name, - STATE(852), 1, - sym_alias, - [30897] = 2, + ACTIONS(446), 1, + sym__upname, + STATE(450), 1, + sym__constructor_pattern, + [31111] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1522), 2, + ACTIONS(1318), 2, anon_sym_COMMA, anon_sym_RPAREN, - [30905] = 2, + [31119] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1524), 2, + ACTIONS(1517), 1, anon_sym_LBRACE, - anon_sym_EQ, - [30913] = 2, + ACTIONS(1519), 1, + anon_sym_DASH_GT, + [31129] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1281), 2, + ACTIONS(1521), 2, anon_sym_COMMA, anon_sym_RPAREN, - [30921] = 2, + [31137] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1261), 2, + ACTIONS(1296), 2, anon_sym_COMMA, anon_sym_RPAREN, - [30929] = 3, + [31145] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1445), 1, - sym_string, - STATE(900), 1, - sym_external_function_body, - [30939] = 3, + ACTIONS(873), 1, + sym__name, + STATE(1001), 1, + sym_identifier, + [31155] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(787), 1, + ACTIONS(1523), 2, + anon_sym_RBRACE, sym__upname, - STATE(970), 1, - sym_type, - [30949] = 3, + [31163] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1526), 1, - sym__upname, - STATE(93), 1, - sym_record, - [30959] = 2, + ACTIONS(1525), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [31171] = 2, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(1527), 2, + anon_sym_LBRACE, + anon_sym_EQ, + [31179] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1528), 2, + ACTIONS(1305), 2, anon_sym_COMMA, - anon_sym_GT_GT, - [30967] = 3, + anon_sym_RPAREN, + [31187] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1530), 1, - anon_sym_LBRACE, - ACTIONS(1532), 1, - anon_sym_DASH_GT, - [30977] = 2, - ACTIONS(1534), 1, - anon_sym_LPAREN, - ACTIONS(1453), 2, - ts_builtin_sym_end, + ACTIONS(1529), 2, + anon_sym_RBRACE, + sym__upname, + [31195] = 3, + ACTIONS(1489), 1, aux_sym_source_file_token1, - [30985] = 3, + ACTIONS(1531), 1, + anon_sym_RBRACE, + ACTIONS(1533), 1, + anon_sym_as, + [31205] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1536), 1, - anon_sym_LBRACE, - ACTIONS(1538), 1, - anon_sym_DASH_GT, - [30995] = 2, + ACTIONS(1515), 1, + sym__name, + STATE(922), 1, + sym_alias, + [31215] = 3, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(1515), 1, + sym__name, + STATE(908), 1, + sym_alias, + [31225] = 3, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(1535), 1, + sym__upname, + STATE(962), 1, + sym_type_name, + [31235] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1113), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [31003] = 2, + ACTIONS(1537), 1, + anon_sym_type, + ACTIONS(1539), 1, + anon_sym_fn, + [31245] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1227), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [31011] = 2, + ACTIONS(1481), 1, + sym_string, + STATE(1059), 1, + sym_external_function_body, + [31255] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1248), 2, + ACTIONS(1541), 2, anon_sym_COMMA, anon_sym_RPAREN, - [31019] = 2, + [31263] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1540), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [31027] = 3, + ACTIONS(873), 1, + sym__name, + STATE(583), 1, + sym_identifier, + [31273] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1542), 1, + ACTIONS(1543), 1, anon_sym_LBRACE, - ACTIONS(1544), 1, + ACTIONS(1545), 1, anon_sym_DASH_GT, - [31037] = 3, + [31283] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1546), 1, - anon_sym_LBRACE, - ACTIONS(1548), 1, - anon_sym_DASH_GT, - [31047] = 3, - ACTIONS(1492), 1, + ACTIONS(873), 1, + sym__name, + STATE(621), 1, + sym_identifier, + [31293] = 3, + ACTIONS(1547), 1, aux_sym_source_file_token1, - ACTIONS(1550), 1, + ACTIONS(1549), 1, anon_sym_RBRACE, - ACTIONS(1552), 1, + ACTIONS(1551), 1, anon_sym_as, - [31057] = 3, + [31303] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(731), 1, + ACTIONS(543), 1, sym__upname, - STATE(518), 1, - sym_type, - [31067] = 3, + STATE(396), 1, + sym__constant_record, + [31313] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1092), 1, - sym__name, - STATE(736), 1, - sym__constant_record_arg, - [31077] = 3, - ACTIONS(1554), 1, + ACTIONS(1553), 1, + sym__upname, + STATE(970), 1, + sym_type_name, + [31323] = 2, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(1555), 2, + anon_sym_LBRACE, + anon_sym_EQ, + [31331] = 3, + ACTIONS(1557), 1, aux_sym_source_file_token1, - ACTIONS(1556), 1, + ACTIONS(1559), 1, anon_sym_RBRACE, - STATE(735), 1, + STATE(774), 1, aux_sym_target_group_repeat1, - [31087] = 3, - ACTIONS(1558), 1, + [31341] = 3, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(1561), 1, + sym__name, + STATE(587), 1, + sym_module, + [31351] = 3, + ACTIONS(1563), 1, ts_builtin_sym_end, - ACTIONS(1560), 1, + ACTIONS(1565), 1, aux_sym_source_file_token1, - STATE(772), 1, + STATE(773), 1, aux_sym_source_file_repeat1, - [31097] = 2, + [31361] = 3, + ACTIONS(481), 1, + anon_sym_RBRACE, + ACTIONS(1568), 1, + aux_sym_source_file_token1, + STATE(793), 1, + aux_sym_target_group_repeat1, + [31371] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1563), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [31105] = 2, + ACTIONS(1570), 1, + sym__upname, + STATE(207), 1, + sym_record, + [31381] = 3, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(1572), 1, + anon_sym_LBRACE, + ACTIONS(1574), 1, + anon_sym_EQ, + [31391] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1201), 2, + ACTIONS(1221), 2, anon_sym_COMMA, anon_sym_RPAREN, - [31113] = 2, + [31399] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1222), 2, + ACTIONS(1576), 2, anon_sym_COMMA, - anon_sym_GT_GT, - [31121] = 3, + anon_sym_RPAREN, + [31407] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(531), 1, - sym__upname, - STATE(380), 1, - sym__constant_record, - [31131] = 3, + ACTIONS(346), 1, + anon_sym_COLON, + ACTIONS(1578), 1, + anon_sym_DOT, + [31417] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1565), 1, - anon_sym_LBRACE, - ACTIONS(1567), 1, - anon_sym_DASH_GT, - [31141] = 2, + ACTIONS(1580), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [31425] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1569), 2, - anon_sym_RBRACE, - sym__upname, - [31149] = 3, + ACTIONS(1164), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [31433] = 2, + ACTIONS(1582), 1, + anon_sym_LPAREN, + ACTIONS(1467), 2, + ts_builtin_sym_end, + aux_sym_source_file_token1, + [31441] = 3, + ACTIONS(428), 1, + ts_builtin_sym_end, + ACTIONS(1584), 1, + aux_sym_source_file_token1, + STATE(773), 1, + aux_sym_source_file_repeat1, + [31451] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1502), 1, - sym_string, - STATE(849), 1, - sym_external_function_body, - [31159] = 3, + ACTIONS(1396), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [31459] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(857), 1, + ACTIONS(679), 1, sym__upname, - STATE(651), 1, - sym_constant_type, - [31169] = 3, + STATE(831), 1, + sym__constant_record, + [31469] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1571), 1, + ACTIONS(1586), 1, anon_sym_LBRACE, - ACTIONS(1573), 1, + ACTIONS(1588), 1, anon_sym_DASH_GT, - [31179] = 3, + [31479] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1451), 1, - sym__name, - STATE(1031), 1, - sym_alias, - [31189] = 3, + ACTIONS(1590), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [31487] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1575), 1, - sym__upname, - STATE(210), 1, - sym_record, - [31199] = 2, + ACTIONS(1592), 1, + anon_sym_type, + ACTIONS(1594), 1, + anon_sym_fn, + [31497] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1577), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [31207] = 3, - ACTIONS(428), 1, + ACTIONS(1596), 1, + anon_sym_LBRACE, + ACTIONS(1598), 1, + anon_sym_EQ, + [31507] = 2, + ACTIONS(1600), 1, + anon_sym_as, + ACTIONS(1547), 2, ts_builtin_sym_end, - ACTIONS(1579), 1, aux_sym_source_file_token1, - STATE(772), 1, - aux_sym_source_file_repeat1, - [31217] = 3, + [31515] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1581), 1, + ACTIONS(867), 1, sym__upname, - STATE(267), 1, - sym_record, - [31227] = 3, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(1583), 1, - anon_sym_LBRACE, - ACTIONS(1585), 1, - anon_sym_EQ, - [31237] = 3, + STATE(617), 1, + sym_constant_type, + [31525] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1587), 1, - anon_sym_LBRACE, - ACTIONS(1589), 1, - anon_sym_DASH_GT, - [31247] = 3, - ACTIONS(3), 1, + ACTIONS(1602), 1, + sym__name, + STATE(60), 1, + sym_identifier, + [31535] = 3, + ACTIONS(1604), 1, aux_sym_source_file_token1, - ACTIONS(1591), 1, - anon_sym_LBRACE, - ACTIONS(1593), 1, - anon_sym_EQ, - [31257] = 2, + ACTIONS(1607), 1, + anon_sym_RBRACE, + STATE(793), 1, + aux_sym_target_group_repeat1, + [31545] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1595), 2, + ACTIONS(1609), 1, anon_sym_COMMA, + ACTIONS(1611), 1, anon_sym_RPAREN, - [31265] = 3, + [31555] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1597), 1, + ACTIONS(1613), 1, sym__upname, - STATE(1039), 1, - sym_type_name, - [31275] = 2, - ACTIONS(1599), 1, - anon_sym_LPAREN, - ACTIONS(1447), 2, - ts_builtin_sym_end, - aux_sym_source_file_token1, - [31283] = 3, + STATE(80), 1, + sym_record, + [31565] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1601), 1, - anon_sym_DOT, - ACTIONS(1603), 1, - anon_sym_COLON, - [31293] = 2, + ACTIONS(1119), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [31573] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1605), 2, + ACTIONS(1615), 2, anon_sym_COMMA, anon_sym_RPAREN, - [31301] = 3, + [31581] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1607), 1, - anon_sym_type, - ACTIONS(1609), 1, - anon_sym_fn, - [31311] = 2, + ACTIONS(1617), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [31589] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1107), 2, + ACTIONS(1619), 2, anon_sym_COMMA, anon_sym_RPAREN, - [31319] = 2, - ACTIONS(1611), 1, - anon_sym_as, - ACTIONS(1516), 2, - ts_builtin_sym_end, - aux_sym_source_file_token1, - [31327] = 3, + [31597] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1613), 1, - sym__name, - STATE(185), 1, - sym_identifier, - [31337] = 2, + ACTIONS(1621), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [31605] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1615), 2, - anon_sym_RBRACE, + ACTIONS(1623), 2, anon_sym_COMMA, - [31345] = 3, + anon_sym_RPAREN, + [31613] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1451), 1, + ACTIONS(1483), 1, sym__name, - STATE(932), 1, + STATE(1064), 1, sym_alias, - [31355] = 3, + [31623] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(446), 1, - sym__upname, - STATE(462), 1, - sym__constructor_pattern, - [31365] = 3, - ACTIONS(1617), 1, - ts_builtin_sym_end, - ACTIONS(1619), 1, - aux_sym_source_file_token1, - STATE(785), 1, - aux_sym_source_file_repeat1, - [31375] = 3, + ACTIONS(1483), 1, + sym__name, + STATE(938), 1, + sym_alias, + [31633] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(849), 1, + ACTIONS(1625), 1, sym__name, - STATE(1065), 1, - sym_identifier, - [31385] = 3, + STATE(636), 1, + sym_module, + [31643] = 3, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(1627), 1, + anon_sym_LBRACE, + ACTIONS(1629), 1, + anon_sym_DASH_GT, + [31653] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(849), 1, + ACTIONS(873), 1, sym__name, - STATE(1050), 1, + STATE(1073), 1, sym_identifier, - [31395] = 3, + [31663] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1621), 1, - anon_sym_LBRACE, - ACTIONS(1623), 1, - anon_sym_DASH_GT, - [31405] = 3, + ACTIONS(801), 1, + sym__upname, + STATE(881), 1, + sym_type, + [31673] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1625), 1, - anon_sym_type, - ACTIONS(1627), 1, - anon_sym_fn, - [31415] = 3, + ACTIONS(1631), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [31681] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(849), 1, - sym__name, - STATE(589), 1, - sym_identifier, - [31425] = 2, + ACTIONS(217), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [31689] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1389), 2, + ACTIONS(1633), 2, anon_sym_COMMA, anon_sym_RPAREN, - [31433] = 3, + [31697] = 3, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1629), 1, + ACTIONS(1151), 1, sym__name, - STATE(574), 1, - sym_module, - [31443] = 1, - ACTIONS(1631), 2, - ts_builtin_sym_end, - aux_sym_source_file_token1, - [31448] = 2, - ACTIONS(691), 1, - anon_sym_RBRACE, - ACTIONS(1633), 1, + STATE(755), 1, + sym_type_parameter, + [31707] = 3, + ACTIONS(3), 1, aux_sym_source_file_token1, - [31455] = 2, - ACTIONS(965), 1, - anon_sym_RBRACE, ACTIONS(1635), 1, - aux_sym_source_file_token1, - [31462] = 2, - ACTIONS(961), 1, - anon_sym_RBRACE, + anon_sym_LBRACE, ACTIONS(1637), 1, - aux_sym_source_file_token1, - [31469] = 2, - ACTIONS(653), 1, - anon_sym_RBRACE, + anon_sym_DASH_GT, + [31717] = 2, ACTIONS(1639), 1, aux_sym_source_file_token1, - [31476] = 2, - ACTIONS(697), 1, - anon_sym_RBRACE, ACTIONS(1641), 1, - aux_sym_source_file_token1, - [31483] = 2, - ACTIONS(976), 1, anon_sym_RBRACE, - ACTIONS(1643), 1, + [31724] = 1, + ACTIONS(1643), 2, + ts_builtin_sym_end, aux_sym_source_file_token1, - [31490] = 2, - ACTIONS(980), 1, - anon_sym_RBRACE, - ACTIONS(1645), 1, + [31729] = 2, + ACTIONS(3), 1, aux_sym_source_file_token1, - [31497] = 2, - ACTIONS(955), 1, - anon_sym_RBRACE, - ACTIONS(1631), 1, + ACTIONS(1645), 1, + anon_sym_COLON, + [31736] = 1, + ACTIONS(1647), 2, + ts_builtin_sym_end, aux_sym_source_file_token1, - [31504] = 2, - ACTIONS(1647), 1, + [31741] = 2, + ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1649), 1, - anon_sym_RBRACE, - [31511] = 2, - ACTIONS(689), 1, - anon_sym_RBRACE, + anon_sym_DASH_GT, + [31748] = 2, + ACTIONS(3), 1, + aux_sym_source_file_token1, ACTIONS(1651), 1, + anon_sym_RPAREN, + [31755] = 1, + ACTIONS(1653), 2, + ts_builtin_sym_end, aux_sym_source_file_token1, - [31518] = 2, - ACTIONS(687), 1, - anon_sym_RBRACE, - ACTIONS(1653), 1, + [31760] = 2, + ACTIONS(3), 1, aux_sym_source_file_token1, - [31525] = 2, - ACTIONS(685), 1, - anon_sym_RBRACE, ACTIONS(1655), 1, + anon_sym_DASH_GT, + [31767] = 1, + ACTIONS(1657), 2, + ts_builtin_sym_end, aux_sym_source_file_token1, - [31532] = 2, - ACTIONS(963), 1, - anon_sym_RBRACE, - ACTIONS(1657), 1, - aux_sym_source_file_token1, - [31539] = 2, - ACTIONS(978), 1, + [31772] = 2, + ACTIONS(1607), 1, anon_sym_RBRACE, ACTIONS(1659), 1, aux_sym_source_file_token1, - [31546] = 2, - ACTIONS(982), 1, - anon_sym_RBRACE, + [31779] = 2, + ACTIONS(3), 1, + aux_sym_source_file_token1, ACTIONS(1661), 1, + sym__name, + [31786] = 2, + ACTIONS(3), 1, aux_sym_source_file_token1, - [31553] = 2, - ACTIONS(984), 1, - anon_sym_RBRACE, - ACTIONS(1663), 1, + ACTIONS(1661), 1, + sym__upname, + [31793] = 1, + ACTIONS(1663), 2, + ts_builtin_sym_end, aux_sym_source_file_token1, - [31560] = 2, - ACTIONS(1437), 1, - anon_sym_RBRACE, - ACTIONS(1665), 1, + [31798] = 1, + ACTIONS(1665), 2, + ts_builtin_sym_end, aux_sym_source_file_token1, - [31567] = 2, - ACTIONS(667), 1, - anon_sym_RBRACE, - ACTIONS(1667), 1, + [31803] = 1, + ACTIONS(1667), 2, + ts_builtin_sym_end, aux_sym_source_file_token1, - [31574] = 2, - ACTIONS(665), 1, - anon_sym_RBRACE, - ACTIONS(1669), 1, + [31808] = 1, + ACTIONS(1669), 2, + ts_builtin_sym_end, aux_sym_source_file_token1, - [31581] = 2, - ACTIONS(661), 1, - anon_sym_RBRACE, - ACTIONS(1671), 1, + [31813] = 1, + ACTIONS(1671), 2, + ts_builtin_sym_end, aux_sym_source_file_token1, - [31588] = 2, - ACTIONS(659), 1, - anon_sym_RBRACE, - ACTIONS(1673), 1, + [31818] = 1, + ACTIONS(1673), 2, + ts_builtin_sym_end, aux_sym_source_file_token1, - [31595] = 2, - ACTIONS(657), 1, - anon_sym_RBRACE, - ACTIONS(1675), 1, + [31823] = 1, + ACTIONS(1675), 2, + ts_builtin_sym_end, aux_sym_source_file_token1, - [31602] = 2, - ACTIONS(1443), 1, - anon_sym_RBRACE, - ACTIONS(1677), 1, + [31828] = 1, + ACTIONS(1677), 2, + ts_builtin_sym_end, aux_sym_source_file_token1, - [31609] = 2, - ACTIONS(3), 1, + [31833] = 1, + ACTIONS(1679), 2, + ts_builtin_sym_end, aux_sym_source_file_token1, - ACTIONS(1679), 1, - sym__name, - [31616] = 2, - ACTIONS(63), 1, + [31838] = 2, + ACTIONS(1063), 1, anon_sym_RBRACE, ACTIONS(1681), 1, aux_sym_source_file_token1, - [31623] = 2, - ACTIONS(655), 1, + [31845] = 2, + ACTIONS(1061), 1, anon_sym_RBRACE, ACTIONS(1683), 1, aux_sym_source_file_token1, - [31630] = 2, - ACTIONS(719), 1, + [31852] = 2, + ACTIONS(715), 1, anon_sym_RBRACE, ACTIONS(1685), 1, aux_sym_source_file_token1, - [31637] = 2, + [31859] = 2, + ACTIONS(713), 1, + anon_sym_RBRACE, + ACTIONS(1687), 1, + aux_sym_source_file_token1, + [31866] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1687), 1, - anon_sym_EQ, - [31644] = 2, - ACTIONS(1524), 1, - anon_sym_RBRACE, ACTIONS(1689), 1, + anon_sym_COLON, + [31873] = 2, + ACTIONS(3), 1, aux_sym_source_file_token1, - [31651] = 2, - ACTIONS(1038), 1, - anon_sym_RBRACE, ACTIONS(1691), 1, - aux_sym_source_file_token1, - [31658] = 2, - ACTIONS(663), 1, + anon_sym_DASH_GT, + [31880] = 2, + ACTIONS(1029), 1, anon_sym_RBRACE, ACTIONS(1693), 1, aux_sym_source_file_token1, - [31665] = 2, - ACTIONS(188), 1, + [31887] = 2, + ACTIONS(1022), 1, anon_sym_RBRACE, ACTIONS(1695), 1, aux_sym_source_file_token1, - [31672] = 2, - ACTIONS(1697), 1, + [31894] = 2, + ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1699), 1, + ACTIONS(1697), 1, + sym__name, + [31901] = 2, + ACTIONS(1020), 1, anon_sym_RBRACE, - [31679] = 2, - ACTIONS(3), 1, + ACTIONS(1699), 1, aux_sym_source_file_token1, + [31908] = 2, + ACTIONS(705), 1, + anon_sym_RBRACE, ACTIONS(1701), 1, - anon_sym_DOT, - [31686] = 2, - ACTIONS(1703), 1, aux_sym_source_file_token1, - ACTIONS(1705), 1, - anon_sym_RBRACE, - [31693] = 2, + [31915] = 1, + ACTIONS(1703), 2, + ts_builtin_sym_end, + aux_sym_source_file_token1, + [31920] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, + ACTIONS(1705), 1, + anon_sym_EQ, + [31927] = 2, + ACTIONS(701), 1, + anon_sym_RBRACE, ACTIONS(1707), 1, + aux_sym_source_file_token1, + [31934] = 2, + ACTIONS(697), 1, anon_sym_RBRACE, - [31700] = 2, ACTIONS(1709), 1, aux_sym_source_file_token1, - ACTIONS(1711), 1, + [31941] = 2, + ACTIONS(733), 1, anon_sym_RBRACE, - [31707] = 2, + ACTIONS(1711), 1, + aux_sym_source_file_token1, + [31948] = 2, + ACTIONS(3), 1, + aux_sym_source_file_token1, ACTIONS(1713), 1, + anon_sym_RPAREN, + [31955] = 2, + ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1715), 1, + anon_sym_COLON, + [31962] = 2, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(1578), 1, + anon_sym_DOT, + [31969] = 2, + ACTIONS(1014), 1, anon_sym_RBRACE, - [31714] = 2, ACTIONS(1717), 1, aux_sym_source_file_token1, + [31976] = 2, + ACTIONS(3), 1, + aux_sym_source_file_token1, ACTIONS(1719), 1, anon_sym_RBRACE, - [31721] = 2, + [31983] = 2, + ACTIONS(967), 1, + anon_sym_RBRACE, ACTIONS(1721), 1, aux_sym_source_file_token1, + [31990] = 2, + ACTIONS(973), 1, + anon_sym_RBRACE, ACTIONS(1723), 1, + aux_sym_source_file_token1, + [31997] = 2, + ACTIONS(975), 1, anon_sym_RBRACE, - [31728] = 2, ACTIONS(1725), 1, aux_sym_source_file_token1, + [32004] = 2, + ACTIONS(1527), 1, + anon_sym_RBRACE, ACTIONS(1727), 1, + aux_sym_source_file_token1, + [32011] = 2, + ACTIONS(725), 1, + anon_sym_RBRACE, + ACTIONS(1679), 1, + aux_sym_source_file_token1, + [32018] = 2, + ACTIONS(727), 1, + anon_sym_RBRACE, + ACTIONS(1675), 1, + aux_sym_source_file_token1, + [32025] = 2, + ACTIONS(731), 1, + anon_sym_RBRACE, + ACTIONS(1671), 1, + aux_sym_source_file_token1, + [32032] = 2, + ACTIONS(663), 1, anon_sym_RBRACE, - [31735] = 2, + ACTIONS(1647), 1, + aux_sym_source_file_token1, + [32039] = 2, + ACTIONS(3), 1, + aux_sym_source_file_token1, ACTIONS(1729), 1, + anon_sym_DASH_GT, + [32046] = 2, + ACTIONS(723), 1, + anon_sym_RBRACE, + ACTIONS(1665), 1, aux_sym_source_file_token1, + [32053] = 2, + ACTIONS(1555), 1, + anon_sym_RBRACE, ACTIONS(1731), 1, + aux_sym_source_file_token1, + [32060] = 2, + ACTIONS(719), 1, anon_sym_RBRACE, - [31742] = 2, - ACTIONS(3), 1, + ACTIONS(1663), 1, + aux_sym_source_file_token1, + [32067] = 2, + ACTIONS(176), 1, + anon_sym_RBRACE, + ACTIONS(1667), 1, + aux_sym_source_file_token1, + [32074] = 2, + ACTIONS(717), 1, + anon_sym_RBRACE, + ACTIONS(1673), 1, + aux_sym_source_file_token1, + [32081] = 2, + ACTIONS(707), 1, + anon_sym_RBRACE, + ACTIONS(1677), 1, aux_sym_source_file_token1, + [32088] = 2, + ACTIONS(1445), 1, + anon_sym_RBRACE, ACTIONS(1733), 1, - anon_sym_RPAREN, - [31749] = 1, - ACTIONS(1665), 2, - ts_builtin_sym_end, aux_sym_source_file_token1, - [31754] = 2, + [32095] = 2, + ACTIONS(1041), 1, + anon_sym_RBRACE, + ACTIONS(1735), 1, + aux_sym_source_file_token1, + [32102] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1735), 1, - anon_sym_DASH_GT, - [31761] = 2, ACTIONS(1737), 1, - aux_sym_source_file_token1, - ACTIONS(1739), 1, + anon_sym_RPAREN, + [32109] = 2, + ACTIONS(703), 1, anon_sym_RBRACE, - [31768] = 1, - ACTIONS(1677), 2, - ts_builtin_sym_end, + ACTIONS(1739), 1, aux_sym_source_file_token1, - [31773] = 2, - ACTIONS(1741), 1, + [32116] = 1, + ACTIONS(1741), 2, + ts_builtin_sym_end, aux_sym_source_file_token1, + [32121] = 2, + ACTIONS(711), 1, + anon_sym_RBRACE, ACTIONS(1743), 1, + aux_sym_source_file_token1, + [32128] = 2, + ACTIONS(63), 1, anon_sym_RBRACE, - [31780] = 2, ACTIONS(1745), 1, aux_sym_source_file_token1, + [32135] = 2, + ACTIONS(3), 1, + aux_sym_source_file_token1, ACTIONS(1747), 1, - anon_sym_RBRACE, - [31787] = 1, - ACTIONS(1689), 2, + anon_sym_DOT, + [32142] = 1, + ACTIONS(1725), 2, ts_builtin_sym_end, aux_sym_source_file_token1, - [31792] = 1, - ACTIONS(1691), 2, - ts_builtin_sym_end, + [32147] = 2, + ACTIONS(3), 1, aux_sym_source_file_token1, - [31797] = 2, ACTIONS(1749), 1, + anon_sym_DASH_GT, + [32154] = 1, + ACTIONS(1723), 2, + ts_builtin_sym_end, + aux_sym_source_file_token1, + [32159] = 1, + ACTIONS(1721), 2, + ts_builtin_sym_end, + aux_sym_source_file_token1, + [32164] = 1, + ACTIONS(1717), 2, + ts_builtin_sym_end, + aux_sym_source_file_token1, + [32169] = 2, + ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1751), 1, - anon_sym_RBRACE, - [31804] = 2, + anon_sym_LPAREN, + [32176] = 2, ACTIONS(1753), 1, aux_sym_source_file_token1, ACTIONS(1755), 1, anon_sym_RBRACE, - [31811] = 2, + [32183] = 2, + ACTIONS(3), 1, + aux_sym_source_file_token1, ACTIONS(1757), 1, + anon_sym_LPAREN, + [32190] = 2, + ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1759), 1, - anon_sym_RBRACE, - [31818] = 2, + anon_sym_LPAREN, + [32197] = 2, + ACTIONS(3), 1, + aux_sym_source_file_token1, ACTIONS(1761), 1, + anon_sym_RBRACE, + [32204] = 2, + ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1763), 1, - anon_sym_RBRACE, - [31825] = 2, + anon_sym_LPAREN, + [32211] = 2, ACTIONS(1765), 1, aux_sym_source_file_token1, ACTIONS(1767), 1, anon_sym_RBRACE, - [31832] = 2, + [32218] = 2, ACTIONS(1769), 1, aux_sym_source_file_token1, ACTIONS(1771), 1, anon_sym_RBRACE, - [31839] = 2, + [32225] = 2, ACTIONS(1773), 1, aux_sym_source_file_token1, ACTIONS(1775), 1, anon_sym_RBRACE, - [31846] = 2, + [32232] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1777), 1, - anon_sym_DOT, - [31853] = 2, + anon_sym_LPAREN, + [32239] = 2, + ACTIONS(3), 1, + aux_sym_source_file_token1, ACTIONS(1779), 1, + anon_sym_DOT, + [32246] = 2, + ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1781), 1, - anon_sym_RBRACE, - [31860] = 2, + anon_sym_DOT, + [32253] = 2, + ACTIONS(3), 1, + aux_sym_source_file_token1, ACTIONS(1783), 1, + anon_sym_LPAREN, + [32260] = 2, + ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1785), 1, - anon_sym_RBRACE, - [31867] = 2, + anon_sym_DOT, + [32267] = 2, + ACTIONS(3), 1, + aux_sym_source_file_token1, ACTIONS(1787), 1, + anon_sym_RPAREN, + [32274] = 2, + ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1789), 1, - anon_sym_RBRACE, - [31874] = 2, + anon_sym_EQ, + [32281] = 2, + ACTIONS(3), 1, + aux_sym_source_file_token1, ACTIONS(1791), 1, + anon_sym_RPAREN, + [32288] = 2, + ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1793), 1, - anon_sym_RBRACE, - [31881] = 2, + anon_sym_RPAREN, + [32295] = 2, + ACTIONS(3), 1, + aux_sym_source_file_token1, ACTIONS(1795), 1, + anon_sym_LBRACE, + [32302] = 2, + ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1797), 1, - anon_sym_RBRACE, - [31888] = 2, + sym_string, + [32309] = 2, ACTIONS(1799), 1, aux_sym_source_file_token1, ACTIONS(1801), 1, anon_sym_RBRACE, - [31895] = 2, + [32316] = 2, ACTIONS(1803), 1, aux_sym_source_file_token1, ACTIONS(1805), 1, anon_sym_RBRACE, - [31902] = 2, - ACTIONS(1807), 1, + [32323] = 2, + ACTIONS(3), 1, aux_sym_source_file_token1, + ACTIONS(1807), 1, + anon_sym_EQ, + [32330] = 2, ACTIONS(1809), 1, - anon_sym_RBRACE, - [31909] = 2, + aux_sym_source_file_token1, ACTIONS(1811), 1, + anon_sym_RBRACE, + [32337] = 2, + ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1813), 1, - anon_sym_RBRACE, - [31916] = 2, + anon_sym_DOT, + [32344] = 2, ACTIONS(1815), 1, aux_sym_source_file_token1, ACTIONS(1817), 1, anon_sym_RBRACE, - [31923] = 2, + [32351] = 2, + ACTIONS(3), 1, + aux_sym_source_file_token1, ACTIONS(1819), 1, + anon_sym_LPAREN, + [32358] = 1, + ACTIONS(1739), 2, + ts_builtin_sym_end, + aux_sym_source_file_token1, + [32363] = 2, + ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1821), 1, - anon_sym_RBRACE, - [31930] = 2, + anon_sym_RPAREN, + [32370] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1823), 1, anon_sym_RPAREN, - [31937] = 2, - ACTIONS(3), 1, + [32377] = 1, + ACTIONS(1743), 2, + ts_builtin_sym_end, + aux_sym_source_file_token1, + [32382] = 1, + ACTIONS(1825), 2, + ts_builtin_sym_end, + aux_sym_source_file_token1, + [32387] = 1, + ACTIONS(1711), 2, + ts_builtin_sym_end, + aux_sym_source_file_token1, + [32392] = 1, + ACTIONS(1709), 2, + ts_builtin_sym_end, aux_sym_source_file_token1, - ACTIONS(1825), 1, - anon_sym_RPAREN, - [31944] = 2, + [32397] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1827), 1, - anon_sym_RPAREN, - [31951] = 2, + anon_sym_LPAREN, + [32404] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1829), 1, - anon_sym_COLON, - [31958] = 2, + anon_sym_DOT, + [32411] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1831), 1, - anon_sym_RPAREN, - [31965] = 2, + anon_sym_LPAREN, + [32418] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1833), 1, - anon_sym_RPAREN, - [31972] = 2, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(1835), 1, - anon_sym_LBRACE, - [31979] = 1, - ACTIONS(1697), 2, + anon_sym_DOT, + [32425] = 1, + ACTIONS(1707), 2, ts_builtin_sym_end, aux_sym_source_file_token1, - [31984] = 2, - ACTIONS(3), 1, + [32430] = 2, + ACTIONS(1835), 1, aux_sym_source_file_token1, ACTIONS(1837), 1, - anon_sym_RPAREN, - [31991] = 2, - ACTIONS(3), 1, + anon_sym_RBRACE, + [32437] = 1, + ACTIONS(1745), 2, + ts_builtin_sym_end, + aux_sym_source_file_token1, + [32442] = 1, + ACTIONS(1701), 2, + ts_builtin_sym_end, aux_sym_source_file_token1, + [32447] = 2, ACTIONS(1839), 1, - anon_sym_EQ, - [31998] = 2, - ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1841), 1, - anon_sym_RPAREN, - [32005] = 2, + anon_sym_RBRACE, + [32454] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1843), 1, - anon_sym_RPAREN, - [32012] = 2, + anon_sym_EQ, + [32461] = 1, + ACTIONS(1699), 2, + ts_builtin_sym_end, + aux_sym_source_file_token1, + [32466] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1845), 1, - anon_sym_DASH_GT, - [32019] = 2, + anon_sym_LPAREN, + [32473] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1847), 1, - sym_string, - [32026] = 2, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(928), 1, - anon_sym_RPAREN, - [32033] = 2, - ACTIONS(3), 1, + anon_sym_DASH_GT, + [32480] = 1, + ACTIONS(1849), 2, + ts_builtin_sym_end, aux_sym_source_file_token1, - ACTIONS(1849), 1, - anon_sym_RPAREN, - [32040] = 2, + [32485] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1851), 1, - anon_sym_LPAREN, - [32047] = 2, + anon_sym_DASH_GT, + [32492] = 1, + ACTIONS(1695), 2, + ts_builtin_sym_end, + aux_sym_source_file_token1, + [32497] = 1, + ACTIONS(1693), 2, + ts_builtin_sym_end, + aux_sym_source_file_token1, + [32502] = 1, + ACTIONS(1727), 2, + ts_builtin_sym_end, + aux_sym_source_file_token1, + [32507] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1853), 1, - anon_sym_RBRACK, - [32054] = 2, - ACTIONS(3), 1, + anon_sym_LPAREN, + [32514] = 2, + ACTIONS(1643), 1, aux_sym_source_file_token1, ACTIONS(1855), 1, - anon_sym_LBRACE, - [32061] = 1, - ACTIONS(1703), 2, + anon_sym_RBRACE, + [32521] = 1, + ACTIONS(1857), 2, ts_builtin_sym_end, aux_sym_source_file_token1, - [32066] = 1, - ACTIONS(1709), 2, + [32526] = 1, + ACTIONS(1815), 2, ts_builtin_sym_end, aux_sym_source_file_token1, - [32071] = 1, - ACTIONS(1713), 2, + [32531] = 1, + ACTIONS(1859), 2, ts_builtin_sym_end, aux_sym_source_file_token1, - [32076] = 2, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(1857), 1, - anon_sym_RPAREN, - [32083] = 2, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(1859), 1, - anon_sym_RPAREN, - [32090] = 2, - ACTIONS(3), 1, + [32536] = 1, + ACTIONS(1731), 2, + ts_builtin_sym_end, aux_sym_source_file_token1, - ACTIONS(940), 1, - anon_sym_RPAREN, - [32097] = 2, + [32541] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1861), 1, - anon_sym_COLON, - [32104] = 2, - ACTIONS(3), 1, + anon_sym_DOT, + [32548] = 2, + ACTIONS(1657), 1, aux_sym_source_file_token1, ACTIONS(1863), 1, - anon_sym_RBRACK, - [32111] = 2, + anon_sym_RBRACE, + [32555] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1865), 1, - anon_sym_RBRACK, - [32118] = 2, - ACTIONS(3), 1, + sym_string, + [32562] = 2, + ACTIONS(1741), 1, aux_sym_source_file_token1, ACTIONS(1867), 1, - anon_sym_LPAREN, - [32125] = 1, - ACTIONS(1717), 2, + anon_sym_RBRACE, + [32569] = 1, + ACTIONS(1733), 2, ts_builtin_sym_end, aux_sym_source_file_token1, - [32130] = 2, + [32574] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1869), 1, - sym_string, - [32137] = 2, - ACTIONS(3), 1, + anon_sym_LBRACE, + [32581] = 1, + ACTIONS(1735), 2, + ts_builtin_sym_end, + aux_sym_source_file_token1, + [32586] = 1, + ACTIONS(1839), 2, + ts_builtin_sym_end, + aux_sym_source_file_token1, + [32591] = 2, + ACTIONS(1825), 1, aux_sym_source_file_token1, ACTIONS(1871), 1, - anon_sym_DOT, - [32144] = 2, + anon_sym_RBRACE, + [32598] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1873), 1, - anon_sym_RPAREN, - [32151] = 2, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(1875), 1, - anon_sym_RPAREN, - [32158] = 1, - ACTIONS(1721), 2, - ts_builtin_sym_end, - aux_sym_source_file_token1, - [32163] = 1, - ACTIONS(1725), 2, + anon_sym_DOT_DOT, + [32605] = 1, + ACTIONS(1875), 2, ts_builtin_sym_end, aux_sym_source_file_token1, - [32168] = 2, + [32610] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1877), 1, - anon_sym_DASH_GT, - [32175] = 2, - ACTIONS(3), 1, + anon_sym_DOT_DOT, + [32617] = 2, + ACTIONS(1849), 1, aux_sym_source_file_token1, ACTIONS(1879), 1, - anon_sym_RPAREN, - [32182] = 2, - ACTIONS(3), 1, + anon_sym_RBRACE, + [32624] = 2, + ACTIONS(1857), 1, aux_sym_source_file_token1, ACTIONS(1881), 1, - anon_sym_EQ, - [32189] = 2, - ACTIONS(3), 1, + anon_sym_RBRACE, + [32631] = 1, + ACTIONS(1563), 2, + ts_builtin_sym_end, + aux_sym_source_file_token1, + [32636] = 1, + ACTIONS(1685), 2, + ts_builtin_sym_end, + aux_sym_source_file_token1, + [32641] = 2, + ACTIONS(1859), 1, aux_sym_source_file_token1, ACTIONS(1883), 1, - anon_sym_RPAREN, - [32196] = 2, + anon_sym_RBRACE, + [32648] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1885), 1, - anon_sym_DASH_GT, - [32203] = 2, + anon_sym_RPAREN, + [32655] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1887), 1, anon_sym_EQ, - [32210] = 2, + [32662] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1889), 1, - sym__name, - [32217] = 2, + anon_sym_RPAREN, + [32669] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1891), 1, - anon_sym_RBRACK, - [32224] = 2, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(1893), 1, anon_sym_RPAREN, - [32231] = 1, - ACTIONS(1635), 2, - ts_builtin_sym_end, - aux_sym_source_file_token1, - [32236] = 2, - ACTIONS(3), 1, + [32676] = 2, + ACTIONS(1893), 1, aux_sym_source_file_token1, ACTIONS(1895), 1, - anon_sym_DASH_GT, - [32243] = 1, - ACTIONS(1637), 2, - ts_builtin_sym_end, - aux_sym_source_file_token1, - [32248] = 2, - ACTIONS(3), 1, - aux_sym_source_file_token1, + anon_sym_RBRACE, + [32683] = 2, ACTIONS(1897), 1, - anon_sym_EQ, - [32255] = 1, - ACTIONS(1639), 2, - ts_builtin_sym_end, - aux_sym_source_file_token1, - [32260] = 1, - ACTIONS(1641), 2, - ts_builtin_sym_end, - aux_sym_source_file_token1, - [32265] = 1, - ACTIONS(1729), 2, - ts_builtin_sym_end, - aux_sym_source_file_token1, - [32270] = 2, - ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1899), 1, - anon_sym_DOT, - [32277] = 2, - ACTIONS(3), 1, - aux_sym_source_file_token1, + anon_sym_RBRACE, + [32690] = 2, ACTIONS(1901), 1, - anon_sym_LBRACE, - [32284] = 2, - ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1903), 1, - anon_sym_DOT_DOT, - [32291] = 2, - ACTIONS(3), 1, - aux_sym_source_file_token1, + anon_sym_RBRACE, + [32697] = 2, ACTIONS(1905), 1, - anon_sym_DOT_DOT, - [32298] = 1, - ACTIONS(1647), 2, - ts_builtin_sym_end, - aux_sym_source_file_token1, - [32303] = 2, - ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1907), 1, - anon_sym_LBRACE, - [32310] = 2, - ACTIONS(3), 1, - aux_sym_source_file_token1, + anon_sym_RBRACE, + [32704] = 2, ACTIONS(1909), 1, - sym_string, - [32317] = 2, - ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1911), 1, - anon_sym_LPAREN, - [32324] = 1, - ACTIONS(1643), 2, - ts_builtin_sym_end, - aux_sym_source_file_token1, - [32329] = 1, - ACTIONS(1645), 2, - ts_builtin_sym_end, - aux_sym_source_file_token1, - [32334] = 2, + anon_sym_RBRACE, + [32711] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1913), 1, anon_sym_LPAREN, - [32341] = 2, + [32718] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1915), 1, - anon_sym_EQ, - [32348] = 1, - ACTIONS(1633), 2, - ts_builtin_sym_end, - aux_sym_source_file_token1, - [32353] = 1, - ACTIONS(1651), 2, - ts_builtin_sym_end, - aux_sym_source_file_token1, - [32358] = 1, - ACTIONS(1917), 2, - ts_builtin_sym_end, - aux_sym_source_file_token1, - [32363] = 2, + anon_sym_RPAREN, + [32725] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1919), 1, - anon_sym_LPAREN, - [32370] = 1, - ACTIONS(1653), 2, + ACTIONS(1917), 1, + anon_sym_RPAREN, + [32732] = 1, + ACTIONS(1893), 2, ts_builtin_sym_end, aux_sym_source_file_token1, - [32375] = 2, + [32737] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, + ACTIONS(1919), 1, + anon_sym_EQ, + [32744] = 2, ACTIONS(1921), 1, - anon_sym_RPAREN, - [32382] = 2, - ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1923), 1, - anon_sym_EQ, - [32389] = 2, - ACTIONS(3), 1, - aux_sym_source_file_token1, + anon_sym_RBRACE, + [32751] = 2, ACTIONS(1925), 1, - anon_sym_RPAREN, - [32396] = 2, - ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1927), 1, - anon_sym_RPAREN, - [32403] = 1, - ACTIONS(1655), 2, - ts_builtin_sym_end, - aux_sym_source_file_token1, - [32408] = 1, - ACTIONS(1929), 2, - ts_builtin_sym_end, - aux_sym_source_file_token1, - [32413] = 2, + anon_sym_RBRACE, + [32758] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, + ACTIONS(1929), 1, + anon_sym_EQ, + [32765] = 2, ACTIONS(1931), 1, - anon_sym_LBRACE, - [32420] = 2, - ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1933), 1, - anon_sym_DOT, - [32427] = 2, - ACTIONS(3), 1, - aux_sym_source_file_token1, + anon_sym_RBRACE, + [32772] = 2, ACTIONS(1935), 1, - anon_sym_LPAREN, - [32434] = 2, - ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1937), 1, - anon_sym_DOT, - [32441] = 2, + anon_sym_RBRACE, + [32779] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1939), 1, - anon_sym_RPAREN, - [32448] = 2, - ACTIONS(3), 1, - aux_sym_source_file_token1, + anon_sym_type, + [32786] = 2, ACTIONS(1941), 1, - anon_sym_RPAREN, - [32455] = 2, - ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1943), 1, - anon_sym_DOT, - [32462] = 2, - ACTIONS(3), 1, - aux_sym_source_file_token1, + anon_sym_RBRACE, + [32793] = 2, ACTIONS(1945), 1, - anon_sym_LPAREN, - [32469] = 2, - ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1947), 1, - anon_sym_LPAREN, - [32476] = 2, - ACTIONS(3), 1, - aux_sym_source_file_token1, + anon_sym_RBRACE, + [32800] = 2, ACTIONS(1949), 1, - anon_sym_LPAREN, - [32483] = 2, - ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1951), 1, - anon_sym_EQ, - [32490] = 2, + anon_sym_RBRACE, + [32807] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1953), 1, - anon_sym_LPAREN, - [32497] = 1, - ACTIONS(1657), 2, - ts_builtin_sym_end, - aux_sym_source_file_token1, - [32502] = 2, + anon_sym_LBRACE, + [32814] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1955), 1, - anon_sym_type, - [32509] = 1, - ACTIONS(1659), 2, - ts_builtin_sym_end, - aux_sym_source_file_token1, - [32514] = 1, - ACTIONS(1661), 2, - ts_builtin_sym_end, - aux_sym_source_file_token1, - [32519] = 2, + ACTIONS(1955), 1, + anon_sym_LPAREN, + [32821] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1957), 1, - anon_sym_DASH_GT, - [32526] = 1, - ACTIONS(1663), 2, + anon_sym_LPAREN, + [32828] = 1, + ACTIONS(1835), 2, + ts_builtin_sym_end, + aux_sym_source_file_token1, + [32833] = 1, + ACTIONS(1687), 2, ts_builtin_sym_end, aux_sym_source_file_token1, - [32531] = 2, + [32838] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1959), 1, anon_sym_LPAREN, - [32538] = 2, + [32845] = 1, + ACTIONS(1897), 2, + ts_builtin_sym_end, + aux_sym_source_file_token1, + [32850] = 1, + ACTIONS(1901), 2, + ts_builtin_sym_end, + aux_sym_source_file_token1, + [32855] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1961), 1, - anon_sym_LPAREN, - [32545] = 2, + anon_sym_DOT, + [32862] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1963), 1, - anon_sym_COLON, - [32552] = 2, + anon_sym_DOT, + [32869] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1965), 1, - anon_sym_RPAREN, - [32559] = 2, + anon_sym_LPAREN, + [32876] = 2, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(1511), 1, + anon_sym_DOT, + [32883] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1967), 1, - anon_sym_LPAREN, - [32566] = 2, + anon_sym_RBRACK, + [32890] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1969), 1, - anon_sym_DASH_GT, - [32573] = 1, - ACTIONS(1667), 2, - ts_builtin_sym_end, - aux_sym_source_file_token1, - [32578] = 2, + anon_sym_EQ, + [32897] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1971), 1, - anon_sym_DOT, - [32585] = 2, + sym_string, + [32904] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1973), 1, - anon_sym_DOT, - [32592] = 2, + anon_sym_LBRACE, + [32911] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1975), 1, - anon_sym_LPAREN, - [32599] = 2, - ACTIONS(3), 1, - aux_sym_source_file_token1, - ACTIONS(1601), 1, - anon_sym_DOT, - [32606] = 1, - ACTIONS(1669), 2, - ts_builtin_sym_end, - aux_sym_source_file_token1, - [32611] = 2, + anon_sym_EQ, + [32918] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1977), 1, anon_sym_EQ, - [32618] = 2, + [32925] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1979), 1, - sym_string, - [32625] = 1, - ACTIONS(1671), 2, - ts_builtin_sym_end, - aux_sym_source_file_token1, - [32630] = 2, + sym__name, + [32932] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1981), 1, - anon_sym_EQ, - [32637] = 1, - ACTIONS(1673), 2, - ts_builtin_sym_end, - aux_sym_source_file_token1, - [32642] = 1, - ACTIONS(1675), 2, - ts_builtin_sym_end, - aux_sym_source_file_token1, - [32647] = 2, + anon_sym_RPAREN, + [32939] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1983), 1, - sym__upname, - [32654] = 2, + anon_sym_LPAREN, + [32946] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(1983), 1, - sym__name, - [32661] = 2, - ACTIONS(1490), 1, - anon_sym_RBRACE, ACTIONS(1985), 1, + anon_sym_RPAREN, + [32953] = 1, + ACTIONS(1905), 2, + ts_builtin_sym_end, aux_sym_source_file_token1, - [32668] = 2, + [32958] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1987), 1, - ts_builtin_sym_end, - [32675] = 2, + anon_sym_RPAREN, + [32965] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1989), 1, - anon_sym_DASH_GT, - [32682] = 1, - ACTIONS(1737), 2, + anon_sym_COLON, + [32972] = 1, + ACTIONS(1909), 2, ts_builtin_sym_end, aux_sym_source_file_token1, - [32687] = 2, + [32977] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1991), 1, - anon_sym_COLON, - [32694] = 2, + anon_sym_RPAREN, + [32984] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1993), 1, - anon_sym_RPAREN, - [32701] = 2, + sym__name, + [32991] = 1, + ACTIONS(1683), 2, + ts_builtin_sym_end, + aux_sym_source_file_token1, + [32996] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1995), 1, - anon_sym_DASH_GT, - [32708] = 1, - ACTIONS(1741), 2, - ts_builtin_sym_end, - aux_sym_source_file_token1, - [32713] = 2, + anon_sym_LPAREN, + [33003] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1997), 1, anon_sym_LPAREN, - [32720] = 2, + [33010] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(1999), 1, - anon_sym_LPAREN, - [32727] = 1, - ACTIONS(1681), 2, - ts_builtin_sym_end, - aux_sym_source_file_token1, - [32732] = 2, + anon_sym_DASH_GT, + [33017] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(2001), 1, anon_sym_LPAREN, - [32739] = 2, + [33024] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(2003), 1, anon_sym_DOT, - [32746] = 2, + [33031] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(2005), 1, anon_sym_LPAREN, - [32753] = 2, + [33038] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(2007), 1, anon_sym_DOT, - [32760] = 2, + [33045] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(2009), 1, sym_string, - [32767] = 1, - ACTIONS(1683), 2, + [33052] = 1, + ACTIONS(1921), 2, ts_builtin_sym_end, aux_sym_source_file_token1, - [32772] = 1, - ACTIONS(1685), 2, + [33057] = 1, + ACTIONS(1639), 2, + ts_builtin_sym_end, + aux_sym_source_file_token1, + [33062] = 1, + ACTIONS(1925), 2, ts_builtin_sym_end, aux_sym_source_file_token1, - [32777] = 1, - ACTIONS(2011), 2, + [33067] = 1, + ACTIONS(1931), 2, ts_builtin_sym_end, aux_sym_source_file_token1, - [32782] = 2, + [33072] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(2013), 1, - anon_sym_RPAREN, - [32789] = 1, - ACTIONS(1745), 2, + ACTIONS(2011), 1, + anon_sym_type, + [33079] = 1, + ACTIONS(1681), 2, ts_builtin_sym_end, aux_sym_source_file_token1, - [32794] = 2, + [33084] = 2, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(2013), 1, + anon_sym_RPAREN, + [33091] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(2015), 1, - anon_sym_LPAREN, - [32801] = 2, + anon_sym_LBRACE, + [33098] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(2017), 1, - anon_sym_RBRACE, - [32808] = 2, + anon_sym_RPAREN, + [33105] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(2019), 1, - anon_sym_EQ, - [32815] = 2, + anon_sym_RBRACK, + [33112] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(2021), 1, - anon_sym_DOT, - [32822] = 2, + anon_sym_LBRACE, + [33119] = 1, + ACTIONS(1753), 2, + ts_builtin_sym_end, + aux_sym_source_file_token1, + [33124] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(2023), 1, - anon_sym_LPAREN, - [32829] = 2, + sym__name, + [33131] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(2025), 1, - anon_sym_LBRACE, - [32836] = 1, - ACTIONS(1693), 2, - ts_builtin_sym_end, - aux_sym_source_file_token1, - [32841] = 1, - ACTIONS(1749), 2, - ts_builtin_sym_end, - aux_sym_source_file_token1, - [32846] = 2, + anon_sym_DASH_GT, + [33138] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(2027), 1, - anon_sym_DOT, - [32853] = 2, + anon_sym_LBRACE, + [33145] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(2029), 1, - anon_sym_LBRACE, - [32860] = 1, - ACTIONS(1695), 2, - ts_builtin_sym_end, - aux_sym_source_file_token1, - [32865] = 2, + anon_sym_EQ, + [33152] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(2031), 1, anon_sym_LBRACE, - [32872] = 2, + [33159] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(2033), 1, anon_sym_LBRACE, - [32879] = 2, + [33166] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(2035), 1, - anon_sym_LPAREN, - [32886] = 1, - ACTIONS(1753), 2, - ts_builtin_sym_end, - aux_sym_source_file_token1, - [32891] = 1, - ACTIONS(1757), 2, - ts_builtin_sym_end, - aux_sym_source_file_token1, - [32896] = 1, - ACTIONS(1761), 2, - ts_builtin_sym_end, - aux_sym_source_file_token1, - [32901] = 1, - ACTIONS(1765), 2, - ts_builtin_sym_end, + anon_sym_RPAREN, + [33173] = 2, + ACTIONS(3), 1, aux_sym_source_file_token1, - [32906] = 1, - ACTIONS(2037), 2, - ts_builtin_sym_end, + ACTIONS(926), 1, + anon_sym_RPAREN, + [33180] = 2, + ACTIONS(3), 1, aux_sym_source_file_token1, - [32911] = 2, + ACTIONS(2037), 1, + anon_sym_LBRACE, + [33187] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(2039), 1, - anon_sym_LBRACE, - [32918] = 2, + anon_sym_RPAREN, + [33194] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(2041), 1, anon_sym_LBRACE, - [32925] = 2, + [33201] = 1, + ACTIONS(1935), 2, + ts_builtin_sym_end, + aux_sym_source_file_token1, + [33206] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(2043), 1, anon_sym_LBRACE, - [32932] = 1, - ACTIONS(1558), 2, - ts_builtin_sym_end, - aux_sym_source_file_token1, - [32937] = 2, + [33213] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(2045), 1, - anon_sym_LPAREN, - [32944] = 1, - ACTIONS(1769), 2, - ts_builtin_sym_end, - aux_sym_source_file_token1, - [32949] = 2, + anon_sym_LBRACE, + [33220] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(2047), 1, - anon_sym_EQ, - [32956] = 1, - ACTIONS(1773), 2, - ts_builtin_sym_end, - aux_sym_source_file_token1, - [32961] = 1, - ACTIONS(1779), 2, + anon_sym_LBRACE, + [33227] = 1, + ACTIONS(1941), 2, ts_builtin_sym_end, aux_sym_source_file_token1, - [32966] = 2, + [33232] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(2049), 1, - anon_sym_LBRACE, - [32973] = 2, + anon_sym_LPAREN, + [33239] = 1, + ACTIONS(1945), 2, + ts_builtin_sym_end, + aux_sym_source_file_token1, + [33244] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(2051), 1, - anon_sym_LBRACE, - [32980] = 2, + anon_sym_RBRACK, + [33251] = 1, + ACTIONS(1949), 2, + ts_builtin_sym_end, + aux_sym_source_file_token1, + [33256] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(2053), 1, anon_sym_LBRACE, - [32987] = 2, + [33263] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(2055), 1, - anon_sym_RPAREN, - [32994] = 2, + anon_sym_LBRACE, + [33270] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(2057), 1, - anon_sym_DASH_GT, - [33001] = 2, + anon_sym_LBRACE, + [33277] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(2059), 1, - sym__name, - [33008] = 2, + anon_sym_EQ, + [33284] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(2061), 1, - anon_sym_DASH_GT, - [33015] = 2, + anon_sym_RPAREN, + [33291] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(2063), 1, - anon_sym_LPAREN, - [33022] = 1, - ACTIONS(1783), 2, - ts_builtin_sym_end, - aux_sym_source_file_token1, - [33027] = 1, - ACTIONS(1787), 2, - ts_builtin_sym_end, - aux_sym_source_file_token1, - [33032] = 2, + anon_sym_DASH_GT, + [33298] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(2065), 1, anon_sym_RPAREN, - [33039] = 2, + [33305] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, ACTIONS(2067), 1, - sym__name, - [33046] = 1, - ACTIONS(1791), 2, + anon_sym_DASH_GT, + [33312] = 2, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(2069), 1, + ts_builtin_sym_end, + [33319] = 1, + ACTIONS(1765), 2, ts_builtin_sym_end, aux_sym_source_file_token1, - [33051] = 1, - ACTIONS(1795), 2, + [33324] = 1, + ACTIONS(1769), 2, ts_builtin_sym_end, aux_sym_source_file_token1, - [33056] = 1, - ACTIONS(1799), 2, + [33329] = 2, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(2071), 1, + anon_sym_RPAREN, + [33336] = 1, + ACTIONS(1809), 2, ts_builtin_sym_end, aux_sym_source_file_token1, - [33061] = 1, + [33341] = 1, + ACTIONS(1773), 2, + ts_builtin_sym_end, + aux_sym_source_file_token1, + [33346] = 1, ACTIONS(1803), 2, ts_builtin_sym_end, aux_sym_source_file_token1, - [33066] = 2, + [33351] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(2069), 1, - anon_sym_type, - [33073] = 2, + ACTIONS(2073), 1, + anon_sym_RPAREN, + [33358] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(2071), 1, + ACTIONS(2075), 1, anon_sym_RPAREN, - [33080] = 2, + [33365] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(2073), 1, - anon_sym_LBRACE, - [33087] = 2, + ACTIONS(2077), 1, + sym_string, + [33372] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(2075), 1, - anon_sym_LBRACE, - [33094] = 1, - ACTIONS(1807), 2, + ACTIONS(2079), 1, + anon_sym_RPAREN, + [33379] = 1, + ACTIONS(1799), 2, ts_builtin_sym_end, aux_sym_source_file_token1, - [33099] = 1, - ACTIONS(1811), 2, - ts_builtin_sym_end, + [33384] = 2, + ACTIONS(3), 1, aux_sym_source_file_token1, - [33104] = 2, + ACTIONS(2081), 1, + anon_sym_LPAREN, + [33391] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(2077), 1, + ACTIONS(914), 1, + anon_sym_RPAREN, + [33398] = 2, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(2083), 1, + anon_sym_COLON, + [33405] = 2, + ACTIONS(3), 1, + aux_sym_source_file_token1, + ACTIONS(2085), 1, anon_sym_LPAREN, - [33111] = 1, - ACTIONS(1815), 2, - ts_builtin_sym_end, + [33412] = 2, + ACTIONS(3), 1, aux_sym_source_file_token1, - [33116] = 2, + ACTIONS(2087), 1, + anon_sym_RPAREN, + [33419] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(2079), 1, + ACTIONS(2089), 1, anon_sym_RPAREN, - [33123] = 2, + [33426] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(2081), 1, + ACTIONS(2091), 1, anon_sym_LPAREN, - [33130] = 2, + [33433] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(2083), 1, + ACTIONS(2093), 1, anon_sym_DOT_DOT, - [33137] = 2, + [33440] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(2085), 1, + ACTIONS(2095), 1, anon_sym_DOT_DOT, - [33144] = 2, + [33447] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(2087), 1, + ACTIONS(2097), 1, anon_sym_LPAREN, - [33151] = 2, + [33454] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(2089), 1, + ACTIONS(2099), 1, anon_sym_DOT_DOT, - [33158] = 2, + [33461] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(2091), 1, + ACTIONS(2101), 1, anon_sym_DOT_DOT, - [33165] = 1, - ACTIONS(1819), 2, - ts_builtin_sym_end, + [33468] = 2, + ACTIONS(3), 1, aux_sym_source_file_token1, - [33170] = 2, + ACTIONS(2103), 1, + anon_sym_RBRACK, + [33475] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(2093), 1, + ACTIONS(2105), 1, anon_sym_LPAREN, - [33177] = 2, + [33482] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(2095), 1, + ACTIONS(2107), 1, anon_sym_LPAREN, - [33184] = 2, + [33489] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(2097), 1, + ACTIONS(2109), 1, anon_sym_LPAREN, - [33191] = 2, + [33496] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(2099), 1, + ACTIONS(2111), 1, anon_sym_LPAREN, - [33198] = 2, + [33503] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(2101), 1, + ACTIONS(2113), 1, anon_sym_LPAREN, - [33205] = 2, + [33510] = 2, ACTIONS(3), 1, aux_sym_source_file_token1, - ACTIONS(2103), 1, + ACTIONS(2115), 1, sym__name, }; @@ -30772,12 +31020,12 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(25)] = 2536, [SMALL_STATE(26)] = 2648, [SMALL_STATE(27)] = 2760, - [SMALL_STATE(28)] = 2872, - [SMALL_STATE(29)] = 2984, - [SMALL_STATE(30)] = 3096, - [SMALL_STATE(31)] = 3208, - [SMALL_STATE(32)] = 3320, - [SMALL_STATE(33)] = 3432, + [SMALL_STATE(28)] = 2814, + [SMALL_STATE(29)] = 2926, + [SMALL_STATE(30)] = 3038, + [SMALL_STATE(31)] = 3150, + [SMALL_STATE(32)] = 3262, + [SMALL_STATE(33)] = 3374, [SMALL_STATE(34)] = 3486, [SMALL_STATE(35)] = 3595, [SMALL_STATE(36)] = 3704, @@ -30803,185 +31051,185 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(56)] = 5884, [SMALL_STATE(57)] = 5993, [SMALL_STATE(58)] = 6102, - [SMALL_STATE(59)] = 6156, + [SMALL_STATE(59)] = 6154, [SMALL_STATE(60)] = 6208, [SMALL_STATE(61)] = 6260, [SMALL_STATE(62)] = 6312, - [SMALL_STATE(63)] = 6368, - [SMALL_STATE(64)] = 6422, - [SMALL_STATE(65)] = 6474, + [SMALL_STATE(63)] = 6364, + [SMALL_STATE(64)] = 6420, + [SMALL_STATE(65)] = 6472, [SMALL_STATE(66)] = 6526, - [SMALL_STATE(67)] = 6580, - [SMALL_STATE(68)] = 6686, + [SMALL_STATE(67)] = 6632, + [SMALL_STATE(68)] = 6684, [SMALL_STATE(69)] = 6738, [SMALL_STATE(70)] = 6841, - [SMALL_STATE(71)] = 6944, - [SMALL_STATE(72)] = 6995, - [SMALL_STATE(73)] = 7046, - [SMALL_STATE(74)] = 7097, - [SMALL_STATE(75)] = 7148, - [SMALL_STATE(76)] = 7251, - [SMALL_STATE(77)] = 7354, - [SMALL_STATE(78)] = 7407, - [SMALL_STATE(79)] = 7510, - [SMALL_STATE(80)] = 7563, + [SMALL_STATE(71)] = 6894, + [SMALL_STATE(72)] = 6947, + [SMALL_STATE(73)] = 7050, + [SMALL_STATE(74)] = 7101, + [SMALL_STATE(75)] = 7152, + [SMALL_STATE(76)] = 7255, + [SMALL_STATE(77)] = 7358, + [SMALL_STATE(78)] = 7409, + [SMALL_STATE(79)] = 7462, + [SMALL_STATE(80)] = 7565, [SMALL_STATE(81)] = 7616, - [SMALL_STATE(82)] = 7719, - [SMALL_STATE(83)] = 7770, - [SMALL_STATE(84)] = 7873, - [SMALL_STATE(85)] = 7976, - [SMALL_STATE(86)] = 8029, - [SMALL_STATE(87)] = 8080, - [SMALL_STATE(88)] = 8183, - [SMALL_STATE(89)] = 8234, - [SMALL_STATE(90)] = 8337, - [SMALL_STATE(91)] = 8440, - [SMALL_STATE(92)] = 8543, - [SMALL_STATE(93)] = 8594, - [SMALL_STATE(94)] = 8645, - [SMALL_STATE(95)] = 8696, - [SMALL_STATE(96)] = 8799, - [SMALL_STATE(97)] = 8850, - [SMALL_STATE(98)] = 8901, - [SMALL_STATE(99)] = 9004, + [SMALL_STATE(82)] = 7667, + [SMALL_STATE(83)] = 7718, + [SMALL_STATE(84)] = 7821, + [SMALL_STATE(85)] = 7872, + [SMALL_STATE(86)] = 7923, + [SMALL_STATE(87)] = 8026, + [SMALL_STATE(88)] = 8129, + [SMALL_STATE(89)] = 8232, + [SMALL_STATE(90)] = 8335, + [SMALL_STATE(91)] = 8438, + [SMALL_STATE(92)] = 8541, + [SMALL_STATE(93)] = 8592, + [SMALL_STATE(94)] = 8695, + [SMALL_STATE(95)] = 8798, + [SMALL_STATE(96)] = 8849, + [SMALL_STATE(97)] = 8952, + [SMALL_STATE(98)] = 9005, + [SMALL_STATE(99)] = 9056, [SMALL_STATE(100)] = 9107, [SMALL_STATE(101)] = 9207, - [SMALL_STATE(102)] = 9307, - [SMALL_STATE(103)] = 9407, + [SMALL_STATE(102)] = 9257, + [SMALL_STATE(103)] = 9357, [SMALL_STATE(104)] = 9457, - [SMALL_STATE(105)] = 9557, - [SMALL_STATE(106)] = 9657, + [SMALL_STATE(105)] = 9507, + [SMALL_STATE(106)] = 9607, [SMALL_STATE(107)] = 9707, - [SMALL_STATE(108)] = 9807, - [SMALL_STATE(109)] = 9907, - [SMALL_STATE(110)] = 10007, - [SMALL_STATE(111)] = 10107, - [SMALL_STATE(112)] = 10207, - [SMALL_STATE(113)] = 10307, - [SMALL_STATE(114)] = 10407, - [SMALL_STATE(115)] = 10507, - [SMALL_STATE(116)] = 10607, - [SMALL_STATE(117)] = 10707, - [SMALL_STATE(118)] = 10807, - [SMALL_STATE(119)] = 10907, - [SMALL_STATE(120)] = 11007, - [SMALL_STATE(121)] = 11107, - [SMALL_STATE(122)] = 11207, - [SMALL_STATE(123)] = 11307, - [SMALL_STATE(124)] = 11407, - [SMALL_STATE(125)] = 11507, - [SMALL_STATE(126)] = 11607, - [SMALL_STATE(127)] = 11657, - [SMALL_STATE(128)] = 11757, - [SMALL_STATE(129)] = 11857, - [SMALL_STATE(130)] = 11907, - [SMALL_STATE(131)] = 12007, - [SMALL_STATE(132)] = 12107, - [SMALL_STATE(133)] = 12207, - [SMALL_STATE(134)] = 12307, - [SMALL_STATE(135)] = 12409, - [SMALL_STATE(136)] = 12509, - [SMALL_STATE(137)] = 12559, - [SMALL_STATE(138)] = 12661, - [SMALL_STATE(139)] = 12711, - [SMALL_STATE(140)] = 12811, - [SMALL_STATE(141)] = 12911, - [SMALL_STATE(142)] = 13013, - [SMALL_STATE(143)] = 13113, - [SMALL_STATE(144)] = 13213, - [SMALL_STATE(145)] = 13313, - [SMALL_STATE(146)] = 13413, - [SMALL_STATE(147)] = 13513, - [SMALL_STATE(148)] = 13563, - [SMALL_STATE(149)] = 13663, - [SMALL_STATE(150)] = 13763, - [SMALL_STATE(151)] = 13863, - [SMALL_STATE(152)] = 13963, - [SMALL_STATE(153)] = 14063, - [SMALL_STATE(154)] = 14163, - [SMALL_STATE(155)] = 14263, - [SMALL_STATE(156)] = 14363, - [SMALL_STATE(157)] = 14463, - [SMALL_STATE(158)] = 14513, - [SMALL_STATE(159)] = 14613, - [SMALL_STATE(160)] = 14713, - [SMALL_STATE(161)] = 14813, - [SMALL_STATE(162)] = 14913, - [SMALL_STATE(163)] = 14963, + [SMALL_STATE(108)] = 9809, + [SMALL_STATE(109)] = 9859, + [SMALL_STATE(110)] = 9909, + [SMALL_STATE(111)] = 10009, + [SMALL_STATE(112)] = 10059, + [SMALL_STATE(113)] = 10159, + [SMALL_STATE(114)] = 10259, + [SMALL_STATE(115)] = 10359, + [SMALL_STATE(116)] = 10459, + [SMALL_STATE(117)] = 10559, + [SMALL_STATE(118)] = 10659, + [SMALL_STATE(119)] = 10759, + [SMALL_STATE(120)] = 10859, + [SMALL_STATE(121)] = 10959, + [SMALL_STATE(122)] = 11059, + [SMALL_STATE(123)] = 11159, + [SMALL_STATE(124)] = 11259, + [SMALL_STATE(125)] = 11359, + [SMALL_STATE(126)] = 11459, + [SMALL_STATE(127)] = 11559, + [SMALL_STATE(128)] = 11659, + [SMALL_STATE(129)] = 11759, + [SMALL_STATE(130)] = 11859, + [SMALL_STATE(131)] = 11909, + [SMALL_STATE(132)] = 11959, + [SMALL_STATE(133)] = 12059, + [SMALL_STATE(134)] = 12109, + [SMALL_STATE(135)] = 12159, + [SMALL_STATE(136)] = 12209, + [SMALL_STATE(137)] = 12309, + [SMALL_STATE(138)] = 12409, + [SMALL_STATE(139)] = 12509, + [SMALL_STATE(140)] = 12609, + [SMALL_STATE(141)] = 12709, + [SMALL_STATE(142)] = 12809, + [SMALL_STATE(143)] = 12909, + [SMALL_STATE(144)] = 13009, + [SMALL_STATE(145)] = 13109, + [SMALL_STATE(146)] = 13209, + [SMALL_STATE(147)] = 13309, + [SMALL_STATE(148)] = 13409, + [SMALL_STATE(149)] = 13509, + [SMALL_STATE(150)] = 13609, + [SMALL_STATE(151)] = 13709, + [SMALL_STATE(152)] = 13809, + [SMALL_STATE(153)] = 13909, + [SMALL_STATE(154)] = 14009, + [SMALL_STATE(155)] = 14109, + [SMALL_STATE(156)] = 14209, + [SMALL_STATE(157)] = 14309, + [SMALL_STATE(158)] = 14409, + [SMALL_STATE(159)] = 14511, + [SMALL_STATE(160)] = 14611, + [SMALL_STATE(161)] = 14711, + [SMALL_STATE(162)] = 14811, + [SMALL_STATE(163)] = 14913, [SMALL_STATE(164)] = 15013, [SMALL_STATE(165)] = 15113, [SMALL_STATE(166)] = 15213, - [SMALL_STATE(167)] = 15263, + [SMALL_STATE(167)] = 15313, [SMALL_STATE(168)] = 15363, [SMALL_STATE(169)] = 15463, - [SMALL_STATE(170)] = 15562, + [SMALL_STATE(170)] = 15512, [SMALL_STATE(171)] = 15611, [SMALL_STATE(172)] = 15658, - [SMALL_STATE(173)] = 15719, - [SMALL_STATE(174)] = 15772, - [SMALL_STATE(175)] = 15833, - [SMALL_STATE(176)] = 15894, - [SMALL_STATE(177)] = 15941, - [SMALL_STATE(178)] = 16002, - [SMALL_STATE(179)] = 16051, - [SMALL_STATE(180)] = 16112, - [SMALL_STATE(181)] = 16171, - [SMALL_STATE(182)] = 16222, - [SMALL_STATE(183)] = 16279, + [SMALL_STATE(173)] = 15709, + [SMALL_STATE(174)] = 15766, + [SMALL_STATE(175)] = 15825, + [SMALL_STATE(176)] = 15874, + [SMALL_STATE(177)] = 15927, + [SMALL_STATE(178)] = 15988, + [SMALL_STATE(179)] = 16035, + [SMALL_STATE(180)] = 16096, + [SMALL_STATE(181)] = 16157, + [SMALL_STATE(182)] = 16212, + [SMALL_STATE(183)] = 16273, [SMALL_STATE(184)] = 16334, [SMALL_STATE(185)] = 16377, [SMALL_STATE(186)] = 16420, [SMALL_STATE(187)] = 16463, [SMALL_STATE(188)] = 16506, - [SMALL_STATE(189)] = 16551, - [SMALL_STATE(190)] = 16594, - [SMALL_STATE(191)] = 16639, - [SMALL_STATE(192)] = 16684, - [SMALL_STATE(193)] = 16731, - [SMALL_STATE(194)] = 16774, - [SMALL_STATE(195)] = 16817, + [SMALL_STATE(189)] = 16549, + [SMALL_STATE(190)] = 16592, + [SMALL_STATE(191)] = 16635, + [SMALL_STATE(192)] = 16680, + [SMALL_STATE(193)] = 16725, + [SMALL_STATE(194)] = 16768, + [SMALL_STATE(195)] = 16813, [SMALL_STATE(196)] = 16860, [SMALL_STATE(197)] = 16903, [SMALL_STATE(198)] = 16946, [SMALL_STATE(199)] = 16989, - [SMALL_STATE(200)] = 17033, - [SMALL_STATE(201)] = 17075, - [SMALL_STATE(202)] = 17117, - [SMALL_STATE(203)] = 17159, - [SMALL_STATE(204)] = 17201, + [SMALL_STATE(200)] = 17031, + [SMALL_STATE(201)] = 17073, + [SMALL_STATE(202)] = 17115, + [SMALL_STATE(203)] = 17157, + [SMALL_STATE(204)] = 17199, [SMALL_STATE(205)] = 17243, - [SMALL_STATE(206)] = 17285, - [SMALL_STATE(207)] = 17329, - [SMALL_STATE(208)] = 17371, + [SMALL_STATE(206)] = 17287, + [SMALL_STATE(207)] = 17331, + [SMALL_STATE(208)] = 17373, [SMALL_STATE(209)] = 17415, - [SMALL_STATE(210)] = 17457, - [SMALL_STATE(211)] = 17499, + [SMALL_STATE(210)] = 17459, + [SMALL_STATE(211)] = 17501, [SMALL_STATE(212)] = 17543, [SMALL_STATE(213)] = 17585, [SMALL_STATE(214)] = 17627, [SMALL_STATE(215)] = 17669, - [SMALL_STATE(216)] = 17710, - [SMALL_STATE(217)] = 17751, - [SMALL_STATE(218)] = 17792, - [SMALL_STATE(219)] = 17847, - [SMALL_STATE(220)] = 17902, - [SMALL_STATE(221)] = 17955, - [SMALL_STATE(222)] = 17996, - [SMALL_STATE(223)] = 18041, - [SMALL_STATE(224)] = 18096, - [SMALL_STATE(225)] = 18143, - [SMALL_STATE(226)] = 18184, - [SMALL_STATE(227)] = 18225, - [SMALL_STATE(228)] = 18274, - [SMALL_STATE(229)] = 18315, - [SMALL_STATE(230)] = 18370, - [SMALL_STATE(231)] = 18411, - [SMALL_STATE(232)] = 18452, - [SMALL_STATE(233)] = 18493, - [SMALL_STATE(234)] = 18544, - [SMALL_STATE(235)] = 18587, - [SMALL_STATE(236)] = 18628, - [SMALL_STATE(237)] = 18669, + [SMALL_STATE(216)] = 17720, + [SMALL_STATE(217)] = 17761, + [SMALL_STATE(218)] = 17816, + [SMALL_STATE(219)] = 17871, + [SMALL_STATE(220)] = 17912, + [SMALL_STATE(221)] = 17953, + [SMALL_STATE(222)] = 17994, + [SMALL_STATE(223)] = 18049, + [SMALL_STATE(224)] = 18104, + [SMALL_STATE(225)] = 18145, + [SMALL_STATE(226)] = 18186, + [SMALL_STATE(227)] = 18227, + [SMALL_STATE(228)] = 18268, + [SMALL_STATE(229)] = 18309, + [SMALL_STATE(230)] = 18350, + [SMALL_STATE(231)] = 18393, + [SMALL_STATE(232)] = 18434, + [SMALL_STATE(233)] = 18475, + [SMALL_STATE(234)] = 18516, + [SMALL_STATE(235)] = 18569, + [SMALL_STATE(236)] = 18614, + [SMALL_STATE(237)] = 18663, [SMALL_STATE(238)] = 18710, [SMALL_STATE(239)] = 18749, [SMALL_STATE(240)] = 18798, @@ -30989,842 +31237,850 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(242)] = 18896, [SMALL_STATE(243)] = 18932, [SMALL_STATE(244)] = 18978, - [SMALL_STATE(245)] = 19016, - [SMALL_STATE(246)] = 19062, - [SMALL_STATE(247)] = 19098, - [SMALL_STATE(248)] = 19144, - [SMALL_STATE(249)] = 19180, - [SMALL_STATE(250)] = 19218, - [SMALL_STATE(251)] = 19254, + [SMALL_STATE(245)] = 19014, + [SMALL_STATE(246)] = 19050, + [SMALL_STATE(247)] = 19096, + [SMALL_STATE(248)] = 19134, + [SMALL_STATE(249)] = 19174, + [SMALL_STATE(250)] = 19212, + [SMALL_STATE(251)] = 19248, [SMALL_STATE(252)] = 19294, [SMALL_STATE(253)] = 19330, [SMALL_STATE(254)] = 19366, - [SMALL_STATE(255)] = 19405, - [SMALL_STATE(256)] = 19442, - [SMALL_STATE(257)] = 19501, - [SMALL_STATE(258)] = 19560, - [SMALL_STATE(259)] = 19595, - [SMALL_STATE(260)] = 19630, - [SMALL_STATE(261)] = 19665, - [SMALL_STATE(262)] = 19700, - [SMALL_STATE(263)] = 19735, - [SMALL_STATE(264)] = 19770, - [SMALL_STATE(265)] = 19805, - [SMALL_STATE(266)] = 19840, - [SMALL_STATE(267)] = 19875, - [SMALL_STATE(268)] = 19910, - [SMALL_STATE(269)] = 19945, - [SMALL_STATE(270)] = 19980, - [SMALL_STATE(271)] = 20017, - [SMALL_STATE(272)] = 20054, + [SMALL_STATE(255)] = 19403, + [SMALL_STATE(256)] = 19440, + [SMALL_STATE(257)] = 19499, + [SMALL_STATE(258)] = 19534, + [SMALL_STATE(259)] = 19569, + [SMALL_STATE(260)] = 19604, + [SMALL_STATE(261)] = 19639, + [SMALL_STATE(262)] = 19674, + [SMALL_STATE(263)] = 19709, + [SMALL_STATE(264)] = 19744, + [SMALL_STATE(265)] = 19779, + [SMALL_STATE(266)] = 19814, + [SMALL_STATE(267)] = 19873, + [SMALL_STATE(268)] = 19908, + [SMALL_STATE(269)] = 19943, + [SMALL_STATE(270)] = 19978, + [SMALL_STATE(271)] = 20015, + [SMALL_STATE(272)] = 20052, [SMALL_STATE(273)] = 20091, [SMALL_STATE(274)] = 20125, [SMALL_STATE(275)] = 20159, - [SMALL_STATE(276)] = 20193, + [SMALL_STATE(276)] = 20223, [SMALL_STATE(277)] = 20257, [SMALL_STATE(278)] = 20291, - [SMALL_STATE(279)] = 20347, - [SMALL_STATE(280)] = 20411, - [SMALL_STATE(281)] = 20445, - [SMALL_STATE(282)] = 20479, - [SMALL_STATE(283)] = 20543, - [SMALL_STATE(284)] = 20577, - [SMALL_STATE(285)] = 20611, - [SMALL_STATE(286)] = 20675, - [SMALL_STATE(287)] = 20709, - [SMALL_STATE(288)] = 20743, - [SMALL_STATE(289)] = 20777, - [SMALL_STATE(290)] = 20811, + [SMALL_STATE(279)] = 20325, + [SMALL_STATE(280)] = 20359, + [SMALL_STATE(281)] = 20393, + [SMALL_STATE(282)] = 20427, + [SMALL_STATE(283)] = 20491, + [SMALL_STATE(284)] = 20525, + [SMALL_STATE(285)] = 20589, + [SMALL_STATE(286)] = 20623, + [SMALL_STATE(287)] = 20657, + [SMALL_STATE(288)] = 20713, + [SMALL_STATE(289)] = 20747, + [SMALL_STATE(290)] = 20781, [SMALL_STATE(291)] = 20845, - [SMALL_STATE(292)] = 20880, - [SMALL_STATE(293)] = 20941, - [SMALL_STATE(294)] = 20996, + [SMALL_STATE(292)] = 20900, + [SMALL_STATE(293)] = 20961, + [SMALL_STATE(294)] = 21016, [SMALL_STATE(295)] = 21051, [SMALL_STATE(296)] = 21112, - [SMALL_STATE(297)] = 21173, + [SMALL_STATE(297)] = 21167, [SMALL_STATE(298)] = 21228, [SMALL_STATE(299)] = 21288, - [SMALL_STATE(300)] = 21340, - [SMALL_STATE(301)] = 21374, - [SMALL_STATE(302)] = 21418, - [SMALL_STATE(303)] = 21464, - [SMALL_STATE(304)] = 21506, + [SMALL_STATE(300)] = 21330, + [SMALL_STATE(301)] = 21376, + [SMALL_STATE(302)] = 21420, + [SMALL_STATE(303)] = 21454, + [SMALL_STATE(304)] = 21500, [SMALL_STATE(305)] = 21552, - [SMALL_STATE(306)] = 21598, - [SMALL_STATE(307)] = 21638, - [SMALL_STATE(308)] = 21676, + [SMALL_STATE(306)] = 21588, + [SMALL_STATE(307)] = 21626, + [SMALL_STATE(308)] = 21666, [SMALL_STATE(309)] = 21712, - [SMALL_STATE(310)] = 21765, - [SMALL_STATE(311)] = 21814, - [SMALL_STATE(312)] = 21859, - [SMALL_STATE(313)] = 21904, - [SMALL_STATE(314)] = 21953, - [SMALL_STATE(315)] = 22006, - [SMALL_STATE(316)] = 22041, - [SMALL_STATE(317)] = 22090, - [SMALL_STATE(318)] = 22127, - [SMALL_STATE(319)] = 22166, - [SMALL_STATE(320)] = 22207, - [SMALL_STATE(321)] = 22260, - [SMALL_STATE(322)] = 22313, - [SMALL_STATE(323)] = 22356, - [SMALL_STATE(324)] = 22413, - [SMALL_STATE(325)] = 22446, - [SMALL_STATE(326)] = 22495, - [SMALL_STATE(327)] = 22544, - [SMALL_STATE(328)] = 22597, - [SMALL_STATE(329)] = 22646, - [SMALL_STATE(330)] = 22699, - [SMALL_STATE(331)] = 22748, - [SMALL_STATE(332)] = 22802, - [SMALL_STATE(333)] = 22856, - [SMALL_STATE(334)] = 22900, - [SMALL_STATE(335)] = 22954, - [SMALL_STATE(336)] = 23008, - [SMALL_STATE(337)] = 23062, - [SMALL_STATE(338)] = 23106, - [SMALL_STATE(339)] = 23160, - [SMALL_STATE(340)] = 23214, - [SMALL_STATE(341)] = 23268, - [SMALL_STATE(342)] = 23322, - [SMALL_STATE(343)] = 23376, - [SMALL_STATE(344)] = 23430, - [SMALL_STATE(345)] = 23484, - [SMALL_STATE(346)] = 23528, - [SMALL_STATE(347)] = 23582, - [SMALL_STATE(348)] = 23625, - [SMALL_STATE(349)] = 23668, - [SMALL_STATE(350)] = 23711, - [SMALL_STATE(351)] = 23762, - [SMALL_STATE(352)] = 23805, - [SMALL_STATE(353)] = 23848, - [SMALL_STATE(354)] = 23891, - [SMALL_STATE(355)] = 23934, - [SMALL_STATE(356)] = 23977, - [SMALL_STATE(357)] = 24020, - [SMALL_STATE(358)] = 24071, - [SMALL_STATE(359)] = 24114, - [SMALL_STATE(360)] = 24157, - [SMALL_STATE(361)] = 24200, - [SMALL_STATE(362)] = 24243, - [SMALL_STATE(363)] = 24292, - [SMALL_STATE(364)] = 24341, - [SMALL_STATE(365)] = 24390, - [SMALL_STATE(366)] = 24436, - [SMALL_STATE(367)] = 24482, - [SMALL_STATE(368)] = 24510, - [SMALL_STATE(369)] = 24556, - [SMALL_STATE(370)] = 24602, - [SMALL_STATE(371)] = 24648, - [SMALL_STATE(372)] = 24694, - [SMALL_STATE(373)] = 24720, - [SMALL_STATE(374)] = 24766, - [SMALL_STATE(375)] = 24791, - [SMALL_STATE(376)] = 24816, - [SMALL_STATE(377)] = 24841, - [SMALL_STATE(378)] = 24866, - [SMALL_STATE(379)] = 24891, - [SMALL_STATE(380)] = 24916, - [SMALL_STATE(381)] = 24941, - [SMALL_STATE(382)] = 24966, - [SMALL_STATE(383)] = 25009, - [SMALL_STATE(384)] = 25034, - [SMALL_STATE(385)] = 25059, - [SMALL_STATE(386)] = 25084, - [SMALL_STATE(387)] = 25109, - [SMALL_STATE(388)] = 25152, - [SMALL_STATE(389)] = 25195, - [SMALL_STATE(390)] = 25220, - [SMALL_STATE(391)] = 25263, - [SMALL_STATE(392)] = 25306, - [SMALL_STATE(393)] = 25349, - [SMALL_STATE(394)] = 25374, - [SMALL_STATE(395)] = 25414, - [SMALL_STATE(396)] = 25454, - [SMALL_STATE(397)] = 25494, - [SMALL_STATE(398)] = 25517, - [SMALL_STATE(399)] = 25539, - [SMALL_STATE(400)] = 25559, - [SMALL_STATE(401)] = 25579, - [SMALL_STATE(402)] = 25599, - [SMALL_STATE(403)] = 25625, - [SMALL_STATE(404)] = 25649, - [SMALL_STATE(405)] = 25683, - [SMALL_STATE(406)] = 25717, - [SMALL_STATE(407)] = 25737, - [SMALL_STATE(408)] = 25768, - [SMALL_STATE(409)] = 25799, - [SMALL_STATE(410)] = 25822, - [SMALL_STATE(411)] = 25849, - [SMALL_STATE(412)] = 25880, - [SMALL_STATE(413)] = 25911, - [SMALL_STATE(414)] = 25942, - [SMALL_STATE(415)] = 25969, - [SMALL_STATE(416)] = 26000, - [SMALL_STATE(417)] = 26031, - [SMALL_STATE(418)] = 26059, - [SMALL_STATE(419)] = 26087, - [SMALL_STATE(420)] = 26115, - [SMALL_STATE(421)] = 26143, - [SMALL_STATE(422)] = 26171, - [SMALL_STATE(423)] = 26199, - [SMALL_STATE(424)] = 26227, - [SMALL_STATE(425)] = 26255, - [SMALL_STATE(426)] = 26283, - [SMALL_STATE(427)] = 26311, - [SMALL_STATE(428)] = 26339, - [SMALL_STATE(429)] = 26367, - [SMALL_STATE(430)] = 26395, - [SMALL_STATE(431)] = 26423, - [SMALL_STATE(432)] = 26451, - [SMALL_STATE(433)] = 26479, - [SMALL_STATE(434)] = 26507, - [SMALL_STATE(435)] = 26535, - [SMALL_STATE(436)] = 26563, - [SMALL_STATE(437)] = 26591, - [SMALL_STATE(438)] = 26619, - [SMALL_STATE(439)] = 26647, - [SMALL_STATE(440)] = 26675, - [SMALL_STATE(441)] = 26703, - [SMALL_STATE(442)] = 26731, - [SMALL_STATE(443)] = 26751, - [SMALL_STATE(444)] = 26779, - [SMALL_STATE(445)] = 26796, - [SMALL_STATE(446)] = 26813, - [SMALL_STATE(447)] = 26830, - [SMALL_STATE(448)] = 26847, - [SMALL_STATE(449)] = 26864, - [SMALL_STATE(450)] = 26881, - [SMALL_STATE(451)] = 26898, - [SMALL_STATE(452)] = 26915, - [SMALL_STATE(453)] = 26932, - [SMALL_STATE(454)] = 26949, - [SMALL_STATE(455)] = 26966, - [SMALL_STATE(456)] = 26983, - [SMALL_STATE(457)] = 27000, - [SMALL_STATE(458)] = 27017, - [SMALL_STATE(459)] = 27034, - [SMALL_STATE(460)] = 27051, - [SMALL_STATE(461)] = 27070, - [SMALL_STATE(462)] = 27087, - [SMALL_STATE(463)] = 27104, - [SMALL_STATE(464)] = 27121, - [SMALL_STATE(465)] = 27138, - [SMALL_STATE(466)] = 27172, - [SMALL_STATE(467)] = 27198, - [SMALL_STATE(468)] = 27232, - [SMALL_STATE(469)] = 27266, - [SMALL_STATE(470)] = 27292, - [SMALL_STATE(471)] = 27326, - [SMALL_STATE(472)] = 27342, - [SMALL_STATE(473)] = 27376, - [SMALL_STATE(474)] = 27399, - [SMALL_STATE(475)] = 27430, - [SMALL_STATE(476)] = 27459, - [SMALL_STATE(477)] = 27482, - [SMALL_STATE(478)] = 27505, - [SMALL_STATE(479)] = 27536, - [SMALL_STATE(480)] = 27564, - [SMALL_STATE(481)] = 27582, - [SMALL_STATE(482)] = 27604, - [SMALL_STATE(483)] = 27617, - [SMALL_STATE(484)] = 27635, - [SMALL_STATE(485)] = 27651, - [SMALL_STATE(486)] = 27667, - [SMALL_STATE(487)] = 27683, - [SMALL_STATE(488)] = 27699, - [SMALL_STATE(489)] = 27715, - [SMALL_STATE(490)] = 27735, - [SMALL_STATE(491)] = 27748, - [SMALL_STATE(492)] = 27763, - [SMALL_STATE(493)] = 27778, - [SMALL_STATE(494)] = 27793, - [SMALL_STATE(495)] = 27808, - [SMALL_STATE(496)] = 27823, - [SMALL_STATE(497)] = 27838, - [SMALL_STATE(498)] = 27851, - [SMALL_STATE(499)] = 27870, - [SMALL_STATE(500)] = 27889, - [SMALL_STATE(501)] = 27904, - [SMALL_STATE(502)] = 27919, - [SMALL_STATE(503)] = 27938, - [SMALL_STATE(504)] = 27953, - [SMALL_STATE(505)] = 27972, - [SMALL_STATE(506)] = 27986, - [SMALL_STATE(507)] = 28000, - [SMALL_STATE(508)] = 28010, - [SMALL_STATE(509)] = 28024, - [SMALL_STATE(510)] = 28040, - [SMALL_STATE(511)] = 28056, - [SMALL_STATE(512)] = 28066, - [SMALL_STATE(513)] = 28082, - [SMALL_STATE(514)] = 28092, - [SMALL_STATE(515)] = 28102, - [SMALL_STATE(516)] = 28116, - [SMALL_STATE(517)] = 28130, - [SMALL_STATE(518)] = 28140, - [SMALL_STATE(519)] = 28150, - [SMALL_STATE(520)] = 28160, - [SMALL_STATE(521)] = 28170, - [SMALL_STATE(522)] = 28180, - [SMALL_STATE(523)] = 28194, - [SMALL_STATE(524)] = 28208, - [SMALL_STATE(525)] = 28222, - [SMALL_STATE(526)] = 28236, - [SMALL_STATE(527)] = 28250, - [SMALL_STATE(528)] = 28260, - [SMALL_STATE(529)] = 28276, - [SMALL_STATE(530)] = 28290, - [SMALL_STATE(531)] = 28304, - [SMALL_STATE(532)] = 28318, - [SMALL_STATE(533)] = 28334, - [SMALL_STATE(534)] = 28350, - [SMALL_STATE(535)] = 28366, - [SMALL_STATE(536)] = 28380, - [SMALL_STATE(537)] = 28394, - [SMALL_STATE(538)] = 28408, - [SMALL_STATE(539)] = 28422, - [SMALL_STATE(540)] = 28436, - [SMALL_STATE(541)] = 28446, - [SMALL_STATE(542)] = 28460, - [SMALL_STATE(543)] = 28474, - [SMALL_STATE(544)] = 28488, - [SMALL_STATE(545)] = 28504, - [SMALL_STATE(546)] = 28514, - [SMALL_STATE(547)] = 28530, - [SMALL_STATE(548)] = 28542, - [SMALL_STATE(549)] = 28552, - [SMALL_STATE(550)] = 28566, - [SMALL_STATE(551)] = 28576, - [SMALL_STATE(552)] = 28590, - [SMALL_STATE(553)] = 28600, - [SMALL_STATE(554)] = 28610, - [SMALL_STATE(555)] = 28624, - [SMALL_STATE(556)] = 28640, - [SMALL_STATE(557)] = 28656, - [SMALL_STATE(558)] = 28666, - [SMALL_STATE(559)] = 28682, - [SMALL_STATE(560)] = 28695, - [SMALL_STATE(561)] = 28704, - [SMALL_STATE(562)] = 28717, - [SMALL_STATE(563)] = 28730, - [SMALL_STATE(564)] = 28741, - [SMALL_STATE(565)] = 28754, - [SMALL_STATE(566)] = 28767, - [SMALL_STATE(567)] = 28780, - [SMALL_STATE(568)] = 28789, - [SMALL_STATE(569)] = 28802, - [SMALL_STATE(570)] = 28811, - [SMALL_STATE(571)] = 28824, - [SMALL_STATE(572)] = 28833, - [SMALL_STATE(573)] = 28846, - [SMALL_STATE(574)] = 28859, - [SMALL_STATE(575)] = 28870, - [SMALL_STATE(576)] = 28883, - [SMALL_STATE(577)] = 28896, - [SMALL_STATE(578)] = 28909, - [SMALL_STATE(579)] = 28922, - [SMALL_STATE(580)] = 28935, - [SMALL_STATE(581)] = 28948, - [SMALL_STATE(582)] = 28961, - [SMALL_STATE(583)] = 28974, - [SMALL_STATE(584)] = 28987, - [SMALL_STATE(585)] = 28996, - [SMALL_STATE(586)] = 29009, - [SMALL_STATE(587)] = 29022, - [SMALL_STATE(588)] = 29035, - [SMALL_STATE(589)] = 29048, - [SMALL_STATE(590)] = 29061, - [SMALL_STATE(591)] = 29074, - [SMALL_STATE(592)] = 29087, - [SMALL_STATE(593)] = 29100, - [SMALL_STATE(594)] = 29111, - [SMALL_STATE(595)] = 29124, - [SMALL_STATE(596)] = 29133, - [SMALL_STATE(597)] = 29146, - [SMALL_STATE(598)] = 29159, - [SMALL_STATE(599)] = 29172, - [SMALL_STATE(600)] = 29185, - [SMALL_STATE(601)] = 29198, - [SMALL_STATE(602)] = 29211, - [SMALL_STATE(603)] = 29224, - [SMALL_STATE(604)] = 29237, - [SMALL_STATE(605)] = 29250, - [SMALL_STATE(606)] = 29259, - [SMALL_STATE(607)] = 29272, - [SMALL_STATE(608)] = 29285, - [SMALL_STATE(609)] = 29298, - [SMALL_STATE(610)] = 29311, - [SMALL_STATE(611)] = 29324, - [SMALL_STATE(612)] = 29337, - [SMALL_STATE(613)] = 29346, - [SMALL_STATE(614)] = 29355, - [SMALL_STATE(615)] = 29368, - [SMALL_STATE(616)] = 29381, - [SMALL_STATE(617)] = 29394, - [SMALL_STATE(618)] = 29407, - [SMALL_STATE(619)] = 29420, - [SMALL_STATE(620)] = 29433, - [SMALL_STATE(621)] = 29446, - [SMALL_STATE(622)] = 29459, - [SMALL_STATE(623)] = 29468, - [SMALL_STATE(624)] = 29481, - [SMALL_STATE(625)] = 29494, - [SMALL_STATE(626)] = 29507, - [SMALL_STATE(627)] = 29516, - [SMALL_STATE(628)] = 29529, - [SMALL_STATE(629)] = 29542, - [SMALL_STATE(630)] = 29551, - [SMALL_STATE(631)] = 29564, - [SMALL_STATE(632)] = 29573, - [SMALL_STATE(633)] = 29586, - [SMALL_STATE(634)] = 29599, - [SMALL_STATE(635)] = 29612, - [SMALL_STATE(636)] = 29621, - [SMALL_STATE(637)] = 29634, - [SMALL_STATE(638)] = 29647, - [SMALL_STATE(639)] = 29660, - [SMALL_STATE(640)] = 29673, - [SMALL_STATE(641)] = 29686, - [SMALL_STATE(642)] = 29699, - [SMALL_STATE(643)] = 29710, - [SMALL_STATE(644)] = 29719, - [SMALL_STATE(645)] = 29732, - [SMALL_STATE(646)] = 29745, - [SMALL_STATE(647)] = 29758, - [SMALL_STATE(648)] = 29771, - [SMALL_STATE(649)] = 29784, - [SMALL_STATE(650)] = 29797, - [SMALL_STATE(651)] = 29806, - [SMALL_STATE(652)] = 29815, - [SMALL_STATE(653)] = 29828, - [SMALL_STATE(654)] = 29837, - [SMALL_STATE(655)] = 29850, - [SMALL_STATE(656)] = 29863, - [SMALL_STATE(657)] = 29874, - [SMALL_STATE(658)] = 29887, - [SMALL_STATE(659)] = 29900, - [SMALL_STATE(660)] = 29913, - [SMALL_STATE(661)] = 29926, - [SMALL_STATE(662)] = 29939, - [SMALL_STATE(663)] = 29952, - [SMALL_STATE(664)] = 29965, - [SMALL_STATE(665)] = 29976, - [SMALL_STATE(666)] = 29989, - [SMALL_STATE(667)] = 30002, - [SMALL_STATE(668)] = 30015, - [SMALL_STATE(669)] = 30028, - [SMALL_STATE(670)] = 30041, - [SMALL_STATE(671)] = 30054, - [SMALL_STATE(672)] = 30065, - [SMALL_STATE(673)] = 30078, - [SMALL_STATE(674)] = 30087, - [SMALL_STATE(675)] = 30096, - [SMALL_STATE(676)] = 30109, - [SMALL_STATE(677)] = 30122, - [SMALL_STATE(678)] = 30135, - [SMALL_STATE(679)] = 30148, - [SMALL_STATE(680)] = 30161, - [SMALL_STATE(681)] = 30174, - [SMALL_STATE(682)] = 30187, - [SMALL_STATE(683)] = 30198, - [SMALL_STATE(684)] = 30211, - [SMALL_STATE(685)] = 30224, - [SMALL_STATE(686)] = 30233, - [SMALL_STATE(687)] = 30242, - [SMALL_STATE(688)] = 30255, - [SMALL_STATE(689)] = 30268, - [SMALL_STATE(690)] = 30281, - [SMALL_STATE(691)] = 30294, - [SMALL_STATE(692)] = 30307, - [SMALL_STATE(693)] = 30320, - [SMALL_STATE(694)] = 30331, - [SMALL_STATE(695)] = 30344, - [SMALL_STATE(696)] = 30357, - [SMALL_STATE(697)] = 30370, - [SMALL_STATE(698)] = 30381, - [SMALL_STATE(699)] = 30394, - [SMALL_STATE(700)] = 30407, - [SMALL_STATE(701)] = 30420, - [SMALL_STATE(702)] = 30433, - [SMALL_STATE(703)] = 30446, - [SMALL_STATE(704)] = 30459, - [SMALL_STATE(705)] = 30472, - [SMALL_STATE(706)] = 30485, - [SMALL_STATE(707)] = 30495, - [SMALL_STATE(708)] = 30503, - [SMALL_STATE(709)] = 30513, - [SMALL_STATE(710)] = 30523, - [SMALL_STATE(711)] = 30531, - [SMALL_STATE(712)] = 30541, - [SMALL_STATE(713)] = 30549, - [SMALL_STATE(714)] = 30559, - [SMALL_STATE(715)] = 30569, - [SMALL_STATE(716)] = 30579, - [SMALL_STATE(717)] = 30589, - [SMALL_STATE(718)] = 30599, - [SMALL_STATE(719)] = 30607, - [SMALL_STATE(720)] = 30615, - [SMALL_STATE(721)] = 30625, - [SMALL_STATE(722)] = 30635, - [SMALL_STATE(723)] = 30643, - [SMALL_STATE(724)] = 30653, - [SMALL_STATE(725)] = 30663, - [SMALL_STATE(726)] = 30673, - [SMALL_STATE(727)] = 30683, - [SMALL_STATE(728)] = 30691, - [SMALL_STATE(729)] = 30701, - [SMALL_STATE(730)] = 30709, - [SMALL_STATE(731)] = 30719, - [SMALL_STATE(732)] = 30729, - [SMALL_STATE(733)] = 30739, - [SMALL_STATE(734)] = 30747, - [SMALL_STATE(735)] = 30757, - [SMALL_STATE(736)] = 30767, - [SMALL_STATE(737)] = 30775, - [SMALL_STATE(738)] = 30785, - [SMALL_STATE(739)] = 30793, - [SMALL_STATE(740)] = 30801, - [SMALL_STATE(741)] = 30809, - [SMALL_STATE(742)] = 30817, - [SMALL_STATE(743)] = 30827, - [SMALL_STATE(744)] = 30837, - [SMALL_STATE(745)] = 30845, - [SMALL_STATE(746)] = 30853, - [SMALL_STATE(747)] = 30861, - [SMALL_STATE(748)] = 30869, - [SMALL_STATE(749)] = 30877, - [SMALL_STATE(750)] = 30887, - [SMALL_STATE(751)] = 30897, - [SMALL_STATE(752)] = 30905, - [SMALL_STATE(753)] = 30913, - [SMALL_STATE(754)] = 30921, - [SMALL_STATE(755)] = 30929, - [SMALL_STATE(756)] = 30939, - [SMALL_STATE(757)] = 30949, - [SMALL_STATE(758)] = 30959, - [SMALL_STATE(759)] = 30967, - [SMALL_STATE(760)] = 30977, - [SMALL_STATE(761)] = 30985, - [SMALL_STATE(762)] = 30995, - [SMALL_STATE(763)] = 31003, - [SMALL_STATE(764)] = 31011, - [SMALL_STATE(765)] = 31019, - [SMALL_STATE(766)] = 31027, - [SMALL_STATE(767)] = 31037, - [SMALL_STATE(768)] = 31047, - [SMALL_STATE(769)] = 31057, - [SMALL_STATE(770)] = 31067, - [SMALL_STATE(771)] = 31077, - [SMALL_STATE(772)] = 31087, - [SMALL_STATE(773)] = 31097, - [SMALL_STATE(774)] = 31105, - [SMALL_STATE(775)] = 31113, - [SMALL_STATE(776)] = 31121, - [SMALL_STATE(777)] = 31131, - [SMALL_STATE(778)] = 31141, - [SMALL_STATE(779)] = 31149, - [SMALL_STATE(780)] = 31159, - [SMALL_STATE(781)] = 31169, - [SMALL_STATE(782)] = 31179, - [SMALL_STATE(783)] = 31189, - [SMALL_STATE(784)] = 31199, - [SMALL_STATE(785)] = 31207, - [SMALL_STATE(786)] = 31217, - [SMALL_STATE(787)] = 31227, - [SMALL_STATE(788)] = 31237, - [SMALL_STATE(789)] = 31247, - [SMALL_STATE(790)] = 31257, - [SMALL_STATE(791)] = 31265, - [SMALL_STATE(792)] = 31275, - [SMALL_STATE(793)] = 31283, - [SMALL_STATE(794)] = 31293, - [SMALL_STATE(795)] = 31301, - [SMALL_STATE(796)] = 31311, - [SMALL_STATE(797)] = 31319, - [SMALL_STATE(798)] = 31327, - [SMALL_STATE(799)] = 31337, - [SMALL_STATE(800)] = 31345, - [SMALL_STATE(801)] = 31355, - [SMALL_STATE(802)] = 31365, - [SMALL_STATE(803)] = 31375, - [SMALL_STATE(804)] = 31385, - [SMALL_STATE(805)] = 31395, - [SMALL_STATE(806)] = 31405, - [SMALL_STATE(807)] = 31415, - [SMALL_STATE(808)] = 31425, - [SMALL_STATE(809)] = 31433, - [SMALL_STATE(810)] = 31443, - [SMALL_STATE(811)] = 31448, - [SMALL_STATE(812)] = 31455, - [SMALL_STATE(813)] = 31462, - [SMALL_STATE(814)] = 31469, - [SMALL_STATE(815)] = 31476, - [SMALL_STATE(816)] = 31483, - [SMALL_STATE(817)] = 31490, - [SMALL_STATE(818)] = 31497, - [SMALL_STATE(819)] = 31504, - [SMALL_STATE(820)] = 31511, - [SMALL_STATE(821)] = 31518, - [SMALL_STATE(822)] = 31525, - [SMALL_STATE(823)] = 31532, - [SMALL_STATE(824)] = 31539, - [SMALL_STATE(825)] = 31546, - [SMALL_STATE(826)] = 31553, - [SMALL_STATE(827)] = 31560, - [SMALL_STATE(828)] = 31567, - [SMALL_STATE(829)] = 31574, - [SMALL_STATE(830)] = 31581, - [SMALL_STATE(831)] = 31588, - [SMALL_STATE(832)] = 31595, - [SMALL_STATE(833)] = 31602, - [SMALL_STATE(834)] = 31609, - [SMALL_STATE(835)] = 31616, - [SMALL_STATE(836)] = 31623, - [SMALL_STATE(837)] = 31630, - [SMALL_STATE(838)] = 31637, - [SMALL_STATE(839)] = 31644, - [SMALL_STATE(840)] = 31651, - [SMALL_STATE(841)] = 31658, - [SMALL_STATE(842)] = 31665, - [SMALL_STATE(843)] = 31672, - [SMALL_STATE(844)] = 31679, - [SMALL_STATE(845)] = 31686, - [SMALL_STATE(846)] = 31693, - [SMALL_STATE(847)] = 31700, - [SMALL_STATE(848)] = 31707, - [SMALL_STATE(849)] = 31714, - [SMALL_STATE(850)] = 31721, - [SMALL_STATE(851)] = 31728, - [SMALL_STATE(852)] = 31735, - [SMALL_STATE(853)] = 31742, - [SMALL_STATE(854)] = 31749, - [SMALL_STATE(855)] = 31754, - [SMALL_STATE(856)] = 31761, - [SMALL_STATE(857)] = 31768, - [SMALL_STATE(858)] = 31773, - [SMALL_STATE(859)] = 31780, - [SMALL_STATE(860)] = 31787, - [SMALL_STATE(861)] = 31792, - [SMALL_STATE(862)] = 31797, - [SMALL_STATE(863)] = 31804, - [SMALL_STATE(864)] = 31811, - [SMALL_STATE(865)] = 31818, - [SMALL_STATE(866)] = 31825, - [SMALL_STATE(867)] = 31832, - [SMALL_STATE(868)] = 31839, - [SMALL_STATE(869)] = 31846, - [SMALL_STATE(870)] = 31853, - [SMALL_STATE(871)] = 31860, - [SMALL_STATE(872)] = 31867, - [SMALL_STATE(873)] = 31874, - [SMALL_STATE(874)] = 31881, - [SMALL_STATE(875)] = 31888, - [SMALL_STATE(876)] = 31895, - [SMALL_STATE(877)] = 31902, - [SMALL_STATE(878)] = 31909, - [SMALL_STATE(879)] = 31916, - [SMALL_STATE(880)] = 31923, - [SMALL_STATE(881)] = 31930, - [SMALL_STATE(882)] = 31937, - [SMALL_STATE(883)] = 31944, - [SMALL_STATE(884)] = 31951, - [SMALL_STATE(885)] = 31958, - [SMALL_STATE(886)] = 31965, - [SMALL_STATE(887)] = 31972, - [SMALL_STATE(888)] = 31979, - [SMALL_STATE(889)] = 31984, - [SMALL_STATE(890)] = 31991, - [SMALL_STATE(891)] = 31998, - [SMALL_STATE(892)] = 32005, - [SMALL_STATE(893)] = 32012, - [SMALL_STATE(894)] = 32019, - [SMALL_STATE(895)] = 32026, - [SMALL_STATE(896)] = 32033, - [SMALL_STATE(897)] = 32040, - [SMALL_STATE(898)] = 32047, - [SMALL_STATE(899)] = 32054, - [SMALL_STATE(900)] = 32061, - [SMALL_STATE(901)] = 32066, - [SMALL_STATE(902)] = 32071, - [SMALL_STATE(903)] = 32076, - [SMALL_STATE(904)] = 32083, - [SMALL_STATE(905)] = 32090, - [SMALL_STATE(906)] = 32097, - [SMALL_STATE(907)] = 32104, - [SMALL_STATE(908)] = 32111, - [SMALL_STATE(909)] = 32118, - [SMALL_STATE(910)] = 32125, - [SMALL_STATE(911)] = 32130, - [SMALL_STATE(912)] = 32137, - [SMALL_STATE(913)] = 32144, - [SMALL_STATE(914)] = 32151, - [SMALL_STATE(915)] = 32158, - [SMALL_STATE(916)] = 32163, - [SMALL_STATE(917)] = 32168, - [SMALL_STATE(918)] = 32175, - [SMALL_STATE(919)] = 32182, - [SMALL_STATE(920)] = 32189, - [SMALL_STATE(921)] = 32196, - [SMALL_STATE(922)] = 32203, - [SMALL_STATE(923)] = 32210, - [SMALL_STATE(924)] = 32217, - [SMALL_STATE(925)] = 32224, - [SMALL_STATE(926)] = 32231, - [SMALL_STATE(927)] = 32236, - [SMALL_STATE(928)] = 32243, - [SMALL_STATE(929)] = 32248, - [SMALL_STATE(930)] = 32255, - [SMALL_STATE(931)] = 32260, - [SMALL_STATE(932)] = 32265, - [SMALL_STATE(933)] = 32270, - [SMALL_STATE(934)] = 32277, - [SMALL_STATE(935)] = 32284, - [SMALL_STATE(936)] = 32291, - [SMALL_STATE(937)] = 32298, - [SMALL_STATE(938)] = 32303, - [SMALL_STATE(939)] = 32310, - [SMALL_STATE(940)] = 32317, - [SMALL_STATE(941)] = 32324, - [SMALL_STATE(942)] = 32329, - [SMALL_STATE(943)] = 32334, - [SMALL_STATE(944)] = 32341, - [SMALL_STATE(945)] = 32348, - [SMALL_STATE(946)] = 32353, - [SMALL_STATE(947)] = 32358, - [SMALL_STATE(948)] = 32363, - [SMALL_STATE(949)] = 32370, - [SMALL_STATE(950)] = 32375, - [SMALL_STATE(951)] = 32382, - [SMALL_STATE(952)] = 32389, - [SMALL_STATE(953)] = 32396, - [SMALL_STATE(954)] = 32403, - [SMALL_STATE(955)] = 32408, - [SMALL_STATE(956)] = 32413, - [SMALL_STATE(957)] = 32420, - [SMALL_STATE(958)] = 32427, - [SMALL_STATE(959)] = 32434, - [SMALL_STATE(960)] = 32441, - [SMALL_STATE(961)] = 32448, - [SMALL_STATE(962)] = 32455, - [SMALL_STATE(963)] = 32462, - [SMALL_STATE(964)] = 32469, - [SMALL_STATE(965)] = 32476, - [SMALL_STATE(966)] = 32483, - [SMALL_STATE(967)] = 32490, - [SMALL_STATE(968)] = 32497, - [SMALL_STATE(969)] = 32502, - [SMALL_STATE(970)] = 32509, - [SMALL_STATE(971)] = 32514, - [SMALL_STATE(972)] = 32519, - [SMALL_STATE(973)] = 32526, - [SMALL_STATE(974)] = 32531, - [SMALL_STATE(975)] = 32538, - [SMALL_STATE(976)] = 32545, - [SMALL_STATE(977)] = 32552, - [SMALL_STATE(978)] = 32559, - [SMALL_STATE(979)] = 32566, - [SMALL_STATE(980)] = 32573, - [SMALL_STATE(981)] = 32578, - [SMALL_STATE(982)] = 32585, - [SMALL_STATE(983)] = 32592, - [SMALL_STATE(984)] = 32599, - [SMALL_STATE(985)] = 32606, - [SMALL_STATE(986)] = 32611, - [SMALL_STATE(987)] = 32618, - [SMALL_STATE(988)] = 32625, - [SMALL_STATE(989)] = 32630, - [SMALL_STATE(990)] = 32637, - [SMALL_STATE(991)] = 32642, - [SMALL_STATE(992)] = 32647, - [SMALL_STATE(993)] = 32654, - [SMALL_STATE(994)] = 32661, - [SMALL_STATE(995)] = 32668, - [SMALL_STATE(996)] = 32675, - [SMALL_STATE(997)] = 32682, - [SMALL_STATE(998)] = 32687, - [SMALL_STATE(999)] = 32694, - [SMALL_STATE(1000)] = 32701, - [SMALL_STATE(1001)] = 32708, - [SMALL_STATE(1002)] = 32713, - [SMALL_STATE(1003)] = 32720, - [SMALL_STATE(1004)] = 32727, - [SMALL_STATE(1005)] = 32732, - [SMALL_STATE(1006)] = 32739, - [SMALL_STATE(1007)] = 32746, - [SMALL_STATE(1008)] = 32753, - [SMALL_STATE(1009)] = 32760, - [SMALL_STATE(1010)] = 32767, - [SMALL_STATE(1011)] = 32772, - [SMALL_STATE(1012)] = 32777, - [SMALL_STATE(1013)] = 32782, - [SMALL_STATE(1014)] = 32789, - [SMALL_STATE(1015)] = 32794, - [SMALL_STATE(1016)] = 32801, - [SMALL_STATE(1017)] = 32808, - [SMALL_STATE(1018)] = 32815, - [SMALL_STATE(1019)] = 32822, - [SMALL_STATE(1020)] = 32829, - [SMALL_STATE(1021)] = 32836, - [SMALL_STATE(1022)] = 32841, - [SMALL_STATE(1023)] = 32846, - [SMALL_STATE(1024)] = 32853, - [SMALL_STATE(1025)] = 32860, - [SMALL_STATE(1026)] = 32865, - [SMALL_STATE(1027)] = 32872, - [SMALL_STATE(1028)] = 32879, - [SMALL_STATE(1029)] = 32886, - [SMALL_STATE(1030)] = 32891, - [SMALL_STATE(1031)] = 32896, - [SMALL_STATE(1032)] = 32901, - [SMALL_STATE(1033)] = 32906, - [SMALL_STATE(1034)] = 32911, - [SMALL_STATE(1035)] = 32918, - [SMALL_STATE(1036)] = 32925, - [SMALL_STATE(1037)] = 32932, - [SMALL_STATE(1038)] = 32937, - [SMALL_STATE(1039)] = 32944, - [SMALL_STATE(1040)] = 32949, - [SMALL_STATE(1041)] = 32956, - [SMALL_STATE(1042)] = 32961, - [SMALL_STATE(1043)] = 32966, - [SMALL_STATE(1044)] = 32973, - [SMALL_STATE(1045)] = 32980, - [SMALL_STATE(1046)] = 32987, - [SMALL_STATE(1047)] = 32994, - [SMALL_STATE(1048)] = 33001, - [SMALL_STATE(1049)] = 33008, - [SMALL_STATE(1050)] = 33015, - [SMALL_STATE(1051)] = 33022, - [SMALL_STATE(1052)] = 33027, - [SMALL_STATE(1053)] = 33032, - [SMALL_STATE(1054)] = 33039, - [SMALL_STATE(1055)] = 33046, - [SMALL_STATE(1056)] = 33051, - [SMALL_STATE(1057)] = 33056, - [SMALL_STATE(1058)] = 33061, - [SMALL_STATE(1059)] = 33066, - [SMALL_STATE(1060)] = 33073, - [SMALL_STATE(1061)] = 33080, - [SMALL_STATE(1062)] = 33087, - [SMALL_STATE(1063)] = 33094, - [SMALL_STATE(1064)] = 33099, - [SMALL_STATE(1065)] = 33104, - [SMALL_STATE(1066)] = 33111, - [SMALL_STATE(1067)] = 33116, - [SMALL_STATE(1068)] = 33123, - [SMALL_STATE(1069)] = 33130, - [SMALL_STATE(1070)] = 33137, - [SMALL_STATE(1071)] = 33144, - [SMALL_STATE(1072)] = 33151, - [SMALL_STATE(1073)] = 33158, - [SMALL_STATE(1074)] = 33165, - [SMALL_STATE(1075)] = 33170, - [SMALL_STATE(1076)] = 33177, - [SMALL_STATE(1077)] = 33184, - [SMALL_STATE(1078)] = 33191, - [SMALL_STATE(1079)] = 33198, - [SMALL_STATE(1080)] = 33205, + [SMALL_STATE(310)] = 21761, + [SMALL_STATE(311)] = 21798, + [SMALL_STATE(312)] = 21847, + [SMALL_STATE(313)] = 21902, + [SMALL_STATE(314)] = 21951, + [SMALL_STATE(315)] = 21996, + [SMALL_STATE(316)] = 22051, + [SMALL_STATE(317)] = 22100, + [SMALL_STATE(318)] = 22149, + [SMALL_STATE(319)] = 22184, + [SMALL_STATE(320)] = 22241, + [SMALL_STATE(321)] = 22296, + [SMALL_STATE(322)] = 22345, + [SMALL_STATE(323)] = 22400, + [SMALL_STATE(324)] = 22439, + [SMALL_STATE(325)] = 22480, + [SMALL_STATE(326)] = 22523, + [SMALL_STATE(327)] = 22572, + [SMALL_STATE(328)] = 22627, + [SMALL_STATE(329)] = 22672, + [SMALL_STATE(330)] = 22705, + [SMALL_STATE(331)] = 22760, + [SMALL_STATE(332)] = 22814, + [SMALL_STATE(333)] = 22868, + [SMALL_STATE(334)] = 22922, + [SMALL_STATE(335)] = 22976, + [SMALL_STATE(336)] = 23020, + [SMALL_STATE(337)] = 23074, + [SMALL_STATE(338)] = 23128, + [SMALL_STATE(339)] = 23182, + [SMALL_STATE(340)] = 23236, + [SMALL_STATE(341)] = 23290, + [SMALL_STATE(342)] = 23344, + [SMALL_STATE(343)] = 23388, + [SMALL_STATE(344)] = 23442, + [SMALL_STATE(345)] = 23496, + [SMALL_STATE(346)] = 23540, + [SMALL_STATE(347)] = 23594, + [SMALL_STATE(348)] = 23637, + [SMALL_STATE(349)] = 23680, + [SMALL_STATE(350)] = 23723, + [SMALL_STATE(351)] = 23766, + [SMALL_STATE(352)] = 23809, + [SMALL_STATE(353)] = 23852, + [SMALL_STATE(354)] = 23895, + [SMALL_STATE(355)] = 23946, + [SMALL_STATE(356)] = 23989, + [SMALL_STATE(357)] = 24032, + [SMALL_STATE(358)] = 24083, + [SMALL_STATE(359)] = 24126, + [SMALL_STATE(360)] = 24169, + [SMALL_STATE(361)] = 24212, + [SMALL_STATE(362)] = 24255, + [SMALL_STATE(363)] = 24309, + [SMALL_STATE(364)] = 24363, + [SMALL_STATE(365)] = 24417, + [SMALL_STATE(366)] = 24468, + [SMALL_STATE(367)] = 24499, + [SMALL_STATE(368)] = 24550, + [SMALL_STATE(369)] = 24601, + [SMALL_STATE(370)] = 24652, + [SMALL_STATE(371)] = 24678, + [SMALL_STATE(372)] = 24726, + [SMALL_STATE(373)] = 24774, + [SMALL_STATE(374)] = 24822, + [SMALL_STATE(375)] = 24870, + [SMALL_STATE(376)] = 24918, + [SMALL_STATE(377)] = 24966, + [SMALL_STATE(378)] = 25014, + [SMALL_STATE(379)] = 25039, + [SMALL_STATE(380)] = 25084, + [SMALL_STATE(381)] = 25129, + [SMALL_STATE(382)] = 25154, + [SMALL_STATE(383)] = 25199, + [SMALL_STATE(384)] = 25224, + [SMALL_STATE(385)] = 25249, + [SMALL_STATE(386)] = 25274, + [SMALL_STATE(387)] = 25299, + [SMALL_STATE(388)] = 25344, + [SMALL_STATE(389)] = 25369, + [SMALL_STATE(390)] = 25394, + [SMALL_STATE(391)] = 25419, + [SMALL_STATE(392)] = 25444, + [SMALL_STATE(393)] = 25469, + [SMALL_STATE(394)] = 25514, + [SMALL_STATE(395)] = 25539, + [SMALL_STATE(396)] = 25564, + [SMALL_STATE(397)] = 25589, + [SMALL_STATE(398)] = 25634, + [SMALL_STATE(399)] = 25659, + [SMALL_STATE(400)] = 25684, + [SMALL_STATE(401)] = 25724, + [SMALL_STATE(402)] = 25764, + [SMALL_STATE(403)] = 25804, + [SMALL_STATE(404)] = 25827, + [SMALL_STATE(405)] = 25847, + [SMALL_STATE(406)] = 25881, + [SMALL_STATE(407)] = 25901, + [SMALL_STATE(408)] = 25921, + [SMALL_STATE(409)] = 25947, + [SMALL_STATE(410)] = 25971, + [SMALL_STATE(411)] = 25993, + [SMALL_STATE(412)] = 26013, + [SMALL_STATE(413)] = 26047, + [SMALL_STATE(414)] = 26078, + [SMALL_STATE(415)] = 26105, + [SMALL_STATE(416)] = 26136, + [SMALL_STATE(417)] = 26167, + [SMALL_STATE(418)] = 26190, + [SMALL_STATE(419)] = 26221, + [SMALL_STATE(420)] = 26252, + [SMALL_STATE(421)] = 26279, + [SMALL_STATE(422)] = 26310, + [SMALL_STATE(423)] = 26341, + [SMALL_STATE(424)] = 26369, + [SMALL_STATE(425)] = 26397, + [SMALL_STATE(426)] = 26425, + [SMALL_STATE(427)] = 26453, + [SMALL_STATE(428)] = 26481, + [SMALL_STATE(429)] = 26509, + [SMALL_STATE(430)] = 26537, + [SMALL_STATE(431)] = 26565, + [SMALL_STATE(432)] = 26593, + [SMALL_STATE(433)] = 26621, + [SMALL_STATE(434)] = 26649, + [SMALL_STATE(435)] = 26677, + [SMALL_STATE(436)] = 26705, + [SMALL_STATE(437)] = 26733, + [SMALL_STATE(438)] = 26761, + [SMALL_STATE(439)] = 26789, + [SMALL_STATE(440)] = 26817, + [SMALL_STATE(441)] = 26845, + [SMALL_STATE(442)] = 26873, + [SMALL_STATE(443)] = 26901, + [SMALL_STATE(444)] = 26929, + [SMALL_STATE(445)] = 26957, + [SMALL_STATE(446)] = 26985, + [SMALL_STATE(447)] = 27013, + [SMALL_STATE(448)] = 27041, + [SMALL_STATE(449)] = 27069, + [SMALL_STATE(450)] = 27089, + [SMALL_STATE(451)] = 27106, + [SMALL_STATE(452)] = 27123, + [SMALL_STATE(453)] = 27140, + [SMALL_STATE(454)] = 27157, + [SMALL_STATE(455)] = 27174, + [SMALL_STATE(456)] = 27191, + [SMALL_STATE(457)] = 27208, + [SMALL_STATE(458)] = 27227, + [SMALL_STATE(459)] = 27244, + [SMALL_STATE(460)] = 27261, + [SMALL_STATE(461)] = 27278, + [SMALL_STATE(462)] = 27295, + [SMALL_STATE(463)] = 27312, + [SMALL_STATE(464)] = 27329, + [SMALL_STATE(465)] = 27346, + [SMALL_STATE(466)] = 27363, + [SMALL_STATE(467)] = 27380, + [SMALL_STATE(468)] = 27397, + [SMALL_STATE(469)] = 27414, + [SMALL_STATE(470)] = 27431, + [SMALL_STATE(471)] = 27448, + [SMALL_STATE(472)] = 27464, + [SMALL_STATE(473)] = 27490, + [SMALL_STATE(474)] = 27524, + [SMALL_STATE(475)] = 27558, + [SMALL_STATE(476)] = 27584, + [SMALL_STATE(477)] = 27618, + [SMALL_STATE(478)] = 27652, + [SMALL_STATE(479)] = 27686, + [SMALL_STATE(480)] = 27715, + [SMALL_STATE(481)] = 27746, + [SMALL_STATE(482)] = 27769, + [SMALL_STATE(483)] = 27792, + [SMALL_STATE(484)] = 27815, + [SMALL_STATE(485)] = 27846, + [SMALL_STATE(486)] = 27868, + [SMALL_STATE(487)] = 27896, + [SMALL_STATE(488)] = 27914, + [SMALL_STATE(489)] = 27927, + [SMALL_STATE(490)] = 27945, + [SMALL_STATE(491)] = 27961, + [SMALL_STATE(492)] = 27977, + [SMALL_STATE(493)] = 27993, + [SMALL_STATE(494)] = 28009, + [SMALL_STATE(495)] = 28025, + [SMALL_STATE(496)] = 28045, + [SMALL_STATE(497)] = 28064, + [SMALL_STATE(498)] = 28079, + [SMALL_STATE(499)] = 28094, + [SMALL_STATE(500)] = 28113, + [SMALL_STATE(501)] = 28132, + [SMALL_STATE(502)] = 28147, + [SMALL_STATE(503)] = 28166, + [SMALL_STATE(504)] = 28181, + [SMALL_STATE(505)] = 28196, + [SMALL_STATE(506)] = 28211, + [SMALL_STATE(507)] = 28226, + [SMALL_STATE(508)] = 28241, + [SMALL_STATE(509)] = 28254, + [SMALL_STATE(510)] = 28267, + [SMALL_STATE(511)] = 28282, + [SMALL_STATE(512)] = 28296, + [SMALL_STATE(513)] = 28306, + [SMALL_STATE(514)] = 28316, + [SMALL_STATE(515)] = 28332, + [SMALL_STATE(516)] = 28348, + [SMALL_STATE(517)] = 28362, + [SMALL_STATE(518)] = 28376, + [SMALL_STATE(519)] = 28386, + [SMALL_STATE(520)] = 28396, + [SMALL_STATE(521)] = 28410, + [SMALL_STATE(522)] = 28424, + [SMALL_STATE(523)] = 28438, + [SMALL_STATE(524)] = 28454, + [SMALL_STATE(525)] = 28470, + [SMALL_STATE(526)] = 28480, + [SMALL_STATE(527)] = 28494, + [SMALL_STATE(528)] = 28510, + [SMALL_STATE(529)] = 28520, + [SMALL_STATE(530)] = 28534, + [SMALL_STATE(531)] = 28548, + [SMALL_STATE(532)] = 28564, + [SMALL_STATE(533)] = 28580, + [SMALL_STATE(534)] = 28596, + [SMALL_STATE(535)] = 28610, + [SMALL_STATE(536)] = 28626, + [SMALL_STATE(537)] = 28640, + [SMALL_STATE(538)] = 28654, + [SMALL_STATE(539)] = 28664, + [SMALL_STATE(540)] = 28678, + [SMALL_STATE(541)] = 28688, + [SMALL_STATE(542)] = 28698, + [SMALL_STATE(543)] = 28712, + [SMALL_STATE(544)] = 28728, + [SMALL_STATE(545)] = 28738, + [SMALL_STATE(546)] = 28754, + [SMALL_STATE(547)] = 28764, + [SMALL_STATE(548)] = 28778, + [SMALL_STATE(549)] = 28792, + [SMALL_STATE(550)] = 28804, + [SMALL_STATE(551)] = 28818, + [SMALL_STATE(552)] = 28828, + [SMALL_STATE(553)] = 28838, + [SMALL_STATE(554)] = 28852, + [SMALL_STATE(555)] = 28866, + [SMALL_STATE(556)] = 28880, + [SMALL_STATE(557)] = 28890, + [SMALL_STATE(558)] = 28904, + [SMALL_STATE(559)] = 28914, + [SMALL_STATE(560)] = 28930, + [SMALL_STATE(561)] = 28944, + [SMALL_STATE(562)] = 28954, + [SMALL_STATE(563)] = 28964, + [SMALL_STATE(564)] = 28978, + [SMALL_STATE(565)] = 28992, + [SMALL_STATE(566)] = 29005, + [SMALL_STATE(567)] = 29018, + [SMALL_STATE(568)] = 29031, + [SMALL_STATE(569)] = 29044, + [SMALL_STATE(570)] = 29057, + [SMALL_STATE(571)] = 29066, + [SMALL_STATE(572)] = 29075, + [SMALL_STATE(573)] = 29088, + [SMALL_STATE(574)] = 29097, + [SMALL_STATE(575)] = 29110, + [SMALL_STATE(576)] = 29119, + [SMALL_STATE(577)] = 29132, + [SMALL_STATE(578)] = 29141, + [SMALL_STATE(579)] = 29154, + [SMALL_STATE(580)] = 29167, + [SMALL_STATE(581)] = 29176, + [SMALL_STATE(582)] = 29189, + [SMALL_STATE(583)] = 29202, + [SMALL_STATE(584)] = 29215, + [SMALL_STATE(585)] = 29228, + [SMALL_STATE(586)] = 29241, + [SMALL_STATE(587)] = 29250, + [SMALL_STATE(588)] = 29263, + [SMALL_STATE(589)] = 29276, + [SMALL_STATE(590)] = 29289, + [SMALL_STATE(591)] = 29302, + [SMALL_STATE(592)] = 29315, + [SMALL_STATE(593)] = 29328, + [SMALL_STATE(594)] = 29339, + [SMALL_STATE(595)] = 29352, + [SMALL_STATE(596)] = 29365, + [SMALL_STATE(597)] = 29378, + [SMALL_STATE(598)] = 29387, + [SMALL_STATE(599)] = 29400, + [SMALL_STATE(600)] = 29413, + [SMALL_STATE(601)] = 29424, + [SMALL_STATE(602)] = 29435, + [SMALL_STATE(603)] = 29448, + [SMALL_STATE(604)] = 29461, + [SMALL_STATE(605)] = 29470, + [SMALL_STATE(606)] = 29483, + [SMALL_STATE(607)] = 29496, + [SMALL_STATE(608)] = 29509, + [SMALL_STATE(609)] = 29522, + [SMALL_STATE(610)] = 29533, + [SMALL_STATE(611)] = 29546, + [SMALL_STATE(612)] = 29555, + [SMALL_STATE(613)] = 29568, + [SMALL_STATE(614)] = 29581, + [SMALL_STATE(615)] = 29592, + [SMALL_STATE(616)] = 29605, + [SMALL_STATE(617)] = 29618, + [SMALL_STATE(618)] = 29627, + [SMALL_STATE(619)] = 29636, + [SMALL_STATE(620)] = 29649, + [SMALL_STATE(621)] = 29662, + [SMALL_STATE(622)] = 29675, + [SMALL_STATE(623)] = 29688, + [SMALL_STATE(624)] = 29701, + [SMALL_STATE(625)] = 29714, + [SMALL_STATE(626)] = 29727, + [SMALL_STATE(627)] = 29740, + [SMALL_STATE(628)] = 29753, + [SMALL_STATE(629)] = 29766, + [SMALL_STATE(630)] = 29775, + [SMALL_STATE(631)] = 29788, + [SMALL_STATE(632)] = 29797, + [SMALL_STATE(633)] = 29810, + [SMALL_STATE(634)] = 29823, + [SMALL_STATE(635)] = 29836, + [SMALL_STATE(636)] = 29845, + [SMALL_STATE(637)] = 29856, + [SMALL_STATE(638)] = 29869, + [SMALL_STATE(639)] = 29882, + [SMALL_STATE(640)] = 29893, + [SMALL_STATE(641)] = 29906, + [SMALL_STATE(642)] = 29919, + [SMALL_STATE(643)] = 29932, + [SMALL_STATE(644)] = 29945, + [SMALL_STATE(645)] = 29958, + [SMALL_STATE(646)] = 29971, + [SMALL_STATE(647)] = 29982, + [SMALL_STATE(648)] = 29995, + [SMALL_STATE(649)] = 30004, + [SMALL_STATE(650)] = 30017, + [SMALL_STATE(651)] = 30030, + [SMALL_STATE(652)] = 30043, + [SMALL_STATE(653)] = 30056, + [SMALL_STATE(654)] = 30065, + [SMALL_STATE(655)] = 30078, + [SMALL_STATE(656)] = 30087, + [SMALL_STATE(657)] = 30100, + [SMALL_STATE(658)] = 30113, + [SMALL_STATE(659)] = 30126, + [SMALL_STATE(660)] = 30139, + [SMALL_STATE(661)] = 30152, + [SMALL_STATE(662)] = 30165, + [SMALL_STATE(663)] = 30174, + [SMALL_STATE(664)] = 30187, + [SMALL_STATE(665)] = 30196, + [SMALL_STATE(666)] = 30205, + [SMALL_STATE(667)] = 30218, + [SMALL_STATE(668)] = 30231, + [SMALL_STATE(669)] = 30244, + [SMALL_STATE(670)] = 30257, + [SMALL_STATE(671)] = 30270, + [SMALL_STATE(672)] = 30283, + [SMALL_STATE(673)] = 30296, + [SMALL_STATE(674)] = 30309, + [SMALL_STATE(675)] = 30322, + [SMALL_STATE(676)] = 30335, + [SMALL_STATE(677)] = 30348, + [SMALL_STATE(678)] = 30361, + [SMALL_STATE(679)] = 30372, + [SMALL_STATE(680)] = 30385, + [SMALL_STATE(681)] = 30398, + [SMALL_STATE(682)] = 30411, + [SMALL_STATE(683)] = 30420, + [SMALL_STATE(684)] = 30433, + [SMALL_STATE(685)] = 30446, + [SMALL_STATE(686)] = 30459, + [SMALL_STATE(687)] = 30472, + [SMALL_STATE(688)] = 30485, + [SMALL_STATE(689)] = 30498, + [SMALL_STATE(690)] = 30511, + [SMALL_STATE(691)] = 30524, + [SMALL_STATE(692)] = 30537, + [SMALL_STATE(693)] = 30550, + [SMALL_STATE(694)] = 30563, + [SMALL_STATE(695)] = 30576, + [SMALL_STATE(696)] = 30589, + [SMALL_STATE(697)] = 30600, + [SMALL_STATE(698)] = 30613, + [SMALL_STATE(699)] = 30626, + [SMALL_STATE(700)] = 30639, + [SMALL_STATE(701)] = 30652, + [SMALL_STATE(702)] = 30665, + [SMALL_STATE(703)] = 30678, + [SMALL_STATE(704)] = 30691, + [SMALL_STATE(705)] = 30704, + [SMALL_STATE(706)] = 30717, + [SMALL_STATE(707)] = 30730, + [SMALL_STATE(708)] = 30743, + [SMALL_STATE(709)] = 30756, + [SMALL_STATE(710)] = 30769, + [SMALL_STATE(711)] = 30779, + [SMALL_STATE(712)] = 30787, + [SMALL_STATE(713)] = 30797, + [SMALL_STATE(714)] = 30805, + [SMALL_STATE(715)] = 30815, + [SMALL_STATE(716)] = 30825, + [SMALL_STATE(717)] = 30835, + [SMALL_STATE(718)] = 30843, + [SMALL_STATE(719)] = 30853, + [SMALL_STATE(720)] = 30861, + [SMALL_STATE(721)] = 30871, + [SMALL_STATE(722)] = 30879, + [SMALL_STATE(723)] = 30887, + [SMALL_STATE(724)] = 30897, + [SMALL_STATE(725)] = 30907, + [SMALL_STATE(726)] = 30917, + [SMALL_STATE(727)] = 30927, + [SMALL_STATE(728)] = 30937, + [SMALL_STATE(729)] = 30947, + [SMALL_STATE(730)] = 30955, + [SMALL_STATE(731)] = 30963, + [SMALL_STATE(732)] = 30971, + [SMALL_STATE(733)] = 30981, + [SMALL_STATE(734)] = 30991, + [SMALL_STATE(735)] = 30999, + [SMALL_STATE(736)] = 31009, + [SMALL_STATE(737)] = 31019, + [SMALL_STATE(738)] = 31027, + [SMALL_STATE(739)] = 31035, + [SMALL_STATE(740)] = 31043, + [SMALL_STATE(741)] = 31053, + [SMALL_STATE(742)] = 31063, + [SMALL_STATE(743)] = 31073, + [SMALL_STATE(744)] = 31083, + [SMALL_STATE(745)] = 31093, + [SMALL_STATE(746)] = 31101, + [SMALL_STATE(747)] = 31111, + [SMALL_STATE(748)] = 31119, + [SMALL_STATE(749)] = 31129, + [SMALL_STATE(750)] = 31137, + [SMALL_STATE(751)] = 31145, + [SMALL_STATE(752)] = 31155, + [SMALL_STATE(753)] = 31163, + [SMALL_STATE(754)] = 31171, + [SMALL_STATE(755)] = 31179, + [SMALL_STATE(756)] = 31187, + [SMALL_STATE(757)] = 31195, + [SMALL_STATE(758)] = 31205, + [SMALL_STATE(759)] = 31215, + [SMALL_STATE(760)] = 31225, + [SMALL_STATE(761)] = 31235, + [SMALL_STATE(762)] = 31245, + [SMALL_STATE(763)] = 31255, + [SMALL_STATE(764)] = 31263, + [SMALL_STATE(765)] = 31273, + [SMALL_STATE(766)] = 31283, + [SMALL_STATE(767)] = 31293, + [SMALL_STATE(768)] = 31303, + [SMALL_STATE(769)] = 31313, + [SMALL_STATE(770)] = 31323, + [SMALL_STATE(771)] = 31331, + [SMALL_STATE(772)] = 31341, + [SMALL_STATE(773)] = 31351, + [SMALL_STATE(774)] = 31361, + [SMALL_STATE(775)] = 31371, + [SMALL_STATE(776)] = 31381, + [SMALL_STATE(777)] = 31391, + [SMALL_STATE(778)] = 31399, + [SMALL_STATE(779)] = 31407, + [SMALL_STATE(780)] = 31417, + [SMALL_STATE(781)] = 31425, + [SMALL_STATE(782)] = 31433, + [SMALL_STATE(783)] = 31441, + [SMALL_STATE(784)] = 31451, + [SMALL_STATE(785)] = 31459, + [SMALL_STATE(786)] = 31469, + [SMALL_STATE(787)] = 31479, + [SMALL_STATE(788)] = 31487, + [SMALL_STATE(789)] = 31497, + [SMALL_STATE(790)] = 31507, + [SMALL_STATE(791)] = 31515, + [SMALL_STATE(792)] = 31525, + [SMALL_STATE(793)] = 31535, + [SMALL_STATE(794)] = 31545, + [SMALL_STATE(795)] = 31555, + [SMALL_STATE(796)] = 31565, + [SMALL_STATE(797)] = 31573, + [SMALL_STATE(798)] = 31581, + [SMALL_STATE(799)] = 31589, + [SMALL_STATE(800)] = 31597, + [SMALL_STATE(801)] = 31605, + [SMALL_STATE(802)] = 31613, + [SMALL_STATE(803)] = 31623, + [SMALL_STATE(804)] = 31633, + [SMALL_STATE(805)] = 31643, + [SMALL_STATE(806)] = 31653, + [SMALL_STATE(807)] = 31663, + [SMALL_STATE(808)] = 31673, + [SMALL_STATE(809)] = 31681, + [SMALL_STATE(810)] = 31689, + [SMALL_STATE(811)] = 31697, + [SMALL_STATE(812)] = 31707, + [SMALL_STATE(813)] = 31717, + [SMALL_STATE(814)] = 31724, + [SMALL_STATE(815)] = 31729, + [SMALL_STATE(816)] = 31736, + [SMALL_STATE(817)] = 31741, + [SMALL_STATE(818)] = 31748, + [SMALL_STATE(819)] = 31755, + [SMALL_STATE(820)] = 31760, + [SMALL_STATE(821)] = 31767, + [SMALL_STATE(822)] = 31772, + [SMALL_STATE(823)] = 31779, + [SMALL_STATE(824)] = 31786, + [SMALL_STATE(825)] = 31793, + [SMALL_STATE(826)] = 31798, + [SMALL_STATE(827)] = 31803, + [SMALL_STATE(828)] = 31808, + [SMALL_STATE(829)] = 31813, + [SMALL_STATE(830)] = 31818, + [SMALL_STATE(831)] = 31823, + [SMALL_STATE(832)] = 31828, + [SMALL_STATE(833)] = 31833, + [SMALL_STATE(834)] = 31838, + [SMALL_STATE(835)] = 31845, + [SMALL_STATE(836)] = 31852, + [SMALL_STATE(837)] = 31859, + [SMALL_STATE(838)] = 31866, + [SMALL_STATE(839)] = 31873, + [SMALL_STATE(840)] = 31880, + [SMALL_STATE(841)] = 31887, + [SMALL_STATE(842)] = 31894, + [SMALL_STATE(843)] = 31901, + [SMALL_STATE(844)] = 31908, + [SMALL_STATE(845)] = 31915, + [SMALL_STATE(846)] = 31920, + [SMALL_STATE(847)] = 31927, + [SMALL_STATE(848)] = 31934, + [SMALL_STATE(849)] = 31941, + [SMALL_STATE(850)] = 31948, + [SMALL_STATE(851)] = 31955, + [SMALL_STATE(852)] = 31962, + [SMALL_STATE(853)] = 31969, + [SMALL_STATE(854)] = 31976, + [SMALL_STATE(855)] = 31983, + [SMALL_STATE(856)] = 31990, + [SMALL_STATE(857)] = 31997, + [SMALL_STATE(858)] = 32004, + [SMALL_STATE(859)] = 32011, + [SMALL_STATE(860)] = 32018, + [SMALL_STATE(861)] = 32025, + [SMALL_STATE(862)] = 32032, + [SMALL_STATE(863)] = 32039, + [SMALL_STATE(864)] = 32046, + [SMALL_STATE(865)] = 32053, + [SMALL_STATE(866)] = 32060, + [SMALL_STATE(867)] = 32067, + [SMALL_STATE(868)] = 32074, + [SMALL_STATE(869)] = 32081, + [SMALL_STATE(870)] = 32088, + [SMALL_STATE(871)] = 32095, + [SMALL_STATE(872)] = 32102, + [SMALL_STATE(873)] = 32109, + [SMALL_STATE(874)] = 32116, + [SMALL_STATE(875)] = 32121, + [SMALL_STATE(876)] = 32128, + [SMALL_STATE(877)] = 32135, + [SMALL_STATE(878)] = 32142, + [SMALL_STATE(879)] = 32147, + [SMALL_STATE(880)] = 32154, + [SMALL_STATE(881)] = 32159, + [SMALL_STATE(882)] = 32164, + [SMALL_STATE(883)] = 32169, + [SMALL_STATE(884)] = 32176, + [SMALL_STATE(885)] = 32183, + [SMALL_STATE(886)] = 32190, + [SMALL_STATE(887)] = 32197, + [SMALL_STATE(888)] = 32204, + [SMALL_STATE(889)] = 32211, + [SMALL_STATE(890)] = 32218, + [SMALL_STATE(891)] = 32225, + [SMALL_STATE(892)] = 32232, + [SMALL_STATE(893)] = 32239, + [SMALL_STATE(894)] = 32246, + [SMALL_STATE(895)] = 32253, + [SMALL_STATE(896)] = 32260, + [SMALL_STATE(897)] = 32267, + [SMALL_STATE(898)] = 32274, + [SMALL_STATE(899)] = 32281, + [SMALL_STATE(900)] = 32288, + [SMALL_STATE(901)] = 32295, + [SMALL_STATE(902)] = 32302, + [SMALL_STATE(903)] = 32309, + [SMALL_STATE(904)] = 32316, + [SMALL_STATE(905)] = 32323, + [SMALL_STATE(906)] = 32330, + [SMALL_STATE(907)] = 32337, + [SMALL_STATE(908)] = 32344, + [SMALL_STATE(909)] = 32351, + [SMALL_STATE(910)] = 32358, + [SMALL_STATE(911)] = 32363, + [SMALL_STATE(912)] = 32370, + [SMALL_STATE(913)] = 32377, + [SMALL_STATE(914)] = 32382, + [SMALL_STATE(915)] = 32387, + [SMALL_STATE(916)] = 32392, + [SMALL_STATE(917)] = 32397, + [SMALL_STATE(918)] = 32404, + [SMALL_STATE(919)] = 32411, + [SMALL_STATE(920)] = 32418, + [SMALL_STATE(921)] = 32425, + [SMALL_STATE(922)] = 32430, + [SMALL_STATE(923)] = 32437, + [SMALL_STATE(924)] = 32442, + [SMALL_STATE(925)] = 32447, + [SMALL_STATE(926)] = 32454, + [SMALL_STATE(927)] = 32461, + [SMALL_STATE(928)] = 32466, + [SMALL_STATE(929)] = 32473, + [SMALL_STATE(930)] = 32480, + [SMALL_STATE(931)] = 32485, + [SMALL_STATE(932)] = 32492, + [SMALL_STATE(933)] = 32497, + [SMALL_STATE(934)] = 32502, + [SMALL_STATE(935)] = 32507, + [SMALL_STATE(936)] = 32514, + [SMALL_STATE(937)] = 32521, + [SMALL_STATE(938)] = 32526, + [SMALL_STATE(939)] = 32531, + [SMALL_STATE(940)] = 32536, + [SMALL_STATE(941)] = 32541, + [SMALL_STATE(942)] = 32548, + [SMALL_STATE(943)] = 32555, + [SMALL_STATE(944)] = 32562, + [SMALL_STATE(945)] = 32569, + [SMALL_STATE(946)] = 32574, + [SMALL_STATE(947)] = 32581, + [SMALL_STATE(948)] = 32586, + [SMALL_STATE(949)] = 32591, + [SMALL_STATE(950)] = 32598, + [SMALL_STATE(951)] = 32605, + [SMALL_STATE(952)] = 32610, + [SMALL_STATE(953)] = 32617, + [SMALL_STATE(954)] = 32624, + [SMALL_STATE(955)] = 32631, + [SMALL_STATE(956)] = 32636, + [SMALL_STATE(957)] = 32641, + [SMALL_STATE(958)] = 32648, + [SMALL_STATE(959)] = 32655, + [SMALL_STATE(960)] = 32662, + [SMALL_STATE(961)] = 32669, + [SMALL_STATE(962)] = 32676, + [SMALL_STATE(963)] = 32683, + [SMALL_STATE(964)] = 32690, + [SMALL_STATE(965)] = 32697, + [SMALL_STATE(966)] = 32704, + [SMALL_STATE(967)] = 32711, + [SMALL_STATE(968)] = 32718, + [SMALL_STATE(969)] = 32725, + [SMALL_STATE(970)] = 32732, + [SMALL_STATE(971)] = 32737, + [SMALL_STATE(972)] = 32744, + [SMALL_STATE(973)] = 32751, + [SMALL_STATE(974)] = 32758, + [SMALL_STATE(975)] = 32765, + [SMALL_STATE(976)] = 32772, + [SMALL_STATE(977)] = 32779, + [SMALL_STATE(978)] = 32786, + [SMALL_STATE(979)] = 32793, + [SMALL_STATE(980)] = 32800, + [SMALL_STATE(981)] = 32807, + [SMALL_STATE(982)] = 32814, + [SMALL_STATE(983)] = 32821, + [SMALL_STATE(984)] = 32828, + [SMALL_STATE(985)] = 32833, + [SMALL_STATE(986)] = 32838, + [SMALL_STATE(987)] = 32845, + [SMALL_STATE(988)] = 32850, + [SMALL_STATE(989)] = 32855, + [SMALL_STATE(990)] = 32862, + [SMALL_STATE(991)] = 32869, + [SMALL_STATE(992)] = 32876, + [SMALL_STATE(993)] = 32883, + [SMALL_STATE(994)] = 32890, + [SMALL_STATE(995)] = 32897, + [SMALL_STATE(996)] = 32904, + [SMALL_STATE(997)] = 32911, + [SMALL_STATE(998)] = 32918, + [SMALL_STATE(999)] = 32925, + [SMALL_STATE(1000)] = 32932, + [SMALL_STATE(1001)] = 32939, + [SMALL_STATE(1002)] = 32946, + [SMALL_STATE(1003)] = 32953, + [SMALL_STATE(1004)] = 32958, + [SMALL_STATE(1005)] = 32965, + [SMALL_STATE(1006)] = 32972, + [SMALL_STATE(1007)] = 32977, + [SMALL_STATE(1008)] = 32984, + [SMALL_STATE(1009)] = 32991, + [SMALL_STATE(1010)] = 32996, + [SMALL_STATE(1011)] = 33003, + [SMALL_STATE(1012)] = 33010, + [SMALL_STATE(1013)] = 33017, + [SMALL_STATE(1014)] = 33024, + [SMALL_STATE(1015)] = 33031, + [SMALL_STATE(1016)] = 33038, + [SMALL_STATE(1017)] = 33045, + [SMALL_STATE(1018)] = 33052, + [SMALL_STATE(1019)] = 33057, + [SMALL_STATE(1020)] = 33062, + [SMALL_STATE(1021)] = 33067, + [SMALL_STATE(1022)] = 33072, + [SMALL_STATE(1023)] = 33079, + [SMALL_STATE(1024)] = 33084, + [SMALL_STATE(1025)] = 33091, + [SMALL_STATE(1026)] = 33098, + [SMALL_STATE(1027)] = 33105, + [SMALL_STATE(1028)] = 33112, + [SMALL_STATE(1029)] = 33119, + [SMALL_STATE(1030)] = 33124, + [SMALL_STATE(1031)] = 33131, + [SMALL_STATE(1032)] = 33138, + [SMALL_STATE(1033)] = 33145, + [SMALL_STATE(1034)] = 33152, + [SMALL_STATE(1035)] = 33159, + [SMALL_STATE(1036)] = 33166, + [SMALL_STATE(1037)] = 33173, + [SMALL_STATE(1038)] = 33180, + [SMALL_STATE(1039)] = 33187, + [SMALL_STATE(1040)] = 33194, + [SMALL_STATE(1041)] = 33201, + [SMALL_STATE(1042)] = 33206, + [SMALL_STATE(1043)] = 33213, + [SMALL_STATE(1044)] = 33220, + [SMALL_STATE(1045)] = 33227, + [SMALL_STATE(1046)] = 33232, + [SMALL_STATE(1047)] = 33239, + [SMALL_STATE(1048)] = 33244, + [SMALL_STATE(1049)] = 33251, + [SMALL_STATE(1050)] = 33256, + [SMALL_STATE(1051)] = 33263, + [SMALL_STATE(1052)] = 33270, + [SMALL_STATE(1053)] = 33277, + [SMALL_STATE(1054)] = 33284, + [SMALL_STATE(1055)] = 33291, + [SMALL_STATE(1056)] = 33298, + [SMALL_STATE(1057)] = 33305, + [SMALL_STATE(1058)] = 33312, + [SMALL_STATE(1059)] = 33319, + [SMALL_STATE(1060)] = 33324, + [SMALL_STATE(1061)] = 33329, + [SMALL_STATE(1062)] = 33336, + [SMALL_STATE(1063)] = 33341, + [SMALL_STATE(1064)] = 33346, + [SMALL_STATE(1065)] = 33351, + [SMALL_STATE(1066)] = 33358, + [SMALL_STATE(1067)] = 33365, + [SMALL_STATE(1068)] = 33372, + [SMALL_STATE(1069)] = 33379, + [SMALL_STATE(1070)] = 33384, + [SMALL_STATE(1071)] = 33391, + [SMALL_STATE(1072)] = 33398, + [SMALL_STATE(1073)] = 33405, + [SMALL_STATE(1074)] = 33412, + [SMALL_STATE(1075)] = 33419, + [SMALL_STATE(1076)] = 33426, + [SMALL_STATE(1077)] = 33433, + [SMALL_STATE(1078)] = 33440, + [SMALL_STATE(1079)] = 33447, + [SMALL_STATE(1080)] = 33454, + [SMALL_STATE(1081)] = 33461, + [SMALL_STATE(1082)] = 33468, + [SMALL_STATE(1083)] = 33475, + [SMALL_STATE(1084)] = 33482, + [SMALL_STATE(1085)] = 33489, + [SMALL_STATE(1086)] = 33496, + [SMALL_STATE(1087)] = 33503, + [SMALL_STATE(1088)] = 33510, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -31832,1026 +32088,1032 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [63] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer, 2), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [63] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer, 1), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), - [121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(40), - [124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), - [126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(967), - [129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(87), - [132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(137), - [135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(527), - [138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(965), - [141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(357), - [144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(85), - [147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(84), - [150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(335), - [153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(331), - [156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(176), - [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(33), - [162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(63), - [165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(58), - [168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), - [170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), - [172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), - [174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), - [184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), - [186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer, 1), - [190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record, 1), - [192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__record_update_record, 1), SHIFT(5), - [195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_access, 3, .production_id = 38), - [197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case, 5, .production_id = 59), - [199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 3, .production_id = 39), - [201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_unit, 1), - [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), - [206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__maybe_function_expression, 1), - [208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var, 1), - [210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_var, 1), REDUCE(sym_identifier, 1), - [213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_group, 3), - [215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3), - [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__record_update_remote_record, 3, .production_id = 26), SHIFT(5), - [220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4), - [222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), - [226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 6, .production_id = 64), - [228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 7, .production_id = 69), - [230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_update, 7, .production_id = 71), - [232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 5), - [234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__maybe_tuple_expression, 1), - [240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__maybe_record_expression, 1), - [242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_update, 7, .production_id = 72), - [246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), - [248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_todo, 1), - [250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), - [252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 8, .production_id = 73), - [254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 9, .production_id = 75), - [258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record, 4), - [264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_record, 3, .production_id = 26), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(57), + [114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), + [116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(885), + [119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(79), + [122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(162), + [125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(525), + [128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(886), + [131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(357), + [134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(97), + [137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(83), + [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(344), + [143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(341), + [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(178), + [149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(8), + [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(68), + [155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(59), + [158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), + [174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer, 2), + [178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), + [180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), + [182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), + [186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case, 5, .production_id = 62), + [192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record, 1), + [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__record_update_record, 1), SHIFT(6), + [197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 3, .production_id = 42), + [199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_access, 3, .production_id = 41), + [201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_group, 3), + [203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_unit, 1), + [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), + [208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__maybe_function_expression, 1), + [210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3), + [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__record_update_remote_record, 3, .production_id = 28), SHIFT(6), + [215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4), + [217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var, 1), + [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_var, 1), REDUCE(sym_identifier, 1), + [222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__maybe_tuple_expression, 1), + [226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 5), + [228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 7, .production_id = 72), + [230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record, 4), + [234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__maybe_record_expression, 1), + [236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_record, 3, .production_id = 28), + [240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 6, .production_id = 67), + [242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 4), + [244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record, 3), + [246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_update, 7, .production_id = 75), + [248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 8, .production_id = 76), + [262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), [266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3), - [268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 4), - [272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record, 3), - [274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), - [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), - [288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), + [268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_todo, 1), + [272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_update, 7, .production_id = 74), + [276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 9, .production_id = 78), + [278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 4), + [280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 7, .production_id = 71), + [282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), + [284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), + [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), + [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), - [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 6, .production_id = 63), - [314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 7, .production_id = 68), - [316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 4), - [318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 4), - [320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), - [330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 2), - [334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_todo, 4, .production_id = 47), - [338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let, 2, .production_id = 32), - [340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert, 2, .production_id = 32), - [342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), - [344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 3), + [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), + [320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 3), + [322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 6, .production_id = 66), + [324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert, 2, .production_id = 35), + [326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let, 2, .production_id = 35), + [328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 2), + [330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), + [332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 4), + [334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_todo, 4, .production_id = 50), [346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 1), [348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3), - [350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try, 5, .production_id = 58), - [352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment, 3, .production_id = 49), - [368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_seq, 1), - [370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment, 4, .production_id = 60), - [374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try, 4, .production_id = 46), + [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_seq, 1), + [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment, 4, .production_id = 63), + [370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment, 3, .production_id = 52), + [372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try, 5, .production_id = 61), + [374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try, 4, .production_id = 49), [376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__record_update_record, 1), SHIFT(3), - [379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__record_update_remote_record, 3, .production_id = 26), SHIFT(3), - [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 3, .production_id = 67), - [400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 4, .production_id = 70), - [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), - [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), - [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__record_update_remote_record, 3, .production_id = 26), SHIFT(7), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__record_update_record, 1), SHIFT(7), + [379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__record_update_remote_record, 3, .production_id = 28), SHIFT(3), + [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), + [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 4, .production_id = 73), + [400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 3, .production_id = 70), + [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__record_update_record, 1), SHIFT(7), + [423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__record_update_remote_record, 3, .production_id = 28), SHIFT(7), + [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), [428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2), [430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 3), - [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), - [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), + [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), + [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), + [436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_repeat1, 2), - [454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_repeat1, 2), SHIFT_REPEAT(940), - [457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_repeat1, 2), SHIFT_REPEAT(298), - [460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_repeat1, 2), SHIFT_REPEAT(323), - [463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_repeat1, 2), SHIFT_REPEAT(557), - [466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_repeat1, 2), SHIFT_REPEAT(460), - [469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_repeat1, 2), SHIFT_REPEAT(198), - [472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_repeat1, 2), SHIFT_REPEAT(459), - [475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_repeat1, 2), SHIFT_REPEAT(442), - [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_repeat1, 2), SHIFT_REPEAT(409), - [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), - [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), - [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), - [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), - [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), - [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), - [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), + [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_repeat1, 2), + [450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_repeat1, 2), SHIFT_REPEAT(935), + [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_repeat1, 2), SHIFT_REPEAT(298), + [456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_repeat1, 2), SHIFT_REPEAT(319), + [459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_repeat1, 2), SHIFT_REPEAT(552), + [462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_repeat1, 2), SHIFT_REPEAT(457), + [465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_repeat1, 2), SHIFT_REPEAT(189), + [468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_repeat1, 2), SHIFT_REPEAT(455), + [471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_repeat1, 2), SHIFT_REPEAT(449), + [474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_repeat1, 2), SHIFT_REPEAT(417), + [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), + [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), + [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), + [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), [517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_repeat1, 2), - [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), - [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), - [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), - [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), - [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_subjects, 1), - [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), + [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), - [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument, 1, .production_id = 17), - [583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument, 3, .production_id = 35), - [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_update_argument, 3, .production_id = 35), - [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), - [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), - [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), - [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), - [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_record, 1), - [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), - [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), - [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), - [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), - [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_record, 5), - [655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string, 2), - [657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_tuple, 3), - [659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_list, 3), - [661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string, 3), - [663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_value, 1, .production_id = 11), - [665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_remote_record, 3), - [667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_record, 3), - [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), - [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), - [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), - [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), - [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_tuple, 4), - [687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_list, 4), - [689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string, 4), - [691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_record, 4), - [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), - [697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_tuple, 5), - [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), - [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), - [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), - [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), - [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), - [719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_list, 2), - [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), - [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), - [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), - [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), - [739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_binary_expression, 3), - [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_unit, 3), - [745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_tuple_access, 3, .production_id = 74), - [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_unit, 1, .production_id = 66), - [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), - [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_pattern, 1), - [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_guard, 2), - [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), - [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), - [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), - [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), - [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), - [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), - [801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2), - [803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 4, .production_id = 55), - [805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern_bit_string, 2), - [807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_pattern, 2), - [809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_constructor_args, 4), - [811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 3), - [813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 3, .production_id = 43), - [815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 3), - [817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_constructor_args, 3), - [819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern_bit_string, 4), - [821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 5, .production_id = 55), - [823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern_bit_string, 3), - [825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_pattern, 1), - [827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_constructor_args, 5), - [829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 4, .production_id = 43), - [831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_discard_var, 1), - [833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1), - [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), - [837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 4, .production_id = 54), - [839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_constructor_pattern, 3), - [841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 5, .production_id = 65), - [843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_constructor_args, 2), - [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), - [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), - [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), - [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), - [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), - [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 3, .production_id = 44), - [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), - [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), - [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), - [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 56), - [889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 56), SHIFT_REPEAT(350), - [892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 43), - [894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__name_param, 1, .production_id = 16), - [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1), - [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_pattern, 2, .production_id = 56), - [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), - [906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2), - [908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2), - [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), - [912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1), - [914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 1), - [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), - [918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_pattern, 1, .production_id = 48), - [920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_var, 1), - [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), - [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), - [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), - [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), - [930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_repeat1, 2), SHIFT_REPEAT(144), - [933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), - [935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), - [937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(834), - [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1048), - [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), - [947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_parameter, 1), - [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_bit_string_segment_options, 1), - [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), - [957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_bit_string_segment_options, 2), - [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), - [963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 3), - [965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 5), - [967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_patterns, 2), - [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), - [971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expression_bit_string_segment_options_repeat1, 2), - [973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_bit_string_segment_options_repeat1, 2), SHIFT_REPEAT(247), - [976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 4), - [978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_type, 3, .production_id = 26), - [980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 31), - [982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 27), - [984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), - [986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_constructors_repeat1, 2), - [988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_constructors_repeat1, 2), SHIFT_REPEAT(642), - [991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_bit_string_segment_options, 1), - [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_bit_string_segment_options, 2), - [997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_patterns, 1), - [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), - [1001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pattern_constructor_args_repeat1, 2), SHIFT_REPEAT(489), + [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), + [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_subjects, 1), + [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument, 1, .production_id = 18), + [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_update_argument, 3, .production_id = 38), + [587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument, 3, .production_id = 38), + [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), + [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_record, 1), + [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), + [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_list, 3), + [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_list, 4), + [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string, 4), + [703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_value, 1, .production_id = 12), + [705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_record_arguments, 3, .production_id = 32), + [707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_list, 2), + [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_value, 1, .production_id = 11), + [713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_tuple, 5), + [715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_record_arguments, 4, .production_id = 32), + [717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string, 2), + [719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_record, 2), + [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_tuple, 3), + [725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_record_arguments, 2), + [727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_remote_record, 3, .production_id = 27), + [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string, 3), + [733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_tuple, 4), + [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), + [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), + [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_tuple_access, 3, .production_id = 77), + [755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_unit, 1, .production_id = 69), + [757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_unit, 3), + [759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_binary_expression, 3), + [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_pattern, 1), + [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_guard, 2), + [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), + [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), + [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), + [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_constructor_pattern, 3), + [817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_pattern, 2), + [819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_constructor_args, 3), + [821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_pattern, 1), + [823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_constructor_args, 4), + [825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_discard_var, 1), + [827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 3), + [829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1), + [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), + [833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 4, .production_id = 58), + [835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 4, .production_id = 46), + [837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 4, .production_id = 57), + [839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 3, .production_id = 46), + [841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 3), + [843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 5, .production_id = 58), + [845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 5, .production_id = 68), + [847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_constructor_args, 5), + [849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2), + [851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern_bit_string, 3), + [853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_constructor_args, 2), + [855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern_bit_string, 4), + [857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern_bit_string, 2), + [859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 3, .production_id = 47), + [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), + [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), + [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), + [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), + [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), + [901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 59), + [903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 59), SHIFT_REPEAT(354), + [906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 46), + [908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__name_param, 1, .production_id = 17), + [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), + [916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2), + [918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2), + [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), + [922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1), + [924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 1), + [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_repeat1, 2), SHIFT_REPEAT(140), + [939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), + [941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), + [943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(842), + [946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_pattern, 2, .production_id = 59), + [948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(999), + [951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_var, 1), + [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), + [955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1), + [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_pattern, 1, .production_id = 51), + [961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_parameter, 1, .production_id = 16), + [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_type, 3, .production_id = 28), + [969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_parameter, 1, .production_id = 14), + [971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_parameter, 1), + [973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 29), + [975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), + [977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expression_bit_string_segment_options_repeat1, 2), + [979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_bit_string_segment_options_repeat1, 2), SHIFT_REPEAT(251), + [982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_parameter, 1, .production_id = 15), + [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), + [988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_bit_string_segment_options, 1), + [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_bit_string_segment_options, 2), + [996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_constant_bit_string_segment_options_repeat1, 2), + [998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constant_bit_string_segment_options_repeat1, 2), SHIFT_REPEAT(243), + [1001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pattern_constructor_args_repeat1, 2), SHIFT_REPEAT(495), [1004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pattern_constructor_args_repeat1, 2), - [1006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_bit_string_segment_options, 2), - [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), - [1010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_parameter, 1, .production_id = 15), - [1012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__constant_tuple_repeat1, 2), SHIFT_REPEAT(388), - [1015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__constant_tuple_repeat1, 2), - [1017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_bit_string_segment_options, 1), - [1019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_clause_patterns_repeat1, 2), - [1021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_clause_patterns_repeat1, 2), SHIFT_REPEAT(346), - [1024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_parameter, 1, .production_id = 14), - [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [1028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_parameter, 1, .production_id = 13), - [1030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constructors, 1), - [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [1034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_type, 1), - [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [1038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_hole, 1), - [1040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_constant_bit_string_segment_options_repeat1, 2), - [1042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constant_bit_string_segment_options_repeat1, 2), SHIFT_REPEAT(245), - [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), - [1047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pattern_bit_string_segment_options_repeat1, 2), - [1049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pattern_bit_string_segment_options_repeat1, 2), SHIFT_REPEAT(243), - [1052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), - [1054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [1056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), - [1060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bit_string_segment_option_unit, 4, .production_id = 52), - [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [1064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_update_arguments, 2), - [1066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_bit_string_segment, 1, .production_id = 36), - [1068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), - [1070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [1072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [1074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), - [1076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [1078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_subjects, 2), - [1080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern_bit_string_segment_option_size, 4), - [1082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [1084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_annotation, 2, .production_id = 12), - [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [1088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), - [1092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), - [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [1096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [1098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 2, .production_id = 4), - [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), - [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), - [1104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_update_arguments_repeat1, 2), SHIFT_REPEAT(561), - [1107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_record_update_arguments_repeat1, 2), - [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), - [1113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_repeat1, 2), - [1115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_import_repeat1, 2), SHIFT_REPEAT(670), - [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), - [1124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 1), - [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [1128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 2, .production_id = 4), - [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), - [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [1134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string_segment_option_size, 4, .production_id = 51), - [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), - [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [1148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), - [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), - [1152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), - [1156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [1158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 1), - [1160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [1162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), - [1164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [1166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_update_arguments, 1), - [1168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), - [1172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), - [1174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [1176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [1178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [1180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [1182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constructor_arguments, 1), - [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), - [1186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [1188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [1190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [1194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [1196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), - [1198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(417), - [1201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_type_repeat1, 2), - [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [1205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_constructor_named_arg, 3), - [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), - [1219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__constant_bit_string_repeat1, 2), SHIFT_REPEAT(366), - [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__constant_bit_string_repeat1, 2), - [1224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_constructor_arguments_repeat1, 2), SHIFT_REPEAT(405), - [1227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_constructor_arguments_repeat1, 2), - [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), - [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), - [1241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_tuple_type, 4), - [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), - [1245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(38), - [1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_arguments_repeat1, 2), - [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), - [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [1254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_type, 4), - [1256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [1258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_name_repeat1, 2), SHIFT_REPEAT(711), - [1261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_name_repeat1, 2), - [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), - [1265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_type, 5), - [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [1271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function_parameters, 2), - [1273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constant_tuple_type_repeat1, 2), SHIFT_REPEAT(476), - [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_constant_tuple_type_repeat1, 2), - [1278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_external_function_parameters_repeat1, 2), SHIFT_REPEAT(404), - [1281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_external_function_parameters_repeat1, 2), - [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [1287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constructor, 1), - [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), - [1291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_tuple_type, 5), - [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [1297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_parameters, 1), - [1299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_bit_string_repeat1, 2), SHIFT_REPEAT(342), - [1302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pattern_bit_string_repeat1, 2), - [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [1306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__constant_record_repeat1, 2), SHIFT_REPEAT(770), - [1309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__constant_record_repeat1, 2), - [1311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_type, 3), - [1313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_remote_type, 3, .production_id = 26), - [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), - [1317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_tuple_type, 3), - [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), - [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), - [1323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_record_arg, 1), - [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), - [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), - [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), - [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), - [1337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_bit_string_repeat1, 2), SHIFT_REPEAT(169), - [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_bit_string_repeat1, 2), - [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unqualified_import, 1), - [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constructor_arguments, 2), - [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [1354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [1356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), - [1358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), - [1360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__labelled_name_param, 2, .production_id = 25), - [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__labelled_discard_param, 2, .production_id = 24), - [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), - [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_parameters, 2), - [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), - [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_bit_string_segment, 1, .production_id = 17), - [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), - [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [1386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_parameters_repeat1, 2), SHIFT_REPEAT(479), - [1389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_parameters_repeat1, 2), - [1391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern_constructor_arg, 1, .production_id = 45), - [1393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string_segment_option_size, 4, .production_id = 51), - [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [1401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), - [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), - [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), - [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [1415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_bit_string_segment, 1, .production_id = 17), - [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), - [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), - [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), - [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), - [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), - [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), - [1431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function_parameters, 1), - [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), - [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 5), - [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [1441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function_parameter, 1, .production_id = 19), - [1443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 4), - [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 1), - [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), - [1453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_record, 1), - [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [1459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_spread, 1), - [1461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_parameter, 2, .production_id = 20), - [1463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_parameter, 2, .production_id = 21), - [1465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_var, 1), - [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [1469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1), - [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [1473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_parameter, 2, .production_id = 22), - [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), - [1479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_parameter, 2, .production_id = 23), - [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), - [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [1487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(299), - [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_target_group_repeat1, 2), - [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 6, .production_id = 4), - [1494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [1498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_bit_string_segment, 3, .production_id = 57), - [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_bit_string_segment, 3, .production_id = 29), - [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), - [1504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), - [1506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [1512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constructor, 4), - [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function_parameter, 3, .production_id = 30), - [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 7, .production_id = 4), - [1518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 7, .production_id = 4), - [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter, 1), - [1524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 3), - [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [1528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_bit_string_segment, 3, .production_id = 29), - [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), - [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), - [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [1540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument, 3, .production_id = 61), - [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), - [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), - [1548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [1550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 6, .production_id = 4), - [1552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [1556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), - [1560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(278), - [1563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constructor_argument, 3, .production_id = 35), - [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), - [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [1569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constructor, 3), - [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), - [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constructor_argument, 1, .production_id = 17), - [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), - [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), - [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), - [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [1595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_record_arg, 3), - [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), - [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), - [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), - [1605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument, 1, .production_id = 37), - [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), - [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [1615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unqualified_import, 3, .production_id = 28), - [1617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), - [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), - [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), - [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), - [1633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_record, 4), - [1635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 5), - [1637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), - [1639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_record, 5), - [1641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_tuple, 5), - [1643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 4), - [1645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 31), - [1647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function, 7, .production_id = 33), - [1649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function, 7, .production_id = 33), - [1651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string, 4), - [1653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_list, 4), - [1655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_tuple, 4), - [1657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 3), - [1659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_type, 3, .production_id = 26), - [1661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 27), - [1663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), - [1665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 5), - [1667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_record, 3), - [1669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_remote_record, 3), + [1006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_bit_string_segment_options, 1), + [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [1010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_patterns, 1), + [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [1014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 3), + [1016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_bit_string_segment_options, 2), + [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [1020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), + [1022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 34), + [1024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_clause_patterns_repeat1, 2), + [1026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_clause_patterns_repeat1, 2), SHIFT_REPEAT(346), + [1029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 4), + [1031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_patterns, 2), + [1033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constructors, 1), + [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [1037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_type, 1), + [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), + [1041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_hole, 1), + [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [1045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__constant_tuple_repeat1, 2), SHIFT_REPEAT(393), + [1048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__constant_tuple_repeat1, 2), + [1050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pattern_bit_string_segment_options_repeat1, 2), + [1052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pattern_bit_string_segment_options_repeat1, 2), SHIFT_REPEAT(246), + [1055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_bit_string_segment_options, 1), + [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [1059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_bit_string_segment_options, 2), + [1061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), + [1063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 5), + [1065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_constructors_repeat1, 2), + [1067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_constructors_repeat1, 2), SHIFT_REPEAT(696), + [1070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [1072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [1074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), + [1076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), + [1078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__constant_record_arguments_repeat1, 2), SHIFT_REPEAT(365), + [1081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__constant_record_arguments_repeat1, 2), + [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [1087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_parameters, 2), + [1089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_type, 5), + [1091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern_bit_string_segment_option_size, 4), + [1093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constant_tuple_type_repeat1, 2), SHIFT_REPEAT(483), + [1096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_constant_tuple_type_repeat1, 2), + [1098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_tuple_type, 5), + [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [1104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__labelled_discard_param, 2, .production_id = 25), + [1106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [1108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [1110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__labelled_name_param, 2, .production_id = 26), + [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [1114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function_parameters, 1), + [1116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_update_arguments_repeat1, 2), SHIFT_REPEAT(585), + [1119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_record_update_arguments_repeat1, 2), + [1121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern_constructor_arg, 1, .production_id = 48), + [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [1133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 2, .production_id = 4), + [1135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 2, .production_id = 4), + [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), + [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), + [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [1155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_bit_string_segment, 1, .production_id = 18), + [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), + [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [1161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_constructor_arguments_repeat1, 2), SHIFT_REPEAT(412), + [1164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_constructor_arguments_repeat1, 2), + [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), + [1168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string_segment_option_size, 4, .production_id = 54), + [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [1172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [1174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), + [1176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unqualified_import, 1), + [1178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [1180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [1182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), + [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [1186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [1188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [1190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_tuple_type, 3), + [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [1194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_update_arguments, 1), + [1196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [1198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [1202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), + [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [1208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [1210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), + [1212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 1), + [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [1218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(423), + [1221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_type_repeat1, 2), + [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), + [1225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_remote_type, 3, .production_id = 28), + [1227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_type, 3), + [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), + [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [1243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_update_arguments, 2), + [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), + [1253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_constructor_named_arg, 3), + [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [1259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function_parameters, 2), + [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), + [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), + [1269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_bit_string_segment, 1, .production_id = 18), + [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), + [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), + [1287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_bit_string_segment, 1, .production_id = 39), + [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [1293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(49), + [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_arguments_repeat1, 2), + [1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constructor_arguments, 2), + [1302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_name_repeat1, 2), SHIFT_REPEAT(811), + [1305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_name_repeat1, 2), + [1307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constructor_arguments, 1), + [1309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string_segment_option_size, 4, .production_id = 54), + [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [1313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bit_string_segment_option_unit, 4, .production_id = 55), + [1315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_external_function_parameters_repeat1, 2), SHIFT_REPEAT(405), + [1318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_external_function_parameters_repeat1, 2), + [1320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), + [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [1328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_type, 4), + [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_tuple_type, 4), + [1338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_annotation, 2, .production_id = 13), + [1340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), + [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [1348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [1350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__constant_bit_string_repeat1, 2), SHIFT_REPEAT(372), + [1353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__constant_bit_string_repeat1, 2), + [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [1359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 1), + [1361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pattern_bit_string_repeat1, 2), SHIFT_REPEAT(331), + [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pattern_bit_string_repeat1, 2), + [1366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_parameters, 1), + [1368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_record, 1), + [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), + [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [1382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_repeat1, 2), + [1384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_import_repeat1, 2), SHIFT_REPEAT(581), + [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [1393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_bit_string_repeat1, 2), SHIFT_REPEAT(170), + [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_bit_string_repeat1, 2), + [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [1400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_parameters_repeat1, 2), SHIFT_REPEAT(486), + [1403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_parameters_repeat1, 2), + [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), + [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), + [1415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constructor, 1), + [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [1425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_subjects, 2), + [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), + [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), + [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [1445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 3), + [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), + [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), + [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), + [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [1459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unqualified_import, 3, .production_id = 30), + [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_var, 1), + [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), + [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 1), + [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1), + [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [1475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter, 1), + [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), + [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), + [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [1489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 7, .production_id = 4), + [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), + [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_bit_string_segment, 3, .production_id = 60), + [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), + [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [1499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_bit_string_segment, 3, .production_id = 31), + [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument, 1, .production_id = 40), + [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), + [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), + [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), + [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), + [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constructor_argument, 1, .production_id = 18), + [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constructor, 3), + [1525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function_parameter, 3, .production_id = 33), + [1527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 5), + [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constructor, 4), + [1531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 7, .production_id = 4), + [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), + [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), + [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument, 3, .production_id = 64), + [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), + [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 6, .production_id = 4), + [1549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 6, .production_id = 4), + [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [1555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 4), + [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), + [1565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(287), + [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [1572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [1576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_record_argument, 1, .production_id = 18), + [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [1580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constructor_argument, 3, .production_id = 38), + [1582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), + [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [1590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_bit_string_segment, 3, .production_id = 31), + [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), + [1594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), + [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [1598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [1604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(304), + [1607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_target_group_repeat1, 2), + [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), + [1611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_spread, 1), + [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), + [1615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_record_argument, 3, .production_id = 38), + [1617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_parameter, 2, .production_id = 24), + [1619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_parameter, 2, .production_id = 23), + [1621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_parameter, 2, .production_id = 22), + [1623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_parameter, 2, .production_id = 21), + [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), + [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [1631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function_parameter, 1, .production_id = 20), + [1633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__constant_record_arguments_repeat1, 2, .production_id = 32), + [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), + [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [1639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_external_function, 2, .production_id = 6), + [1641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_public_external_function, 2, .production_id = 6), + [1643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__custom_type_definition, 4), + [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [1647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_list, 3), + [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [1653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target_group, 6, .production_id = 8), + [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), + [1657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant, 5, .production_id = 19), + [1659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), + [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), + [1663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_record, 2), + [1665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_tuple, 3), + [1667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer, 2), + [1669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target_group, 7, .production_id = 8), [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string, 3), - [1673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_list, 3), - [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_tuple, 3), - [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 4), - [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [1681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer, 2), - [1683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string, 2), - [1685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_list, 2), - [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), - [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 3), - [1691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_hole, 1), - [1693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_value, 1, .production_id = 11), - [1695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer, 1), - [1697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function, 10, .production_id = 62), - [1699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function, 10, .production_id = 62), - [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), - [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__external_function, 10, .production_id = 53), - [1705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__external_function, 10, .production_id = 53), - [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), - [1709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_body, 2), - [1711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function_body, 2), - [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function, 9, .production_id = 50), - [1715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function, 9, .production_id = 50), - [1717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__external_function, 9, .production_id = 42), - [1719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__external_function, 9, .production_id = 42), - [1721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 9, .production_id = 41), - [1723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 9, .production_id = 41), - [1725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function, 8, .production_id = 40), - [1727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function, 8, .production_id = 40), - [1729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 8, .production_id = 34), - [1731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 8, .production_id = 34), - [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [1737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__custom_type_definition, 4), - [1739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__custom_type_definition, 4), - [1741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant, 5, .production_id = 18), - [1743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant, 5, .production_id = 18), - [1745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_alias, 3), - [1747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_alias, 3), - [1749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant, 4, .production_id = 10), - [1751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant, 4, .production_id = 10), - [1753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_opaque_type_alias, 4), - [1755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_public_opaque_type_alias, 4), - [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_opaque_type_definition, 4), - [1759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_public_opaque_type_definition, 4), - [1761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 4, .production_id = 9), - [1763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 4, .production_id = 9), - [1765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias, 1), - [1767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias, 1), - [1769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__external_type, 3), - [1771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__external_type, 3), - [1773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_type_alias, 3), - [1775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_public_type_alias, 3), - [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [1779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_type_definition, 3), - [1781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_public_type_definition, 3), - [1783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 2), - [1785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 2), - [1787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 2), - [1789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 2), - [1791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_function, 2, .production_id = 7), - [1793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_public_function, 2, .production_id = 7), - [1795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_external_function, 2, .production_id = 6), - [1797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_public_external_function, 2, .production_id = 6), - [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_external_type, 2), - [1801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_public_external_type, 2), - [1803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_constant, 2, .production_id = 5), - [1805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_public_constant, 2, .production_id = 5), - [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 1, .production_id = 3), - [1809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 1, .production_id = 3), - [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function, 1, .production_id = 2), - [1813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function, 1, .production_id = 2), - [1815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_type, 1), - [1817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_type, 1), - [1819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 1, .production_id = 1), - [1821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 1, .production_id = 1), - [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [1825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern_bit_string_segment_arg, 1), - [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), - [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), - [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), - [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), - [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), - [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), - [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), - [1849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_spread, 2), - [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), - [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), - [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [1865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern_tail, 2), - [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), - [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_parameter_types, 3), - [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), - [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [1895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_parameter_types, 4), - [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), - [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), - [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), - [1917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target_group, 6, .production_id = 8), - [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), - [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [1929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target_group, 7, .production_id = 8), - [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), - [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), - [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), - [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), - [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), - [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [1953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [1955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [1957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_parameter_types, 2), - [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), - [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), - [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), - [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), - [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [1985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), - [1987] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), - [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), - [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), - [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), - [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), - [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target_group, 5, .production_id = 8), - [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), - [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), - [2019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_type_annotation, 2, .production_id = 12), - [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), + [1673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string, 2), + [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_remote_record, 3, .production_id = 27), + [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_list, 2), + [1679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_record_arguments, 2), + [1681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 5), + [1683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), + [1685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_record_arguments, 4, .production_id = 32), + [1687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_tuple, 5), + [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [1693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 4), + [1695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 34), + [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), + [1701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_record_arguments, 3, .production_id = 32), + [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target_group, 5, .production_id = 8), + [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [1707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string, 4), + [1709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_list, 4), + [1711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_tuple, 4), + [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [1717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 3), + [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [1721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_type, 3, .production_id = 28), + [1723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 29), + [1725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), + [1727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 5), + [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [1731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 4), + [1733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 3), + [1735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_hole, 1), + [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [1739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_value, 1, .production_id = 12), + [1741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_alias, 3), + [1743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_value, 1, .production_id = 11), + [1745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer, 1), + [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [1749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_parameter_types, 2), + [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [1753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function, 10, .production_id = 65), + [1755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function, 10, .production_id = 65), + [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), + [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), + [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), + [1765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__external_function, 10, .production_id = 56), + [1767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__external_function, 10, .production_id = 56), + [1769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_body, 2), + [1771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function_body, 2), + [1773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function, 9, .production_id = 53), + [1775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function, 9, .production_id = 53), + [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), + [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), + [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), + [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), + [1797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__external_function, 9, .production_id = 45), + [1801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__external_function, 9, .production_id = 45), + [1803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 9, .production_id = 44), + [1805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 9, .production_id = 44), + [1807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_type_annotation, 2, .production_id = 13), + [1809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function, 8, .production_id = 43), + [1811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function, 8, .production_id = 43), + [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), + [1815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 4, .production_id = 9), + [1817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 4, .production_id = 9), + [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant, 4, .production_id = 10), + [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 8, .production_id = 37), + [1837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 8, .production_id = 37), + [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function, 7, .production_id = 36), + [1841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function, 7, .production_id = 36), + [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_opaque_type_alias, 4), + [1851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_parameter_types, 3), + [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__custom_type_definition, 4), + [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_opaque_type_definition, 4), + [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias, 1), + [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [1863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant, 5, .production_id = 19), + [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), + [1867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_alias, 3), + [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [1871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant, 4, .production_id = 10), + [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target_group, 4, .production_id = 8), + [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [1879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_public_opaque_type_alias, 4), + [1881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_public_opaque_type_definition, 4), + [1883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias, 1), + [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__external_type, 3), + [1895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__external_type, 3), + [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_type_alias, 3), + [1899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_public_type_alias, 3), + [1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_type_definition, 3), + [1903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_public_type_definition, 3), + [1905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 2), + [1907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 2), + [1909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 2), + [1911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 2), + [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [1921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_function, 2, .production_id = 7), + [1923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_public_function, 2, .production_id = 7), + [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_external_type, 2), + [1927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_public_external_type, 2), + [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), + [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_constant, 2, .production_id = 5), + [1933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_public_constant, 2, .production_id = 5), + [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 1, .production_id = 3), + [1937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 1, .production_id = 3), + [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [1941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function, 1, .production_id = 2), + [1943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function, 1, .production_id = 2), + [1945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_type, 1), + [1947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_type, 1), + [1949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 1, .production_id = 1), + [1951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 1, .production_id = 1), + [1953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), + [1955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [1957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), + [1967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern_tail, 2), + [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [1985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern_bit_string_segment_arg, 1), + [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), + [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [1999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_parameter_types, 4), + [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), + [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), + [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), + [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), + [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), + [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), - [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [2037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target_group, 4, .production_id = 8), - [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), - [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), - [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), - [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), - [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), - [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), - [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), - [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), - [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), - [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [2075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_target, 1), - [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), - [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), - [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), - [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), - [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), - [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), - [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), - [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), + [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), + [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [2039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_spread, 2), + [2041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_target, 1), + [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), + [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), + [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), + [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), + [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), + [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), + [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [2069] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), + [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), + [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), + [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), + [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), }; #ifdef __cplusplus