From 81670f48fad7b02bc642923caffa3237851335ed Mon Sep 17 00:00:00 2001 From: Jonathan Arnett Date: Mon, 22 Aug 2022 14:53:32 -0400 Subject: [PATCH] Add support for function constants (#37) --- README.md | 1 + grammar.js | 29 +- src/grammar.json | 151 + src/node-types.json | 16 + src/parser.c | 46720 ++++++++++++++++++------------------ test/corpus/constants.txt | 39 +- test/corpus/functions.txt | 30 + 7 files changed, 23922 insertions(+), 23064 deletions(-) diff --git a/README.md b/README.md index 997efdc5f..fa89c3c11 100644 --- a/README.md +++ b/README.md @@ -52,6 +52,7 @@ There are a few nodes in the generated AST that may be confusing at first: —there's no way for the parser to know. In this case, it will be parsed to `(function_call function: (field_access ...) ...)` , as I arbitrarily decided to always assume the code is accessing a field on a record. +- `constant_field_access` :: Recognizes when a reference to a remote function is used as a constant's value. Generally field accesses are indistinguishable from remote function invocations by the parser so `field_access` is the node name used for both (hence this misnomer). This is not a comprehensive list. If you find a node confusing, search for it in `grammar.js`, as it might have an explanatory comment. Either way, feel free diff --git a/grammar.js b/grammar.js index 1b39b62f9..12e332376 100644 --- a/grammar.js +++ b/grammar.js @@ -25,6 +25,7 @@ module.exports = grammar({ ], [$.case_subjects], [$.source_file], + [$._constant_value, $._case_clause_guard_unit], ], rules: { /* General rules */ @@ -93,7 +94,9 @@ module.exports = grammar({ alias($.constant_tuple, $.tuple), alias($.constant_list, $.list), alias($._constant_bit_string, $.bit_string), - alias($.constant_record, $.record) + alias($.constant_record, $.record), + $.identifier, + alias($.constant_field_access, $.field_access) ), constant_tuple: ($) => seq("#", "(", optional(series_of($._constant_value, ",")), ")"), @@ -118,6 +121,12 @@ module.exports = grammar({ optional(seq(field("label", $.label), ":")), field("value", $._constant_value) ), + // This is definitely a misnomer at this time as field access are actually + // not allowed as constant values (yet). This rule exists to parse remote + // function references which are generally indistinguishable from field + // accesses and so share an AST node. + constant_field_access: ($) => + seq(field("record", $.identifier), ".", field("field", $.label)), /* Special constant types */ // Versions of $._type, $._type_annotation, etc, that have constraints @@ -126,11 +135,29 @@ module.exports = grammar({ choice( $.type_hole, alias($.constant_tuple_type, $.tuple_type), + alias($.constant_function_type, $.function_type), alias($.constant_type, $.type) ), _constant_type_annotation: ($) => seq(":", field("type", $._constant_type)), constant_tuple_type: ($) => seq("#", "(", optional(series_of($._constant_type, ",")), ")"), + constant_function_type: ($) => + seq( + "fn", + optional( + field( + "parameter_types", + alias( + $.constant_function_parameter_types, + $.function_parameter_types + ) + ) + ), + "->", + field("return_type", $._constant_type) + ), + constant_function_parameter_types: ($) => + seq("(", optional(series_of($._constant_type, ",")), ")"), constant_type: ($) => seq( field("name", choice($.type_identifier, $.remote_type_identifier)), diff --git a/src/grammar.json b/src/grammar.json index 4c8c05a54..7a000db3d 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -481,6 +481,19 @@ }, "named": true, "value": "record" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "constant_field_access" + }, + "named": true, + "value": "field_access" } ] }, @@ -953,6 +966,31 @@ } ] }, + "constant_field_access": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "record", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "STRING", + "value": "." + }, + { + "type": "FIELD", + "name": "field", + "content": { + "type": "SYMBOL", + "name": "label" + } + } + ] + }, "_constant_type": { "type": "CHOICE", "members": [ @@ -969,6 +1007,15 @@ "named": true, "value": "tuple_type" }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "constant_function_type" + }, + "named": true, + "value": "function_type" + }, { "type": "ALIAS", "content": { @@ -1059,6 +1106,106 @@ } ] }, + "constant_function_type": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "fn" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "parameter_types", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "constant_function_parameter_types" + }, + "named": true, + "value": "function_parameter_types" + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "->" + }, + { + "type": "FIELD", + "name": "return_type", + "content": { + "type": "SYMBOL", + "name": "_constant_type" + } + } + ] + }, + "constant_function_parameter_types": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_constant_type" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "_constant_type" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, "constant_type": { "type": "SEQ", "members": [ @@ -5900,6 +6047,10 @@ ], [ "source_file" + ], + [ + "_constant_value", + "_case_clause_guard_unit" ] ], "precedences": [], diff --git a/src/node-types.json b/src/node-types.json index e83155c4d..3e17d8393 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -1072,6 +1072,10 @@ "type": "bit_string", "named": true }, + { + "type": "field_access", + "named": true + }, { "type": "float", "named": true @@ -1308,6 +1312,10 @@ "multiple": false, "required": false, "types": [ + { + "type": "function_type", + "named": true + }, { "type": "tuple_type", "named": true @@ -1330,10 +1338,18 @@ "type": "bit_string", "named": true }, + { + "type": "field_access", + "named": true + }, { "type": "float", "named": true }, + { + "type": "identifier", + "named": true + }, { "type": "integer", "named": true diff --git a/src/parser.c b/src/parser.c index da32f0e26..7f79b7cfb 100644 --- a/src/parser.c +++ b/src/parser.c @@ -14,9 +14,9 @@ #endif #define LANGUAGE_VERSION 13 -#define STATE_COUNT 1301 +#define STATE_COUNT 1322 #define LARGE_STATE_COUNT 4 -#define SYMBOL_COUNT 249 +#define SYMBOL_COUNT 252 #define ALIAS_COUNT 1 #define TOKEN_COUNT 90 #define EXTERNAL_TOKEN_COUNT 1 @@ -50,10 +50,10 @@ enum { anon_sym_COLON = 23, anon_sym_DASH = 24, anon_sym_size = 25, - anon_sym_external = 26, - anon_sym_type = 27, - anon_sym_fn = 28, - anon_sym_DASH_GT = 29, + anon_sym_fn = 26, + anon_sym_DASH_GT = 27, + anon_sym_external = 28, + anon_sym_type = 29, anon_sym_try = 30, anon_sym_PIPE_PIPE = 31, anon_sym_AMP_AMP = 32, @@ -135,145 +135,148 @@ enum { sym_constant_record = 108, sym_constant_record_arguments = 109, sym_constant_record_argument = 110, - sym__constant_type = 111, - sym__constant_type_annotation = 112, - sym_constant_tuple_type = 113, - sym_constant_type = 114, - sym_constant_type_arguments = 115, - sym_constant_type_argument = 116, - sym_external_type = 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_parameters = 123, - sym_function_parameter = 124, - sym__labeled_discard_param = 125, - sym__discard_param = 126, - sym__labeled_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_todo = 135, - sym_tuple = 136, - sym_list = 137, - sym__expression_bit_string = 138, - sym_expression_bit_string_segment = 139, - sym_expression_bit_string_segment_options = 140, - sym__expression_bit_string_segment_option = 141, - sym__expression_bit_string_named_segment_option = 142, - sym__expression_bit_string_segment_option_size = 143, - sym_anonymous_function = 144, - sym_anonymous_function_parameters = 145, - sym_anonymous_function_parameter = 146, - sym_expression_group = 147, - sym_case = 148, - sym_case_subjects = 149, - sym_case_clauses = 150, - sym_case_clause = 151, - sym_case_clause_patterns = 152, - sym_case_clause_pattern = 153, - sym_case_clause_guard = 154, - sym__case_clause_guard_expression = 155, - sym__case_clause_guard_binary_expression = 156, - sym__case_clause_guard_unit = 157, - sym__case_clause_tuple_access = 158, - sym_let = 159, - sym_assert = 160, - sym_negation = 161, - sym__assignment = 162, - sym_record_update = 163, - sym_record_update_arguments = 164, - sym_record_update_argument = 165, - sym__maybe_tuple_expression = 166, - sym_tuple_access = 167, - sym__maybe_record_expression = 168, - sym_field_access = 169, - sym__maybe_function_expression = 170, - sym_arguments = 171, - sym_argument = 172, - sym_hole = 173, - sym_function_call = 174, - sym__pattern = 175, - sym_record_pattern = 176, - sym_record_pattern_arguments = 177, - sym_record_pattern_argument = 178, - sym_pattern_spread = 179, - sym_tuple_pattern = 180, - sym__pattern_bit_string = 181, - sym_pattern_bit_string_segment = 182, - sym_pattern_bit_string_segment_options = 183, - sym__pattern_bit_string_segment_option = 184, - sym__pattern_bit_string_named_segment_option = 185, - sym__pattern_bit_string_segment_option_size = 186, - sym__pattern_bit_string_segment_argument = 187, - sym_list_pattern = 188, - sym_list_pattern_tail = 189, - sym_type_definition = 190, - sym_data_constructors = 191, - sym_data_constructor = 192, - sym_data_constructor_arguments = 193, - sym_data_constructor_argument = 194, - sym_type_alias = 195, - sym_string = 196, - sym_integer = 197, - sym__bit_string_segment_option = 198, - sym__type = 199, - sym__type_annotation = 200, - sym_type_hole = 201, - sym_tuple_type = 202, - sym_function_type = 203, - sym_function_parameter_types = 204, - sym_type = 205, - sym_type_arguments = 206, - sym_type_argument = 207, - sym_type_var = 208, - sym_type_name = 209, - sym_type_parameters = 210, - sym_type_parameter = 211, - sym_identifier = 212, - sym_label = 213, - sym_discard = 214, - sym_type_identifier = 215, - sym_remote_type_identifier = 216, - sym_constructor_name = 217, - sym_remote_constructor_name = 218, - aux_sym_source_file_repeat1 = 219, - aux_sym_target_group_repeat1 = 220, - aux_sym_module_repeat1 = 221, - aux_sym_unqualified_imports_repeat1 = 222, - aux_sym_constant_tuple_repeat1 = 223, - aux_sym__constant_bit_string_repeat1 = 224, - aux_sym_constant_bit_string_segment_options_repeat1 = 225, - aux_sym_constant_record_arguments_repeat1 = 226, - aux_sym_constant_tuple_type_repeat1 = 227, - aux_sym_constant_type_arguments_repeat1 = 228, - aux_sym_external_function_parameters_repeat1 = 229, - aux_sym_function_parameters_repeat1 = 230, - aux_sym_tuple_repeat1 = 231, - aux_sym__expression_bit_string_repeat1 = 232, - aux_sym_expression_bit_string_segment_options_repeat1 = 233, - aux_sym_anonymous_function_parameters_repeat1 = 234, - aux_sym_case_clauses_repeat1 = 235, - aux_sym_case_clause_patterns_repeat1 = 236, - aux_sym_case_clause_pattern_repeat1 = 237, - aux_sym_record_update_arguments_repeat1 = 238, - aux_sym_arguments_repeat1 = 239, - aux_sym_record_pattern_arguments_repeat1 = 240, - aux_sym__pattern_bit_string_repeat1 = 241, - aux_sym_pattern_bit_string_segment_options_repeat1 = 242, - aux_sym_data_constructors_repeat1 = 243, - aux_sym_data_constructor_arguments_repeat1 = 244, - aux_sym_string_repeat1 = 245, - aux_sym_tuple_type_repeat1 = 246, - aux_sym_type_arguments_repeat1 = 247, - aux_sym_type_parameters_repeat1 = 248, - alias_sym_function_body = 249, + sym_constant_field_access = 111, + sym__constant_type = 112, + sym__constant_type_annotation = 113, + sym_constant_tuple_type = 114, + sym_constant_function_type = 115, + sym_constant_function_parameter_types = 116, + sym_constant_type = 117, + sym_constant_type_arguments = 118, + sym_constant_type_argument = 119, + sym_external_type = 120, + sym_external_function = 121, + sym_external_function_parameters = 122, + sym_external_function_parameter = 123, + sym_external_function_body = 124, + sym_function = 125, + sym_function_parameters = 126, + sym_function_parameter = 127, + sym__labeled_discard_param = 128, + sym__discard_param = 129, + sym__labeled_name_param = 130, + sym__name_param = 131, + aux_sym__expression_seq = 132, + sym_try = 133, + sym__expression = 134, + sym_binary_expression = 135, + sym__expression_unit = 136, + sym_record = 137, + sym_todo = 138, + sym_tuple = 139, + sym_list = 140, + sym__expression_bit_string = 141, + sym_expression_bit_string_segment = 142, + sym_expression_bit_string_segment_options = 143, + sym__expression_bit_string_segment_option = 144, + sym__expression_bit_string_named_segment_option = 145, + sym__expression_bit_string_segment_option_size = 146, + sym_anonymous_function = 147, + sym_anonymous_function_parameters = 148, + sym_anonymous_function_parameter = 149, + sym_expression_group = 150, + sym_case = 151, + sym_case_subjects = 152, + sym_case_clauses = 153, + sym_case_clause = 154, + sym_case_clause_patterns = 155, + sym_case_clause_pattern = 156, + sym_case_clause_guard = 157, + sym__case_clause_guard_expression = 158, + sym__case_clause_guard_binary_expression = 159, + sym__case_clause_guard_unit = 160, + sym__case_clause_tuple_access = 161, + sym_let = 162, + sym_assert = 163, + sym_negation = 164, + sym__assignment = 165, + sym_record_update = 166, + sym_record_update_arguments = 167, + sym_record_update_argument = 168, + sym__maybe_tuple_expression = 169, + sym_tuple_access = 170, + sym__maybe_record_expression = 171, + sym_field_access = 172, + sym__maybe_function_expression = 173, + sym_arguments = 174, + sym_argument = 175, + sym_hole = 176, + sym_function_call = 177, + sym__pattern = 178, + sym_record_pattern = 179, + sym_record_pattern_arguments = 180, + sym_record_pattern_argument = 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_argument = 190, + sym_list_pattern = 191, + sym_list_pattern_tail = 192, + sym_type_definition = 193, + sym_data_constructors = 194, + sym_data_constructor = 195, + sym_data_constructor_arguments = 196, + sym_data_constructor_argument = 197, + sym_type_alias = 198, + sym_string = 199, + sym_integer = 200, + sym__bit_string_segment_option = 201, + sym__type = 202, + sym__type_annotation = 203, + sym_type_hole = 204, + sym_tuple_type = 205, + sym_function_type = 206, + sym_function_parameter_types = 207, + sym_type = 208, + sym_type_arguments = 209, + sym_type_argument = 210, + sym_type_var = 211, + sym_type_name = 212, + sym_type_parameters = 213, + sym_type_parameter = 214, + sym_identifier = 215, + sym_label = 216, + sym_discard = 217, + sym_type_identifier = 218, + sym_remote_type_identifier = 219, + sym_constructor_name = 220, + sym_remote_constructor_name = 221, + aux_sym_source_file_repeat1 = 222, + aux_sym_target_group_repeat1 = 223, + aux_sym_module_repeat1 = 224, + aux_sym_unqualified_imports_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_constant_type_arguments_repeat1 = 231, + aux_sym_external_function_parameters_repeat1 = 232, + aux_sym_function_parameters_repeat1 = 233, + aux_sym_tuple_repeat1 = 234, + aux_sym__expression_bit_string_repeat1 = 235, + aux_sym_expression_bit_string_segment_options_repeat1 = 236, + aux_sym_anonymous_function_parameters_repeat1 = 237, + aux_sym_case_clauses_repeat1 = 238, + aux_sym_case_clause_patterns_repeat1 = 239, + aux_sym_case_clause_pattern_repeat1 = 240, + aux_sym_record_update_arguments_repeat1 = 241, + aux_sym_arguments_repeat1 = 242, + aux_sym_record_pattern_arguments_repeat1 = 243, + aux_sym__pattern_bit_string_repeat1 = 244, + aux_sym_pattern_bit_string_segment_options_repeat1 = 245, + aux_sym_data_constructors_repeat1 = 246, + aux_sym_data_constructor_arguments_repeat1 = 247, + aux_sym_string_repeat1 = 248, + aux_sym_tuple_type_repeat1 = 249, + aux_sym_type_arguments_repeat1 = 250, + aux_sym_type_parameters_repeat1 = 251, + alias_sym_function_body = 252, }; static const char * const ts_symbol_names[] = { @@ -303,10 +306,10 @@ static const char * const ts_symbol_names[] = { [anon_sym_COLON] = ":", [anon_sym_DASH] = "-", [anon_sym_size] = "size", - [anon_sym_external] = "external", - [anon_sym_type] = "type", [anon_sym_fn] = "fn", [anon_sym_DASH_GT] = "->", + [anon_sym_external] = "external", + [anon_sym_type] = "type", [anon_sym_try] = "try", [anon_sym_PIPE_PIPE] = "||", [anon_sym_AMP_AMP] = "&&", @@ -388,9 +391,12 @@ static const char * const ts_symbol_names[] = { [sym_constant_record] = "record", [sym_constant_record_arguments] = "arguments", [sym_constant_record_argument] = "argument", + [sym_constant_field_access] = "field_access", [sym__constant_type] = "_constant_type", [sym__constant_type_annotation] = "_constant_type_annotation", [sym_constant_tuple_type] = "tuple_type", + [sym_constant_function_type] = "function_type", + [sym_constant_function_parameter_types] = "function_parameter_types", [sym_constant_type] = "type", [sym_constant_type_arguments] = "type_arguments", [sym_constant_type_argument] = "type_argument", @@ -556,10 +562,10 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_COLON] = anon_sym_COLON, [anon_sym_DASH] = anon_sym_DASH, [anon_sym_size] = anon_sym_size, - [anon_sym_external] = anon_sym_external, - [anon_sym_type] = anon_sym_type, [anon_sym_fn] = anon_sym_fn, [anon_sym_DASH_GT] = anon_sym_DASH_GT, + [anon_sym_external] = anon_sym_external, + [anon_sym_type] = anon_sym_type, [anon_sym_try] = anon_sym_try, [anon_sym_PIPE_PIPE] = anon_sym_PIPE_PIPE, [anon_sym_AMP_AMP] = anon_sym_AMP_AMP, @@ -641,9 +647,12 @@ static const TSSymbol ts_symbol_map[] = { [sym_constant_record] = sym_record, [sym_constant_record_arguments] = sym_arguments, [sym_constant_record_argument] = sym_argument, + [sym_constant_field_access] = sym_field_access, [sym__constant_type] = sym__constant_type, [sym__constant_type_annotation] = sym__constant_type_annotation, [sym_constant_tuple_type] = sym_tuple_type, + [sym_constant_function_type] = sym_function_type, + [sym_constant_function_parameter_types] = sym_function_parameter_types, [sym_constant_type] = sym_type, [sym_constant_type_arguments] = sym_type_arguments, [sym_constant_type_argument] = sym_type_argument, @@ -887,19 +896,19 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_external] = { + [anon_sym_fn] = { .visible = true, .named = false, }, - [anon_sym_type] = { + [anon_sym_DASH_GT] = { .visible = true, .named = false, }, - [anon_sym_fn] = { + [anon_sym_external] = { .visible = true, .named = false, }, - [anon_sym_DASH_GT] = { + [anon_sym_type] = { .visible = true, .named = false, }, @@ -1227,6 +1236,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_constant_field_access] = { + .visible = true, + .named = true, + }, [sym__constant_type] = { .visible = false, .named = true, @@ -1239,6 +1252,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_constant_function_type] = { + .visible = true, + .named = true, + }, + [sym_constant_function_parameter_types] = { + .visible = true, + .named = true, + }, [sym_constant_type] = { .visible = true, .named = true, @@ -1861,8 +1882,8 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [4] = {.index = 3, .length = 4}, [5] = {.index = 7, .length = 2}, [6] = {.index = 9, .length = 2}, - [7] = {.index = 11, .length = 2}, - [8] = {.index = 13, .length = 1}, + [7] = {.index = 11, .length = 1}, + [8] = {.index = 12, .length = 2}, [9] = {.index = 14, .length = 2}, [10] = {.index = 16, .length = 3}, [11] = {.index = 19, .length = 2}, @@ -1885,11 +1906,11 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [28] = {.index = 50, .length = 3}, [29] = {.index = 53, .length = 3}, [30] = {.index = 56, .length = 1}, - [31] = {.index = 57, .length = 1}, - [32] = {.index = 58, .length = 2}, - [33] = {.index = 60, .length = 3}, - [34] = {.index = 63, .length = 2}, - [35] = {.index = 65, .length = 2}, + [31] = {.index = 57, .length = 2}, + [32] = {.index = 59, .length = 3}, + [33] = {.index = 62, .length = 2}, + [34] = {.index = 64, .length = 2}, + [35] = {.index = 66, .length = 1}, [36] = {.index = 67, .length = 1}, [37] = {.index = 68, .length = 2}, [38] = {.index = 70, .length = 2}, @@ -1911,19 +1932,19 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [54] = {.index = 110, .length = 3}, [55] = {.index = 113, .length = 2}, [56] = {.index = 115, .length = 2}, - [57] = {.index = 117, .length = 1}, - [58] = {.index = 118, .length = 2}, - [59] = {.index = 120, .length = 2}, - [60] = {.index = 122, .length = 3}, - [61] = {.index = 125, .length = 3}, + [57] = {.index = 117, .length = 2}, + [58] = {.index = 119, .length = 1}, + [59] = {.index = 120, .length = 3}, + [60] = {.index = 123, .length = 3}, + [61] = {.index = 126, .length = 2}, [62] = {.index = 128, .length = 3}, [63] = {.index = 131, .length = 3}, [64] = {.index = 134, .length = 3}, [65] = {.index = 137, .length = 4}, [66] = {.index = 141, .length = 4}, [67] = {.index = 145, .length = 3}, - [68] = {.index = 148, .length = 4}, - [69] = {.index = 137, .length = 4}, + [68] = {.index = 141, .length = 4}, + [69] = {.index = 148, .length = 4}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -1945,10 +1966,10 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_arguments, 1}, {field_name, 0}, [11] = + {field_name, 0, .inherited = true}, + [12] = {field_name, 0}, {field_parameters, 1}, - [13] = - {field_name, 0, .inherited = true}, [14] = {field_assign, 0, .inherited = true}, {field_value, 0}, @@ -2015,20 +2036,20 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [56] = {field_spread, 3}, [57] = - {field_type, 0}, - [58] = {field_body, 3}, {field_parameters, 1}, - [60] = + [59] = {field_label, 0, .inherited = true}, {field_name, 0, .inherited = true}, {field_type, 1, .inherited = true}, - [63] = + [62] = {field_label, 0}, {field_name, 1}, - [65] = + [64] = {field_name, 1}, {field_parameters, 2}, + [66] = + {field_type, 0}, [67] = {field_assign, 2, .inherited = true}, [68] = @@ -2066,9 +2087,9 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_imports, 3}, {field_module, 1}, [93] = - {field_spread, 4}, - [94] = {field_return_type, 2}, + [94] = + {field_spread, 4}, [95] = {field_body, 4}, {field_name, 1}, @@ -2101,21 +2122,21 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_alias, 2}, {field_name, 0}, [117] = - {field_spread, 5}, - [118] = - {field_name, 0}, - {field_type, 2}, - [120] = {field_parameter_types, 1}, {field_return_type, 3}, - [122] = + [119] = + {field_spread, 5}, + [120] = {field_body, 5}, {field_parameters, 1}, {field_return_type, 3}, - [125] = + [123] = {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, + [126] = + {field_name, 0}, + {field_type, 2}, [128] = {field_guard, 1}, {field_patterns, 0}, @@ -2129,15 +2150,15 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_constructor, 0}, {field_spread, 3}, [137] = - {field_body, 7}, - {field_name, 2}, - {field_parameters, 3}, - {field_return_type, 5}, - [141] = {field_body, 6}, {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, + [141] = + {field_body, 7}, + {field_name, 2}, + {field_parameters, 3}, + {field_return_type, 5}, [145] = {field_name, 2}, {field_parameters, 3}, @@ -2151,22 +2172,22 @@ static const TSFieldMapEntry ts_field_map_entries[] = { static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { [0] = {0}, - [32] = { + [31] = { [3] = alias_sym_function_body, }, [48] = { [4] = alias_sym_function_body, }, - [60] = { + [59] = { [5] = alias_sym_function_body, }, [63] = { [5] = alias_sym_function_body, }, - [66] = { + [65] = { [6] = alias_sym_function_body, }, - [69] = { + [68] = { [7] = alias_sym_function_body, }, }; @@ -2183,147 +2204,147 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(154); + if (eof) ADVANCE(155); if (lookahead == '\t' || lookahead == '\n' || lookahead == ' ' || - lookahead == ';') SKIP(151) - if (lookahead == '\r') SKIP(151) - if (lookahead == '!') ADVANCE(236); - if (lookahead == '"') ADVANCE(242); - if (lookahead == '#') ADVANCE(181); - if (lookahead == '%') ADVANCE(226); + lookahead == ';') SKIP(152) + if (lookahead == '\r') SKIP(152) + if (lookahead == '!') ADVANCE(237); + if (lookahead == '"') ADVANCE(243); + if (lookahead == '#') ADVANCE(182); + if (lookahead == '%') ADVANCE(227); if (lookahead == '&') ADVANCE(1); - if (lookahead == '(') ADVANCE(182); - if (lookahead == ')') ADVANCE(183); - if (lookahead == '*') ADVANCE(223); - if (lookahead == '+') ADVANCE(220); - if (lookahead == ',') ADVANCE(176); - if (lookahead == '-') ADVANCE(191); - if (lookahead == '.') ADVANCE(171); - if (lookahead == '/') ADVANCE(174); - if (lookahead == '0') ADVANCE(246); - if (lookahead == ':') ADVANCE(188); - if (lookahead == '<') ADVANCE(209); - if (lookahead == '=') ADVANCE(180); - if (lookahead == '>') ADVANCE(215); - if (lookahead == '[') ADVANCE(184); - if (lookahead == '\\') ADVANCE(148); - if (lookahead == ']') ADVANCE(185); - if (lookahead == '_') ADVANCE(288); - if (lookahead == 'a') ADVANCE(393); - if (lookahead == 'b') ADVANCE(341); - if (lookahead == 'c') ADVANCE(297); - if (lookahead == 'e') ADVANCE(386); - if (lookahead == 'f') ADVANCE(351); - if (lookahead == 'i') ADVANCE(332); - if (lookahead == 'j') ADVANCE(295); - if (lookahead == 'l') ADVANCE(324); - if (lookahead == 'n') ADVANCE(303); - if (lookahead == 'o') ADVANCE(379); - if (lookahead == 'p') ADVANCE(418); - if (lookahead == 's') ADVANCE(342); - if (lookahead == 't') ADVANCE(366); - if (lookahead == 'u') ADVANCE(356); - if (lookahead == '{') ADVANCE(162); - if (lookahead == '|') ADVANCE(231); - if (lookahead == '}') ADVANCE(163); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(247); - if (('d' <= lookahead && lookahead <= 'z')) ADVANCE(425); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(426); + if (lookahead == '(') ADVANCE(183); + if (lookahead == ')') ADVANCE(184); + if (lookahead == '*') ADVANCE(224); + if (lookahead == '+') ADVANCE(221); + if (lookahead == ',') ADVANCE(177); + if (lookahead == '-') ADVANCE(192); + if (lookahead == '.') ADVANCE(172); + if (lookahead == '/') ADVANCE(175); + if (lookahead == '0') ADVANCE(247); + if (lookahead == ':') ADVANCE(189); + if (lookahead == '<') ADVANCE(210); + if (lookahead == '=') ADVANCE(181); + if (lookahead == '>') ADVANCE(216); + if (lookahead == '[') ADVANCE(185); + if (lookahead == '\\') ADVANCE(149); + if (lookahead == ']') ADVANCE(186); + if (lookahead == '_') ADVANCE(289); + if (lookahead == 'a') ADVANCE(394); + if (lookahead == 'b') ADVANCE(342); + if (lookahead == 'c') ADVANCE(298); + if (lookahead == 'e') ADVANCE(387); + if (lookahead == 'f') ADVANCE(352); + if (lookahead == 'i') ADVANCE(333); + if (lookahead == 'j') ADVANCE(296); + if (lookahead == 'l') ADVANCE(325); + if (lookahead == 'n') ADVANCE(304); + if (lookahead == 'o') ADVANCE(380); + if (lookahead == 'p') ADVANCE(419); + if (lookahead == 's') ADVANCE(343); + if (lookahead == 't') ADVANCE(367); + if (lookahead == 'u') ADVANCE(357); + if (lookahead == '{') ADVANCE(163); + if (lookahead == '|') ADVANCE(232); + if (lookahead == '}') ADVANCE(164); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(248); + if (('d' <= lookahead && lookahead <= 'z')) ADVANCE(426); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(427); END_STATE(); case 1: - if (lookahead == '&') ADVANCE(206); + if (lookahead == '&') ADVANCE(207); END_STATE(); case 2: - if (lookahead == '.') ADVANCE(228); + if (lookahead == '.') ADVANCE(229); END_STATE(); case 3: - if (lookahead == '.') ADVANCE(244); + if (lookahead == '.') ADVANCE(245); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_') ADVANCE(3); END_STATE(); case 4: - if (lookahead == '/') ADVANCE(158); + if (lookahead == '/') ADVANCE(159); END_STATE(); case 5: if (lookahead == '1') ADVANCE(7); if (lookahead == '3') ADVANCE(6); - if (lookahead == '8') ADVANCE(265); + if (lookahead == '8') ADVANCE(266); END_STATE(); case 6: - if (lookahead == '2') ADVANCE(268); + if (lookahead == '2') ADVANCE(269); END_STATE(); case 7: - if (lookahead == '6') ADVANCE(266); + if (lookahead == '6') ADVANCE(267); END_STATE(); case 8: - if (lookahead == '<') ADVANCE(186); + if (lookahead == '<') ADVANCE(187); END_STATE(); case 9: - if (lookahead == '=') ADVANCE(208); + if (lookahead == '=') ADVANCE(209); END_STATE(); case 10: - if (lookahead == '=') ADVANCE(207); + if (lookahead == '=') ADVANCE(208); END_STATE(); case 11: - if (lookahead == '>') ADVANCE(203); + if (lookahead == '>') ADVANCE(200); END_STATE(); case 12: - if (lookahead == '>') ADVANCE(187); + if (lookahead == '>') ADVANCE(188); END_STATE(); case 13: - if (lookahead == '>') ADVANCE(219); - if (lookahead == '|') ADVANCE(205); + if (lookahead == '>') ADVANCE(220); + if (lookahead == '|') ADVANCE(206); END_STATE(); case 14: - if (lookahead == '_') ADVANCE(107); - if (lookahead == 's') ADVANCE(262); + if (lookahead == '_') ADVANCE(108); + if (lookahead == 's') ADVANCE(263); END_STATE(); case 15: - if (lookahead == 'a') ADVANCE(125); + if (lookahead == 'a') ADVANCE(126); END_STATE(); case 16: - if (lookahead == 'a') ADVANCE(96); + if (lookahead == 'a') ADVANCE(97); END_STATE(); case 17: - if (lookahead == 'a') ADVANCE(98); + if (lookahead == 'a') ADVANCE(99); END_STATE(); case 18: - if (lookahead == 'a') ADVANCE(72); + if (lookahead == 'a') ADVANCE(73); END_STATE(); case 19: if (lookahead == 'a') ADVANCE(64); END_STATE(); case 20: - if (lookahead == 'a') ADVANCE(105); + if (lookahead == 'a') ADVANCE(106); END_STATE(); case 21: - if (lookahead == 'a') ADVANCE(120); + if (lookahead == 'a') ADVANCE(121); END_STATE(); case 22: - if (lookahead == 'a') ADVANCE(112); + if (lookahead == 'a') ADVANCE(113); END_STATE(); case 23: - if (lookahead == 'b') ADVANCE(237); + if (lookahead == 'b') ADVANCE(238); END_STATE(); case 24: - if (lookahead == 'c') ADVANCE(82); + if (lookahead == 'c') ADVANCE(83); END_STATE(); case 25: - if (lookahead == 'c') ADVANCE(101); + if (lookahead == 'c') ADVANCE(102); END_STATE(); case 26: - if (lookahead == 'c') ADVANCE(87); + if (lookahead == 'c') ADVANCE(88); END_STATE(); case 27: - if (lookahead == 'c') ADVANCE(88); + if (lookahead == 'c') ADVANCE(89); END_STATE(); case 28: - if (lookahead == 'd') ADVANCE(276); + if (lookahead == 'd') ADVANCE(277); END_STATE(); case 29: - if (lookahead == 'd') ADVANCE(278); + if (lookahead == 'd') ADVANCE(279); END_STATE(); case 30: if (lookahead == 'd') ADVANCE(42); @@ -2335,72 +2356,72 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'd') ADVANCE(44); END_STATE(); case 33: - if (lookahead == 'e') ADVANCE(195); + if (lookahead == 'e') ADVANCE(196); END_STATE(); case 34: - if (lookahead == 'e') ADVANCE(199); + if (lookahead == 'e') ADVANCE(203); END_STATE(); case 35: if (lookahead == 'e') ADVANCE(28); END_STATE(); case 36: - if (lookahead == 'e') ADVANCE(282); + if (lookahead == 'e') ADVANCE(283); END_STATE(); case 37: - if (lookahead == 'e') ADVANCE(284); + if (lookahead == 'e') ADVANCE(285); END_STATE(); case 38: - if (lookahead == 'e') ADVANCE(239); + if (lookahead == 'e') ADVANCE(240); END_STATE(); case 39: - if (lookahead == 'e') ADVANCE(99); + if (lookahead == 'e') ADVANCE(100); END_STATE(); case 40: if (lookahead == 'e') ADVANCE(29); END_STATE(); case 41: - if (lookahead == 'e') ADVANCE(104); + if (lookahead == 'e') ADVANCE(105); END_STATE(); case 42: - if (lookahead == 'e') ADVANCE(92); + if (lookahead == 'e') ADVANCE(93); END_STATE(); case 43: - if (lookahead == 'e') ADVANCE(94); + if (lookahead == 'e') ADVANCE(95); END_STATE(); case 44: - if (lookahead == 'e') ADVANCE(95); + if (lookahead == 'e') ADVANCE(96); END_STATE(); case 45: if (lookahead == 'f') ADVANCE(5); END_STATE(); case 46: - if (lookahead == 'f') ADVANCE(160); + if (lookahead == 'f') ADVANCE(161); END_STATE(); case 47: - if (lookahead == 'f') ADVANCE(160); - if (lookahead == 'm') ADVANCE(89); + if (lookahead == 'f') ADVANCE(161); + if (lookahead == 'm') ADVANCE(90); END_STATE(); case 48: - if (lookahead == 'g') ADVANCE(280); + if (lookahead == 'g') ADVANCE(281); if (lookahead == 'n') ADVANCE(17); if (lookahead == 't') ADVANCE(14); END_STATE(); case 49: - if (lookahead == 'g') ADVANCE(164); + if (lookahead == 'g') ADVANCE(165); END_STATE(); case 50: - if (lookahead == 'g') ADVANCE(260); + if (lookahead == 'g') ADVANCE(261); END_STATE(); case 51: - if (lookahead == 'g') ADVANCE(74); + if (lookahead == 'g') ADVANCE(75); if (lookahead == 'z') ADVANCE(33); END_STATE(); case 52: - if (lookahead == 'g') ADVANCE(76); + if (lookahead == 'g') ADVANCE(77); END_STATE(); case 53: if (lookahead == 'i') ADVANCE(48); - if (lookahead == 'y') ADVANCE(108); + if (lookahead == 'y') ADVANCE(109); END_STATE(); case 54: if (lookahead == 'i') ADVANCE(51); @@ -2409,36 +2430,36 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'i') ADVANCE(52); END_STATE(); case 56: - if (lookahead == 'i') ADVANCE(126); + if (lookahead == 'i') ADVANCE(127); END_STATE(); case 57: - if (lookahead == 'i') ADVANCE(122); + if (lookahead == 'i') ADVANCE(123); END_STATE(); case 58: - if (lookahead == 'i') ADVANCE(93); + if (lookahead == 'i') ADVANCE(94); END_STATE(); case 59: - if (lookahead == 'i') ADVANCE(73); + if (lookahead == 'i') ADVANCE(74); END_STATE(); case 60: - if (lookahead == 'i') ADVANCE(110); + if (lookahead == 'i') ADVANCE(111); if (lookahead == 's') ADVANCE(55); END_STATE(); case 61: - if (lookahead == 'i') ADVANCE(77); + if (lookahead == 'i') ADVANCE(78); END_STATE(); case 62: - if (lookahead == 'i') ADVANCE(78); + if (lookahead == 'i') ADVANCE(79); END_STATE(); case 63: - if (lookahead == 'i') ADVANCE(79); + if (lookahead == 'i') ADVANCE(80); END_STATE(); case 64: - if (lookahead == 'l') ADVANCE(197); + if (lookahead == 'l') ADVANCE(201); END_STATE(); case 65: - if (lookahead == 'l') ADVANCE(83); - if (lookahead == 'n') ADVANCE(201); + if (lookahead == 'l') ADVANCE(84); + if (lookahead == 'n') ADVANCE(198); END_STATE(); case 66: if (lookahead == 'l') ADVANCE(18); @@ -2447,36 +2468,36 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'l') ADVANCE(36); END_STATE(); case 68: - if (lookahead == 'm') ADVANCE(89); - if (lookahead == 'n') ADVANCE(109); + if (lookahead == 'm') ADVANCE(90); END_STATE(); case 69: - if (lookahead == 'n') ADVANCE(201); + if (lookahead == 'm') ADVANCE(90); + if (lookahead == 'n') ADVANCE(110); END_STATE(); case 70: - if (lookahead == 'n') ADVANCE(60); - if (lookahead == 't') ADVANCE(45); + if (lookahead == 'n') ADVANCE(198); END_STATE(); case 71: - if (lookahead == 'n') ADVANCE(106); + if (lookahead == 'n') ADVANCE(60); + if (lookahead == 't') ADVANCE(45); END_STATE(); case 72: - if (lookahead == 'n') ADVANCE(49); + if (lookahead == 'n') ADVANCE(107); END_STATE(); case 73: - if (lookahead == 'n') ADVANCE(50); + if (lookahead == 'n') ADVANCE(49); END_STATE(); case 74: - if (lookahead == 'n') ADVANCE(35); + if (lookahead == 'n') ADVANCE(50); END_STATE(); case 75: - if (lookahead == 'n') ADVANCE(19); + if (lookahead == 'n') ADVANCE(35); END_STATE(); case 76: - if (lookahead == 'n') ADVANCE(40); + if (lookahead == 'n') ADVANCE(19); END_STATE(); case 77: - if (lookahead == 'n') ADVANCE(115); + if (lookahead == 'n') ADVANCE(40); END_STATE(); case 78: if (lookahead == 'n') ADVANCE(116); @@ -2485,194 +2506,166 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'n') ADVANCE(117); END_STATE(); case 80: - if (lookahead == 'o') ADVANCE(71); + if (lookahead == 'n') ADVANCE(118); END_STATE(); case 81: - if (lookahead == 'o') ADVANCE(102); + if (lookahead == 'o') ADVANCE(72); END_STATE(); case 82: - if (lookahead == 'o') ADVANCE(30); + if (lookahead == 'o') ADVANCE(103); END_STATE(); case 83: - if (lookahead == 'o') ADVANCE(22); + if (lookahead == 'o') ADVANCE(30); END_STATE(); case 84: - if (lookahead == 'o') ADVANCE(61); + if (lookahead == 'o') ADVANCE(22); END_STATE(); case 85: - if (lookahead == 'o') ADVANCE(62); + if (lookahead == 'o') ADVANCE(61); END_STATE(); case 86: - if (lookahead == 'o') ADVANCE(63); + if (lookahead == 'o') ADVANCE(62); END_STATE(); case 87: - if (lookahead == 'o') ADVANCE(31); + if (lookahead == 'o') ADVANCE(63); END_STATE(); case 88: - if (lookahead == 'o') ADVANCE(32); + if (lookahead == 'o') ADVANCE(31); END_STATE(); case 89: - if (lookahead == 'p') ADVANCE(81); + if (lookahead == 'o') ADVANCE(32); END_STATE(); case 90: - if (lookahead == 'p') ADVANCE(16); + if (lookahead == 'p') ADVANCE(82); END_STATE(); case 91: - if (lookahead == 'p') ADVANCE(34); + if (lookahead == 'p') ADVANCE(16); END_STATE(); case 92: - if (lookahead == 'p') ADVANCE(84); + if (lookahead == 'p') ADVANCE(34); END_STATE(); case 93: - if (lookahead == 'p') ADVANCE(114); + if (lookahead == 'p') ADVANCE(85); END_STATE(); case 94: - if (lookahead == 'p') ADVANCE(85); + if (lookahead == 'p') ADVANCE(115); END_STATE(); case 95: if (lookahead == 'p') ADVANCE(86); END_STATE(); case 96: - if (lookahead == 'q') ADVANCE(124); + if (lookahead == 'p') ADVANCE(87); END_STATE(); case 97: - if (lookahead == 'r') ADVANCE(66); - if (lookahead == 'x') ADVANCE(119); + if (lookahead == 'q') ADVANCE(125); END_STATE(); case 98: - if (lookahead == 'r') ADVANCE(128); + if (lookahead == 'r') ADVANCE(66); + if (lookahead == 'x') ADVANCE(120); END_STATE(); case 99: - if (lookahead == 'r') ADVANCE(75); + if (lookahead == 'r') ADVANCE(129); END_STATE(); case 100: - if (lookahead == 'r') ADVANCE(59); + if (lookahead == 'r') ADVANCE(76); END_STATE(); case 101: - if (lookahead == 'r') ADVANCE(58); + if (lookahead == 'r') ADVANCE(59); END_STATE(); case 102: - if (lookahead == 'r') ADVANCE(113); + if (lookahead == 'r') ADVANCE(58); END_STATE(); case 103: - if (lookahead == 's') ADVANCE(172); + if (lookahead == 'r') ADVANCE(114); END_STATE(); case 104: - if (lookahead == 's') ADVANCE(254); + if (lookahead == 's') ADVANCE(173); END_STATE(); case 105: - if (lookahead == 's') ADVANCE(25); + if (lookahead == 's') ADVANCE(255); END_STATE(); case 106: - if (lookahead == 's') ADVANCE(111); + if (lookahead == 's') ADVANCE(25); END_STATE(); case 107: - if (lookahead == 's') ADVANCE(121); + if (lookahead == 's') ADVANCE(112); END_STATE(); case 108: - if (lookahead == 't') ADVANCE(41); + if (lookahead == 's') ADVANCE(122); END_STATE(); case 109: - if (lookahead == 't') ADVANCE(256); + if (lookahead == 't') ADVANCE(41); END_STATE(); case 110: - if (lookahead == 't') ADVANCE(286); + if (lookahead == 't') ADVANCE(257); END_STATE(); case 111: - if (lookahead == 't') ADVANCE(177); + if (lookahead == 't') ADVANCE(287); END_STATE(); case 112: - if (lookahead == 't') ADVANCE(258); + if (lookahead == 't') ADVANCE(178); END_STATE(); case 113: - if (lookahead == 't') ADVANCE(168); + if (lookahead == 't') ADVANCE(259); END_STATE(); case 114: - if (lookahead == 't') ADVANCE(166); + if (lookahead == 't') ADVANCE(169); END_STATE(); case 115: - if (lookahead == 't') ADVANCE(270); + if (lookahead == 't') ADVANCE(167); END_STATE(); case 116: - if (lookahead == 't') ADVANCE(272); + if (lookahead == 't') ADVANCE(271); END_STATE(); case 117: - if (lookahead == 't') ADVANCE(274); + if (lookahead == 't') ADVANCE(273); END_STATE(); case 118: - if (lookahead == 't') ADVANCE(67); + if (lookahead == 't') ADVANCE(275); END_STATE(); case 119: - if (lookahead == 't') ADVANCE(39); + if (lookahead == 't') ADVANCE(67); END_STATE(); case 120: - if (lookahead == 't') ADVANCE(56); + if (lookahead == 't') ADVANCE(39); END_STATE(); case 121: - if (lookahead == 't') ADVANCE(100); + if (lookahead == 't') ADVANCE(56); END_STATE(); case 122: - if (lookahead == 't') ADVANCE(118); + if (lookahead == 't') ADVANCE(101); END_STATE(); case 123: - if (lookahead == 'u') ADVANCE(23); + if (lookahead == 't') ADVANCE(119); END_STATE(); case 124: - if (lookahead == 'u') ADVANCE(38); + if (lookahead == 'u') ADVANCE(23); END_STATE(); case 125: - if (lookahead == 'v') ADVANCE(20); + if (lookahead == 'u') ADVANCE(38); END_STATE(); case 126: - if (lookahead == 'v') ADVANCE(37); + if (lookahead == 'v') ADVANCE(20); END_STATE(); case 127: - if (lookahead == 'x') ADVANCE(119); + if (lookahead == 'v') ADVANCE(37); END_STATE(); case 128: - if (lookahead == 'y') ADVANCE(252); + if (lookahead == 'x') ADVANCE(120); END_STATE(); case 129: - if (lookahead == 'y') ADVANCE(91); + if (lookahead == 'y') ADVANCE(253); END_STATE(); case 130: - if (lookahead == '|') ADVANCE(205); + if (lookahead == 'y') ADVANCE(92); END_STATE(); case 131: - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(251); + if (lookahead == '|') ADVANCE(206); END_STATE(); case 132: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ' || - lookahead == ';') SKIP(132) - if (lookahead == '\r') SKIP(132) - if (lookahead == '!') ADVANCE(235); - if (lookahead == '"') ADVANCE(241); - if (lookahead == '#') ADVANCE(181); - if (lookahead == '(') ADVANCE(182); - if (lookahead == ')') ADVANCE(183); - if (lookahead == ',') ADVANCE(176); - if (lookahead == '-') ADVANCE(194); - if (lookahead == '.') ADVANCE(2); - if (lookahead == '/') ADVANCE(4); - if (lookahead == '0') ADVANCE(246); - if (lookahead == ':') ADVANCE(188); - if (lookahead == '<') ADVANCE(8); - if (lookahead == '=') ADVANCE(179); - if (lookahead == '[') ADVANCE(184); - if (lookahead == '_') ADVANCE(288); - if (lookahead == 'a') ADVANCE(398); - if (lookahead == 'c') ADVANCE(298); - if (lookahead == 'f') ADVANCE(355); - if (lookahead == 'l') ADVANCE(325); - if (lookahead == 't') ADVANCE(368); - if (lookahead == '{') ADVANCE(162); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(247); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(425); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(426); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(252); END_STATE(); case 133: if (lookahead == '\t' || @@ -2681,37 +2674,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ';') SKIP(133) if (lookahead == '\r') SKIP(133) if (lookahead == '!') ADVANCE(236); - if (lookahead == '"') ADVANCE(241); - if (lookahead == '#') ADVANCE(181); - if (lookahead == '%') ADVANCE(226); - if (lookahead == '&') ADVANCE(1); - if (lookahead == '(') ADVANCE(182); - if (lookahead == ')') ADVANCE(183); - if (lookahead == '*') ADVANCE(223); - if (lookahead == '+') ADVANCE(220); - if (lookahead == ',') ADVANCE(176); - if (lookahead == '-') ADVANCE(192); - if (lookahead == '.') ADVANCE(171); - if (lookahead == '/') ADVANCE(174); - if (lookahead == '0') ADVANCE(246); - if (lookahead == ':') ADVANCE(188); - if (lookahead == '<') ADVANCE(209); + if (lookahead == '"') ADVANCE(242); + if (lookahead == '#') ADVANCE(182); + if (lookahead == '(') ADVANCE(183); + if (lookahead == ')') ADVANCE(184); + if (lookahead == ',') ADVANCE(177); + if (lookahead == '-') ADVANCE(195); + if (lookahead == '.') ADVANCE(2); + if (lookahead == '/') ADVANCE(4); + if (lookahead == '0') ADVANCE(247); + if (lookahead == ':') ADVANCE(189); + if (lookahead == '<') ADVANCE(8); if (lookahead == '=') ADVANCE(180); - if (lookahead == '>') ADVANCE(215); - if (lookahead == '[') ADVANCE(184); - if (lookahead == ']') ADVANCE(185); - if (lookahead == '_') ADVANCE(290); - if (lookahead == 'a') ADVANCE(398); - if (lookahead == 'c') ADVANCE(298); - if (lookahead == 'f') ADVANCE(355); - if (lookahead == 'l') ADVANCE(325); - if (lookahead == 't') ADVANCE(367); - if (lookahead == '{') ADVANCE(162); - if (lookahead == '|') ADVANCE(13); - if (lookahead == '}') ADVANCE(163); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(247); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(425); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(426); + if (lookahead == '[') ADVANCE(185); + if (lookahead == '_') ADVANCE(289); + if (lookahead == 'a') ADVANCE(399); + if (lookahead == 'c') ADVANCE(299); + if (lookahead == 'f') ADVANCE(356); + if (lookahead == 'l') ADVANCE(326); + if (lookahead == 't') ADVANCE(369); + if (lookahead == '{') ADVANCE(163); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(248); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(426); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(427); END_STATE(); case 134: if (lookahead == '\t' || @@ -2719,116 +2704,111 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == ';') SKIP(134) if (lookahead == '\r') SKIP(134) - if (lookahead == '!') ADVANCE(235); - if (lookahead == '"') ADVANCE(241); - if (lookahead == '#') ADVANCE(181); - if (lookahead == ')') ADVANCE(183); - if (lookahead == '-') ADVANCE(194); - if (lookahead == '.') ADVANCE(2); - if (lookahead == '/') ADVANCE(4); - if (lookahead == '0') ADVANCE(246); - if (lookahead == '<') ADVANCE(8); - if (lookahead == '>') ADVANCE(12); - if (lookahead == '[') ADVANCE(184); - if (lookahead == ']') ADVANCE(185); - if (lookahead == '_') ADVANCE(290); - if (lookahead == 'a') ADVANCE(398); - if (lookahead == 'c') ADVANCE(298); - if (lookahead == 'f') ADVANCE(355); - if (lookahead == 'l') ADVANCE(325); + if (lookahead == '!') ADVANCE(237); + if (lookahead == '"') ADVANCE(242); + if (lookahead == '#') ADVANCE(182); + if (lookahead == '%') ADVANCE(227); + if (lookahead == '&') ADVANCE(1); + if (lookahead == '(') ADVANCE(183); + if (lookahead == ')') ADVANCE(184); + if (lookahead == '*') ADVANCE(224); + if (lookahead == '+') ADVANCE(221); + if (lookahead == ',') ADVANCE(177); + if (lookahead == '-') ADVANCE(193); + if (lookahead == '.') ADVANCE(172); + if (lookahead == '/') ADVANCE(175); + if (lookahead == '0') ADVANCE(247); + if (lookahead == ':') ADVANCE(189); + if (lookahead == '<') ADVANCE(210); + if (lookahead == '=') ADVANCE(181); + if (lookahead == '>') ADVANCE(216); + if (lookahead == '[') ADVANCE(185); + if (lookahead == ']') ADVANCE(186); + if (lookahead == '_') ADVANCE(291); + if (lookahead == 'a') ADVANCE(399); + if (lookahead == 'c') ADVANCE(299); + if (lookahead == 'f') ADVANCE(356); + if (lookahead == 'l') ADVANCE(326); if (lookahead == 't') ADVANCE(368); - if (lookahead == '{') ADVANCE(162); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(247); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(425); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(426); + if (lookahead == '{') ADVANCE(163); + if (lookahead == '|') ADVANCE(13); + if (lookahead == '}') ADVANCE(164); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(248); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(426); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(427); END_STATE(); case 135: if (lookahead == '\t' || lookahead == '\n' || lookahead == ' ' || - lookahead == ';') SKIP(136) - if (lookahead == '\r') SKIP(136) - if (lookahead == '!') ADVANCE(9); + lookahead == ';') SKIP(135) + if (lookahead == '\r') SKIP(135) + if (lookahead == '!') ADVANCE(236); if (lookahead == '"') ADVANCE(242); - if (lookahead == '%') ADVANCE(226); - if (lookahead == '&') ADVANCE(1); - if (lookahead == '(') ADVANCE(182); - if (lookahead == ')') ADVANCE(183); - if (lookahead == '*') ADVANCE(223); - if (lookahead == '+') ADVANCE(220); - if (lookahead == ',') ADVANCE(176); - if (lookahead == '-') ADVANCE(190); - if (lookahead == '.') ADVANCE(171); - if (lookahead == '/') ADVANCE(174); - if (lookahead == '0') ADVANCE(248); - if (lookahead == ':') ADVANCE(188); - if (lookahead == '<') ADVANCE(210); - if (lookahead == '=') ADVANCE(180); - if (lookahead == '>') ADVANCE(215); - if (lookahead == '\\') ADVANCE(148); - if (lookahead == ']') ADVANCE(185); - if (lookahead == 'a') ADVANCE(103); - if (lookahead == 'b') ADVANCE(53); - if (lookahead == 'c') ADVANCE(80); - if (lookahead == 'e') ADVANCE(97); - if (lookahead == 'f') ADVANCE(65); - if (lookahead == 'i') ADVANCE(68); - if (lookahead == 'j') ADVANCE(15); - if (lookahead == 'l') ADVANCE(57); - if (lookahead == 'n') ADVANCE(21); - if (lookahead == 'o') ADVANCE(90); - if (lookahead == 'p') ADVANCE(123); - if (lookahead == 's') ADVANCE(54); - if (lookahead == 't') ADVANCE(129); - if (lookahead == 'u') ADVANCE(70); - if (lookahead == '{') ADVANCE(162); - if (lookahead == '|') ADVANCE(13); - if (lookahead == '}') ADVANCE(163); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(249); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(426); + if (lookahead == '#') ADVANCE(182); + if (lookahead == ')') ADVANCE(184); + if (lookahead == '-') ADVANCE(195); + if (lookahead == '.') ADVANCE(2); + if (lookahead == '/') ADVANCE(4); + if (lookahead == '0') ADVANCE(247); + if (lookahead == '<') ADVANCE(8); + if (lookahead == '>') ADVANCE(12); + if (lookahead == '[') ADVANCE(185); + if (lookahead == ']') ADVANCE(186); + if (lookahead == '_') ADVANCE(291); + if (lookahead == 'a') ADVANCE(399); + if (lookahead == 'c') ADVANCE(299); + if (lookahead == 'f') ADVANCE(356); + if (lookahead == 'l') ADVANCE(326); + if (lookahead == 't') ADVANCE(369); + if (lookahead == '{') ADVANCE(163); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(248); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(426); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(427); END_STATE(); case 136: if (lookahead == '\t' || lookahead == '\n' || lookahead == ' ' || - lookahead == ';') SKIP(136) - if (lookahead == '\r') SKIP(136) + lookahead == ';') SKIP(137) + if (lookahead == '\r') SKIP(137) if (lookahead == '!') ADVANCE(9); - if (lookahead == '%') ADVANCE(226); + if (lookahead == '"') ADVANCE(243); + if (lookahead == '%') ADVANCE(227); if (lookahead == '&') ADVANCE(1); - if (lookahead == '(') ADVANCE(182); - if (lookahead == ')') ADVANCE(183); - if (lookahead == '*') ADVANCE(223); - if (lookahead == '+') ADVANCE(220); - if (lookahead == ',') ADVANCE(176); - if (lookahead == '-') ADVANCE(190); - if (lookahead == '.') ADVANCE(171); - if (lookahead == '/') ADVANCE(174); - if (lookahead == '0') ADVANCE(248); - if (lookahead == ':') ADVANCE(188); - if (lookahead == '<') ADVANCE(210); - if (lookahead == '=') ADVANCE(180); - if (lookahead == '>') ADVANCE(215); - if (lookahead == ']') ADVANCE(185); - if (lookahead == 'a') ADVANCE(103); + if (lookahead == '(') ADVANCE(183); + if (lookahead == ')') ADVANCE(184); + if (lookahead == '*') ADVANCE(224); + if (lookahead == '+') ADVANCE(221); + if (lookahead == ',') ADVANCE(177); + if (lookahead == '-') ADVANCE(191); + if (lookahead == '.') ADVANCE(172); + if (lookahead == '/') ADVANCE(175); + if (lookahead == '0') ADVANCE(249); + if (lookahead == ':') ADVANCE(189); + if (lookahead == '<') ADVANCE(211); + if (lookahead == '=') ADVANCE(181); + if (lookahead == '>') ADVANCE(216); + if (lookahead == '\\') ADVANCE(149); + if (lookahead == ']') ADVANCE(186); + if (lookahead == 'a') ADVANCE(104); if (lookahead == 'b') ADVANCE(53); - if (lookahead == 'c') ADVANCE(80); - if (lookahead == 'e') ADVANCE(97); + if (lookahead == 'c') ADVANCE(81); + if (lookahead == 'e') ADVANCE(98); if (lookahead == 'f') ADVANCE(65); - if (lookahead == 'i') ADVANCE(68); + if (lookahead == 'i') ADVANCE(69); if (lookahead == 'j') ADVANCE(15); if (lookahead == 'l') ADVANCE(57); if (lookahead == 'n') ADVANCE(21); - if (lookahead == 'o') ADVANCE(90); - if (lookahead == 'p') ADVANCE(123); + if (lookahead == 'o') ADVANCE(91); + if (lookahead == 'p') ADVANCE(124); if (lookahead == 's') ADVANCE(54); - if (lookahead == 't') ADVANCE(129); - if (lookahead == 'u') ADVANCE(70); - if (lookahead == '{') ADVANCE(162); + if (lookahead == 't') ADVANCE(130); + if (lookahead == 'u') ADVANCE(71); + if (lookahead == '{') ADVANCE(163); if (lookahead == '|') ADVANCE(13); - if (lookahead == '}') ADVANCE(163); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(249); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(426); + if (lookahead == '}') ADVANCE(164); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(250); END_STATE(); case 137: if (lookahead == '\t' || @@ -2837,29 +2817,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ';') SKIP(137) if (lookahead == '\r') SKIP(137) if (lookahead == '!') ADVANCE(9); - if (lookahead == '"') ADVANCE(241); - if (lookahead == '#') ADVANCE(181); - if (lookahead == '%') ADVANCE(226); + if (lookahead == '%') ADVANCE(227); if (lookahead == '&') ADVANCE(1); - if (lookahead == '(') ADVANCE(182); - if (lookahead == ')') ADVANCE(183); - if (lookahead == '*') ADVANCE(223); - if (lookahead == '+') ADVANCE(220); - if (lookahead == '-') ADVANCE(192); - if (lookahead == '.') ADVANCE(171); - if (lookahead == '/') ADVANCE(174); - if (lookahead == '0') ADVANCE(246); - if (lookahead == '<') ADVANCE(209); - if (lookahead == '=') ADVANCE(10); - if (lookahead == '>') ADVANCE(215); - if (lookahead == '[') ADVANCE(184); - if (lookahead == ']') ADVANCE(185); - if (lookahead == '_') ADVANCE(288); + if (lookahead == '(') ADVANCE(183); + if (lookahead == ')') ADVANCE(184); + if (lookahead == '*') ADVANCE(224); + if (lookahead == '+') ADVANCE(221); + if (lookahead == ',') ADVANCE(177); + if (lookahead == '-') ADVANCE(191); + if (lookahead == '.') ADVANCE(172); + if (lookahead == '/') ADVANCE(175); + if (lookahead == '0') ADVANCE(249); + if (lookahead == ':') ADVANCE(189); + if (lookahead == '<') ADVANCE(211); + if (lookahead == '=') ADVANCE(181); + if (lookahead == '>') ADVANCE(216); + if (lookahead == ']') ADVANCE(186); + if (lookahead == 'a') ADVANCE(104); + if (lookahead == 'b') ADVANCE(53); + if (lookahead == 'c') ADVANCE(81); + if (lookahead == 'e') ADVANCE(98); + if (lookahead == 'f') ADVANCE(65); + if (lookahead == 'i') ADVANCE(69); + if (lookahead == 'j') ADVANCE(15); + if (lookahead == 'l') ADVANCE(57); + if (lookahead == 'n') ADVANCE(21); + if (lookahead == 'o') ADVANCE(91); + if (lookahead == 'p') ADVANCE(124); + if (lookahead == 's') ADVANCE(54); + if (lookahead == 't') ADVANCE(130); + if (lookahead == 'u') ADVANCE(71); + if (lookahead == '{') ADVANCE(163); if (lookahead == '|') ADVANCE(13); - if (lookahead == '}') ADVANCE(163); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(247); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(426); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + if (lookahead == '}') ADVANCE(164); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(250); END_STATE(); case 138: if (lookahead == '\t' || @@ -2868,25 +2859,32 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ';') SKIP(138) if (lookahead == '\r') SKIP(138) if (lookahead == '!') ADVANCE(9); - if (lookahead == '%') ADVANCE(226); + if (lookahead == '%') ADVANCE(227); if (lookahead == '&') ADVANCE(1); - if (lookahead == '(') ADVANCE(182); - if (lookahead == ')') ADVANCE(183); - if (lookahead == '*') ADVANCE(223); - if (lookahead == '+') ADVANCE(220); - if (lookahead == ',') ADVANCE(176); - if (lookahead == '-') ADVANCE(190); - if (lookahead == '.') ADVANCE(171); - if (lookahead == '/') ADVANCE(174); - if (lookahead == ':') ADVANCE(188); - if (lookahead == '<') ADVANCE(210); + if (lookahead == '(') ADVANCE(183); + if (lookahead == ')') ADVANCE(184); + if (lookahead == '*') ADVANCE(224); + if (lookahead == '+') ADVANCE(221); + if (lookahead == ',') ADVANCE(177); + if (lookahead == '-') ADVANCE(191); + if (lookahead == '.') ADVANCE(172); + if (lookahead == '/') ADVANCE(175); + if (lookahead == ':') ADVANCE(189); + if (lookahead == '<') ADVANCE(211); if (lookahead == '=') ADVANCE(10); - if (lookahead == '>') ADVANCE(215); - if (lookahead == ']') ADVANCE(185); - if (lookahead == 'a') ADVANCE(103); - if (lookahead == '{') ADVANCE(162); + if (lookahead == '>') ADVANCE(216); + if (lookahead == ']') ADVANCE(186); + if (lookahead == 'a') ADVANCE(104); + if (lookahead == 'c') ADVANCE(81); + if (lookahead == 'e') ADVANCE(128); + if (lookahead == 'f') ADVANCE(70); + if (lookahead == 'i') ADVANCE(68); + if (lookahead == 'o') ADVANCE(91); + if (lookahead == 'p') ADVANCE(124); + if (lookahead == 't') ADVANCE(130); + if (lookahead == '{') ADVANCE(163); if (lookahead == '|') ADVANCE(13); - if (lookahead == '}') ADVANCE(163); + if (lookahead == '}') ADVANCE(164); END_STATE(); case 139: if (lookahead == '\t' || @@ -2895,27 +2893,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ';') SKIP(139) if (lookahead == '\r') SKIP(139) if (lookahead == '!') ADVANCE(9); + if (lookahead == '"') ADVANCE(242); + if (lookahead == '#') ADVANCE(182); + if (lookahead == '%') ADVANCE(227); if (lookahead == '&') ADVANCE(1); - if (lookahead == '(') ADVANCE(182); - if (lookahead == ')') ADVANCE(183); - if (lookahead == ',') ADVANCE(176); - if (lookahead == '-') ADVANCE(11); - if (lookahead == '.') ADVANCE(170); - if (lookahead == '/') ADVANCE(4); - if (lookahead == ':') ADVANCE(188); + if (lookahead == '(') ADVANCE(183); + if (lookahead == ')') ADVANCE(184); + if (lookahead == '*') ADVANCE(224); + if (lookahead == '+') ADVANCE(221); + if (lookahead == '-') ADVANCE(193); + if (lookahead == '.') ADVANCE(172); + if (lookahead == '/') ADVANCE(175); + if (lookahead == '0') ADVANCE(247); if (lookahead == '<') ADVANCE(210); if (lookahead == '=') ADVANCE(10); - if (lookahead == '>') ADVANCE(215); - if (lookahead == ']') ADVANCE(185); - if (lookahead == 'c') ADVANCE(80); - if (lookahead == 'e') ADVANCE(127); - if (lookahead == 'f') ADVANCE(69); - if (lookahead == 'i') ADVANCE(47); - if (lookahead == 'o') ADVANCE(90); - if (lookahead == 'p') ADVANCE(123); - if (lookahead == 't') ADVANCE(129); - if (lookahead == '|') ADVANCE(130); - if (lookahead == '}') ADVANCE(163); + if (lookahead == '>') ADVANCE(216); + if (lookahead == '[') ADVANCE(185); + if (lookahead == ']') ADVANCE(186); + if (lookahead == '_') ADVANCE(289); + if (lookahead == '|') ADVANCE(13); + if (lookahead == '}') ADVANCE(164); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(248); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(427); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 140: if (lookahead == '\t' || @@ -2923,21 +2923,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == ';') SKIP(140) if (lookahead == '\r') SKIP(140) - if (lookahead == '"') ADVANCE(241); - if (lookahead == '#') ADVANCE(181); - if (lookahead == ')') ADVANCE(183); - if (lookahead == '-') ADVANCE(194); + if (lookahead == '"') ADVANCE(242); + if (lookahead == '#') ADVANCE(182); + if (lookahead == ')') ADVANCE(184); + if (lookahead == '-') ADVANCE(195); if (lookahead == '/') ADVANCE(4); - if (lookahead == '0') ADVANCE(246); + if (lookahead == '0') ADVANCE(247); if (lookahead == '<') ADVANCE(8); if (lookahead == '>') ADVANCE(12); - if (lookahead == '[') ADVANCE(184); - if (lookahead == ']') ADVANCE(185); - if (lookahead == '_') ADVANCE(290); - if (lookahead == '{') ADVANCE(162); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(247); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(426); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + if (lookahead == '[') ADVANCE(185); + if (lookahead == ']') ADVANCE(186); + if (lookahead == '_') ADVANCE(291); + if (lookahead == '{') ADVANCE(163); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(248); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(427); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 141: if (lookahead == '\t' || @@ -2945,19 +2945,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == ';') SKIP(141) if (lookahead == '\r') SKIP(141) - if (lookahead == '"') ADVANCE(241); - if (lookahead == '#') ADVANCE(181); - if (lookahead == '-') ADVANCE(193); + if (lookahead == '!') ADVANCE(9); + if (lookahead == '&') ADVANCE(1); + if (lookahead == '(') ADVANCE(183); + if (lookahead == ')') ADVANCE(184); + if (lookahead == ',') ADVANCE(177); + if (lookahead == '-') ADVANCE(11); + if (lookahead == '.') ADVANCE(171); if (lookahead == '/') ADVANCE(4); - if (lookahead == '0') ADVANCE(246); - if (lookahead == '<') ADVANCE(8); - if (lookahead == '[') ADVANCE(184); - if (lookahead == '_') ADVANCE(288); - if (lookahead == 'i') ADVANCE(334); - if (lookahead == '|') ADVANCE(230); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(247); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(426); + if (lookahead == ':') ADVANCE(189); + if (lookahead == '<') ADVANCE(211); + if (lookahead == '=') ADVANCE(10); + if (lookahead == '>') ADVANCE(216); + if (lookahead == ']') ADVANCE(186); + if (lookahead == 'c') ADVANCE(81); + if (lookahead == 'e') ADVANCE(128); + if (lookahead == 'f') ADVANCE(70); + if (lookahead == 'i') ADVANCE(47); + if (lookahead == 'o') ADVANCE(91); + if (lookahead == 'p') ADVANCE(124); + if (lookahead == 't') ADVANCE(130); + if (lookahead == '|') ADVANCE(131); + if (lookahead == '}') ADVANCE(164); END_STATE(); case 142: if (lookahead == '\t' || @@ -2965,19 +2974,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == ';') SKIP(142) if (lookahead == '\r') SKIP(142) - if (lookahead == '!') ADVANCE(9); - if (lookahead == '&') ADVANCE(1); - if (lookahead == '(') ADVANCE(182); - if (lookahead == ',') ADVANCE(176); - if (lookahead == '-') ADVANCE(11); - if (lookahead == '.') ADVANCE(170); + if (lookahead == '"') ADVANCE(242); + if (lookahead == '#') ADVANCE(182); + if (lookahead == '-') ADVANCE(194); if (lookahead == '/') ADVANCE(4); - if (lookahead == '<') ADVANCE(210); - if (lookahead == '=') ADVANCE(10); - if (lookahead == '>') ADVANCE(214); - if (lookahead == 'a') ADVANCE(103); - if (lookahead == 'i') ADVANCE(46); - if (lookahead == '|') ADVANCE(232); + if (lookahead == '0') ADVANCE(247); + if (lookahead == '<') ADVANCE(8); + if (lookahead == '[') ADVANCE(185); + if (lookahead == '_') ADVANCE(289); + if (lookahead == 'i') ADVANCE(335); + if (lookahead == '|') ADVANCE(231); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(248); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(427); END_STATE(); case 143: if (lookahead == '\t' || @@ -2985,13 +2994,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == ';') SKIP(143) if (lookahead == '\r') SKIP(143) - if (lookahead == '#') ADVANCE(181); - if (lookahead == ')') ADVANCE(183); + if (lookahead == '!') ADVANCE(9); + if (lookahead == '&') ADVANCE(1); + if (lookahead == '(') ADVANCE(183); + if (lookahead == ',') ADVANCE(177); + if (lookahead == '-') ADVANCE(11); + if (lookahead == '.') ADVANCE(171); if (lookahead == '/') ADVANCE(4); - if (lookahead == '_') ADVANCE(289); - if (lookahead == 'f') ADVANCE(355); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(426); + if (lookahead == '<') ADVANCE(211); + if (lookahead == '=') ADVANCE(10); + if (lookahead == '>') ADVANCE(215); + if (lookahead == 'a') ADVANCE(104); + if (lookahead == 'i') ADVANCE(46); + if (lookahead == '|') ADVANCE(233); END_STATE(); case 144: if (lookahead == '\t' || @@ -2999,27 +3014,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == ';') SKIP(144) if (lookahead == '\r') SKIP(144) - if (lookahead == '(') ADVANCE(182); - if (lookahead == ')') ADVANCE(183); - if (lookahead == ',') ADVANCE(176); - if (lookahead == '-') ADVANCE(11); - if (lookahead == '.') ADVANCE(171); + if (lookahead == '#') ADVANCE(182); + if (lookahead == ')') ADVANCE(184); if (lookahead == '/') ADVANCE(4); - if (lookahead == ':') ADVANCE(188); - if (lookahead == '=') ADVANCE(179); - if (lookahead == '>') ADVANCE(12); - if (lookahead == ']') ADVANCE(185); - if (lookahead == 'a') ADVANCE(103); - if (lookahead == 'c') ADVANCE(80); - if (lookahead == 'e') ADVANCE(127); - if (lookahead == 'f') ADVANCE(69); - if (lookahead == 'i') ADVANCE(47); - if (lookahead == 'o') ADVANCE(90); - if (lookahead == 'p') ADVANCE(123); - if (lookahead == 't') ADVANCE(129); - if (lookahead == '{') ADVANCE(162); - if (lookahead == '|') ADVANCE(230); - if (lookahead == '}') ADVANCE(163); + if (lookahead == '_') ADVANCE(290); + if (lookahead == 'f') ADVANCE(356); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(427); END_STATE(); case 145: if (lookahead == '\t' || @@ -3027,15 +3028,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == ';') SKIP(145) if (lookahead == '\r') SKIP(145) - if (lookahead == '#') ADVANCE(181); - if (lookahead == ')') ADVANCE(183); - if (lookahead == ',') ADVANCE(176); + if (lookahead == '(') ADVANCE(183); + if (lookahead == ')') ADVANCE(184); + if (lookahead == ',') ADVANCE(177); + if (lookahead == '-') ADVANCE(11); + if (lookahead == '.') ADVANCE(172); if (lookahead == '/') ADVANCE(4); - if (lookahead == ':') ADVANCE(188); - if (lookahead == ']') ADVANCE(185); - if (lookahead == '_') ADVANCE(289); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(426); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + if (lookahead == ':') ADVANCE(189); + if (lookahead == '=') ADVANCE(180); + if (lookahead == '>') ADVANCE(12); + if (lookahead == ']') ADVANCE(186); + if (lookahead == 'a') ADVANCE(104); + if (lookahead == 'c') ADVANCE(81); + if (lookahead == 'e') ADVANCE(128); + if (lookahead == 'f') ADVANCE(70); + if (lookahead == 'i') ADVANCE(47); + if (lookahead == 'o') ADVANCE(91); + if (lookahead == 'p') ADVANCE(124); + if (lookahead == 't') ADVANCE(130); + if (lookahead == '{') ADVANCE(163); + if (lookahead == '|') ADVANCE(231); + if (lookahead == '}') ADVANCE(164); END_STATE(); case 146: if (lookahead == '\t' || @@ -3043,16 +3056,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == ';') SKIP(146) if (lookahead == '\r') SKIP(146) - if (lookahead == '(') ADVANCE(182); - if (lookahead == ')') ADVANCE(183); - if (lookahead == '-') ADVANCE(189); + if (lookahead == ')') ADVANCE(184); + if (lookahead == ',') ADVANCE(177); if (lookahead == '/') ADVANCE(4); - if (lookahead == '0') ADVANCE(248); - if (lookahead == '}') ADVANCE(163); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(249); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(426); - if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + if (lookahead == ':') ADVANCE(189); + if (lookahead == ']') ADVANCE(186); + if (lookahead == '_') ADVANCE(290); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 147: if (lookahead == '\t' || @@ -3060,1756 +3070,1773 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == ';') SKIP(147) if (lookahead == '\r') SKIP(147) - if (lookahead == '!') ADVANCE(236); - if (lookahead == '"') ADVANCE(241); - if (lookahead == '#') ADVANCE(181); - if (lookahead == '%') ADVANCE(226); + if (lookahead == '(') ADVANCE(183); + if (lookahead == ')') ADVANCE(184); + if (lookahead == '-') ADVANCE(190); + if (lookahead == '/') ADVANCE(4); + if (lookahead == '0') ADVANCE(249); + if (lookahead == '}') ADVANCE(164); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(250); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(427); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); + END_STATE(); + case 148: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ' || + lookahead == ';') SKIP(148) + if (lookahead == '\r') SKIP(148) + if (lookahead == '!') ADVANCE(237); + if (lookahead == '"') ADVANCE(242); + if (lookahead == '#') ADVANCE(182); + if (lookahead == '%') ADVANCE(227); if (lookahead == '&') ADVANCE(1); - if (lookahead == '(') ADVANCE(182); - if (lookahead == ')') ADVANCE(183); - if (lookahead == '*') ADVANCE(223); - if (lookahead == '+') ADVANCE(220); - if (lookahead == ',') ADVANCE(176); - if (lookahead == '-') ADVANCE(192); - if (lookahead == '.') ADVANCE(170); - if (lookahead == '/') ADVANCE(174); - if (lookahead == '0') ADVANCE(246); - if (lookahead == ':') ADVANCE(188); - if (lookahead == '<') ADVANCE(209); + if (lookahead == '(') ADVANCE(183); + if (lookahead == ')') ADVANCE(184); + if (lookahead == '*') ADVANCE(224); + if (lookahead == '+') ADVANCE(221); + if (lookahead == ',') ADVANCE(177); + if (lookahead == '-') ADVANCE(193); + if (lookahead == '.') ADVANCE(171); + if (lookahead == '/') ADVANCE(175); + if (lookahead == '0') ADVANCE(247); + if (lookahead == ':') ADVANCE(189); + if (lookahead == '<') ADVANCE(210); if (lookahead == '=') ADVANCE(10); - if (lookahead == '>') ADVANCE(215); - if (lookahead == '[') ADVANCE(184); - if (lookahead == ']') ADVANCE(185); - if (lookahead == '_') ADVANCE(290); - if (lookahead == 'a') ADVANCE(398); - if (lookahead == 'c') ADVANCE(298); - if (lookahead == 'f') ADVANCE(355); - if (lookahead == 'l') ADVANCE(325); - if (lookahead == 't') ADVANCE(367); - if (lookahead == '{') ADVANCE(162); + if (lookahead == '>') ADVANCE(216); + if (lookahead == '[') ADVANCE(185); + if (lookahead == ']') ADVANCE(186); + if (lookahead == '_') ADVANCE(291); + if (lookahead == 'a') ADVANCE(399); + if (lookahead == 'c') ADVANCE(299); + if (lookahead == 'f') ADVANCE(356); + if (lookahead == 'l') ADVANCE(326); + if (lookahead == 't') ADVANCE(368); + if (lookahead == '{') ADVANCE(163); if (lookahead == '|') ADVANCE(13); - if (lookahead == '}') ADVANCE(163); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(247); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(425); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(426); + if (lookahead == '}') ADVANCE(164); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(248); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(426); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(427); END_STATE(); - case 148: + case 149: if (lookahead == '"' || lookahead == '\\' || lookahead == 'e' || lookahead == 'f' || lookahead == 'n' || lookahead == 'r' || - lookahead == 't') ADVANCE(243); + lookahead == 't') ADVANCE(244); END_STATE(); - case 149: + case 150: if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(250); + lookahead == '_') ADVANCE(251); END_STATE(); - case 150: + case 151: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(245); - END_STATE(); - case 151: - if (eof) ADVANCE(154); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ' || - lookahead == ';') SKIP(151) - if (lookahead == '\r') SKIP(151) - if (lookahead == '!') ADVANCE(236); - if (lookahead == '"') ADVANCE(241); - if (lookahead == '#') ADVANCE(181); - if (lookahead == '%') ADVANCE(226); - if (lookahead == '&') ADVANCE(1); - if (lookahead == '(') ADVANCE(182); - if (lookahead == ')') ADVANCE(183); - if (lookahead == '*') ADVANCE(223); - if (lookahead == '+') ADVANCE(220); - if (lookahead == ',') ADVANCE(176); - if (lookahead == '-') ADVANCE(191); - if (lookahead == '.') ADVANCE(171); - if (lookahead == '/') ADVANCE(174); - if (lookahead == '0') ADVANCE(246); - if (lookahead == ':') ADVANCE(188); - if (lookahead == '<') ADVANCE(209); - if (lookahead == '=') ADVANCE(180); - if (lookahead == '>') ADVANCE(215); - if (lookahead == '[') ADVANCE(184); - if (lookahead == ']') ADVANCE(185); - if (lookahead == '_') ADVANCE(288); - if (lookahead == 'a') ADVANCE(393); - if (lookahead == 'b') ADVANCE(341); - if (lookahead == 'c') ADVANCE(297); - if (lookahead == 'e') ADVANCE(386); - if (lookahead == 'f') ADVANCE(351); - if (lookahead == 'i') ADVANCE(332); - if (lookahead == 'j') ADVANCE(295); - if (lookahead == 'l') ADVANCE(324); - if (lookahead == 'n') ADVANCE(303); - if (lookahead == 'o') ADVANCE(379); - if (lookahead == 'p') ADVANCE(418); - if (lookahead == 's') ADVANCE(342); - if (lookahead == 't') ADVANCE(366); - if (lookahead == 'u') ADVANCE(356); - if (lookahead == '{') ADVANCE(162); - if (lookahead == '|') ADVANCE(231); - if (lookahead == '}') ADVANCE(163); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(247); - if (('d' <= lookahead && lookahead <= 'z')) ADVANCE(425); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(426); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(246); END_STATE(); case 152: - if (eof) ADVANCE(154); + if (eof) ADVANCE(155); if (lookahead == '\t' || lookahead == '\n' || lookahead == ' ' || lookahead == ';') SKIP(152) if (lookahead == '\r') SKIP(152) - if (lookahead == '!') ADVANCE(236); - if (lookahead == '"') ADVANCE(241); - if (lookahead == '#') ADVANCE(181); - if (lookahead == '%') ADVANCE(226); + if (lookahead == '!') ADVANCE(237); + if (lookahead == '"') ADVANCE(242); + if (lookahead == '#') ADVANCE(182); + if (lookahead == '%') ADVANCE(227); if (lookahead == '&') ADVANCE(1); - if (lookahead == '(') ADVANCE(182); - if (lookahead == '*') ADVANCE(223); - if (lookahead == '+') ADVANCE(220); + if (lookahead == '(') ADVANCE(183); + if (lookahead == ')') ADVANCE(184); + if (lookahead == '*') ADVANCE(224); + if (lookahead == '+') ADVANCE(221); + if (lookahead == ',') ADVANCE(177); if (lookahead == '-') ADVANCE(192); - if (lookahead == '.') ADVANCE(170); - if (lookahead == '/') ADVANCE(174); - if (lookahead == '0') ADVANCE(246); - if (lookahead == '<') ADVANCE(209); - if (lookahead == '=') ADVANCE(10); - if (lookahead == '>') ADVANCE(214); - if (lookahead == '[') ADVANCE(184); - if (lookahead == '_') ADVANCE(290); - if (lookahead == 'a') ADVANCE(398); - if (lookahead == 'c') ADVANCE(297); - if (lookahead == 'e') ADVANCE(422); - if (lookahead == 'f') ADVANCE(355); + if (lookahead == '.') ADVANCE(172); + if (lookahead == '/') ADVANCE(175); + if (lookahead == '0') ADVANCE(247); + if (lookahead == ':') ADVANCE(189); + if (lookahead == '<') ADVANCE(210); + if (lookahead == '=') ADVANCE(181); + if (lookahead == '>') ADVANCE(216); + if (lookahead == '[') ADVANCE(185); + if (lookahead == ']') ADVANCE(186); + if (lookahead == '_') ADVANCE(289); + if (lookahead == 'a') ADVANCE(394); + if (lookahead == 'b') ADVANCE(342); + if (lookahead == 'c') ADVANCE(298); + if (lookahead == 'e') ADVANCE(387); + if (lookahead == 'f') ADVANCE(352); if (lookahead == 'i') ADVANCE(333); + if (lookahead == 'j') ADVANCE(296); if (lookahead == 'l') ADVANCE(325); - if (lookahead == 'o') ADVANCE(379); - if (lookahead == 'p') ADVANCE(418); - if (lookahead == 't') ADVANCE(366); - if (lookahead == '{') ADVANCE(162); - if (lookahead == '|') ADVANCE(13); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(247); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(425); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(426); + if (lookahead == 'n') ADVANCE(304); + if (lookahead == 'o') ADVANCE(380); + if (lookahead == 'p') ADVANCE(419); + if (lookahead == 's') ADVANCE(343); + if (lookahead == 't') ADVANCE(367); + if (lookahead == 'u') ADVANCE(357); + if (lookahead == '{') ADVANCE(163); + if (lookahead == '|') ADVANCE(232); + if (lookahead == '}') ADVANCE(164); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(248); + if (('d' <= lookahead && lookahead <= 'z')) ADVANCE(426); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(427); END_STATE(); case 153: - if (eof) ADVANCE(154); + if (eof) ADVANCE(155); if (lookahead == '\t' || lookahead == '\n' || lookahead == ' ' || lookahead == ';') SKIP(153) if (lookahead == '\r') SKIP(153) - if (lookahead == '!') ADVANCE(235); - if (lookahead == '"') ADVANCE(241); - if (lookahead == '#') ADVANCE(181); - if (lookahead == '-') ADVANCE(194); - if (lookahead == '.') ADVANCE(170); + if (lookahead == '!') ADVANCE(237); + if (lookahead == '"') ADVANCE(242); + if (lookahead == '#') ADVANCE(182); + if (lookahead == '%') ADVANCE(227); + if (lookahead == '&') ADVANCE(1); + if (lookahead == '(') ADVANCE(183); + if (lookahead == '*') ADVANCE(224); + if (lookahead == '+') ADVANCE(221); + if (lookahead == '-') ADVANCE(193); + if (lookahead == '.') ADVANCE(171); if (lookahead == '/') ADVANCE(175); - if (lookahead == '0') ADVANCE(246); - if (lookahead == '<') ADVANCE(8); - if (lookahead == '[') ADVANCE(184); - if (lookahead == '_') ADVANCE(290); - if (lookahead == 'a') ADVANCE(393); - if (lookahead == 'c') ADVANCE(297); - if (lookahead == 'e') ADVANCE(422); - if (lookahead == 'f') ADVANCE(355); - if (lookahead == 'i') ADVANCE(333); - if (lookahead == 'l') ADVANCE(325); - if (lookahead == 'o') ADVANCE(379); - if (lookahead == 'p') ADVANCE(418); - if (lookahead == 't') ADVANCE(366); - if (lookahead == '{') ADVANCE(162); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(247); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(425); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(426); + if (lookahead == '0') ADVANCE(247); + if (lookahead == '<') ADVANCE(210); + if (lookahead == '=') ADVANCE(10); + if (lookahead == '>') ADVANCE(215); + if (lookahead == '[') ADVANCE(185); + if (lookahead == '_') ADVANCE(291); + if (lookahead == 'a') ADVANCE(399); + if (lookahead == 'c') ADVANCE(298); + if (lookahead == 'e') ADVANCE(423); + if (lookahead == 'f') ADVANCE(356); + if (lookahead == 'i') ADVANCE(334); + if (lookahead == 'l') ADVANCE(326); + if (lookahead == 'o') ADVANCE(380); + if (lookahead == 'p') ADVANCE(419); + if (lookahead == 't') ADVANCE(367); + if (lookahead == '{') ADVANCE(163); + if (lookahead == '|') ADVANCE(13); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(248); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(426); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(427); END_STATE(); case 154: - ACCEPT_TOKEN(ts_builtin_sym_end); + if (eof) ADVANCE(155); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ' || + lookahead == ';') SKIP(154) + if (lookahead == '\r') SKIP(154) + if (lookahead == '!') ADVANCE(236); + if (lookahead == '"') ADVANCE(242); + if (lookahead == '#') ADVANCE(182); + if (lookahead == '-') ADVANCE(195); + if (lookahead == '.') ADVANCE(171); + if (lookahead == '/') ADVANCE(176); + if (lookahead == '0') ADVANCE(247); + if (lookahead == '<') ADVANCE(8); + if (lookahead == '[') ADVANCE(185); + if (lookahead == '_') ADVANCE(291); + if (lookahead == 'a') ADVANCE(394); + if (lookahead == 'c') ADVANCE(298); + if (lookahead == 'e') ADVANCE(423); + if (lookahead == 'f') ADVANCE(356); + if (lookahead == 'i') ADVANCE(334); + if (lookahead == 'l') ADVANCE(326); + if (lookahead == 'o') ADVANCE(380); + if (lookahead == 'p') ADVANCE(419); + if (lookahead == 't') ADVANCE(367); + if (lookahead == '{') ADVANCE(163); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(248); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(426); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(427); END_STATE(); case 155: - ACCEPT_TOKEN(sym_module_comment); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(155); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 156: - ACCEPT_TOKEN(sym_statement_comment); - if (lookahead == '/') ADVANCE(155); + ACCEPT_TOKEN(sym_module_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(157); + lookahead != '\n') ADVANCE(156); END_STATE(); case 157: ACCEPT_TOKEN(sym_statement_comment); + if (lookahead == '/') ADVANCE(156); if (lookahead != 0 && - lookahead != '\n') ADVANCE(157); + lookahead != '\n') ADVANCE(158); END_STATE(); case 158: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '/') ADVANCE(156); + ACCEPT_TOKEN(sym_statement_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(159); + lookahead != '\n') ADVANCE(158); END_STATE(); case 159: ACCEPT_TOKEN(sym_comment); + if (lookahead == '/') ADVANCE(157); if (lookahead != 0 && - lookahead != '\n') ADVANCE(159); + lookahead != '\n') ADVANCE(160); END_STATE(); case 160: - ACCEPT_TOKEN(anon_sym_if); + ACCEPT_TOKEN(sym_comment); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(160); END_STATE(); case 161: + ACCEPT_TOKEN(anon_sym_if); + END_STATE(); + case 162: ACCEPT_TOKEN(anon_sym_if); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); - case 162: + case 163: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 163: + case 164: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 164: + case 165: ACCEPT_TOKEN(anon_sym_erlang); END_STATE(); - case 165: + case 166: ACCEPT_TOKEN(anon_sym_erlang); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); - case 166: + case 167: ACCEPT_TOKEN(anon_sym_javascript); END_STATE(); - case 167: + case 168: ACCEPT_TOKEN(anon_sym_javascript); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); - case 168: + case 169: ACCEPT_TOKEN(anon_sym_import); END_STATE(); - case 169: + case 170: ACCEPT_TOKEN(anon_sym_import); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); - END_STATE(); - case 170: - ACCEPT_TOKEN(anon_sym_DOT); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 171: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(228); END_STATE(); case 172: - ACCEPT_TOKEN(anon_sym_as); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(229); END_STATE(); case 173: ACCEPT_TOKEN(anon_sym_as); - if (lookahead == 's') ADVANCE(316); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); END_STATE(); case 174: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '.') ADVANCE(225); - if (lookahead == '/') ADVANCE(158); + ACCEPT_TOKEN(anon_sym_as); + if (lookahead == 's') ADVANCE(317); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 175: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(158); + if (lookahead == '.') ADVANCE(226); + if (lookahead == '/') ADVANCE(159); END_STATE(); case 176: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '/') ADVANCE(159); END_STATE(); case 177: - ACCEPT_TOKEN(anon_sym_const); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 178: ACCEPT_TOKEN(anon_sym_const); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); END_STATE(); case 179: - ACCEPT_TOKEN(anon_sym_EQ); + ACCEPT_TOKEN(anon_sym_const); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 180: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(207); END_STATE(); case 181: - ACCEPT_TOKEN(anon_sym_POUND); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(208); END_STATE(); case 182: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(anon_sym_POUND); END_STATE(); case 183: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 184: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 185: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 186: - ACCEPT_TOKEN(anon_sym_LT_LT); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 187: - ACCEPT_TOKEN(anon_sym_GT_GT); + ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); case 188: - ACCEPT_TOKEN(anon_sym_COLON); + ACCEPT_TOKEN(anon_sym_GT_GT); END_STATE(); case 189: - ACCEPT_TOKEN(anon_sym_DASH); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 190: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(222); END_STATE(); case 191: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(222); - if (lookahead == '>') ADVANCE(203); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(3); + if (lookahead == '.') ADVANCE(223); END_STATE(); case 192: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(222); + if (lookahead == '.') ADVANCE(223); + if (lookahead == '>') ADVANCE(200); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_') ADVANCE(3); END_STATE(); case 193: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '>') ADVANCE(203); + if (lookahead == '.') ADVANCE(223); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_') ADVANCE(3); END_STATE(); case 194: ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '>') ADVANCE(200); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_') ADVANCE(3); END_STATE(); case 195: - ACCEPT_TOKEN(anon_sym_size); + ACCEPT_TOKEN(anon_sym_DASH); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_') ADVANCE(3); END_STATE(); case 196: ACCEPT_TOKEN(anon_sym_size); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); END_STATE(); case 197: - ACCEPT_TOKEN(anon_sym_external); - END_STATE(); - case 198: - ACCEPT_TOKEN(anon_sym_external); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); - END_STATE(); - case 199: - ACCEPT_TOKEN(anon_sym_type); - END_STATE(); - case 200: - ACCEPT_TOKEN(anon_sym_type); + ACCEPT_TOKEN(anon_sym_size); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); - case 201: + case 198: ACCEPT_TOKEN(anon_sym_fn); END_STATE(); - case 202: + case 199: ACCEPT_TOKEN(anon_sym_fn); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); - case 203: + case 200: ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); + case 201: + ACCEPT_TOKEN(anon_sym_external); + END_STATE(); + case 202: + ACCEPT_TOKEN(anon_sym_external); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); + END_STATE(); + case 203: + ACCEPT_TOKEN(anon_sym_type); + END_STATE(); case 204: - ACCEPT_TOKEN(anon_sym_try); + ACCEPT_TOKEN(anon_sym_type); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 205: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + ACCEPT_TOKEN(anon_sym_try); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 206: - ACCEPT_TOKEN(anon_sym_AMP_AMP); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); case 207: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); case 208: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); case 209: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '.') ADVANCE(212); - if (lookahead == '<') ADVANCE(186); - if (lookahead == '=') ADVANCE(211); + ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); case 210: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '.') ADVANCE(212); - if (lookahead == '=') ADVANCE(211); + if (lookahead == '.') ADVANCE(213); + if (lookahead == '<') ADVANCE(187); + if (lookahead == '=') ADVANCE(212); END_STATE(); case 211: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(anon_sym_LT); if (lookahead == '.') ADVANCE(213); + if (lookahead == '=') ADVANCE(212); END_STATE(); case 212: - ACCEPT_TOKEN(anon_sym_LT_DOT); + ACCEPT_TOKEN(anon_sym_LT_EQ); + if (lookahead == '.') ADVANCE(214); END_STATE(); case 213: - ACCEPT_TOKEN(anon_sym_LT_EQ_DOT); + ACCEPT_TOKEN(anon_sym_LT_DOT); END_STATE(); case 214: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '.') ADVANCE(217); - if (lookahead == '=') ADVANCE(216); + ACCEPT_TOKEN(anon_sym_LT_EQ_DOT); END_STATE(); case 215: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '.') ADVANCE(217); - if (lookahead == '=') ADVANCE(216); - if (lookahead == '>') ADVANCE(187); + if (lookahead == '.') ADVANCE(218); + if (lookahead == '=') ADVANCE(217); END_STATE(); case 216: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(anon_sym_GT); if (lookahead == '.') ADVANCE(218); + if (lookahead == '=') ADVANCE(217); + if (lookahead == '>') ADVANCE(188); END_STATE(); case 217: - ACCEPT_TOKEN(anon_sym_GT_DOT); + ACCEPT_TOKEN(anon_sym_GT_EQ); + if (lookahead == '.') ADVANCE(219); END_STATE(); case 218: - ACCEPT_TOKEN(anon_sym_GT_EQ_DOT); + ACCEPT_TOKEN(anon_sym_GT_DOT); END_STATE(); case 219: - ACCEPT_TOKEN(anon_sym_PIPE_GT); + ACCEPT_TOKEN(anon_sym_GT_EQ_DOT); END_STATE(); case 220: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '.') ADVANCE(221); + ACCEPT_TOKEN(anon_sym_PIPE_GT); END_STATE(); case 221: - ACCEPT_TOKEN(anon_sym_PLUS_DOT); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '.') ADVANCE(222); END_STATE(); case 222: - ACCEPT_TOKEN(anon_sym_DASH_DOT); + ACCEPT_TOKEN(anon_sym_PLUS_DOT); END_STATE(); case 223: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '.') ADVANCE(224); + ACCEPT_TOKEN(anon_sym_DASH_DOT); END_STATE(); case 224: - ACCEPT_TOKEN(anon_sym_STAR_DOT); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '.') ADVANCE(225); END_STATE(); case 225: - ACCEPT_TOKEN(anon_sym_SLASH_DOT); + ACCEPT_TOKEN(anon_sym_STAR_DOT); END_STATE(); case 226: - ACCEPT_TOKEN(anon_sym_PERCENT); + ACCEPT_TOKEN(anon_sym_SLASH_DOT); END_STATE(); case 227: + ACCEPT_TOKEN(anon_sym_PERCENT); + END_STATE(); + case 228: ACCEPT_TOKEN(anon_sym_todo); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); - case 228: + case 229: ACCEPT_TOKEN(anon_sym_DOT_DOT); END_STATE(); - case 229: + case 230: ACCEPT_TOKEN(anon_sym_case); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); - END_STATE(); - case 230: - ACCEPT_TOKEN(anon_sym_PIPE); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 231: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '>') ADVANCE(219); - if (lookahead == '|') ADVANCE(205); END_STATE(); case 232: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(205); + if (lookahead == '>') ADVANCE(220); + if (lookahead == '|') ADVANCE(206); END_STATE(); case 233: + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '|') ADVANCE(206); + END_STATE(); + case 234: ACCEPT_TOKEN(anon_sym_let); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); - case 234: + case 235: ACCEPT_TOKEN(anon_sym_assert); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); - END_STATE(); - case 235: - ACCEPT_TOKEN(anon_sym_BANG); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 236: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(208); END_STATE(); case 237: - ACCEPT_TOKEN(sym_visibility_modifier); + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(209); END_STATE(); case 238: + ACCEPT_TOKEN(sym_visibility_modifier); + END_STATE(); + case 239: ACCEPT_TOKEN(sym_visibility_modifier); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); - case 239: + case 240: ACCEPT_TOKEN(sym_opacity_modifier); END_STATE(); - case 240: + case 241: ACCEPT_TOKEN(sym_opacity_modifier); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); - case 241: + case 242: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 242: + case 243: ACCEPT_TOKEN(anon_sym_DQUOTE2); END_STATE(); - case 243: + case 244: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 244: + case 245: ACCEPT_TOKEN(sym_float); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(244); + lookahead == '_') ADVANCE(245); END_STATE(); - case 245: + case 246: ACCEPT_TOKEN(sym__hex); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(245); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(246); END_STATE(); - case 246: + case 247: ACCEPT_TOKEN(sym__decimal); - if (lookahead == '.') ADVANCE(244); + if (lookahead == '.') ADVANCE(245); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(131); + lookahead == 'b') ADVANCE(132); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(149); + lookahead == 'o') ADVANCE(150); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(150); + lookahead == 'x') ADVANCE(151); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(247); + lookahead == '_') ADVANCE(248); END_STATE(); - case 247: + case 248: ACCEPT_TOKEN(sym__decimal); - if (lookahead == '.') ADVANCE(244); + if (lookahead == '.') ADVANCE(245); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(247); + lookahead == '_') ADVANCE(248); END_STATE(); - case 248: + case 249: ACCEPT_TOKEN(sym__decimal); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(131); + lookahead == 'b') ADVANCE(132); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(149); + lookahead == 'o') ADVANCE(150); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(150); + lookahead == 'x') ADVANCE(151); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(249); + lookahead == '_') ADVANCE(250); END_STATE(); - case 249: + case 250: ACCEPT_TOKEN(sym__decimal); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(249); + lookahead == '_') ADVANCE(250); END_STATE(); - case 250: + case 251: ACCEPT_TOKEN(sym__octal); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(250); + lookahead == '_') ADVANCE(251); END_STATE(); - case 251: + case 252: ACCEPT_TOKEN(sym__binary); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(251); + lookahead == '_') ADVANCE(252); END_STATE(); - case 252: + case 253: ACCEPT_TOKEN(anon_sym_binary); END_STATE(); - case 253: + case 254: ACCEPT_TOKEN(anon_sym_binary); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); - case 254: + case 255: ACCEPT_TOKEN(anon_sym_bytes); END_STATE(); - case 255: + case 256: ACCEPT_TOKEN(anon_sym_bytes); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); - case 256: + case 257: ACCEPT_TOKEN(anon_sym_int); END_STATE(); - case 257: + case 258: ACCEPT_TOKEN(anon_sym_int); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); - case 258: + case 259: ACCEPT_TOKEN(anon_sym_float); END_STATE(); - case 259: + case 260: ACCEPT_TOKEN(anon_sym_float); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); - case 260: + case 261: ACCEPT_TOKEN(anon_sym_bit_string); END_STATE(); - case 261: + case 262: ACCEPT_TOKEN(anon_sym_bit_string); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); - case 262: + case 263: ACCEPT_TOKEN(anon_sym_bits); END_STATE(); - case 263: + case 264: ACCEPT_TOKEN(anon_sym_bits); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); - case 264: + case 265: ACCEPT_TOKEN(anon_sym_utf8); - if (lookahead == '_') ADVANCE(306); + if (lookahead == '_') ADVANCE(307); if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); - case 265: + case 266: ACCEPT_TOKEN(anon_sym_utf8); if (lookahead == '_') ADVANCE(24); END_STATE(); - case 266: + case 267: ACCEPT_TOKEN(anon_sym_utf16); if (lookahead == '_') ADVANCE(26); END_STATE(); - case 267: + case 268: ACCEPT_TOKEN(anon_sym_utf16); - if (lookahead == '_') ADVANCE(308); + if (lookahead == '_') ADVANCE(309); if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); - case 268: + case 269: ACCEPT_TOKEN(anon_sym_utf32); if (lookahead == '_') ADVANCE(27); END_STATE(); - case 269: + case 270: ACCEPT_TOKEN(anon_sym_utf32); - if (lookahead == '_') ADVANCE(309); + if (lookahead == '_') ADVANCE(310); if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); - case 270: + case 271: ACCEPT_TOKEN(anon_sym_utf8_codepoint); END_STATE(); - case 271: + case 272: ACCEPT_TOKEN(anon_sym_utf8_codepoint); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); - case 272: + case 273: ACCEPT_TOKEN(anon_sym_utf16_codepoint); END_STATE(); - case 273: + case 274: ACCEPT_TOKEN(anon_sym_utf16_codepoint); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); - case 274: + case 275: ACCEPT_TOKEN(anon_sym_utf32_codepoint); END_STATE(); - case 275: + case 276: ACCEPT_TOKEN(anon_sym_utf32_codepoint); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); - case 276: + case 277: ACCEPT_TOKEN(anon_sym_signed); END_STATE(); - case 277: + case 278: ACCEPT_TOKEN(anon_sym_signed); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); - case 278: + case 279: ACCEPT_TOKEN(anon_sym_unsigned); END_STATE(); - case 279: + case 280: ACCEPT_TOKEN(anon_sym_unsigned); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); - case 280: + case 281: ACCEPT_TOKEN(anon_sym_big); END_STATE(); - case 281: + case 282: ACCEPT_TOKEN(anon_sym_big); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); - case 282: + case 283: ACCEPT_TOKEN(anon_sym_little); END_STATE(); - case 283: + case 284: ACCEPT_TOKEN(anon_sym_little); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); - case 284: + case 285: ACCEPT_TOKEN(anon_sym_native); END_STATE(); - case 285: + case 286: ACCEPT_TOKEN(anon_sym_native); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); - END_STATE(); - case 286: - ACCEPT_TOKEN(anon_sym_unit); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 287: ACCEPT_TOKEN(anon_sym_unit); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); END_STATE(); case 288: - ACCEPT_TOKEN(sym__discard_name); - if (lookahead == '.') ADVANCE(244); + ACCEPT_TOKEN(anon_sym_unit); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(288); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(289); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 289: ACCEPT_TOKEN(sym__discard_name); + if (lookahead == '.') ADVANCE(245); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(289); + lookahead == '_') ADVANCE(289); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(290); END_STATE(); case 290: - ACCEPT_TOKEN(sym__name); - if (lookahead == '.') ADVANCE(244); + ACCEPT_TOKEN(sym__discard_name); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(290); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(290); END_STATE(); case 291: ACCEPT_TOKEN(sym__name); - if (lookahead == '1') ADVANCE(293); - if (lookahead == '3') ADVANCE(292); - if (lookahead == '8') ADVANCE(264); + if (lookahead == '.') ADVANCE(245); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + lookahead == '_') ADVANCE(291); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 292: ACCEPT_TOKEN(sym__name); - if (lookahead == '2') ADVANCE(269); + if (lookahead == '1') ADVANCE(294); + if (lookahead == '3') ADVANCE(293); + if (lookahead == '8') ADVANCE(265); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 293: ACCEPT_TOKEN(sym__name); - if (lookahead == '6') ADVANCE(267); + if (lookahead == '2') ADVANCE(270); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 294: ACCEPT_TOKEN(sym__name); - if (lookahead == '_') ADVANCE(400); - if (lookahead == 's') ADVANCE(263); + if (lookahead == '6') ADVANCE(268); if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 295: ACCEPT_TOKEN(sym__name); - if (lookahead == 'a') ADVANCE(420); + if (lookahead == '_') ADVANCE(401); + if (lookahead == 's') ADVANCE(264); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 296: ACCEPT_TOKEN(sym__name); - if (lookahead == 'a') ADVANCE(385); + if (lookahead == 'a') ADVANCE(421); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 297: ACCEPT_TOKEN(sym__name); - if (lookahead == 'a') ADVANCE(397); - if (lookahead == 'o') ADVANCE(358); + if (lookahead == 'a') ADVANCE(386); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 298: ACCEPT_TOKEN(sym__name); - if (lookahead == 'a') ADVANCE(397); + if (lookahead == 'a') ADVANCE(398); + if (lookahead == 'o') ADVANCE(359); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 299: ACCEPT_TOKEN(sym__name); - if (lookahead == 'a') ADVANCE(387); + if (lookahead == 'a') ADVANCE(398); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 300: ACCEPT_TOKEN(sym__name); - if (lookahead == 'a') ADVANCE(357); + if (lookahead == 'a') ADVANCE(388); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 301: ACCEPT_TOKEN(sym__name); - if (lookahead == 'a') ADVANCE(352); + if (lookahead == 'a') ADVANCE(358); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 302: ACCEPT_TOKEN(sym__name); - if (lookahead == 'a') ADVANCE(396); + if (lookahead == 'a') ADVANCE(353); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 303: ACCEPT_TOKEN(sym__name); - if (lookahead == 'a') ADVANCE(412); + if (lookahead == 'a') ADVANCE(397); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 304: ACCEPT_TOKEN(sym__name); - if (lookahead == 'a') ADVANCE(405); + if (lookahead == 'a') ADVANCE(413); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 305: ACCEPT_TOKEN(sym__name); - if (lookahead == 'b') ADVANCE(238); + if (lookahead == 'a') ADVANCE(406); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 306: ACCEPT_TOKEN(sym__name); - if (lookahead == 'c') ADVANCE(370); + if (lookahead == 'b') ADVANCE(239); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 307: ACCEPT_TOKEN(sym__name); - if (lookahead == 'c') ADVANCE(390); + if (lookahead == 'c') ADVANCE(371); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 308: ACCEPT_TOKEN(sym__name); - if (lookahead == 'c') ADVANCE(376); + if (lookahead == 'c') ADVANCE(391); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 309: ACCEPT_TOKEN(sym__name); if (lookahead == 'c') ADVANCE(377); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 310: ACCEPT_TOKEN(sym__name); - if (lookahead == 'd') ADVANCE(277); + if (lookahead == 'c') ADVANCE(378); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 311: ACCEPT_TOKEN(sym__name); - if (lookahead == 'd') ADVANCE(279); + if (lookahead == 'd') ADVANCE(278); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 312: ACCEPT_TOKEN(sym__name); - if (lookahead == 'd') ADVANCE(369); + if (lookahead == 'd') ADVANCE(280); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 313: ACCEPT_TOKEN(sym__name); - if (lookahead == 'd') ADVANCE(329); + if (lookahead == 'd') ADVANCE(370); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 314: ACCEPT_TOKEN(sym__name); if (lookahead == 'd') ADVANCE(330); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 315: ACCEPT_TOKEN(sym__name); if (lookahead == 'd') ADVANCE(331); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 316: ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(391); + if (lookahead == 'd') ADVANCE(332); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 317: ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(229); + if (lookahead == 'e') ADVANCE(392); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 318: ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(196); + if (lookahead == 'e') ADVANCE(230); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 319: ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(200); + if (lookahead == 'e') ADVANCE(197); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 320: ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(283); + if (lookahead == 'e') ADVANCE(204); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 321: ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(285); + if (lookahead == 'e') ADVANCE(284); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 322: ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(240); + if (lookahead == 'e') ADVANCE(286); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 323: ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(310); + if (lookahead == 'e') ADVANCE(241); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 324: ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(402); - if (lookahead == 'i') ADVANCE(416); + if (lookahead == 'e') ADVANCE(311); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 325: ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(402); + if (lookahead == 'e') ADVANCE(403); + if (lookahead == 'i') ADVANCE(417); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 326: ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(311); + if (lookahead == 'e') ADVANCE(403); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 327: ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(389); + if (lookahead == 'e') ADVANCE(312); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 328: ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(395); + if (lookahead == 'e') ADVANCE(390); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 329: ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(380); + if (lookahead == 'e') ADVANCE(396); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 330: ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(383); + if (lookahead == 'e') ADVANCE(381); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 331: ACCEPT_TOKEN(sym__name); if (lookahead == 'e') ADVANCE(384); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 332: ACCEPT_TOKEN(sym__name); - if (lookahead == 'f') ADVANCE(161); - if (lookahead == 'm') ADVANCE(378); - if (lookahead == 'n') ADVANCE(401); + if (lookahead == 'e') ADVANCE(385); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 333: ACCEPT_TOKEN(sym__name); - if (lookahead == 'f') ADVANCE(161); - if (lookahead == 'm') ADVANCE(378); + if (lookahead == 'f') ADVANCE(162); + if (lookahead == 'm') ADVANCE(379); + if (lookahead == 'n') ADVANCE(402); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 334: ACCEPT_TOKEN(sym__name); - if (lookahead == 'f') ADVANCE(161); + if (lookahead == 'f') ADVANCE(162); + if (lookahead == 'm') ADVANCE(379); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 335: ACCEPT_TOKEN(sym__name); - if (lookahead == 'f') ADVANCE(291); + if (lookahead == 'f') ADVANCE(162); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 336: ACCEPT_TOKEN(sym__name); - if (lookahead == 'g') ADVANCE(281); - if (lookahead == 'n') ADVANCE(299); - if (lookahead == 't') ADVANCE(294); + if (lookahead == 'f') ADVANCE(292); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 337: ACCEPT_TOKEN(sym__name); - if (lookahead == 'g') ADVANCE(165); + if (lookahead == 'g') ADVANCE(282); + if (lookahead == 'n') ADVANCE(300); + if (lookahead == 't') ADVANCE(295); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 338: ACCEPT_TOKEN(sym__name); - if (lookahead == 'g') ADVANCE(261); + if (lookahead == 'g') ADVANCE(166); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 339: ACCEPT_TOKEN(sym__name); - if (lookahead == 'g') ADVANCE(360); - if (lookahead == 'z') ADVANCE(318); + if (lookahead == 'g') ADVANCE(262); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'y')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 340: ACCEPT_TOKEN(sym__name); - if (lookahead == 'g') ADVANCE(362); + if (lookahead == 'g') ADVANCE(361); + if (lookahead == 'z') ADVANCE(319); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'y')) ADVANCE(426); END_STATE(); case 341: ACCEPT_TOKEN(sym__name); - if (lookahead == 'i') ADVANCE(336); - if (lookahead == 'y') ADVANCE(414); + if (lookahead == 'g') ADVANCE(363); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 342: ACCEPT_TOKEN(sym__name); - if (lookahead == 'i') ADVANCE(339); + if (lookahead == 'i') ADVANCE(337); + if (lookahead == 'y') ADVANCE(415); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 343: ACCEPT_TOKEN(sym__name); if (lookahead == 'i') ADVANCE(340); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 344: ACCEPT_TOKEN(sym__name); - if (lookahead == 'i') ADVANCE(421); + if (lookahead == 'i') ADVANCE(341); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 345: ACCEPT_TOKEN(sym__name); - if (lookahead == 'i') ADVANCE(382); + if (lookahead == 'i') ADVANCE(422); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 346: ACCEPT_TOKEN(sym__name); - if (lookahead == 'i') ADVANCE(359); + if (lookahead == 'i') ADVANCE(383); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 347: ACCEPT_TOKEN(sym__name); - if (lookahead == 'i') ADVANCE(363); + if (lookahead == 'i') ADVANCE(360); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 348: ACCEPT_TOKEN(sym__name); - if (lookahead == 'i') ADVANCE(403); - if (lookahead == 's') ADVANCE(343); + if (lookahead == 'i') ADVANCE(364); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 349: ACCEPT_TOKEN(sym__name); - if (lookahead == 'i') ADVANCE(364); + if (lookahead == 'i') ADVANCE(404); + if (lookahead == 's') ADVANCE(344); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 350: ACCEPT_TOKEN(sym__name); if (lookahead == 'i') ADVANCE(365); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 351: ACCEPT_TOKEN(sym__name); - if (lookahead == 'l') ADVANCE(372); - if (lookahead == 'n') ADVANCE(202); + if (lookahead == 'i') ADVANCE(366); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 352: ACCEPT_TOKEN(sym__name); - if (lookahead == 'l') ADVANCE(198); + if (lookahead == 'l') ADVANCE(373); + if (lookahead == 'n') ADVANCE(199); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 353: ACCEPT_TOKEN(sym__name); - if (lookahead == 'l') ADVANCE(300); + if (lookahead == 'l') ADVANCE(202); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 354: ACCEPT_TOKEN(sym__name); - if (lookahead == 'l') ADVANCE(320); + if (lookahead == 'l') ADVANCE(301); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 355: ACCEPT_TOKEN(sym__name); - if (lookahead == 'n') ADVANCE(202); + if (lookahead == 'l') ADVANCE(321); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 356: ACCEPT_TOKEN(sym__name); - if (lookahead == 'n') ADVANCE(348); - if (lookahead == 't') ADVANCE(335); + if (lookahead == 'n') ADVANCE(199); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 357: ACCEPT_TOKEN(sym__name); - if (lookahead == 'n') ADVANCE(337); + if (lookahead == 'n') ADVANCE(349); + if (lookahead == 't') ADVANCE(336); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 358: ACCEPT_TOKEN(sym__name); - if (lookahead == 'n') ADVANCE(399); + if (lookahead == 'n') ADVANCE(338); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 359: ACCEPT_TOKEN(sym__name); - if (lookahead == 'n') ADVANCE(338); + if (lookahead == 'n') ADVANCE(400); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 360: ACCEPT_TOKEN(sym__name); - if (lookahead == 'n') ADVANCE(323); + if (lookahead == 'n') ADVANCE(339); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 361: ACCEPT_TOKEN(sym__name); - if (lookahead == 'n') ADVANCE(301); + if (lookahead == 'n') ADVANCE(324); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 362: ACCEPT_TOKEN(sym__name); - if (lookahead == 'n') ADVANCE(326); + if (lookahead == 'n') ADVANCE(302); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 363: ACCEPT_TOKEN(sym__name); - if (lookahead == 'n') ADVANCE(409); + if (lookahead == 'n') ADVANCE(327); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 364: ACCEPT_TOKEN(sym__name); if (lookahead == 'n') ADVANCE(410); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 365: ACCEPT_TOKEN(sym__name); if (lookahead == 'n') ADVANCE(411); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 366: ACCEPT_TOKEN(sym__name); - if (lookahead == 'o') ADVANCE(312); - if (lookahead == 'r') ADVANCE(423); - if (lookahead == 'y') ADVANCE(381); + if (lookahead == 'n') ADVANCE(412); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 367: ACCEPT_TOKEN(sym__name); - if (lookahead == 'o') ADVANCE(312); - if (lookahead == 'r') ADVANCE(423); + if (lookahead == 'o') ADVANCE(313); + if (lookahead == 'r') ADVANCE(424); + if (lookahead == 'y') ADVANCE(382); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 368: ACCEPT_TOKEN(sym__name); - if (lookahead == 'o') ADVANCE(312); + if (lookahead == 'o') ADVANCE(313); + if (lookahead == 'r') ADVANCE(424); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 369: ACCEPT_TOKEN(sym__name); - if (lookahead == 'o') ADVANCE(227); + if (lookahead == 'o') ADVANCE(313); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 370: ACCEPT_TOKEN(sym__name); - if (lookahead == 'o') ADVANCE(313); + if (lookahead == 'o') ADVANCE(228); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 371: ACCEPT_TOKEN(sym__name); - if (lookahead == 'o') ADVANCE(392); + if (lookahead == 'o') ADVANCE(314); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 372: ACCEPT_TOKEN(sym__name); - if (lookahead == 'o') ADVANCE(304); + if (lookahead == 'o') ADVANCE(393); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 373: ACCEPT_TOKEN(sym__name); - if (lookahead == 'o') ADVANCE(347); + if (lookahead == 'o') ADVANCE(305); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 374: ACCEPT_TOKEN(sym__name); - if (lookahead == 'o') ADVANCE(349); + if (lookahead == 'o') ADVANCE(348); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 375: ACCEPT_TOKEN(sym__name); if (lookahead == 'o') ADVANCE(350); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 376: ACCEPT_TOKEN(sym__name); - if (lookahead == 'o') ADVANCE(314); + if (lookahead == 'o') ADVANCE(351); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 377: ACCEPT_TOKEN(sym__name); if (lookahead == 'o') ADVANCE(315); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 378: ACCEPT_TOKEN(sym__name); - if (lookahead == 'p') ADVANCE(371); + if (lookahead == 'o') ADVANCE(316); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 379: ACCEPT_TOKEN(sym__name); - if (lookahead == 'p') ADVANCE(296); + if (lookahead == 'p') ADVANCE(372); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 380: ACCEPT_TOKEN(sym__name); - if (lookahead == 'p') ADVANCE(373); + if (lookahead == 'p') ADVANCE(297); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 381: ACCEPT_TOKEN(sym__name); - if (lookahead == 'p') ADVANCE(319); + if (lookahead == 'p') ADVANCE(374); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 382: ACCEPT_TOKEN(sym__name); - if (lookahead == 'p') ADVANCE(408); + if (lookahead == 'p') ADVANCE(320); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 383: ACCEPT_TOKEN(sym__name); - if (lookahead == 'p') ADVANCE(374); + if (lookahead == 'p') ADVANCE(409); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 384: ACCEPT_TOKEN(sym__name); if (lookahead == 'p') ADVANCE(375); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 385: ACCEPT_TOKEN(sym__name); - if (lookahead == 'q') ADVANCE(419); + if (lookahead == 'p') ADVANCE(376); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 386: ACCEPT_TOKEN(sym__name); - if (lookahead == 'r') ADVANCE(353); - if (lookahead == 'x') ADVANCE(417); + if (lookahead == 'q') ADVANCE(420); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 387: ACCEPT_TOKEN(sym__name); - if (lookahead == 'r') ADVANCE(424); + if (lookahead == 'r') ADVANCE(354); + if (lookahead == 'x') ADVANCE(418); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 388: ACCEPT_TOKEN(sym__name); - if (lookahead == 'r') ADVANCE(346); + if (lookahead == 'r') ADVANCE(425); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 389: ACCEPT_TOKEN(sym__name); - if (lookahead == 'r') ADVANCE(361); + if (lookahead == 'r') ADVANCE(347); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 390: ACCEPT_TOKEN(sym__name); - if (lookahead == 'r') ADVANCE(345); + if (lookahead == 'r') ADVANCE(362); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 391: ACCEPT_TOKEN(sym__name); - if (lookahead == 'r') ADVANCE(406); + if (lookahead == 'r') ADVANCE(346); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 392: ACCEPT_TOKEN(sym__name); if (lookahead == 'r') ADVANCE(407); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 393: ACCEPT_TOKEN(sym__name); - if (lookahead == 's') ADVANCE(173); + if (lookahead == 'r') ADVANCE(408); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 394: ACCEPT_TOKEN(sym__name); - if (lookahead == 's') ADVANCE(316); + if (lookahead == 's') ADVANCE(174); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 395: ACCEPT_TOKEN(sym__name); - if (lookahead == 's') ADVANCE(255); + if (lookahead == 's') ADVANCE(317); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 396: ACCEPT_TOKEN(sym__name); - if (lookahead == 's') ADVANCE(307); + if (lookahead == 's') ADVANCE(256); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 397: ACCEPT_TOKEN(sym__name); - if (lookahead == 's') ADVANCE(317); + if (lookahead == 's') ADVANCE(308); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 398: ACCEPT_TOKEN(sym__name); - if (lookahead == 's') ADVANCE(394); + if (lookahead == 's') ADVANCE(318); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 399: ACCEPT_TOKEN(sym__name); - if (lookahead == 's') ADVANCE(404); + if (lookahead == 's') ADVANCE(395); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 400: ACCEPT_TOKEN(sym__name); - if (lookahead == 's') ADVANCE(415); + if (lookahead == 's') ADVANCE(405); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 401: ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(257); + if (lookahead == 's') ADVANCE(416); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 402: ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(233); + if (lookahead == 't') ADVANCE(258); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 403: ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(287); + if (lookahead == 't') ADVANCE(234); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 404: ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(178); + if (lookahead == 't') ADVANCE(288); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 405: ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(259); + if (lookahead == 't') ADVANCE(179); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 406: ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(234); + if (lookahead == 't') ADVANCE(260); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 407: ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(169); + if (lookahead == 't') ADVANCE(235); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 408: ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(167); + if (lookahead == 't') ADVANCE(170); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 409: ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(271); + if (lookahead == 't') ADVANCE(168); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 410: ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(273); + if (lookahead == 't') ADVANCE(272); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 411: ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(275); + if (lookahead == 't') ADVANCE(274); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 412: ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(344); + if (lookahead == 't') ADVANCE(276); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 413: ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(354); + if (lookahead == 't') ADVANCE(345); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 414: ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(328); + if (lookahead == 't') ADVANCE(355); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 415: ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(388); + if (lookahead == 't') ADVANCE(329); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 416: ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(413); + if (lookahead == 't') ADVANCE(389); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 417: ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(327); + if (lookahead == 't') ADVANCE(414); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 418: ACCEPT_TOKEN(sym__name); - if (lookahead == 'u') ADVANCE(305); + if (lookahead == 't') ADVANCE(328); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 419: ACCEPT_TOKEN(sym__name); - if (lookahead == 'u') ADVANCE(322); + if (lookahead == 'u') ADVANCE(306); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 420: ACCEPT_TOKEN(sym__name); - if (lookahead == 'v') ADVANCE(302); + if (lookahead == 'u') ADVANCE(323); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 421: ACCEPT_TOKEN(sym__name); - if (lookahead == 'v') ADVANCE(321); + if (lookahead == 'v') ADVANCE(303); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 422: ACCEPT_TOKEN(sym__name); - if (lookahead == 'x') ADVANCE(417); + if (lookahead == 'v') ADVANCE(322); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 423: ACCEPT_TOKEN(sym__name); - if (lookahead == 'y') ADVANCE(204); + if (lookahead == 'x') ADVANCE(418); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 424: ACCEPT_TOKEN(sym__name); - if (lookahead == 'y') ADVANCE(253); + if (lookahead == 'y') ADVANCE(205); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 425: ACCEPT_TOKEN(sym__name); + if (lookahead == 'y') ADVANCE(254); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 426: + ACCEPT_TOKEN(sym__name); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); + END_STATE(); + case 427: ACCEPT_TOKEN(sym__upname); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); END_STATE(); default: return false; @@ -4818,613 +4845,613 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 152}, - [2] = {.lex_state = 152}, - [3] = {.lex_state = 152}, - [4] = {.lex_state = 152}, - [5] = {.lex_state = 152}, - [6] = {.lex_state = 152}, - [7] = {.lex_state = 152}, - [8] = {.lex_state = 152}, - [9] = {.lex_state = 152}, - [10] = {.lex_state = 152}, - [11] = {.lex_state = 132}, - [12] = {.lex_state = 152}, - [13] = {.lex_state = 132}, - [14] = {.lex_state = 132}, - [15] = {.lex_state = 152}, - [16] = {.lex_state = 133}, - [17] = {.lex_state = 152}, - [18] = {.lex_state = 152}, - [19] = {.lex_state = 152}, - [20] = {.lex_state = 152}, - [21] = {.lex_state = 152}, - [22] = {.lex_state = 152}, - [23] = {.lex_state = 152}, - [24] = {.lex_state = 152}, - [25] = {.lex_state = 152}, - [26] = {.lex_state = 152}, - [27] = {.lex_state = 152}, - [28] = {.lex_state = 132}, - [29] = {.lex_state = 132}, - [30] = {.lex_state = 152}, - [31] = {.lex_state = 152}, - [32] = {.lex_state = 132}, - [33] = {.lex_state = 152}, - [34] = {.lex_state = 152}, - [35] = {.lex_state = 152}, - [36] = {.lex_state = 132}, - [37] = {.lex_state = 152}, - [38] = {.lex_state = 132}, - [39] = {.lex_state = 132}, - [40] = {.lex_state = 152}, - [41] = {.lex_state = 132}, - [42] = {.lex_state = 132}, - [43] = {.lex_state = 152}, - [44] = {.lex_state = 132}, - [45] = {.lex_state = 152}, - [46] = {.lex_state = 152}, - [47] = {.lex_state = 132}, - [48] = {.lex_state = 132}, - [49] = {.lex_state = 152}, - [50] = {.lex_state = 132}, - [51] = {.lex_state = 132}, - [52] = {.lex_state = 152}, - [53] = {.lex_state = 152}, - [54] = {.lex_state = 133}, - [55] = {.lex_state = 152}, - [56] = {.lex_state = 133}, - [57] = {.lex_state = 152}, - [58] = {.lex_state = 133}, - [59] = {.lex_state = 152}, - [60] = {.lex_state = 133}, - [61] = {.lex_state = 133}, - [62] = {.lex_state = 152}, - [63] = {.lex_state = 132}, - [64] = {.lex_state = 152}, - [65] = {.lex_state = 152}, - [66] = {.lex_state = 133}, - [67] = {.lex_state = 152}, - [68] = {.lex_state = 133}, - [69] = {.lex_state = 133}, - [70] = {.lex_state = 133}, - [71] = {.lex_state = 133}, - [72] = {.lex_state = 152}, - [73] = {.lex_state = 152}, - [74] = {.lex_state = 133}, - [75] = {.lex_state = 152}, - [76] = {.lex_state = 152}, - [77] = {.lex_state = 147}, - [78] = {.lex_state = 152}, - [79] = {.lex_state = 152}, - [80] = {.lex_state = 152}, - [81] = {.lex_state = 133}, - [82] = {.lex_state = 152}, - [83] = {.lex_state = 133}, - [84] = {.lex_state = 133}, - [85] = {.lex_state = 147}, - [86] = {.lex_state = 133}, - [87] = {.lex_state = 152}, - [88] = {.lex_state = 152}, - [89] = {.lex_state = 152}, - [90] = {.lex_state = 147}, - [91] = {.lex_state = 133}, - [92] = {.lex_state = 147}, - [93] = {.lex_state = 133}, - [94] = {.lex_state = 152}, - [95] = {.lex_state = 152}, - [96] = {.lex_state = 133}, - [97] = {.lex_state = 152}, - [98] = {.lex_state = 133}, - [99] = {.lex_state = 152}, - [100] = {.lex_state = 133}, - [101] = {.lex_state = 133}, - [102] = {.lex_state = 133}, - [103] = {.lex_state = 152}, - [104] = {.lex_state = 133}, - [105] = {.lex_state = 133}, - [106] = {.lex_state = 152}, - [107] = {.lex_state = 133}, - [108] = {.lex_state = 133}, - [109] = {.lex_state = 152}, - [110] = {.lex_state = 152}, - [111] = {.lex_state = 133}, - [112] = {.lex_state = 152}, - [113] = {.lex_state = 152}, - [114] = {.lex_state = 133}, - [115] = {.lex_state = 133}, - [116] = {.lex_state = 133}, - [117] = {.lex_state = 133}, - [118] = {.lex_state = 133}, - [119] = {.lex_state = 133}, - [120] = {.lex_state = 133}, - [121] = {.lex_state = 133}, - [122] = {.lex_state = 133}, - [123] = {.lex_state = 147}, - [124] = {.lex_state = 133}, - [125] = {.lex_state = 133}, - [126] = {.lex_state = 133}, - [127] = {.lex_state = 133}, - [128] = {.lex_state = 133}, - [129] = {.lex_state = 147}, - [130] = {.lex_state = 147}, - [131] = {.lex_state = 147}, - [132] = {.lex_state = 147}, - [133] = {.lex_state = 147}, - [134] = {.lex_state = 147}, - [135] = {.lex_state = 147}, - [136] = {.lex_state = 147}, - [137] = {.lex_state = 147}, - [138] = {.lex_state = 147}, - [139] = {.lex_state = 134}, - [140] = {.lex_state = 134}, - [141] = {.lex_state = 132}, - [142] = {.lex_state = 147}, - [143] = {.lex_state = 134}, - [144] = {.lex_state = 147}, - [145] = {.lex_state = 147}, - [146] = {.lex_state = 147}, - [147] = {.lex_state = 134}, - [148] = {.lex_state = 134}, - [149] = {.lex_state = 134}, - [150] = {.lex_state = 134}, - [151] = {.lex_state = 134}, - [152] = {.lex_state = 147}, - [153] = {.lex_state = 147}, - [154] = {.lex_state = 134}, - [155] = {.lex_state = 134}, - [156] = {.lex_state = 134}, - [157] = {.lex_state = 134}, - [158] = {.lex_state = 134}, - [159] = {.lex_state = 134}, - [160] = {.lex_state = 134}, - [161] = {.lex_state = 134}, - [162] = {.lex_state = 134}, - [163] = {.lex_state = 134}, - [164] = {.lex_state = 134}, - [165] = {.lex_state = 134}, - [166] = {.lex_state = 134}, - [167] = {.lex_state = 147}, - [168] = {.lex_state = 134}, - [169] = {.lex_state = 147}, - [170] = {.lex_state = 147}, - [171] = {.lex_state = 147}, - [172] = {.lex_state = 134}, - [173] = {.lex_state = 134}, - [174] = {.lex_state = 147}, - [175] = {.lex_state = 147}, - [176] = {.lex_state = 147}, - [177] = {.lex_state = 134}, - [178] = {.lex_state = 134}, - [179] = {.lex_state = 147}, - [180] = {.lex_state = 147}, - [181] = {.lex_state = 134}, - [182] = {.lex_state = 147}, - [183] = {.lex_state = 134}, - [184] = {.lex_state = 147}, - [185] = {.lex_state = 134}, - [186] = {.lex_state = 134}, - [187] = {.lex_state = 147}, - [188] = {.lex_state = 134}, - [189] = {.lex_state = 134}, - [190] = {.lex_state = 134}, - [191] = {.lex_state = 134}, - [192] = {.lex_state = 134}, - [193] = {.lex_state = 134}, - [194] = {.lex_state = 147}, - [195] = {.lex_state = 134}, - [196] = {.lex_state = 147}, - [197] = {.lex_state = 134}, - [198] = {.lex_state = 134}, - [199] = {.lex_state = 134}, - [200] = {.lex_state = 147}, - [201] = {.lex_state = 134}, - [202] = {.lex_state = 134}, - [203] = {.lex_state = 147}, - [204] = {.lex_state = 147}, - [205] = {.lex_state = 134}, - [206] = {.lex_state = 134}, - [207] = {.lex_state = 134}, - [208] = {.lex_state = 134}, - [209] = {.lex_state = 134}, - [210] = {.lex_state = 134}, - [211] = {.lex_state = 134}, - [212] = {.lex_state = 134}, - [213] = {.lex_state = 134}, - [214] = {.lex_state = 134}, - [215] = {.lex_state = 134}, - [216] = {.lex_state = 134}, - [217] = {.lex_state = 134}, - [218] = {.lex_state = 134}, - [219] = {.lex_state = 134}, - [220] = {.lex_state = 134}, - [221] = {.lex_state = 134}, - [222] = {.lex_state = 134}, - [223] = {.lex_state = 147}, - [224] = {.lex_state = 147}, - [225] = {.lex_state = 134}, - [226] = {.lex_state = 134}, - [227] = {.lex_state = 134}, - [228] = {.lex_state = 134}, - [229] = {.lex_state = 134}, - [230] = {.lex_state = 134}, - [231] = {.lex_state = 134}, - [232] = {.lex_state = 134}, - [233] = {.lex_state = 134}, - [234] = {.lex_state = 134}, - [235] = {.lex_state = 134}, - [236] = {.lex_state = 134}, - [237] = {.lex_state = 134}, - [238] = {.lex_state = 147}, - [239] = {.lex_state = 134}, - [240] = {.lex_state = 147}, - [241] = {.lex_state = 147}, - [242] = {.lex_state = 134}, - [243] = {.lex_state = 147}, - [244] = {.lex_state = 147}, - [245] = {.lex_state = 134}, - [246] = {.lex_state = 134}, - [247] = {.lex_state = 134}, - [248] = {.lex_state = 134}, - [249] = {.lex_state = 134}, - [250] = {.lex_state = 134}, - [251] = {.lex_state = 134}, - [252] = {.lex_state = 134}, - [253] = {.lex_state = 134}, - [254] = {.lex_state = 134}, - [255] = {.lex_state = 134}, - [256] = {.lex_state = 134}, - [257] = {.lex_state = 134}, - [258] = {.lex_state = 134}, - [259] = {.lex_state = 134}, - [260] = {.lex_state = 134}, - [261] = {.lex_state = 134}, - [262] = {.lex_state = 134}, - [263] = {.lex_state = 134}, - [264] = {.lex_state = 134}, - [265] = {.lex_state = 134}, - [266] = {.lex_state = 134}, - [267] = {.lex_state = 134}, - [268] = {.lex_state = 134}, - [269] = {.lex_state = 147}, - [270] = {.lex_state = 134}, - [271] = {.lex_state = 134}, - [272] = {.lex_state = 134}, - [273] = {.lex_state = 134}, - [274] = {.lex_state = 134}, - [275] = {.lex_state = 134}, - [276] = {.lex_state = 134}, - [277] = {.lex_state = 134}, - [278] = {.lex_state = 134}, - [279] = {.lex_state = 134}, - [280] = {.lex_state = 147}, - [281] = {.lex_state = 147}, - [282] = {.lex_state = 147}, - [283] = {.lex_state = 147}, - [284] = {.lex_state = 147}, - [285] = {.lex_state = 147}, - [286] = {.lex_state = 147}, - [287] = {.lex_state = 147}, - [288] = {.lex_state = 147}, - [289] = {.lex_state = 147}, - [290] = {.lex_state = 147}, - [291] = {.lex_state = 147}, - [292] = {.lex_state = 135}, - [293] = {.lex_state = 135}, - [294] = {.lex_state = 135}, - [295] = {.lex_state = 135}, - [296] = {.lex_state = 135}, - [297] = {.lex_state = 135}, - [298] = {.lex_state = 135}, - [299] = {.lex_state = 137}, - [300] = {.lex_state = 137}, - [301] = {.lex_state = 137}, - [302] = {.lex_state = 137}, - [303] = {.lex_state = 137}, - [304] = {.lex_state = 137}, - [305] = {.lex_state = 137}, - [306] = {.lex_state = 137}, - [307] = {.lex_state = 137}, - [308] = {.lex_state = 137}, - [309] = {.lex_state = 137}, - [310] = {.lex_state = 137}, - [311] = {.lex_state = 137}, - [312] = {.lex_state = 137}, - [313] = {.lex_state = 137}, - [314] = {.lex_state = 137}, - [315] = {.lex_state = 137}, - [316] = {.lex_state = 137}, - [317] = {.lex_state = 137}, - [318] = {.lex_state = 137}, - [319] = {.lex_state = 137}, - [320] = {.lex_state = 137}, - [321] = {.lex_state = 137}, - [322] = {.lex_state = 137}, - [323] = {.lex_state = 137}, - [324] = {.lex_state = 137}, - [325] = {.lex_state = 137}, - [326] = {.lex_state = 137}, - [327] = {.lex_state = 137}, - [328] = {.lex_state = 137}, - [329] = {.lex_state = 137}, - [330] = {.lex_state = 137}, - [331] = {.lex_state = 137}, - [332] = {.lex_state = 137}, - [333] = {.lex_state = 137}, - [334] = {.lex_state = 137}, - [335] = {.lex_state = 137}, - [336] = {.lex_state = 137}, - [337] = {.lex_state = 137}, - [338] = {.lex_state = 137}, - [339] = {.lex_state = 137}, - [340] = {.lex_state = 137}, - [341] = {.lex_state = 137}, - [342] = {.lex_state = 137}, - [343] = {.lex_state = 137}, - [344] = {.lex_state = 137}, - [345] = {.lex_state = 137}, - [346] = {.lex_state = 137}, - [347] = {.lex_state = 137}, - [348] = {.lex_state = 137}, - [349] = {.lex_state = 137}, - [350] = {.lex_state = 137}, - [351] = {.lex_state = 137}, - [352] = {.lex_state = 137}, - [353] = {.lex_state = 137}, - [354] = {.lex_state = 137}, - [355] = {.lex_state = 137}, - [356] = {.lex_state = 137}, - [357] = {.lex_state = 138}, - [358] = {.lex_state = 153}, - [359] = {.lex_state = 153}, - [360] = {.lex_state = 153}, - [361] = {.lex_state = 135}, - [362] = {.lex_state = 135}, + [1] = {.lex_state = 153}, + [2] = {.lex_state = 153}, + [3] = {.lex_state = 153}, + [4] = {.lex_state = 153}, + [5] = {.lex_state = 153}, + [6] = {.lex_state = 153}, + [7] = {.lex_state = 133}, + [8] = {.lex_state = 153}, + [9] = {.lex_state = 153}, + [10] = {.lex_state = 153}, + [11] = {.lex_state = 133}, + [12] = {.lex_state = 134}, + [13] = {.lex_state = 153}, + [14] = {.lex_state = 153}, + [15] = {.lex_state = 133}, + [16] = {.lex_state = 153}, + [17] = {.lex_state = 153}, + [18] = {.lex_state = 153}, + [19] = {.lex_state = 153}, + [20] = {.lex_state = 153}, + [21] = {.lex_state = 153}, + [22] = {.lex_state = 153}, + [23] = {.lex_state = 153}, + [24] = {.lex_state = 153}, + [25] = {.lex_state = 133}, + [26] = {.lex_state = 153}, + [27] = {.lex_state = 153}, + [28] = {.lex_state = 153}, + [29] = {.lex_state = 153}, + [30] = {.lex_state = 133}, + [31] = {.lex_state = 153}, + [32] = {.lex_state = 153}, + [33] = {.lex_state = 133}, + [34] = {.lex_state = 153}, + [35] = {.lex_state = 133}, + [36] = {.lex_state = 133}, + [37] = {.lex_state = 153}, + [38] = {.lex_state = 153}, + [39] = {.lex_state = 133}, + [40] = {.lex_state = 153}, + [41] = {.lex_state = 133}, + [42] = {.lex_state = 153}, + [43] = {.lex_state = 133}, + [44] = {.lex_state = 153}, + [45] = {.lex_state = 133}, + [46] = {.lex_state = 133}, + [47] = {.lex_state = 153}, + [48] = {.lex_state = 133}, + [49] = {.lex_state = 153}, + [50] = {.lex_state = 133}, + [51] = {.lex_state = 133}, + [52] = {.lex_state = 153}, + [53] = {.lex_state = 153}, + [54] = {.lex_state = 153}, + [55] = {.lex_state = 153}, + [56] = {.lex_state = 153}, + [57] = {.lex_state = 148}, + [58] = {.lex_state = 134}, + [59] = {.lex_state = 134}, + [60] = {.lex_state = 134}, + [61] = {.lex_state = 134}, + [62] = {.lex_state = 153}, + [63] = {.lex_state = 134}, + [64] = {.lex_state = 153}, + [65] = {.lex_state = 153}, + [66] = {.lex_state = 134}, + [67] = {.lex_state = 153}, + [68] = {.lex_state = 153}, + [69] = {.lex_state = 134}, + [70] = {.lex_state = 153}, + [71] = {.lex_state = 134}, + [72] = {.lex_state = 134}, + [73] = {.lex_state = 153}, + [74] = {.lex_state = 153}, + [75] = {.lex_state = 153}, + [76] = {.lex_state = 148}, + [77] = {.lex_state = 134}, + [78] = {.lex_state = 153}, + [79] = {.lex_state = 134}, + [80] = {.lex_state = 153}, + [81] = {.lex_state = 153}, + [82] = {.lex_state = 134}, + [83] = {.lex_state = 153}, + [84] = {.lex_state = 134}, + [85] = {.lex_state = 153}, + [86] = {.lex_state = 134}, + [87] = {.lex_state = 153}, + [88] = {.lex_state = 153}, + [89] = {.lex_state = 153}, + [90] = {.lex_state = 153}, + [91] = {.lex_state = 153}, + [92] = {.lex_state = 148}, + [93] = {.lex_state = 134}, + [94] = {.lex_state = 153}, + [95] = {.lex_state = 134}, + [96] = {.lex_state = 134}, + [97] = {.lex_state = 148}, + [98] = {.lex_state = 148}, + [99] = {.lex_state = 153}, + [100] = {.lex_state = 134}, + [101] = {.lex_state = 134}, + [102] = {.lex_state = 134}, + [103] = {.lex_state = 133}, + [104] = {.lex_state = 153}, + [105] = {.lex_state = 134}, + [106] = {.lex_state = 134}, + [107] = {.lex_state = 134}, + [108] = {.lex_state = 134}, + [109] = {.lex_state = 134}, + [110] = {.lex_state = 134}, + [111] = {.lex_state = 134}, + [112] = {.lex_state = 134}, + [113] = {.lex_state = 134}, + [114] = {.lex_state = 153}, + [115] = {.lex_state = 153}, + [116] = {.lex_state = 153}, + [117] = {.lex_state = 134}, + [118] = {.lex_state = 134}, + [119] = {.lex_state = 134}, + [120] = {.lex_state = 134}, + [121] = {.lex_state = 134}, + [122] = {.lex_state = 134}, + [123] = {.lex_state = 148}, + [124] = {.lex_state = 134}, + [125] = {.lex_state = 134}, + [126] = {.lex_state = 134}, + [127] = {.lex_state = 134}, + [128] = {.lex_state = 134}, + [129] = {.lex_state = 134}, + [130] = {.lex_state = 135}, + [131] = {.lex_state = 148}, + [132] = {.lex_state = 135}, + [133] = {.lex_state = 133}, + [134] = {.lex_state = 135}, + [135] = {.lex_state = 135}, + [136] = {.lex_state = 148}, + [137] = {.lex_state = 148}, + [138] = {.lex_state = 148}, + [139] = {.lex_state = 135}, + [140] = {.lex_state = 148}, + [141] = {.lex_state = 148}, + [142] = {.lex_state = 135}, + [143] = {.lex_state = 148}, + [144] = {.lex_state = 135}, + [145] = {.lex_state = 148}, + [146] = {.lex_state = 148}, + [147] = {.lex_state = 135}, + [148] = {.lex_state = 148}, + [149] = {.lex_state = 148}, + [150] = {.lex_state = 148}, + [151] = {.lex_state = 148}, + [152] = {.lex_state = 135}, + [153] = {.lex_state = 135}, + [154] = {.lex_state = 135}, + [155] = {.lex_state = 148}, + [156] = {.lex_state = 148}, + [157] = {.lex_state = 135}, + [158] = {.lex_state = 135}, + [159] = {.lex_state = 135}, + [160] = {.lex_state = 148}, + [161] = {.lex_state = 135}, + [162] = {.lex_state = 135}, + [163] = {.lex_state = 148}, + [164] = {.lex_state = 148}, + [165] = {.lex_state = 135}, + [166] = {.lex_state = 135}, + [167] = {.lex_state = 135}, + [168] = {.lex_state = 135}, + [169] = {.lex_state = 135}, + [170] = {.lex_state = 135}, + [171] = {.lex_state = 135}, + [172] = {.lex_state = 135}, + [173] = {.lex_state = 148}, + [174] = {.lex_state = 148}, + [175] = {.lex_state = 148}, + [176] = {.lex_state = 148}, + [177] = {.lex_state = 135}, + [178] = {.lex_state = 148}, + [179] = {.lex_state = 148}, + [180] = {.lex_state = 148}, + [181] = {.lex_state = 135}, + [182] = {.lex_state = 135}, + [183] = {.lex_state = 135}, + [184] = {.lex_state = 135}, + [185] = {.lex_state = 135}, + [186] = {.lex_state = 135}, + [187] = {.lex_state = 135}, + [188] = {.lex_state = 135}, + [189] = {.lex_state = 135}, + [190] = {.lex_state = 135}, + [191] = {.lex_state = 135}, + [192] = {.lex_state = 135}, + [193] = {.lex_state = 135}, + [194] = {.lex_state = 135}, + [195] = {.lex_state = 135}, + [196] = {.lex_state = 135}, + [197] = {.lex_state = 135}, + [198] = {.lex_state = 135}, + [199] = {.lex_state = 135}, + [200] = {.lex_state = 135}, + [201] = {.lex_state = 135}, + [202] = {.lex_state = 135}, + [203] = {.lex_state = 135}, + [204] = {.lex_state = 135}, + [205] = {.lex_state = 135}, + [206] = {.lex_state = 135}, + [207] = {.lex_state = 135}, + [208] = {.lex_state = 135}, + [209] = {.lex_state = 135}, + [210] = {.lex_state = 135}, + [211] = {.lex_state = 135}, + [212] = {.lex_state = 135}, + [213] = {.lex_state = 135}, + [214] = {.lex_state = 148}, + [215] = {.lex_state = 135}, + [216] = {.lex_state = 148}, + [217] = {.lex_state = 135}, + [218] = {.lex_state = 135}, + [219] = {.lex_state = 135}, + [220] = {.lex_state = 135}, + [221] = {.lex_state = 135}, + [222] = {.lex_state = 135}, + [223] = {.lex_state = 135}, + [224] = {.lex_state = 135}, + [225] = {.lex_state = 148}, + [226] = {.lex_state = 135}, + [227] = {.lex_state = 148}, + [228] = {.lex_state = 148}, + [229] = {.lex_state = 135}, + [230] = {.lex_state = 135}, + [231] = {.lex_state = 135}, + [232] = {.lex_state = 135}, + [233] = {.lex_state = 148}, + [234] = {.lex_state = 135}, + [235] = {.lex_state = 135}, + [236] = {.lex_state = 148}, + [237] = {.lex_state = 148}, + [238] = {.lex_state = 135}, + [239] = {.lex_state = 135}, + [240] = {.lex_state = 135}, + [241] = {.lex_state = 135}, + [242] = {.lex_state = 135}, + [243] = {.lex_state = 135}, + [244] = {.lex_state = 135}, + [245] = {.lex_state = 135}, + [246] = {.lex_state = 135}, + [247] = {.lex_state = 135}, + [248] = {.lex_state = 135}, + [249] = {.lex_state = 135}, + [250] = {.lex_state = 148}, + [251] = {.lex_state = 148}, + [252] = {.lex_state = 135}, + [253] = {.lex_state = 135}, + [254] = {.lex_state = 135}, + [255] = {.lex_state = 148}, + [256] = {.lex_state = 148}, + [257] = {.lex_state = 135}, + [258] = {.lex_state = 135}, + [259] = {.lex_state = 135}, + [260] = {.lex_state = 135}, + [261] = {.lex_state = 135}, + [262] = {.lex_state = 135}, + [263] = {.lex_state = 135}, + [264] = {.lex_state = 135}, + [265] = {.lex_state = 135}, + [266] = {.lex_state = 135}, + [267] = {.lex_state = 135}, + [268] = {.lex_state = 135}, + [269] = {.lex_state = 148}, + [270] = {.lex_state = 135}, + [271] = {.lex_state = 148}, + [272] = {.lex_state = 148}, + [273] = {.lex_state = 135}, + [274] = {.lex_state = 135}, + [275] = {.lex_state = 135}, + [276] = {.lex_state = 135}, + [277] = {.lex_state = 135}, + [278] = {.lex_state = 135}, + [279] = {.lex_state = 135}, + [280] = {.lex_state = 148}, + [281] = {.lex_state = 148}, + [282] = {.lex_state = 148}, + [283] = {.lex_state = 148}, + [284] = {.lex_state = 148}, + [285] = {.lex_state = 148}, + [286] = {.lex_state = 148}, + [287] = {.lex_state = 148}, + [288] = {.lex_state = 148}, + [289] = {.lex_state = 148}, + [290] = {.lex_state = 148}, + [291] = {.lex_state = 148}, + [292] = {.lex_state = 136}, + [293] = {.lex_state = 136}, + [294] = {.lex_state = 136}, + [295] = {.lex_state = 136}, + [296] = {.lex_state = 136}, + [297] = {.lex_state = 136}, + [298] = {.lex_state = 136}, + [299] = {.lex_state = 138}, + [300] = {.lex_state = 139}, + [301] = {.lex_state = 139}, + [302] = {.lex_state = 139}, + [303] = {.lex_state = 139}, + [304] = {.lex_state = 139}, + [305] = {.lex_state = 139}, + [306] = {.lex_state = 139}, + [307] = {.lex_state = 139}, + [308] = {.lex_state = 139}, + [309] = {.lex_state = 139}, + [310] = {.lex_state = 139}, + [311] = {.lex_state = 139}, + [312] = {.lex_state = 139}, + [313] = {.lex_state = 139}, + [314] = {.lex_state = 139}, + [315] = {.lex_state = 139}, + [316] = {.lex_state = 139}, + [317] = {.lex_state = 139}, + [318] = {.lex_state = 139}, + [319] = {.lex_state = 139}, + [320] = {.lex_state = 139}, + [321] = {.lex_state = 139}, + [322] = {.lex_state = 139}, + [323] = {.lex_state = 139}, + [324] = {.lex_state = 139}, + [325] = {.lex_state = 139}, + [326] = {.lex_state = 139}, + [327] = {.lex_state = 139}, + [328] = {.lex_state = 139}, + [329] = {.lex_state = 139}, + [330] = {.lex_state = 139}, + [331] = {.lex_state = 139}, + [332] = {.lex_state = 139}, + [333] = {.lex_state = 139}, + [334] = {.lex_state = 139}, + [335] = {.lex_state = 139}, + [336] = {.lex_state = 139}, + [337] = {.lex_state = 139}, + [338] = {.lex_state = 139}, + [339] = {.lex_state = 139}, + [340] = {.lex_state = 139}, + [341] = {.lex_state = 139}, + [342] = {.lex_state = 139}, + [343] = {.lex_state = 139}, + [344] = {.lex_state = 139}, + [345] = {.lex_state = 139}, + [346] = {.lex_state = 139}, + [347] = {.lex_state = 139}, + [348] = {.lex_state = 139}, + [349] = {.lex_state = 139}, + [350] = {.lex_state = 139}, + [351] = {.lex_state = 139}, + [352] = {.lex_state = 139}, + [353] = {.lex_state = 139}, + [354] = {.lex_state = 139}, + [355] = {.lex_state = 139}, + [356] = {.lex_state = 139}, + [357] = {.lex_state = 139}, + [358] = {.lex_state = 154}, + [359] = {.lex_state = 154}, + [360] = {.lex_state = 138}, + [361] = {.lex_state = 154}, + [362] = {.lex_state = 154}, [363] = {.lex_state = 138}, [364] = {.lex_state = 138}, [365] = {.lex_state = 138}, [366] = {.lex_state = 138}, [367] = {.lex_state = 138}, [368] = {.lex_state = 138}, - [369] = {.lex_state = 138}, + [369] = {.lex_state = 136}, [370] = {.lex_state = 138}, [371] = {.lex_state = 138}, [372] = {.lex_state = 138}, - [373] = {.lex_state = 135}, - [374] = {.lex_state = 138}, + [373] = {.lex_state = 136}, + [374] = {.lex_state = 136}, [375] = {.lex_state = 138}, - [376] = {.lex_state = 135}, - [377] = {.lex_state = 135}, - [378] = {.lex_state = 135}, - [379] = {.lex_state = 153}, - [380] = {.lex_state = 135}, - [381] = {.lex_state = 138}, - [382] = {.lex_state = 138}, - [383] = {.lex_state = 138}, - [384] = {.lex_state = 138}, + [376] = {.lex_state = 136}, + [377] = {.lex_state = 138}, + [378] = {.lex_state = 136}, + [379] = {.lex_state = 136}, + [380] = {.lex_state = 136}, + [381] = {.lex_state = 153}, + [382] = {.lex_state = 136}, + [383] = {.lex_state = 136}, + [384] = {.lex_state = 153}, [385] = {.lex_state = 138}, - [386] = {.lex_state = 152}, - [387] = {.lex_state = 152}, + [386] = {.lex_state = 138}, + [387] = {.lex_state = 138}, [388] = {.lex_state = 138}, - [389] = {.lex_state = 135}, - [390] = {.lex_state = 138}, - [391] = {.lex_state = 153}, + [389] = {.lex_state = 138}, + [390] = {.lex_state = 153}, + [391] = {.lex_state = 138}, [392] = {.lex_state = 138}, - [393] = {.lex_state = 135}, - [394] = {.lex_state = 152}, + [393] = {.lex_state = 138}, + [394] = {.lex_state = 138}, [395] = {.lex_state = 138}, - [396] = {.lex_state = 138}, + [396] = {.lex_state = 154}, [397] = {.lex_state = 138}, [398] = {.lex_state = 138}, [399] = {.lex_state = 138}, - [400] = {.lex_state = 138}, + [400] = {.lex_state = 154}, [401] = {.lex_state = 138}, - [402] = {.lex_state = 138}, - [403] = {.lex_state = 153}, - [404] = {.lex_state = 135}, - [405] = {.lex_state = 137}, + [402] = {.lex_state = 139}, + [403] = {.lex_state = 138}, + [404] = {.lex_state = 138}, + [405] = {.lex_state = 154}, [406] = {.lex_state = 138}, - [407] = {.lex_state = 138}, - [408] = {.lex_state = 152}, - [409] = {.lex_state = 153}, - [410] = {.lex_state = 153}, + [407] = {.lex_state = 154}, + [408] = {.lex_state = 136}, + [409] = {.lex_state = 139}, + [410] = {.lex_state = 138}, [411] = {.lex_state = 138}, - [412] = {.lex_state = 137}, - [413] = {.lex_state = 137}, + [412] = {.lex_state = 139}, + [413] = {.lex_state = 138}, [414] = {.lex_state = 138}, - [415] = {.lex_state = 137}, + [415] = {.lex_state = 136}, [416] = {.lex_state = 138}, - [417] = {.lex_state = 138}, - [418] = {.lex_state = 153}, - [419] = {.lex_state = 135}, + [417] = {.lex_state = 139}, + [418] = {.lex_state = 138}, + [419] = {.lex_state = 153}, [420] = {.lex_state = 138}, - [421] = {.lex_state = 137}, + [421] = {.lex_state = 154}, [422] = {.lex_state = 153}, - [423] = {.lex_state = 137}, - [424] = {.lex_state = 152}, - [425] = {.lex_state = 138}, - [426] = {.lex_state = 138}, - [427] = {.lex_state = 137}, - [428] = {.lex_state = 138}, - [429] = {.lex_state = 137}, + [423] = {.lex_state = 138}, + [424] = {.lex_state = 138}, + [425] = {.lex_state = 153}, + [426] = {.lex_state = 139}, + [427] = {.lex_state = 154}, + [428] = {.lex_state = 139}, + [429] = {.lex_state = 138}, [430] = {.lex_state = 138}, [431] = {.lex_state = 138}, [432] = {.lex_state = 138}, [433] = {.lex_state = 138}, - [434] = {.lex_state = 138}, - [435] = {.lex_state = 138}, - [436] = {.lex_state = 135}, - [437] = {.lex_state = 138}, + [434] = {.lex_state = 139}, + [435] = {.lex_state = 153}, + [436] = {.lex_state = 136}, + [437] = {.lex_state = 139}, [438] = {.lex_state = 138}, [439] = {.lex_state = 138}, [440] = {.lex_state = 138}, [441] = {.lex_state = 138}, - [442] = {.lex_state = 152}, - [443] = {.lex_state = 137}, - [444] = {.lex_state = 152}, - [445] = {.lex_state = 152}, - [446] = {.lex_state = 152}, - [447] = {.lex_state = 152}, - [448] = {.lex_state = 152}, - [449] = {.lex_state = 152}, - [450] = {.lex_state = 152}, - [451] = {.lex_state = 152}, - [452] = {.lex_state = 152}, - [453] = {.lex_state = 152}, - [454] = {.lex_state = 152}, - [455] = {.lex_state = 152}, - [456] = {.lex_state = 152}, - [457] = {.lex_state = 152}, - [458] = {.lex_state = 152}, - [459] = {.lex_state = 152}, - [460] = {.lex_state = 152}, - [461] = {.lex_state = 152}, - [462] = {.lex_state = 152}, - [463] = {.lex_state = 152}, - [464] = {.lex_state = 152}, - [465] = {.lex_state = 152}, - [466] = {.lex_state = 152}, - [467] = {.lex_state = 152}, - [468] = {.lex_state = 152}, - [469] = {.lex_state = 152}, - [470] = {.lex_state = 152}, - [471] = {.lex_state = 152}, - [472] = {.lex_state = 152}, - [473] = {.lex_state = 152}, - [474] = {.lex_state = 152}, - [475] = {.lex_state = 152}, - [476] = {.lex_state = 152}, - [477] = {.lex_state = 152}, - [478] = {.lex_state = 152}, - [479] = {.lex_state = 152}, - [480] = {.lex_state = 152}, - [481] = {.lex_state = 139}, - [482] = {.lex_state = 152}, - [483] = {.lex_state = 152}, - [484] = {.lex_state = 152}, - [485] = {.lex_state = 152}, - [486] = {.lex_state = 152}, - [487] = {.lex_state = 152}, - [488] = {.lex_state = 152}, - [489] = {.lex_state = 152}, - [490] = {.lex_state = 152}, - [491] = {.lex_state = 152}, - [492] = {.lex_state = 152}, - [493] = {.lex_state = 152}, - [494] = {.lex_state = 152}, - [495] = {.lex_state = 152}, - [496] = {.lex_state = 152}, - [497] = {.lex_state = 152}, - [498] = {.lex_state = 152}, - [499] = {.lex_state = 152}, - [500] = {.lex_state = 152}, - [501] = {.lex_state = 152}, - [502] = {.lex_state = 152}, - [503] = {.lex_state = 152}, - [504] = {.lex_state = 152}, - [505] = {.lex_state = 152}, - [506] = {.lex_state = 152}, - [507] = {.lex_state = 140}, - [508] = {.lex_state = 137}, - [509] = {.lex_state = 140}, - [510] = {.lex_state = 141}, - [511] = {.lex_state = 141}, - [512] = {.lex_state = 141}, - [513] = {.lex_state = 137}, - [514] = {.lex_state = 137}, - [515] = {.lex_state = 140}, - [516] = {.lex_state = 141}, - [517] = {.lex_state = 140}, - [518] = {.lex_state = 140}, - [519] = {.lex_state = 140}, - [520] = {.lex_state = 140}, - [521] = {.lex_state = 140}, - [522] = {.lex_state = 138}, - [523] = {.lex_state = 140}, - [524] = {.lex_state = 140}, + [442] = {.lex_state = 138}, + [443] = {.lex_state = 139}, + [444] = {.lex_state = 138}, + [445] = {.lex_state = 153}, + [446] = {.lex_state = 153}, + [447] = {.lex_state = 153}, + [448] = {.lex_state = 153}, + [449] = {.lex_state = 153}, + [450] = {.lex_state = 153}, + [451] = {.lex_state = 153}, + [452] = {.lex_state = 153}, + [453] = {.lex_state = 153}, + [454] = {.lex_state = 153}, + [455] = {.lex_state = 153}, + [456] = {.lex_state = 140}, + [457] = {.lex_state = 153}, + [458] = {.lex_state = 153}, + [459] = {.lex_state = 153}, + [460] = {.lex_state = 153}, + [461] = {.lex_state = 153}, + [462] = {.lex_state = 153}, + [463] = {.lex_state = 153}, + [464] = {.lex_state = 153}, + [465] = {.lex_state = 153}, + [466] = {.lex_state = 141}, + [467] = {.lex_state = 153}, + [468] = {.lex_state = 153}, + [469] = {.lex_state = 153}, + [470] = {.lex_state = 153}, + [471] = {.lex_state = 153}, + [472] = {.lex_state = 153}, + [473] = {.lex_state = 153}, + [474] = {.lex_state = 153}, + [475] = {.lex_state = 153}, + [476] = {.lex_state = 153}, + [477] = {.lex_state = 140}, + [478] = {.lex_state = 153}, + [479] = {.lex_state = 153}, + [480] = {.lex_state = 153}, + [481] = {.lex_state = 140}, + [482] = {.lex_state = 153}, + [483] = {.lex_state = 153}, + [484] = {.lex_state = 153}, + [485] = {.lex_state = 153}, + [486] = {.lex_state = 153}, + [487] = {.lex_state = 153}, + [488] = {.lex_state = 153}, + [489] = {.lex_state = 153}, + [490] = {.lex_state = 140}, + [491] = {.lex_state = 140}, + [492] = {.lex_state = 140}, + [493] = {.lex_state = 140}, + [494] = {.lex_state = 153}, + [495] = {.lex_state = 153}, + [496] = {.lex_state = 153}, + [497] = {.lex_state = 153}, + [498] = {.lex_state = 153}, + [499] = {.lex_state = 153}, + [500] = {.lex_state = 153}, + [501] = {.lex_state = 153}, + [502] = {.lex_state = 153}, + [503] = {.lex_state = 153}, + [504] = {.lex_state = 153}, + [505] = {.lex_state = 153}, + [506] = {.lex_state = 140}, + [507] = {.lex_state = 153}, + [508] = {.lex_state = 153}, + [509] = {.lex_state = 153}, + [510] = {.lex_state = 153}, + [511] = {.lex_state = 153}, + [512] = {.lex_state = 140}, + [513] = {.lex_state = 153}, + [514] = {.lex_state = 153}, + [515] = {.lex_state = 153}, + [516] = {.lex_state = 140}, + [517] = {.lex_state = 153}, + [518] = {.lex_state = 153}, + [519] = {.lex_state = 142}, + [520] = {.lex_state = 142}, + [521] = {.lex_state = 142}, + [522] = {.lex_state = 142}, + [523] = {.lex_state = 138}, + [524] = {.lex_state = 139}, [525] = {.lex_state = 139}, [526] = {.lex_state = 139}, - [527] = {.lex_state = 139}, - [528] = {.lex_state = 139}, - [529] = {.lex_state = 138}, - [530] = {.lex_state = 137}, - [531] = {.lex_state = 139}, - [532] = {.lex_state = 139}, - [533] = {.lex_state = 139}, - [534] = {.lex_state = 139}, - [535] = {.lex_state = 139}, - [536] = {.lex_state = 138}, + [527] = {.lex_state = 138}, + [528] = {.lex_state = 141}, + [529] = {.lex_state = 140}, + [530] = {.lex_state = 138}, + [531] = {.lex_state = 141}, + [532] = {.lex_state = 141}, + [533] = {.lex_state = 141}, + [534] = {.lex_state = 140}, + [535] = {.lex_state = 141}, + [536] = {.lex_state = 139}, [537] = {.lex_state = 139}, - [538] = {.lex_state = 139}, - [539] = {.lex_state = 139}, - [540] = {.lex_state = 139}, - [541] = {.lex_state = 139}, - [542] = {.lex_state = 138}, - [543] = {.lex_state = 137}, - [544] = {.lex_state = 137}, + [538] = {.lex_state = 141}, + [539] = {.lex_state = 141}, + [540] = {.lex_state = 141}, + [541] = {.lex_state = 141}, + [542] = {.lex_state = 141}, + [543] = {.lex_state = 141}, + [544] = {.lex_state = 141}, [545] = {.lex_state = 138}, - [546] = {.lex_state = 139}, + [546] = {.lex_state = 141}, [547] = {.lex_state = 139}, - [548] = {.lex_state = 139}, - [549] = {.lex_state = 137}, - [550] = {.lex_state = 138}, - [551] = {.lex_state = 140}, - [552] = {.lex_state = 137}, - [553] = {.lex_state = 140}, - [554] = {.lex_state = 137}, - [555] = {.lex_state = 137}, - [556] = {.lex_state = 140}, - [557] = {.lex_state = 138}, - [558] = {.lex_state = 137}, - [559] = {.lex_state = 137}, - [560] = {.lex_state = 137}, - [561] = {.lex_state = 138}, - [562] = {.lex_state = 137}, - [563] = {.lex_state = 137}, - [564] = {.lex_state = 137}, - [565] = {.lex_state = 137}, - [566] = {.lex_state = 137}, - [567] = {.lex_state = 137}, - [568] = {.lex_state = 138}, - [569] = {.lex_state = 137}, - [570] = {.lex_state = 140}, - [571] = {.lex_state = 137}, - [572] = {.lex_state = 137}, - [573] = {.lex_state = 138}, + [548] = {.lex_state = 140}, + [549] = {.lex_state = 140}, + [550] = {.lex_state = 141}, + [551] = {.lex_state = 138}, + [552] = {.lex_state = 140}, + [553] = {.lex_state = 141}, + [554] = {.lex_state = 140}, + [555] = {.lex_state = 141}, + [556] = {.lex_state = 139}, + [557] = {.lex_state = 141}, + [558] = {.lex_state = 141}, + [559] = {.lex_state = 138}, + [560] = {.lex_state = 138}, + [561] = {.lex_state = 140}, + [562] = {.lex_state = 140}, + [563] = {.lex_state = 140}, + [564] = {.lex_state = 140}, + [565] = {.lex_state = 139}, + [566] = {.lex_state = 139}, + [567] = {.lex_state = 138}, + [568] = {.lex_state = 139}, + [569] = {.lex_state = 139}, + [570] = {.lex_state = 139}, + [571] = {.lex_state = 138}, + [572] = {.lex_state = 139}, + [573] = {.lex_state = 139}, [574] = {.lex_state = 140}, - [575] = {.lex_state = 140}, - [576] = {.lex_state = 137}, - [577] = {.lex_state = 137}, - [578] = {.lex_state = 138}, - [579] = {.lex_state = 137}, - [580] = {.lex_state = 140}, - [581] = {.lex_state = 138}, - [582] = {.lex_state = 140}, - [583] = {.lex_state = 138}, - [584] = {.lex_state = 140}, - [585] = {.lex_state = 140}, - [586] = {.lex_state = 137}, - [587] = {.lex_state = 137}, - [588] = {.lex_state = 140}, + [575] = {.lex_state = 139}, + [576] = {.lex_state = 139}, + [577] = {.lex_state = 140}, + [578] = {.lex_state = 139}, + [579] = {.lex_state = 140}, + [580] = {.lex_state = 139}, + [581] = {.lex_state = 139}, + [582] = {.lex_state = 139}, + [583] = {.lex_state = 139}, + [584] = {.lex_state = 139}, + [585] = {.lex_state = 138}, + [586] = {.lex_state = 140}, + [587] = {.lex_state = 140}, + [588] = {.lex_state = 139}, [589] = {.lex_state = 140}, [590] = {.lex_state = 140}, - [591] = {.lex_state = 138}, - [592] = {.lex_state = 138}, - [593] = {.lex_state = 138}, - [594] = {.lex_state = 140}, - [595] = {.lex_state = 138}, + [591] = {.lex_state = 139}, + [592] = {.lex_state = 140}, + [593] = {.lex_state = 140}, + [594] = {.lex_state = 138}, + [595] = {.lex_state = 140}, [596] = {.lex_state = 140}, - [597] = {.lex_state = 138}, - [598] = {.lex_state = 140}, - [599] = {.lex_state = 140}, - [600] = {.lex_state = 140}, - [601] = {.lex_state = 138}, + [597] = {.lex_state = 140}, + [598] = {.lex_state = 138}, + [599] = {.lex_state = 139}, + [600] = {.lex_state = 139}, + [601] = {.lex_state = 140}, [602] = {.lex_state = 140}, [603] = {.lex_state = 138}, - [604] = {.lex_state = 138}, + [604] = {.lex_state = 139}, [605] = {.lex_state = 140}, [606] = {.lex_state = 140}, - [607] = {.lex_state = 138}, + [607] = {.lex_state = 140}, [608] = {.lex_state = 140}, [609] = {.lex_state = 138}, [610] = {.lex_state = 138}, @@ -5432,337 +5459,337 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [612] = {.lex_state = 138}, [613] = {.lex_state = 138}, [614] = {.lex_state = 138}, - [615] = {.lex_state = 140}, + [615] = {.lex_state = 138}, [616] = {.lex_state = 138}, [617] = {.lex_state = 140}, - [618] = {.lex_state = 140}, - [619] = {.lex_state = 138}, - [620] = {.lex_state = 140}, + [618] = {.lex_state = 138}, + [619] = {.lex_state = 140}, + [620] = {.lex_state = 138}, [621] = {.lex_state = 140}, - [622] = {.lex_state = 140}, - [623] = {.lex_state = 140}, + [622] = {.lex_state = 138}, + [623] = {.lex_state = 138}, [624] = {.lex_state = 140}, - [625] = {.lex_state = 140}, + [625] = {.lex_state = 138}, [626] = {.lex_state = 140}, [627] = {.lex_state = 140}, - [628] = {.lex_state = 140}, + [628] = {.lex_state = 138}, [629] = {.lex_state = 140}, - [630] = {.lex_state = 140}, - [631] = {.lex_state = 133}, - [632] = {.lex_state = 142}, - [633] = {.lex_state = 142}, - [634] = {.lex_state = 142}, - [635] = {.lex_state = 142}, + [630] = {.lex_state = 138}, + [631] = {.lex_state = 138}, + [632] = {.lex_state = 140}, + [633] = {.lex_state = 138}, + [634] = {.lex_state = 134}, + [635] = {.lex_state = 143}, [636] = {.lex_state = 143}, [637] = {.lex_state = 143}, - [638] = {.lex_state = 142}, - [639] = {.lex_state = 135}, - [640] = {.lex_state = 135}, - [641] = {.lex_state = 143}, - [642] = {.lex_state = 142}, - [643] = {.lex_state = 135}, - [644] = {.lex_state = 142}, - [645] = {.lex_state = 143}, + [638] = {.lex_state = 136}, + [639] = {.lex_state = 143}, + [640] = {.lex_state = 144}, + [641] = {.lex_state = 144}, + [642] = {.lex_state = 143}, + [643] = {.lex_state = 136}, + [644] = {.lex_state = 144}, + [645] = {.lex_state = 136}, [646] = {.lex_state = 143}, [647] = {.lex_state = 143}, - [648] = {.lex_state = 143}, - [649] = {.lex_state = 143}, - [650] = {.lex_state = 143}, - [651] = {.lex_state = 143}, - [652] = {.lex_state = 143}, - [653] = {.lex_state = 143}, - [654] = {.lex_state = 143}, - [655] = {.lex_state = 143}, - [656] = {.lex_state = 143}, - [657] = {.lex_state = 143}, - [658] = {.lex_state = 143}, - [659] = {.lex_state = 143}, - [660] = {.lex_state = 143}, - [661] = {.lex_state = 143}, - [662] = {.lex_state = 143}, - [663] = {.lex_state = 143}, - [664] = {.lex_state = 143}, - [665] = {.lex_state = 143}, - [666] = {.lex_state = 143}, - [667] = {.lex_state = 143}, - [668] = {.lex_state = 143}, - [669] = {.lex_state = 143}, - [670] = {.lex_state = 143}, - [671] = {.lex_state = 143}, - [672] = {.lex_state = 143}, - [673] = {.lex_state = 143}, - [674] = {.lex_state = 143}, - [675] = {.lex_state = 138}, - [676] = {.lex_state = 143}, - [677] = {.lex_state = 143}, + [648] = {.lex_state = 144}, + [649] = {.lex_state = 144}, + [650] = {.lex_state = 144}, + [651] = {.lex_state = 144}, + [652] = {.lex_state = 144}, + [653] = {.lex_state = 144}, + [654] = {.lex_state = 144}, + [655] = {.lex_state = 144}, + [656] = {.lex_state = 144}, + [657] = {.lex_state = 144}, + [658] = {.lex_state = 144}, + [659] = {.lex_state = 144}, + [660] = {.lex_state = 144}, + [661] = {.lex_state = 144}, + [662] = {.lex_state = 144}, + [663] = {.lex_state = 144}, + [664] = {.lex_state = 144}, + [665] = {.lex_state = 144}, + [666] = {.lex_state = 144}, + [667] = {.lex_state = 144}, + [668] = {.lex_state = 144}, + [669] = {.lex_state = 144}, + [670] = {.lex_state = 144}, + [671] = {.lex_state = 144}, + [672] = {.lex_state = 144}, + [673] = {.lex_state = 141}, + [674] = {.lex_state = 144}, + [675] = {.lex_state = 144}, + [676] = {.lex_state = 144}, + [677] = {.lex_state = 144}, [678] = {.lex_state = 144}, - [679] = {.lex_state = 143}, - [680] = {.lex_state = 143}, - [681] = {.lex_state = 139}, - [682] = {.lex_state = 144}, - [683] = {.lex_state = 143}, - [684] = {.lex_state = 143}, - [685] = {.lex_state = 139}, - [686] = {.lex_state = 143}, - [687] = {.lex_state = 139}, - [688] = {.lex_state = 143}, - [689] = {.lex_state = 143}, - [690] = {.lex_state = 143}, - [691] = {.lex_state = 139}, - [692] = {.lex_state = 139}, - [693] = {.lex_state = 143}, - [694] = {.lex_state = 143}, - [695] = {.lex_state = 143}, - [696] = {.lex_state = 143}, - [697] = {.lex_state = 139}, - [698] = {.lex_state = 143}, - [699] = {.lex_state = 143}, - [700] = {.lex_state = 144}, - [701] = {.lex_state = 143}, - [702] = {.lex_state = 138}, - [703] = {.lex_state = 138}, - [704] = {.lex_state = 139}, - [705] = {.lex_state = 138}, + [679] = {.lex_state = 141}, + [680] = {.lex_state = 144}, + [681] = {.lex_state = 144}, + [682] = {.lex_state = 145}, + [683] = {.lex_state = 144}, + [684] = {.lex_state = 138}, + [685] = {.lex_state = 141}, + [686] = {.lex_state = 145}, + [687] = {.lex_state = 144}, + [688] = {.lex_state = 144}, + [689] = {.lex_state = 144}, + [690] = {.lex_state = 141}, + [691] = {.lex_state = 141}, + [692] = {.lex_state = 144}, + [693] = {.lex_state = 144}, + [694] = {.lex_state = 144}, + [695] = {.lex_state = 144}, + [696] = {.lex_state = 144}, + [697] = {.lex_state = 144}, + [698] = {.lex_state = 144}, + [699] = {.lex_state = 144}, + [700] = {.lex_state = 141}, + [701] = {.lex_state = 144}, + [702] = {.lex_state = 144}, + [703] = {.lex_state = 144}, + [704] = {.lex_state = 144}, + [705] = {.lex_state = 144}, [706] = {.lex_state = 145}, - [707] = {.lex_state = 139}, - [708] = {.lex_state = 145}, - [709] = {.lex_state = 139}, - [710] = {.lex_state = 138}, - [711] = {.lex_state = 139}, + [707] = {.lex_state = 144}, + [708] = {.lex_state = 144}, + [709] = {.lex_state = 144}, + [710] = {.lex_state = 144}, + [711] = {.lex_state = 144}, [712] = {.lex_state = 144}, - [713] = {.lex_state = 145}, + [713] = {.lex_state = 144}, [714] = {.lex_state = 144}, [715] = {.lex_state = 144}, [716] = {.lex_state = 144}, - [717] = {.lex_state = 144}, - [718] = {.lex_state = 145}, - [719] = {.lex_state = 145}, - [720] = {.lex_state = 144}, + [717] = {.lex_state = 145}, + [718] = {.lex_state = 141}, + [719] = {.lex_state = 141}, + [720] = {.lex_state = 138}, [721] = {.lex_state = 145}, - [722] = {.lex_state = 145}, - [723] = {.lex_state = 144}, - [724] = {.lex_state = 135}, - [725] = {.lex_state = 144}, - [726] = {.lex_state = 135}, - [727] = {.lex_state = 144}, - [728] = {.lex_state = 144}, - [729] = {.lex_state = 144}, - [730] = {.lex_state = 144}, - [731] = {.lex_state = 144}, - [732] = {.lex_state = 135}, - [733] = {.lex_state = 144}, - [734] = {.lex_state = 144}, - [735] = {.lex_state = 144}, - [736] = {.lex_state = 144}, - [737] = {.lex_state = 144}, - [738] = {.lex_state = 144}, - [739] = {.lex_state = 144}, - [740] = {.lex_state = 144}, + [722] = {.lex_state = 144}, + [723] = {.lex_state = 138}, + [724] = {.lex_state = 141}, + [725] = {.lex_state = 141}, + [726] = {.lex_state = 144}, + [727] = {.lex_state = 141}, + [728] = {.lex_state = 138}, + [729] = {.lex_state = 138}, + [730] = {.lex_state = 145}, + [731] = {.lex_state = 136}, + [732] = {.lex_state = 145}, + [733] = {.lex_state = 145}, + [734] = {.lex_state = 145}, + [735] = {.lex_state = 145}, + [736] = {.lex_state = 145}, + [737] = {.lex_state = 145}, + [738] = {.lex_state = 145}, + [739] = {.lex_state = 145}, + [740] = {.lex_state = 145}, [741] = {.lex_state = 145}, - [742] = {.lex_state = 144}, - [743] = {.lex_state = 144}, - [744] = {.lex_state = 144}, - [745] = {.lex_state = 144}, - [746] = {.lex_state = 144}, - [747] = {.lex_state = 144}, + [742] = {.lex_state = 136}, + [743] = {.lex_state = 136}, + [744] = {.lex_state = 145}, + [745] = {.lex_state = 145}, + [746] = {.lex_state = 146}, + [747] = {.lex_state = 145}, [748] = {.lex_state = 145}, - [749] = {.lex_state = 144}, + [749] = {.lex_state = 145}, [750] = {.lex_state = 145}, - [751] = {.lex_state = 144}, - [752] = {.lex_state = 144}, - [753] = {.lex_state = 135}, - [754] = {.lex_state = 144}, - [755] = {.lex_state = 144}, - [756] = {.lex_state = 144}, - [757] = {.lex_state = 144}, + [751] = {.lex_state = 145}, + [752] = {.lex_state = 145}, + [753] = {.lex_state = 145}, + [754] = {.lex_state = 145}, + [755] = {.lex_state = 145}, + [756] = {.lex_state = 145}, + [757] = {.lex_state = 145}, [758] = {.lex_state = 145}, - [759] = {.lex_state = 144}, - [760] = {.lex_state = 144}, + [759] = {.lex_state = 145}, + [760] = {.lex_state = 145}, [761] = {.lex_state = 145}, - [762] = {.lex_state = 144}, - [763] = {.lex_state = 144}, - [764] = {.lex_state = 144}, - [765] = {.lex_state = 144}, - [766] = {.lex_state = 144}, - [767] = {.lex_state = 144}, - [768] = {.lex_state = 144}, - [769] = {.lex_state = 144}, - [770] = {.lex_state = 144}, - [771] = {.lex_state = 144}, - [772] = {.lex_state = 145}, - [773] = {.lex_state = 144}, - [774] = {.lex_state = 135}, - [775] = {.lex_state = 146}, - [776] = {.lex_state = 144}, - [777] = {.lex_state = 135}, - [778] = {.lex_state = 135}, - [779] = {.lex_state = 135}, - [780] = {.lex_state = 135}, - [781] = {.lex_state = 135}, - [782] = {.lex_state = 135}, - [783] = {.lex_state = 135}, - [784] = {.lex_state = 135}, - [785] = {.lex_state = 145}, - [786] = {.lex_state = 135}, - [787] = {.lex_state = 135}, - [788] = {.lex_state = 135}, - [789] = {.lex_state = 135}, - [790] = {.lex_state = 135}, - [791] = {.lex_state = 145}, - [792] = {.lex_state = 144}, - [793] = {.lex_state = 135}, - [794] = {.lex_state = 135}, - [795] = {.lex_state = 135}, - [796] = {.lex_state = 135}, - [797] = {.lex_state = 135}, - [798] = {.lex_state = 135}, - [799] = {.lex_state = 135}, - [800] = {.lex_state = 135}, - [801] = {.lex_state = 135}, - [802] = {.lex_state = 135}, - [803] = {.lex_state = 135}, - [804] = {.lex_state = 135}, - [805] = {.lex_state = 135}, - [806] = {.lex_state = 145}, - [807] = {.lex_state = 135}, - [808] = {.lex_state = 135}, - [809] = {.lex_state = 135}, - [810] = {.lex_state = 135}, - [811] = {.lex_state = 135}, - [812] = {.lex_state = 135}, - [813] = {.lex_state = 145}, - [814] = {.lex_state = 144}, - [815] = {.lex_state = 135}, - [816] = {.lex_state = 135}, - [817] = {.lex_state = 146}, - [818] = {.lex_state = 135}, - [819] = {.lex_state = 146}, - [820] = {.lex_state = 146}, - [821] = {.lex_state = 146}, - [822] = {.lex_state = 146}, - [823] = {.lex_state = 135}, - [824] = {.lex_state = 146}, - [825] = {.lex_state = 0}, - [826] = {.lex_state = 146}, - [827] = {.lex_state = 135}, - [828] = {.lex_state = 146}, - [829] = {.lex_state = 146}, - [830] = {.lex_state = 146}, - [831] = {.lex_state = 146}, - [832] = {.lex_state = 146}, - [833] = {.lex_state = 146}, - [834] = {.lex_state = 146}, - [835] = {.lex_state = 144}, - [836] = {.lex_state = 146}, - [837] = {.lex_state = 135}, - [838] = {.lex_state = 146}, - [839] = {.lex_state = 0}, - [840] = {.lex_state = 144}, + [762] = {.lex_state = 146}, + [763] = {.lex_state = 145}, + [764] = {.lex_state = 145}, + [765] = {.lex_state = 145}, + [766] = {.lex_state = 145}, + [767] = {.lex_state = 145}, + [768] = {.lex_state = 145}, + [769] = {.lex_state = 145}, + [770] = {.lex_state = 136}, + [771] = {.lex_state = 145}, + [772] = {.lex_state = 146}, + [773] = {.lex_state = 145}, + [774] = {.lex_state = 145}, + [775] = {.lex_state = 145}, + [776] = {.lex_state = 145}, + [777] = {.lex_state = 147}, + [778] = {.lex_state = 145}, + [779] = {.lex_state = 136}, + [780] = {.lex_state = 145}, + [781] = {.lex_state = 146}, + [782] = {.lex_state = 145}, + [783] = {.lex_state = 145}, + [784] = {.lex_state = 145}, + [785] = {.lex_state = 147}, + [786] = {.lex_state = 136}, + [787] = {.lex_state = 145}, + [788] = {.lex_state = 147}, + [789] = {.lex_state = 136}, + [790] = {.lex_state = 136}, + [791] = {.lex_state = 136}, + [792] = {.lex_state = 136}, + [793] = {.lex_state = 136}, + [794] = {.lex_state = 136}, + [795] = {.lex_state = 136}, + [796] = {.lex_state = 146}, + [797] = {.lex_state = 136}, + [798] = {.lex_state = 136}, + [799] = {.lex_state = 146}, + [800] = {.lex_state = 136}, + [801] = {.lex_state = 136}, + [802] = {.lex_state = 136}, + [803] = {.lex_state = 136}, + [804] = {.lex_state = 136}, + [805] = {.lex_state = 136}, + [806] = {.lex_state = 136}, + [807] = {.lex_state = 136}, + [808] = {.lex_state = 136}, + [809] = {.lex_state = 136}, + [810] = {.lex_state = 136}, + [811] = {.lex_state = 136}, + [812] = {.lex_state = 136}, + [813] = {.lex_state = 136}, + [814] = {.lex_state = 146}, + [815] = {.lex_state = 136}, + [816] = {.lex_state = 136}, + [817] = {.lex_state = 136}, + [818] = {.lex_state = 136}, + [819] = {.lex_state = 136}, + [820] = {.lex_state = 136}, + [821] = {.lex_state = 145}, + [822] = {.lex_state = 136}, + [823] = {.lex_state = 146}, + [824] = {.lex_state = 145}, + [825] = {.lex_state = 147}, + [826] = {.lex_state = 136}, + [827] = {.lex_state = 147}, + [828] = {.lex_state = 147}, + [829] = {.lex_state = 136}, + [830] = {.lex_state = 147}, + [831] = {.lex_state = 147}, + [832] = {.lex_state = 136}, + [833] = {.lex_state = 147}, + [834] = {.lex_state = 147}, + [835] = {.lex_state = 147}, + [836] = {.lex_state = 136}, + [837] = {.lex_state = 147}, + [838] = {.lex_state = 136}, + [839] = {.lex_state = 147}, + [840] = {.lex_state = 136}, [841] = {.lex_state = 0}, - [842] = {.lex_state = 135}, - [843] = {.lex_state = 132}, - [844] = {.lex_state = 0}, - [845] = {.lex_state = 144}, - [846] = {.lex_state = 0}, - [847] = {.lex_state = 0}, - [848] = {.lex_state = 0}, - [849] = {.lex_state = 145}, - [850] = {.lex_state = 0}, - [851] = {.lex_state = 0}, - [852] = {.lex_state = 0}, + [842] = {.lex_state = 147}, + [843] = {.lex_state = 147}, + [844] = {.lex_state = 147}, + [845] = {.lex_state = 147}, + [846] = {.lex_state = 147}, + [847] = {.lex_state = 145}, + [848] = {.lex_state = 147}, + [849] = {.lex_state = 0}, + [850] = {.lex_state = 147}, + [851] = {.lex_state = 146}, + [852] = {.lex_state = 145}, [853] = {.lex_state = 0}, - [854] = {.lex_state = 0}, - [855] = {.lex_state = 144}, - [856] = {.lex_state = 135}, - [857] = {.lex_state = 145}, - [858] = {.lex_state = 144}, + [854] = {.lex_state = 136}, + [855] = {.lex_state = 0}, + [856] = {.lex_state = 0}, + [857] = {.lex_state = 0}, + [858] = {.lex_state = 145}, [859] = {.lex_state = 0}, - [860] = {.lex_state = 146}, - [861] = {.lex_state = 0}, - [862] = {.lex_state = 135, .external_lex_state = 1}, - [863] = {.lex_state = 135, .external_lex_state = 1}, - [864] = {.lex_state = 135, .external_lex_state = 1}, - [865] = {.lex_state = 135, .external_lex_state = 1}, + [860] = {.lex_state = 0}, + [861] = {.lex_state = 145}, + [862] = {.lex_state = 0}, + [863] = {.lex_state = 0}, + [864] = {.lex_state = 0}, + [865] = {.lex_state = 145}, [866] = {.lex_state = 0}, - [867] = {.lex_state = 0}, - [868] = {.lex_state = 0}, - [869] = {.lex_state = 135}, - [870] = {.lex_state = 144}, - [871] = {.lex_state = 135, .external_lex_state = 1}, - [872] = {.lex_state = 146}, - [873] = {.lex_state = 135}, - [874] = {.lex_state = 135, .external_lex_state = 1}, - [875] = {.lex_state = 135, .external_lex_state = 1}, - [876] = {.lex_state = 0}, - [877] = {.lex_state = 135}, - [878] = {.lex_state = 135}, - [879] = {.lex_state = 135}, - [880] = {.lex_state = 146}, - [881] = {.lex_state = 135}, - [882] = {.lex_state = 135}, - [883] = {.lex_state = 135}, - [884] = {.lex_state = 135}, - [885] = {.lex_state = 144}, - [886] = {.lex_state = 135, .external_lex_state = 1}, - [887] = {.lex_state = 135, .external_lex_state = 1}, - [888] = {.lex_state = 146}, - [889] = {.lex_state = 135}, + [867] = {.lex_state = 146}, + [868] = {.lex_state = 136}, + [869] = {.lex_state = 0}, + [870] = {.lex_state = 133}, + [871] = {.lex_state = 0}, + [872] = {.lex_state = 0}, + [873] = {.lex_state = 147}, + [874] = {.lex_state = 147}, + [875] = {.lex_state = 146}, + [876] = {.lex_state = 136}, + [877] = {.lex_state = 136, .external_lex_state = 1}, + [878] = {.lex_state = 136, .external_lex_state = 1}, + [879] = {.lex_state = 136, .external_lex_state = 1}, + [880] = {.lex_state = 0}, + [881] = {.lex_state = 0}, + [882] = {.lex_state = 147}, + [883] = {.lex_state = 136}, + [884] = {.lex_state = 0}, + [885] = {.lex_state = 136}, + [886] = {.lex_state = 147}, + [887] = {.lex_state = 136, .external_lex_state = 1}, + [888] = {.lex_state = 136, .external_lex_state = 1}, + [889] = {.lex_state = 0}, [890] = {.lex_state = 0}, - [891] = {.lex_state = 0}, - [892] = {.lex_state = 135}, - [893] = {.lex_state = 145}, - [894] = {.lex_state = 144}, - [895] = {.lex_state = 0}, - [896] = {.lex_state = 0}, + [891] = {.lex_state = 136}, + [892] = {.lex_state = 147}, + [893] = {.lex_state = 136}, + [894] = {.lex_state = 136, .external_lex_state = 1}, + [895] = {.lex_state = 136, .external_lex_state = 1}, + [896] = {.lex_state = 136}, [897] = {.lex_state = 0}, - [898] = {.lex_state = 135}, + [898] = {.lex_state = 145}, [899] = {.lex_state = 0}, - [900] = {.lex_state = 135}, - [901] = {.lex_state = 146}, - [902] = {.lex_state = 0}, - [903] = {.lex_state = 146}, - [904] = {.lex_state = 135, .external_lex_state = 1}, - [905] = {.lex_state = 135, .external_lex_state = 1}, + [900] = {.lex_state = 136}, + [901] = {.lex_state = 0}, + [902] = {.lex_state = 145}, + [903] = {.lex_state = 0}, + [904] = {.lex_state = 0}, + [905] = {.lex_state = 136}, [906] = {.lex_state = 0}, - [907] = {.lex_state = 146}, - [908] = {.lex_state = 135}, - [909] = {.lex_state = 0}, - [910] = {.lex_state = 146}, - [911] = {.lex_state = 0}, - [912] = {.lex_state = 135}, - [913] = {.lex_state = 0}, - [914] = {.lex_state = 0}, + [907] = {.lex_state = 145}, + [908] = {.lex_state = 0}, + [909] = {.lex_state = 136}, + [910] = {.lex_state = 0}, + [911] = {.lex_state = 147}, + [912] = {.lex_state = 147}, + [913] = {.lex_state = 136}, + [914] = {.lex_state = 136}, [915] = {.lex_state = 0}, - [916] = {.lex_state = 135}, - [917] = {.lex_state = 135}, - [918] = {.lex_state = 0}, - [919] = {.lex_state = 0}, - [920] = {.lex_state = 0}, - [921] = {.lex_state = 132}, - [922] = {.lex_state = 0}, - [923] = {.lex_state = 132}, - [924] = {.lex_state = 0}, - [925] = {.lex_state = 0}, - [926] = {.lex_state = 146}, + [916] = {.lex_state = 147}, + [917] = {.lex_state = 136, .external_lex_state = 1}, + [918] = {.lex_state = 136, .external_lex_state = 1}, + [919] = {.lex_state = 136, .external_lex_state = 1}, + [920] = {.lex_state = 147}, + [921] = {.lex_state = 136, .external_lex_state = 1}, + [922] = {.lex_state = 147}, + [923] = {.lex_state = 136}, + [924] = {.lex_state = 136}, + [925] = {.lex_state = 136}, + [926] = {.lex_state = 0}, [927] = {.lex_state = 0}, - [928] = {.lex_state = 135}, + [928] = {.lex_state = 0}, [929] = {.lex_state = 0}, [930] = {.lex_state = 0}, [931] = {.lex_state = 0}, [932] = {.lex_state = 0}, [933] = {.lex_state = 0}, - [934] = {.lex_state = 0}, - [935] = {.lex_state = 0}, - [936] = {.lex_state = 0}, - [937] = {.lex_state = 132}, + [934] = {.lex_state = 147}, + [935] = {.lex_state = 136}, + [936] = {.lex_state = 141}, + [937] = {.lex_state = 0}, [938] = {.lex_state = 0}, [939] = {.lex_state = 0}, [940] = {.lex_state = 0}, - [941] = {.lex_state = 135}, + [941] = {.lex_state = 133}, [942] = {.lex_state = 0}, [943] = {.lex_state = 0}, [944] = {.lex_state = 0}, - [945] = {.lex_state = 0}, + [945] = {.lex_state = 133}, [946] = {.lex_state = 0}, [947] = {.lex_state = 0}, [948] = {.lex_state = 0}, @@ -5771,179 +5798,179 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [951] = {.lex_state = 0}, [952] = {.lex_state = 0}, [953] = {.lex_state = 0}, - [954] = {.lex_state = 132}, + [954] = {.lex_state = 0}, [955] = {.lex_state = 0}, - [956] = {.lex_state = 135}, + [956] = {.lex_state = 133}, [957] = {.lex_state = 0}, [958] = {.lex_state = 0}, - [959] = {.lex_state = 132}, + [959] = {.lex_state = 0}, [960] = {.lex_state = 0}, [961] = {.lex_state = 0}, - [962] = {.lex_state = 132}, + [962] = {.lex_state = 133}, [963] = {.lex_state = 0}, [964] = {.lex_state = 0}, [965] = {.lex_state = 0}, - [966] = {.lex_state = 132}, - [967] = {.lex_state = 135}, + [966] = {.lex_state = 133}, + [967] = {.lex_state = 133}, [968] = {.lex_state = 0}, - [969] = {.lex_state = 146}, + [969] = {.lex_state = 0}, [970] = {.lex_state = 0}, - [971] = {.lex_state = 132}, - [972] = {.lex_state = 132}, - [973] = {.lex_state = 132}, - [974] = {.lex_state = 135}, - [975] = {.lex_state = 0}, + [971] = {.lex_state = 133}, + [972] = {.lex_state = 0}, + [973] = {.lex_state = 136}, + [974] = {.lex_state = 0}, + [975] = {.lex_state = 133}, [976] = {.lex_state = 0}, - [977] = {.lex_state = 0}, + [977] = {.lex_state = 136}, [978] = {.lex_state = 0}, - [979] = {.lex_state = 152}, - [980] = {.lex_state = 135}, + [979] = {.lex_state = 133}, + [980] = {.lex_state = 0}, [981] = {.lex_state = 0}, [982] = {.lex_state = 0}, - [983] = {.lex_state = 0}, + [983] = {.lex_state = 136}, [984] = {.lex_state = 0}, - [985] = {.lex_state = 0}, - [986] = {.lex_state = 132}, + [985] = {.lex_state = 147}, + [986] = {.lex_state = 133}, [987] = {.lex_state = 0}, [988] = {.lex_state = 0}, [989] = {.lex_state = 0}, - [990] = {.lex_state = 0}, - [991] = {.lex_state = 146}, - [992] = {.lex_state = 0}, - [993] = {.lex_state = 0}, - [994] = {.lex_state = 132}, - [995] = {.lex_state = 0}, - [996] = {.lex_state = 152}, - [997] = {.lex_state = 139}, - [998] = {.lex_state = 132}, + [990] = {.lex_state = 133}, + [991] = {.lex_state = 0}, + [992] = {.lex_state = 133}, + [993] = {.lex_state = 136}, + [994] = {.lex_state = 0}, + [995] = {.lex_state = 133}, + [996] = {.lex_state = 0}, + [997] = {.lex_state = 0}, + [998] = {.lex_state = 153}, [999] = {.lex_state = 0}, - [1000] = {.lex_state = 0}, + [1000] = {.lex_state = 147}, [1001] = {.lex_state = 0}, - [1002] = {.lex_state = 0}, - [1003] = {.lex_state = 144}, + [1002] = {.lex_state = 136}, + [1003] = {.lex_state = 0}, [1004] = {.lex_state = 0}, [1005] = {.lex_state = 0}, [1006] = {.lex_state = 0}, [1007] = {.lex_state = 0}, - [1008] = {.lex_state = 0}, - [1009] = {.lex_state = 132}, - [1010] = {.lex_state = 152}, - [1011] = {.lex_state = 135}, + [1008] = {.lex_state = 145}, + [1009] = {.lex_state = 153}, + [1010] = {.lex_state = 0}, + [1011] = {.lex_state = 0}, [1012] = {.lex_state = 0}, - [1013] = {.lex_state = 0}, + [1013] = {.lex_state = 147}, [1014] = {.lex_state = 0}, [1015] = {.lex_state = 0}, - [1016] = {.lex_state = 132}, - [1017] = {.lex_state = 132}, - [1018] = {.lex_state = 132}, - [1019] = {.lex_state = 0}, + [1016] = {.lex_state = 0}, + [1017] = {.lex_state = 0}, + [1018] = {.lex_state = 0}, + [1019] = {.lex_state = 153}, [1020] = {.lex_state = 0}, - [1021] = {.lex_state = 146}, + [1021] = {.lex_state = 0}, [1022] = {.lex_state = 0}, - [1023] = {.lex_state = 0}, + [1023] = {.lex_state = 133}, [1024] = {.lex_state = 0}, [1025] = {.lex_state = 0}, [1026] = {.lex_state = 0}, [1027] = {.lex_state = 0}, - [1028] = {.lex_state = 146}, - [1029] = {.lex_state = 0}, - [1030] = {.lex_state = 0}, + [1028] = {.lex_state = 0}, + [1029] = {.lex_state = 133}, + [1030] = {.lex_state = 133}, [1031] = {.lex_state = 0}, - [1032] = {.lex_state = 146}, - [1033] = {.lex_state = 0}, + [1032] = {.lex_state = 0}, + [1033] = {.lex_state = 133}, [1034] = {.lex_state = 0}, [1035] = {.lex_state = 0}, - [1036] = {.lex_state = 0}, - [1037] = {.lex_state = 132}, - [1038] = {.lex_state = 0}, - [1039] = {.lex_state = 0}, - [1040] = {.lex_state = 146}, + [1036] = {.lex_state = 133}, + [1037] = {.lex_state = 133}, + [1038] = {.lex_state = 133}, + [1039] = {.lex_state = 147}, + [1040] = {.lex_state = 0}, [1041] = {.lex_state = 0}, - [1042] = {.lex_state = 0}, - [1043] = {.lex_state = 132}, + [1042] = {.lex_state = 133}, + [1043] = {.lex_state = 136}, [1044] = {.lex_state = 0}, - [1045] = {.lex_state = 152}, + [1045] = {.lex_state = 0}, [1046] = {.lex_state = 0}, - [1047] = {.lex_state = 132}, + [1047] = {.lex_state = 0}, [1048] = {.lex_state = 0}, - [1049] = {.lex_state = 0}, + [1049] = {.lex_state = 136}, [1050] = {.lex_state = 0}, [1051] = {.lex_state = 0}, - [1052] = {.lex_state = 0}, - [1053] = {.lex_state = 135}, - [1054] = {.lex_state = 0}, + [1052] = {.lex_state = 147}, + [1053] = {.lex_state = 0}, + [1054] = {.lex_state = 136}, [1055] = {.lex_state = 0}, - [1056] = {.lex_state = 0}, - [1057] = {.lex_state = 0}, + [1056] = {.lex_state = 136}, + [1057] = {.lex_state = 133}, [1058] = {.lex_state = 0}, [1059] = {.lex_state = 0}, [1060] = {.lex_state = 0}, [1061] = {.lex_state = 0}, [1062] = {.lex_state = 0}, - [1063] = {.lex_state = 132}, - [1064] = {.lex_state = 146}, - [1065] = {.lex_state = 146}, + [1063] = {.lex_state = 136}, + [1064] = {.lex_state = 0}, + [1065] = {.lex_state = 147}, [1066] = {.lex_state = 0}, [1067] = {.lex_state = 0}, - [1068] = {.lex_state = 146}, - [1069] = {.lex_state = 132}, + [1068] = {.lex_state = 0}, + [1069] = {.lex_state = 0}, [1070] = {.lex_state = 0}, - [1071] = {.lex_state = 146}, - [1072] = {.lex_state = 146}, + [1071] = {.lex_state = 0}, + [1072] = {.lex_state = 0}, [1073] = {.lex_state = 0}, - [1074] = {.lex_state = 0}, - [1075] = {.lex_state = 135}, - [1076] = {.lex_state = 146}, + [1074] = {.lex_state = 153}, + [1075] = {.lex_state = 0}, + [1076] = {.lex_state = 0}, [1077] = {.lex_state = 0}, - [1078] = {.lex_state = 0}, - [1079] = {.lex_state = 146}, - [1080] = {.lex_state = 0}, + [1078] = {.lex_state = 147}, + [1079] = {.lex_state = 147}, + [1080] = {.lex_state = 147}, [1081] = {.lex_state = 0}, [1082] = {.lex_state = 0}, - [1083] = {.lex_state = 146}, + [1083] = {.lex_state = 0}, [1084] = {.lex_state = 0}, - [1085] = {.lex_state = 146}, - [1086] = {.lex_state = 0}, - [1087] = {.lex_state = 146}, + [1085] = {.lex_state = 0}, + [1086] = {.lex_state = 147}, + [1087] = {.lex_state = 0}, [1088] = {.lex_state = 0}, [1089] = {.lex_state = 0}, - [1090] = {.lex_state = 146}, - [1091] = {.lex_state = 0}, - [1092] = {.lex_state = 135}, + [1090] = {.lex_state = 0}, + [1091] = {.lex_state = 147}, + [1092] = {.lex_state = 0}, [1093] = {.lex_state = 0}, - [1094] = {.lex_state = 0}, - [1095] = {.lex_state = 0}, - [1096] = {.lex_state = 132}, - [1097] = {.lex_state = 146}, - [1098] = {.lex_state = 132}, + [1094] = {.lex_state = 153}, + [1095] = {.lex_state = 147}, + [1096] = {.lex_state = 133}, + [1097] = {.lex_state = 0}, + [1098] = {.lex_state = 136}, [1099] = {.lex_state = 0}, - [1100] = {.lex_state = 0}, + [1100] = {.lex_state = 147}, [1101] = {.lex_state = 0}, [1102] = {.lex_state = 0}, [1103] = {.lex_state = 0}, [1104] = {.lex_state = 0}, - [1105] = {.lex_state = 0}, - [1106] = {.lex_state = 0}, - [1107] = {.lex_state = 0}, + [1105] = {.lex_state = 147}, + [1106] = {.lex_state = 147}, + [1107] = {.lex_state = 136}, [1108] = {.lex_state = 0}, [1109] = {.lex_state = 0}, [1110] = {.lex_state = 0}, [1111] = {.lex_state = 0}, - [1112] = {.lex_state = 152}, - [1113] = {.lex_state = 152}, - [1114] = {.lex_state = 0}, - [1115] = {.lex_state = 146}, + [1112] = {.lex_state = 0}, + [1113] = {.lex_state = 0}, + [1114] = {.lex_state = 133}, + [1115] = {.lex_state = 0}, [1116] = {.lex_state = 0}, [1117] = {.lex_state = 0}, [1118] = {.lex_state = 0}, [1119] = {.lex_state = 0}, [1120] = {.lex_state = 0}, [1121] = {.lex_state = 0}, - [1122] = {.lex_state = 146}, + [1122] = {.lex_state = 0}, [1123] = {.lex_state = 0}, - [1124] = {.lex_state = 146}, + [1124] = {.lex_state = 147}, [1125] = {.lex_state = 0}, - [1126] = {.lex_state = 152}, + [1126] = {.lex_state = 0}, [1127] = {.lex_state = 0}, [1128] = {.lex_state = 0}, [1129] = {.lex_state = 0}, @@ -5952,57 +5979,57 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1132] = {.lex_state = 0}, [1133] = {.lex_state = 0}, [1134] = {.lex_state = 0}, - [1135] = {.lex_state = 146}, - [1136] = {.lex_state = 152}, - [1137] = {.lex_state = 146}, + [1135] = {.lex_state = 153}, + [1136] = {.lex_state = 0}, + [1137] = {.lex_state = 153}, [1138] = {.lex_state = 0}, [1139] = {.lex_state = 0}, - [1140] = {.lex_state = 0}, - [1141] = {.lex_state = 135}, + [1140] = {.lex_state = 133}, + [1141] = {.lex_state = 147}, [1142] = {.lex_state = 0}, [1143] = {.lex_state = 0}, [1144] = {.lex_state = 0}, [1145] = {.lex_state = 0}, - [1146] = {.lex_state = 146}, - [1147] = {.lex_state = 146}, + [1146] = {.lex_state = 153}, + [1147] = {.lex_state = 0}, [1148] = {.lex_state = 0}, [1149] = {.lex_state = 0}, [1150] = {.lex_state = 0}, - [1151] = {.lex_state = 0}, + [1151] = {.lex_state = 147}, [1152] = {.lex_state = 0}, - [1153] = {.lex_state = 152}, + [1153] = {.lex_state = 0}, [1154] = {.lex_state = 0}, [1155] = {.lex_state = 0}, - [1156] = {.lex_state = 146}, - [1157] = {.lex_state = 152}, - [1158] = {.lex_state = 135}, - [1159] = {.lex_state = 146}, - [1160] = {.lex_state = 0}, + [1156] = {.lex_state = 147}, + [1157] = {.lex_state = 0}, + [1158] = {.lex_state = 0}, + [1159] = {.lex_state = 0}, + [1160] = {.lex_state = 136}, [1161] = {.lex_state = 0}, - [1162] = {.lex_state = 0}, + [1162] = {.lex_state = 147}, [1163] = {.lex_state = 0}, [1164] = {.lex_state = 0}, [1165] = {.lex_state = 0}, [1166] = {.lex_state = 0}, - [1167] = {.lex_state = 0}, - [1168] = {.lex_state = 0}, - [1169] = {.lex_state = 0}, + [1167] = {.lex_state = 147}, + [1168] = {.lex_state = 147}, + [1169] = {.lex_state = 153}, [1170] = {.lex_state = 0}, - [1171] = {.lex_state = 0}, - [1172] = {.lex_state = 0}, - [1173] = {.lex_state = 146}, - [1174] = {.lex_state = 0}, - [1175] = {.lex_state = 146}, - [1176] = {.lex_state = 146}, + [1171] = {.lex_state = 147}, + [1172] = {.lex_state = 147}, + [1173] = {.lex_state = 0}, + [1174] = {.lex_state = 153}, + [1175] = {.lex_state = 133}, + [1176] = {.lex_state = 0}, [1177] = {.lex_state = 0}, [1178] = {.lex_state = 0}, [1179] = {.lex_state = 0}, - [1180] = {.lex_state = 132}, - [1181] = {.lex_state = 0}, - [1182] = {.lex_state = 132}, - [1183] = {.lex_state = 0}, - [1184] = {.lex_state = 0}, - [1185] = {.lex_state = 146}, + [1180] = {.lex_state = 0}, + [1181] = {.lex_state = 136}, + [1182] = {.lex_state = 147}, + [1183] = {.lex_state = 147}, + [1184] = {.lex_state = 147}, + [1185] = {.lex_state = 0}, [1186] = {.lex_state = 0}, [1187] = {.lex_state = 0}, [1188] = {.lex_state = 0}, @@ -6011,29 +6038,29 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1191] = {.lex_state = 0}, [1192] = {.lex_state = 0}, [1193] = {.lex_state = 0}, - [1194] = {.lex_state = 0}, + [1194] = {.lex_state = 147}, [1195] = {.lex_state = 0}, - [1196] = {.lex_state = 0}, - [1197] = {.lex_state = 0}, - [1198] = {.lex_state = 0}, + [1196] = {.lex_state = 147}, + [1197] = {.lex_state = 147}, + [1198] = {.lex_state = 133}, [1199] = {.lex_state = 0}, [1200] = {.lex_state = 0}, - [1201] = {.lex_state = 0}, + [1201] = {.lex_state = 133}, [1202] = {.lex_state = 0}, [1203] = {.lex_state = 0}, - [1204] = {.lex_state = 0}, + [1204] = {.lex_state = 147}, [1205] = {.lex_state = 0}, [1206] = {.lex_state = 0}, [1207] = {.lex_state = 0}, - [1208] = {.lex_state = 132}, + [1208] = {.lex_state = 133}, [1209] = {.lex_state = 0}, [1210] = {.lex_state = 0}, - [1211] = {.lex_state = 0}, + [1211] = {.lex_state = 133}, [1212] = {.lex_state = 0}, [1213] = {.lex_state = 0}, [1214] = {.lex_state = 0}, [1215] = {.lex_state = 0}, - [1216] = {.lex_state = 132}, + [1216] = {.lex_state = 0}, [1217] = {.lex_state = 0}, [1218] = {.lex_state = 0}, [1219] = {.lex_state = 0}, @@ -6043,81 +6070,102 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1223] = {.lex_state = 0}, [1224] = {.lex_state = 0}, [1225] = {.lex_state = 0}, - [1226] = {.lex_state = 132}, + [1226] = {.lex_state = 0}, [1227] = {.lex_state = 0}, - [1228] = {.lex_state = 0}, + [1228] = {.lex_state = 133}, [1229] = {.lex_state = 0}, [1230] = {.lex_state = 0}, [1231] = {.lex_state = 0}, - [1232] = {.lex_state = 132}, - [1233] = {.lex_state = 132}, + [1232] = {.lex_state = 0}, + [1233] = {.lex_state = 133}, [1234] = {.lex_state = 0}, - [1235] = {.lex_state = 0}, - [1236] = {.lex_state = 132}, + [1235] = {.lex_state = 133}, + [1236] = {.lex_state = 0}, [1237] = {.lex_state = 0}, [1238] = {.lex_state = 0}, - [1239] = {.lex_state = 0}, + [1239] = {.lex_state = 133}, [1240] = {.lex_state = 0}, [1241] = {.lex_state = 0}, [1242] = {.lex_state = 0}, - [1243] = {.lex_state = 132}, + [1243] = {.lex_state = 0}, [1244] = {.lex_state = 0}, [1245] = {.lex_state = 0}, [1246] = {.lex_state = 0}, [1247] = {.lex_state = 0}, - [1248] = {.lex_state = 0}, + [1248] = {.lex_state = 136}, [1249] = {.lex_state = 0}, [1250] = {.lex_state = 0}, [1251] = {.lex_state = 0}, [1252] = {.lex_state = 0}, [1253] = {.lex_state = 0}, - [1254] = {.lex_state = 135}, - [1255] = {.lex_state = 146}, + [1254] = {.lex_state = 133}, + [1255] = {.lex_state = 0}, [1256] = {.lex_state = 0}, - [1257] = {.lex_state = 0}, - [1258] = {.lex_state = 0}, + [1257] = {.lex_state = 133}, + [1258] = {.lex_state = 133}, [1259] = {.lex_state = 0}, [1260] = {.lex_state = 0}, - [1261] = {.lex_state = 135}, + [1261] = {.lex_state = 0}, [1262] = {.lex_state = 0}, [1263] = {.lex_state = 0}, [1264] = {.lex_state = 0}, - [1265] = {.lex_state = 135}, + [1265] = {.lex_state = 0}, [1266] = {.lex_state = 0}, [1267] = {.lex_state = 0}, - [1268] = {.lex_state = 132}, + [1268] = {.lex_state = 0}, [1269] = {.lex_state = 0}, [1270] = {.lex_state = 0}, [1271] = {.lex_state = 0}, [1272] = {.lex_state = 0}, - [1273] = {.lex_state = 132}, + [1273] = {.lex_state = 0}, [1274] = {.lex_state = 0}, - [1275] = {.lex_state = 0}, + [1275] = {.lex_state = 136}, [1276] = {.lex_state = 0}, [1277] = {.lex_state = 0}, [1278] = {.lex_state = 0}, [1279] = {.lex_state = 0}, [1280] = {.lex_state = 0}, [1281] = {.lex_state = 0}, - [1282] = {.lex_state = 146}, - [1283] = {.lex_state = 132}, + [1282] = {.lex_state = 136}, + [1283] = {.lex_state = 147}, [1284] = {.lex_state = 0}, - [1285] = {.lex_state = 132}, - [1286] = {.lex_state = 132}, + [1285] = {.lex_state = 0}, + [1286] = {.lex_state = 136}, [1287] = {.lex_state = 0}, - [1288] = {.lex_state = 135}, + [1288] = {.lex_state = 0}, [1289] = {.lex_state = 0}, [1290] = {.lex_state = 0}, - [1291] = {.lex_state = 132}, + [1291] = {.lex_state = 0}, [1292] = {.lex_state = 0}, [1293] = {.lex_state = 0}, - [1294] = {.lex_state = 132}, + [1294] = {.lex_state = 0}, [1295] = {.lex_state = 0}, [1296] = {.lex_state = 0}, [1297] = {.lex_state = 0}, [1298] = {.lex_state = 0}, - [1299] = {.lex_state = 132}, + [1299] = {.lex_state = 147}, [1300] = {.lex_state = 0}, + [1301] = {.lex_state = 0}, + [1302] = {.lex_state = 133}, + [1303] = {.lex_state = 133}, + [1304] = {.lex_state = 0}, + [1305] = {.lex_state = 133}, + [1306] = {.lex_state = 0}, + [1307] = {.lex_state = 133}, + [1308] = {.lex_state = 0}, + [1309] = {.lex_state = 0}, + [1310] = {.lex_state = 0}, + [1311] = {.lex_state = 0}, + [1312] = {.lex_state = 133}, + [1313] = {.lex_state = 0}, + [1314] = {.lex_state = 0}, + [1315] = {.lex_state = 133}, + [1316] = {.lex_state = 0}, + [1317] = {.lex_state = 0}, + [1318] = {.lex_state = 0}, + [1319] = {.lex_state = 0}, + [1320] = {.lex_state = 0}, + [1321] = {.lex_state = 0}, }; enum { @@ -6162,10 +6210,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(1), [anon_sym_DASH] = ACTIONS(1), [anon_sym_size] = ACTIONS(1), - [anon_sym_external] = ACTIONS(1), - [anon_sym_type] = ACTIONS(1), [anon_sym_fn] = ACTIONS(1), [anon_sym_DASH_GT] = ACTIONS(1), + [anon_sym_external] = ACTIONS(1), + [anon_sym_type] = ACTIONS(1), [anon_sym_try] = ACTIONS(1), [anon_sym_PIPE_PIPE] = ACTIONS(1), [anon_sym_AMP_AMP] = ACTIONS(1), @@ -6228,7 +6276,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_quoted_content] = ACTIONS(1), }, [1] = { - [sym_source_file] = STATE(1248), + [sym_source_file] = STATE(1269), [sym__statement] = STATE(2), [sym_target_group] = STATE(2), [sym_import] = STATE(2), @@ -6237,33 +6285,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_external_function] = STATE(2), [sym_function] = STATE(2), [aux_sym__expression_seq] = STATE(5), - [sym_try] = STATE(485), - [sym__expression] = STATE(99), - [sym_binary_expression] = STATE(99), - [sym__expression_unit] = STATE(99), - [sym_record] = STATE(33), - [sym_todo] = STATE(99), - [sym_tuple] = STATE(40), - [sym_list] = STATE(99), - [sym__expression_bit_string] = STATE(99), + [sym_try] = STATE(487), + [sym__expression] = STATE(56), + [sym_binary_expression] = STATE(56), + [sym__expression_unit] = STATE(56), + [sym_record] = STATE(34), + [sym_todo] = STATE(56), + [sym_tuple] = STATE(29), + [sym_list] = STATE(56), + [sym__expression_bit_string] = STATE(56), [sym_anonymous_function] = STATE(31), [sym_expression_group] = STATE(8), [sym_case] = STATE(8), - [sym_let] = STATE(99), - [sym_assert] = STATE(99), - [sym_negation] = STATE(99), - [sym_record_update] = STATE(33), - [sym__maybe_tuple_expression] = STATE(1242), + [sym_let] = STATE(56), + [sym_assert] = STATE(56), + [sym_negation] = STATE(56), + [sym_record_update] = STATE(34), + [sym__maybe_tuple_expression] = STATE(1267), [sym_tuple_access] = STATE(8), - [sym__maybe_record_expression] = STATE(1241), + [sym__maybe_record_expression] = STATE(1265), [sym_field_access] = STATE(8), - [sym__maybe_function_expression] = STATE(1131), + [sym__maybe_function_expression] = STATE(1145), [sym_function_call] = STATE(8), [sym_type_definition] = STATE(2), [sym_type_alias] = STATE(2), - [sym_string] = STATE(99), - [sym_integer] = STATE(99), - [sym_identifier] = STATE(25), + [sym_string] = STATE(56), + [sym_integer] = STATE(56), + [sym_identifier] = STATE(27), [sym_constructor_name] = STATE(6), [sym_remote_constructor_name] = STATE(6), [aux_sym_source_file_repeat1] = STATE(2), @@ -6279,9 +6327,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(19), [anon_sym_LT_LT] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(23), - [anon_sym_external] = ACTIONS(25), - [anon_sym_type] = ACTIONS(27), - [anon_sym_fn] = ACTIONS(29), + [anon_sym_fn] = ACTIONS(25), + [anon_sym_external] = ACTIONS(27), + [anon_sym_type] = ACTIONS(29), [anon_sym_try] = ACTIONS(31), [anon_sym_todo] = ACTIONS(33), [anon_sym_case] = ACTIONS(35), @@ -6308,33 +6356,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_external_function] = STATE(3), [sym_function] = STATE(3), [aux_sym__expression_seq] = STATE(5), - [sym_try] = STATE(485), - [sym__expression] = STATE(99), - [sym_binary_expression] = STATE(99), - [sym__expression_unit] = STATE(99), - [sym_record] = STATE(33), - [sym_todo] = STATE(99), - [sym_tuple] = STATE(40), - [sym_list] = STATE(99), - [sym__expression_bit_string] = STATE(99), + [sym_try] = STATE(487), + [sym__expression] = STATE(56), + [sym_binary_expression] = STATE(56), + [sym__expression_unit] = STATE(56), + [sym_record] = STATE(34), + [sym_todo] = STATE(56), + [sym_tuple] = STATE(29), + [sym_list] = STATE(56), + [sym__expression_bit_string] = STATE(56), [sym_anonymous_function] = STATE(31), [sym_expression_group] = STATE(8), [sym_case] = STATE(8), - [sym_let] = STATE(99), - [sym_assert] = STATE(99), - [sym_negation] = STATE(99), - [sym_record_update] = STATE(33), - [sym__maybe_tuple_expression] = STATE(1242), + [sym_let] = STATE(56), + [sym_assert] = STATE(56), + [sym_negation] = STATE(56), + [sym_record_update] = STATE(34), + [sym__maybe_tuple_expression] = STATE(1267), [sym_tuple_access] = STATE(8), - [sym__maybe_record_expression] = STATE(1241), + [sym__maybe_record_expression] = STATE(1265), [sym_field_access] = STATE(8), - [sym__maybe_function_expression] = STATE(1131), + [sym__maybe_function_expression] = STATE(1145), [sym_function_call] = STATE(8), [sym_type_definition] = STATE(3), [sym_type_alias] = STATE(3), - [sym_string] = STATE(99), - [sym_integer] = STATE(99), - [sym_identifier] = STATE(25), + [sym_string] = STATE(56), + [sym_integer] = STATE(56), + [sym_identifier] = STATE(27), [sym_constructor_name] = STATE(6), [sym_remote_constructor_name] = STATE(6), [aux_sym_source_file_repeat1] = STATE(3), @@ -6350,9 +6398,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(19), [anon_sym_LT_LT] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(23), - [anon_sym_external] = ACTIONS(25), - [anon_sym_type] = ACTIONS(27), - [anon_sym_fn] = ACTIONS(29), + [anon_sym_fn] = ACTIONS(25), + [anon_sym_external] = ACTIONS(27), + [anon_sym_type] = ACTIONS(29), [anon_sym_try] = ACTIONS(31), [anon_sym_todo] = ACTIONS(33), [anon_sym_case] = ACTIONS(35), @@ -6379,33 +6427,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_external_function] = STATE(3), [sym_function] = STATE(3), [aux_sym__expression_seq] = STATE(5), - [sym_try] = STATE(485), - [sym__expression] = STATE(99), - [sym_binary_expression] = STATE(99), - [sym__expression_unit] = STATE(99), - [sym_record] = STATE(33), - [sym_todo] = STATE(99), - [sym_tuple] = STATE(40), - [sym_list] = STATE(99), - [sym__expression_bit_string] = STATE(99), + [sym_try] = STATE(487), + [sym__expression] = STATE(56), + [sym_binary_expression] = STATE(56), + [sym__expression_unit] = STATE(56), + [sym_record] = STATE(34), + [sym_todo] = STATE(56), + [sym_tuple] = STATE(29), + [sym_list] = STATE(56), + [sym__expression_bit_string] = STATE(56), [sym_anonymous_function] = STATE(31), [sym_expression_group] = STATE(8), [sym_case] = STATE(8), - [sym_let] = STATE(99), - [sym_assert] = STATE(99), - [sym_negation] = STATE(99), - [sym_record_update] = STATE(33), - [sym__maybe_tuple_expression] = STATE(1242), + [sym_let] = STATE(56), + [sym_assert] = STATE(56), + [sym_negation] = STATE(56), + [sym_record_update] = STATE(34), + [sym__maybe_tuple_expression] = STATE(1267), [sym_tuple_access] = STATE(8), - [sym__maybe_record_expression] = STATE(1241), + [sym__maybe_record_expression] = STATE(1265), [sym_field_access] = STATE(8), - [sym__maybe_function_expression] = STATE(1131), + [sym__maybe_function_expression] = STATE(1145), [sym_function_call] = STATE(8), [sym_type_definition] = STATE(3), [sym_type_alias] = STATE(3), - [sym_string] = STATE(99), - [sym_integer] = STATE(99), - [sym_identifier] = STATE(25), + [sym_string] = STATE(56), + [sym_integer] = STATE(56), + [sym_identifier] = STATE(27), [sym_constructor_name] = STATE(6), [sym_remote_constructor_name] = STATE(6), [aux_sym_source_file_repeat1] = STATE(3), @@ -6421,9 +6469,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(78), [anon_sym_LT_LT] = ACTIONS(81), [anon_sym_DASH] = ACTIONS(84), - [anon_sym_external] = ACTIONS(87), - [anon_sym_type] = ACTIONS(90), - [anon_sym_fn] = ACTIONS(93), + [anon_sym_fn] = ACTIONS(87), + [anon_sym_external] = ACTIONS(90), + [anon_sym_type] = ACTIONS(93), [anon_sym_try] = ACTIONS(96), [anon_sym_todo] = ACTIONS(99), [anon_sym_case] = ACTIONS(102), @@ -6485,19 +6533,19 @@ static const uint16_t ts_small_parse_table[] = { sym__upname, STATE(4), 1, aux_sym__expression_seq, - STATE(25), 1, + STATE(27), 1, sym_identifier, + STATE(29), 1, + sym_tuple, STATE(31), 1, sym_anonymous_function, - STATE(40), 1, - sym_tuple, - STATE(485), 1, + STATE(487), 1, sym_try, - STATE(1131), 1, + STATE(1145), 1, sym__maybe_function_expression, - STATE(1241), 1, + STATE(1265), 1, sym__maybe_record_expression, - STATE(1242), 1, + STATE(1267), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -6505,7 +6553,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(6), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(33), 2, + STATE(34), 2, sym_record, sym_record_update, ACTIONS(184), 3, @@ -6526,7 +6574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, sym_visibility_modifier, sym_opacity_modifier, - STATE(99), 11, + STATE(56), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -6579,19 +6627,19 @@ static const uint16_t ts_small_parse_table[] = { sym__upname, STATE(4), 1, aux_sym__expression_seq, - STATE(25), 1, + STATE(27), 1, sym_identifier, + STATE(29), 1, + sym_tuple, STATE(31), 1, sym_anonymous_function, - STATE(40), 1, - sym_tuple, - STATE(485), 1, + STATE(487), 1, sym_try, - STATE(1131), 1, + STATE(1145), 1, sym__maybe_function_expression, - STATE(1241), 1, + STATE(1265), 1, sym__maybe_record_expression, - STATE(1242), 1, + STATE(1267), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -6599,7 +6647,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(6), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(33), 2, + STATE(34), 2, sym_record, sym_record_update, ACTIONS(242), 3, @@ -6620,7 +6668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, sym_visibility_modifier, sym_opacity_modifier, - STATE(99), 11, + STATE(56), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -6637,7 +6685,7 @@ static const uint16_t ts_small_parse_table[] = { sym_module_comment, ACTIONS(258), 1, anon_sym_LPAREN, - STATE(35), 1, + STATE(37), 1, sym_arguments, ACTIONS(5), 2, sym_statement_comment, @@ -6648,9 +6696,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_LT, anon_sym_LT_EQ, @@ -6694,84 +6742,115 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [324] = 4, + [324] = 35, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(262), 24, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_const, + ACTIONS(260), 1, + anon_sym_LBRACE, + ACTIONS(262), 1, + anon_sym_POUND, + ACTIONS(264), 1, + anon_sym_RPAREN, + ACTIONS(266), 1, + anon_sym_LBRACK, + ACTIONS(268), 1, + anon_sym_LT_LT, + ACTIONS(270), 1, anon_sym_DASH, - anon_sym_external, - anon_sym_type, + ACTIONS(272), 1, anon_sym_fn, - anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(274), 1, anon_sym_todo, + ACTIONS(276), 1, + anon_sym_DOT_DOT, + ACTIONS(278), 1, anon_sym_case, + ACTIONS(280), 1, anon_sym_let, + ACTIONS(282), 1, anon_sym_assert, + ACTIONS(284), 1, anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(260), 27, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, + ACTIONS(286), 1, anon_sym_DQUOTE, + ACTIONS(288), 1, sym_float, + ACTIONS(292), 1, + sym__decimal, + ACTIONS(294), 1, + sym__discard_name, + ACTIONS(296), 1, + sym__name, + ACTIONS(298), 1, + sym__upname, + STATE(366), 1, + sym_identifier, + STATE(387), 1, + sym_tuple, + STATE(388), 1, + sym_anonymous_function, + STATE(963), 1, + sym_argument, + STATE(1143), 1, + sym_hole, + STATE(1149), 1, + sym__maybe_function_expression, + STATE(1220), 1, + sym_label, + STATE(1259), 1, + sym__maybe_tuple_expression, + STATE(1262), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(360), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(386), 2, + sym_record, + sym_record_update, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [387] = 6, + STATE(368), 5, + sym_expression_group, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(603), 11, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_list, + sym__expression_bit_string, + sym_let, + sym_assert, + sym_negation, + sym_string, + sym_integer, + [449] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(268), 1, + ACTIONS(304), 1, anon_sym_DOT, - ACTIONS(271), 1, + ACTIONS(307), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(266), 24, + ACTIONS(302), 24, anon_sym_if, anon_sym_import, anon_sym_SLASH, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_LT, anon_sym_LT_EQ, @@ -6788,7 +6867,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(264), 25, + ACTIONS(300), 25, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -6814,21 +6893,21 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [454] = 4, + [516] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(275), 24, + ACTIONS(311), 24, anon_sym_if, anon_sym_import, anon_sym_SLASH, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_LT, anon_sym_LT_EQ, @@ -6845,7 +6924,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(273), 27, + ACTIONS(309), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_DOT, @@ -6873,21 +6952,21 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [517] = 4, + [579] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(279), 24, + ACTIONS(315), 24, anon_sym_if, anon_sym_import, anon_sym_SLASH, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_LT, anon_sym_LT_EQ, @@ -6904,7 +6983,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(277), 27, + ACTIONS(313), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_DOT, @@ -6932,85 +7011,85 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [580] = 35, + [642] = 35, ACTIONS(3), 1, sym_module_comment, - ACTIONS(281), 1, + ACTIONS(260), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(262), 1, anon_sym_POUND, - ACTIONS(285), 1, - anon_sym_RPAREN, - ACTIONS(287), 1, + ACTIONS(266), 1, anon_sym_LBRACK, - ACTIONS(289), 1, + ACTIONS(268), 1, anon_sym_LT_LT, - ACTIONS(291), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(272), 1, anon_sym_fn, - ACTIONS(295), 1, + ACTIONS(274), 1, anon_sym_todo, - ACTIONS(297), 1, - anon_sym_DOT_DOT, - ACTIONS(299), 1, + ACTIONS(278), 1, anon_sym_case, - ACTIONS(301), 1, + ACTIONS(280), 1, anon_sym_let, - ACTIONS(303), 1, + ACTIONS(282), 1, anon_sym_assert, - ACTIONS(305), 1, + ACTIONS(284), 1, anon_sym_BANG, - ACTIONS(307), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(309), 1, + ACTIONS(288), 1, sym_float, - ACTIONS(313), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(315), 1, + ACTIONS(294), 1, sym__discard_name, - ACTIONS(317), 1, + ACTIONS(296), 1, sym__name, - ACTIONS(319), 1, + ACTIONS(298), 1, sym__upname, - STATE(375), 1, + ACTIONS(317), 1, + anon_sym_RPAREN, + ACTIONS(319), 1, + anon_sym_DOT_DOT, + STATE(366), 1, sym_identifier, + STATE(387), 1, + sym_tuple, STATE(388), 1, sym_anonymous_function, - STATE(397), 1, - sym_tuple, - STATE(948), 1, + STATE(1059), 1, sym_argument, - STATE(1108), 1, + STATE(1143), 1, sym_hole, - STATE(1128), 1, + STATE(1149), 1, sym__maybe_function_expression, - STATE(1195), 1, - sym__maybe_record_expression, - STATE(1247), 1, - sym__maybe_tuple_expression, - STATE(1256), 1, + STATE(1220), 1, sym_label, + STATE(1259), 1, + sym__maybe_tuple_expression, + STATE(1262), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(357), 2, + STATE(360), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(398), 2, + STATE(386), 2, sym_record, sym_record_update, - ACTIONS(311), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, + STATE(368), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(583), 11, + STATE(603), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -7022,21 +7101,139 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [705] = 4, + [767] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(323), 24, + ACTIONS(323), 19, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_fn, + anon_sym_try, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(321), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_POUND, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DOT_DOT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [830] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(327), 24, anon_sym_if, anon_sym_import, anon_sym_SLASH, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, + anon_sym_try, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + ACTIONS(325), 27, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [893] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(331), 24, + anon_sym_if, + anon_sym_import, + anon_sym_SLASH, + anon_sym_const, + anon_sym_DASH, anon_sym_fn, + anon_sym_external, + anon_sym_type, anon_sym_try, anon_sym_LT, anon_sym_LT_EQ, @@ -7053,7 +7250,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(321), 27, + ACTIONS(329), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_DOT, @@ -7081,175 +7278,85 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [768] = 35, + [956] = 35, ACTIONS(3), 1, sym_module_comment, - ACTIONS(281), 1, + ACTIONS(260), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(262), 1, anon_sym_POUND, - ACTIONS(287), 1, + ACTIONS(266), 1, anon_sym_LBRACK, - ACTIONS(289), 1, + ACTIONS(268), 1, anon_sym_LT_LT, - ACTIONS(291), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(272), 1, anon_sym_fn, - ACTIONS(295), 1, + ACTIONS(274), 1, anon_sym_todo, - ACTIONS(299), 1, + ACTIONS(278), 1, anon_sym_case, - ACTIONS(301), 1, + ACTIONS(280), 1, anon_sym_let, - ACTIONS(303), 1, + ACTIONS(282), 1, anon_sym_assert, - ACTIONS(305), 1, + ACTIONS(284), 1, anon_sym_BANG, - ACTIONS(307), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(309), 1, + ACTIONS(288), 1, sym_float, - ACTIONS(313), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(315), 1, + ACTIONS(294), 1, sym__discard_name, - ACTIONS(317), 1, + ACTIONS(296), 1, sym__name, - ACTIONS(319), 1, + ACTIONS(298), 1, sym__upname, - ACTIONS(325), 1, + ACTIONS(333), 1, anon_sym_RPAREN, - ACTIONS(327), 1, + ACTIONS(335), 1, anon_sym_DOT_DOT, - STATE(375), 1, + STATE(366), 1, sym_identifier, - STATE(388), 1, - sym_anonymous_function, - STATE(397), 1, + STATE(387), 1, sym_tuple, - STATE(1039), 1, - sym_argument, - STATE(1108), 1, - sym_hole, - STATE(1128), 1, - sym__maybe_function_expression, - STATE(1195), 1, - sym__maybe_record_expression, - STATE(1247), 1, - sym__maybe_tuple_expression, - STATE(1256), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(357), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(398), 2, - sym_record, - sym_record_update, - ACTIONS(311), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(374), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(583), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [893] = 35, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(281), 1, - anon_sym_LBRACE, - ACTIONS(283), 1, - anon_sym_POUND, - ACTIONS(287), 1, - anon_sym_LBRACK, - ACTIONS(289), 1, - anon_sym_LT_LT, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_fn, - ACTIONS(295), 1, - anon_sym_todo, - ACTIONS(299), 1, - anon_sym_case, - ACTIONS(301), 1, - anon_sym_let, - ACTIONS(303), 1, - anon_sym_assert, - ACTIONS(305), 1, - anon_sym_BANG, - ACTIONS(307), 1, - anon_sym_DQUOTE, - ACTIONS(309), 1, - sym_float, - ACTIONS(313), 1, - sym__decimal, - ACTIONS(315), 1, - sym__discard_name, - ACTIONS(317), 1, - sym__name, - ACTIONS(319), 1, - sym__upname, - ACTIONS(329), 1, - anon_sym_RPAREN, - ACTIONS(331), 1, - anon_sym_DOT_DOT, - STATE(375), 1, - sym_identifier, STATE(388), 1, sym_anonymous_function, - STATE(397), 1, - sym_tuple, - STATE(978), 1, + STATE(989), 1, sym_argument, - STATE(1108), 1, + STATE(1143), 1, sym_hole, - STATE(1128), 1, + STATE(1149), 1, sym__maybe_function_expression, - STATE(1195), 1, - sym__maybe_record_expression, - STATE(1247), 1, - sym__maybe_tuple_expression, - STATE(1256), 1, + STATE(1220), 1, sym_label, + STATE(1259), 1, + sym__maybe_tuple_expression, + STATE(1262), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(357), 2, + STATE(360), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(398), 2, + STATE(386), 2, sym_record, sym_record_update, - ACTIONS(311), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, + STATE(368), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(583), 11, + STATE(603), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -7261,21 +7368,21 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [1018] = 4, + [1081] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(335), 24, + ACTIONS(339), 24, anon_sym_if, anon_sym_import, anon_sym_SLASH, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_LT, anon_sym_LT_EQ, @@ -7292,7 +7399,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(333), 27, + ACTIONS(337), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_DOT, @@ -7320,65 +7427,6 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [1081] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(339), 19, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_fn, - anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(337), 32, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_POUND, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DOT_DOT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, [1144] = 4, ACTIONS(3), 1, sym_module_comment, @@ -7391,9 +7439,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_LT, anon_sym_LT_EQ, @@ -7450,9 +7498,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_LT, anon_sym_LT_EQ, @@ -7509,9 +7557,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_LT, anon_sym_LT_EQ, @@ -7568,9 +7616,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_LT, anon_sym_LT_EQ, @@ -7627,9 +7675,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_LT, anon_sym_LT_EQ, @@ -7686,9 +7734,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_LT, anon_sym_LT_EQ, @@ -7739,15 +7787,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(339), 24, + ACTIONS(323), 24, anon_sym_if, anon_sym_import, anon_sym_SLASH, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_LT, anon_sym_LT_EQ, @@ -7764,7 +7812,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(337), 27, + ACTIONS(321), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_DOT, @@ -7804,9 +7852,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_LT, anon_sym_LT_EQ, @@ -7851,68 +7899,97 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [1648] = 6, + [1648] = 35, ACTIONS(3), 1, sym_module_comment, - ACTIONS(271), 1, - anon_sym_LPAREN, - ACTIONS(369), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(266), 24, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_const, + ACTIONS(260), 1, + anon_sym_LBRACE, + ACTIONS(262), 1, + anon_sym_POUND, + ACTIONS(266), 1, + anon_sym_LBRACK, + ACTIONS(268), 1, + anon_sym_LT_LT, + ACTIONS(270), 1, anon_sym_DASH, - anon_sym_external, - anon_sym_type, + ACTIONS(272), 1, anon_sym_fn, - anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(274), 1, anon_sym_todo, + ACTIONS(278), 1, anon_sym_case, + ACTIONS(280), 1, anon_sym_let, + ACTIONS(282), 1, anon_sym_assert, + ACTIONS(284), 1, anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(264), 25, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, + ACTIONS(286), 1, anon_sym_DQUOTE, + ACTIONS(288), 1, sym_float, + ACTIONS(292), 1, + sym__decimal, + ACTIONS(294), 1, + sym__discard_name, + ACTIONS(296), 1, + sym__name, + ACTIONS(298), 1, + sym__upname, + ACTIONS(369), 1, + anon_sym_RPAREN, + ACTIONS(371), 1, + anon_sym_DOT_DOT, + STATE(366), 1, + sym_identifier, + STATE(387), 1, + sym_tuple, + STATE(388), 1, + sym_anonymous_function, + STATE(961), 1, + sym_argument, + STATE(1143), 1, + sym_hole, + STATE(1149), 1, + sym__maybe_function_expression, + STATE(1220), 1, + sym_label, + STATE(1259), 1, + sym__maybe_tuple_expression, + STATE(1262), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(360), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(386), 2, + sym_record, + sym_record_update, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [1715] = 4, + STATE(368), 5, + sym_expression_group, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(603), 11, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_list, + sym__expression_bit_string, + sym_let, + sym_assert, + sym_negation, + sym_string, + sym_integer, + [1773] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, @@ -7924,9 +8001,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_LT, anon_sym_LT_EQ, @@ -7971,21 +8048,25 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [1778] = 4, + [1836] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(307), 1, + anon_sym_LPAREN, + ACTIONS(377), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(379), 24, + ACTIONS(302), 24, anon_sym_if, anon_sym_import, anon_sym_SLASH, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_LT, anon_sym_LT_EQ, @@ -8002,12 +8083,10 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(377), 27, + ACTIONS(300), 25, ts_builtin_sym_end, anon_sym_LBRACE, - anon_sym_DOT, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, @@ -8030,199 +8109,21 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [1841] = 35, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(281), 1, - anon_sym_LBRACE, - ACTIONS(283), 1, - anon_sym_POUND, - ACTIONS(287), 1, - anon_sym_LBRACK, - ACTIONS(289), 1, - anon_sym_LT_LT, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_fn, - ACTIONS(295), 1, - anon_sym_todo, - ACTIONS(299), 1, - anon_sym_case, - ACTIONS(301), 1, - anon_sym_let, - ACTIONS(303), 1, - anon_sym_assert, - ACTIONS(305), 1, - anon_sym_BANG, - ACTIONS(307), 1, - anon_sym_DQUOTE, - ACTIONS(309), 1, - sym_float, - ACTIONS(313), 1, - sym__decimal, - ACTIONS(315), 1, - sym__discard_name, - ACTIONS(317), 1, - sym__name, - ACTIONS(319), 1, - sym__upname, - ACTIONS(381), 1, - anon_sym_RPAREN, - ACTIONS(383), 1, - anon_sym_DOT_DOT, - STATE(375), 1, - sym_identifier, - STATE(388), 1, - sym_anonymous_function, - STATE(397), 1, - sym_tuple, - STATE(927), 1, - sym_argument, - STATE(1108), 1, - sym_hole, - STATE(1128), 1, - sym__maybe_function_expression, - STATE(1195), 1, - sym__maybe_record_expression, - STATE(1247), 1, - sym__maybe_tuple_expression, - STATE(1256), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(357), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(398), 2, - sym_record, - sym_record_update, - ACTIONS(311), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(374), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(583), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [1966] = 34, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(281), 1, - anon_sym_LBRACE, - ACTIONS(283), 1, - anon_sym_POUND, - ACTIONS(287), 1, - anon_sym_LBRACK, - ACTIONS(289), 1, - anon_sym_LT_LT, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_fn, - ACTIONS(295), 1, - anon_sym_todo, - ACTIONS(299), 1, - anon_sym_case, - ACTIONS(301), 1, - anon_sym_let, - ACTIONS(303), 1, - anon_sym_assert, - ACTIONS(305), 1, - anon_sym_BANG, - ACTIONS(307), 1, - anon_sym_DQUOTE, - ACTIONS(309), 1, - sym_float, - ACTIONS(313), 1, - sym__decimal, - ACTIONS(315), 1, - sym__discard_name, - ACTIONS(317), 1, - sym__name, - ACTIONS(319), 1, - sym__upname, - ACTIONS(385), 1, - anon_sym_RPAREN, - STATE(375), 1, - sym_identifier, - STATE(388), 1, - sym_anonymous_function, - STATE(397), 1, - sym_tuple, - STATE(1108), 1, - sym_hole, - STATE(1128), 1, - sym__maybe_function_expression, - STATE(1167), 1, - sym_argument, - STATE(1195), 1, - sym__maybe_record_expression, - STATE(1247), 1, - sym__maybe_tuple_expression, - STATE(1256), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(357), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(398), 2, - sym_record, - sym_record_update, - ACTIONS(311), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(374), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(583), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [2088] = 4, + [1903] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(389), 24, + ACTIONS(383), 24, anon_sym_if, anon_sym_import, anon_sym_SLASH, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_LT, anon_sym_LT_EQ, @@ -8239,11 +8140,12 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(387), 26, + ACTIONS(381), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_DOT, anon_sym_POUND, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, @@ -8266,23 +8168,23 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [2150] = 5, + [1966] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(271), 1, - anon_sym_LPAREN, + ACTIONS(385), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(266), 24, + ACTIONS(302), 24, anon_sym_if, anon_sym_import, anon_sym_SLASH, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_LT, anon_sym_LT_EQ, @@ -8299,7 +8201,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(264), 25, + ACTIONS(300), 25, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -8325,83 +8227,83 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [2214] = 34, + [2030] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(281), 1, + ACTIONS(260), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(262), 1, anon_sym_POUND, - ACTIONS(287), 1, + ACTIONS(264), 1, + anon_sym_RPAREN, + ACTIONS(266), 1, anon_sym_LBRACK, - ACTIONS(289), 1, + ACTIONS(268), 1, anon_sym_LT_LT, - ACTIONS(291), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(272), 1, anon_sym_fn, - ACTIONS(295), 1, + ACTIONS(274), 1, anon_sym_todo, - ACTIONS(299), 1, + ACTIONS(278), 1, anon_sym_case, - ACTIONS(301), 1, + ACTIONS(280), 1, anon_sym_let, - ACTIONS(303), 1, + ACTIONS(282), 1, anon_sym_assert, - ACTIONS(305), 1, + ACTIONS(284), 1, anon_sym_BANG, - ACTIONS(307), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(309), 1, + ACTIONS(288), 1, sym_float, - ACTIONS(313), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(315), 1, + ACTIONS(294), 1, sym__discard_name, - ACTIONS(317), 1, + ACTIONS(296), 1, sym__name, - ACTIONS(319), 1, + ACTIONS(298), 1, sym__upname, - ACTIONS(391), 1, - anon_sym_RPAREN, - STATE(375), 1, + STATE(366), 1, sym_identifier, + STATE(387), 1, + sym_tuple, STATE(388), 1, sym_anonymous_function, - STATE(397), 1, - sym_tuple, - STATE(1108), 1, + STATE(963), 1, + sym_argument, + STATE(1143), 1, sym_hole, - STATE(1128), 1, + STATE(1149), 1, sym__maybe_function_expression, - STATE(1167), 1, - sym_argument, - STATE(1195), 1, - sym__maybe_record_expression, - STATE(1247), 1, - sym__maybe_tuple_expression, - STATE(1256), 1, + STATE(1220), 1, sym_label, + STATE(1259), 1, + sym__maybe_tuple_expression, + STATE(1262), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(357), 2, + STATE(360), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(398), 2, + STATE(386), 2, sym_record, sym_record_update, - ACTIONS(311), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, + STATE(368), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(583), 11, + STATE(603), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -8413,80 +8315,23 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [2336] = 5, + [2152] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(393), 1, - anon_sym_DOT, + ACTIONS(307), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(266), 24, + ACTIONS(302), 24, anon_sym_if, anon_sym_import, anon_sym_SLASH, anon_sym_const, anon_sym_DASH, - anon_sym_external, - anon_sym_type, anon_sym_fn, - anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(264), 25, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [2400] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(397), 24, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_const, - anon_sym_DASH, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_LT, anon_sym_LT_EQ, @@ -8503,10 +8348,9 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(395), 26, + ACTIONS(300), 25, ts_builtin_sym_end, anon_sym_LBRACE, - anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -8530,21 +8374,21 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [2462] = 4, + [2216] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(401), 24, + ACTIONS(389), 24, anon_sym_if, anon_sym_import, anon_sym_SLASH, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_LT, anon_sym_LT_EQ, @@ -8561,11 +8405,11 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(399), 26, + ACTIONS(387), 26, ts_builtin_sym_end, anon_sym_LBRACE, - anon_sym_DOT, anon_sym_POUND, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, @@ -8588,83 +8432,83 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [2524] = 34, + [2278] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(281), 1, + ACTIONS(260), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(262), 1, anon_sym_POUND, - ACTIONS(287), 1, + ACTIONS(266), 1, anon_sym_LBRACK, - ACTIONS(289), 1, + ACTIONS(268), 1, anon_sym_LT_LT, - ACTIONS(291), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(272), 1, anon_sym_fn, - ACTIONS(295), 1, + ACTIONS(274), 1, anon_sym_todo, - ACTIONS(299), 1, + ACTIONS(278), 1, anon_sym_case, - ACTIONS(301), 1, + ACTIONS(280), 1, anon_sym_let, - ACTIONS(303), 1, + ACTIONS(282), 1, anon_sym_assert, - ACTIONS(305), 1, + ACTIONS(284), 1, anon_sym_BANG, - ACTIONS(307), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(309), 1, + ACTIONS(288), 1, sym_float, - ACTIONS(313), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(315), 1, + ACTIONS(294), 1, sym__discard_name, - ACTIONS(317), 1, + ACTIONS(296), 1, sym__name, - ACTIONS(319), 1, + ACTIONS(298), 1, sym__upname, - ACTIONS(403), 1, + ACTIONS(391), 1, anon_sym_RPAREN, - STATE(375), 1, + STATE(366), 1, sym_identifier, + STATE(387), 1, + sym_tuple, STATE(388), 1, sym_anonymous_function, - STATE(397), 1, - sym_tuple, - STATE(1108), 1, + STATE(1143), 1, sym_hole, - STATE(1128), 1, + STATE(1149), 1, sym__maybe_function_expression, - STATE(1167), 1, + STATE(1163), 1, sym_argument, - STATE(1195), 1, - sym__maybe_record_expression, - STATE(1247), 1, - sym__maybe_tuple_expression, - STATE(1256), 1, + STATE(1220), 1, sym_label, + STATE(1259), 1, + sym__maybe_tuple_expression, + STATE(1262), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(357), 2, + STATE(360), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(398), 2, + STATE(386), 2, sym_record, sym_record_update, - ACTIONS(311), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, + STATE(368), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(583), 11, + STATE(603), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -8676,21 +8520,23 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [2646] = 4, + [2400] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(393), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(407), 24, + ACTIONS(302), 24, anon_sym_if, anon_sym_import, anon_sym_SLASH, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_LT, anon_sym_LT_EQ, @@ -8707,11 +8553,10 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(405), 26, + ACTIONS(300), 25, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, @@ -8734,83 +8579,83 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [2708] = 34, + [2464] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(281), 1, + ACTIONS(260), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(262), 1, anon_sym_POUND, - ACTIONS(287), 1, + ACTIONS(266), 1, anon_sym_LBRACK, - ACTIONS(289), 1, + ACTIONS(268), 1, anon_sym_LT_LT, - ACTIONS(291), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(272), 1, anon_sym_fn, - ACTIONS(295), 1, + ACTIONS(274), 1, anon_sym_todo, - ACTIONS(299), 1, + ACTIONS(278), 1, anon_sym_case, - ACTIONS(301), 1, + ACTIONS(280), 1, anon_sym_let, - ACTIONS(303), 1, + ACTIONS(282), 1, anon_sym_assert, - ACTIONS(305), 1, + ACTIONS(284), 1, anon_sym_BANG, - ACTIONS(307), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(309), 1, + ACTIONS(288), 1, sym_float, - ACTIONS(313), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(315), 1, + ACTIONS(294), 1, sym__discard_name, - ACTIONS(317), 1, + ACTIONS(296), 1, sym__name, - ACTIONS(319), 1, + ACTIONS(298), 1, sym__upname, - ACTIONS(409), 1, + ACTIONS(395), 1, anon_sym_RPAREN, - STATE(375), 1, + STATE(366), 1, sym_identifier, + STATE(387), 1, + sym_tuple, STATE(388), 1, sym_anonymous_function, - STATE(397), 1, - sym_tuple, - STATE(1108), 1, + STATE(1143), 1, sym_hole, - STATE(1128), 1, + STATE(1149), 1, sym__maybe_function_expression, - STATE(1167), 1, + STATE(1163), 1, sym_argument, - STATE(1195), 1, - sym__maybe_record_expression, - STATE(1247), 1, - sym__maybe_tuple_expression, - STATE(1256), 1, + STATE(1220), 1, sym_label, + STATE(1259), 1, + sym__maybe_tuple_expression, + STATE(1262), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(357), 2, + STATE(360), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(398), 2, + STATE(386), 2, sym_record, sym_record_update, - ACTIONS(311), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, + STATE(368), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(583), 11, + STATE(603), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -8822,83 +8667,83 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [2830] = 34, + [2586] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(281), 1, + ACTIONS(260), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(262), 1, anon_sym_POUND, - ACTIONS(287), 1, + ACTIONS(266), 1, anon_sym_LBRACK, - ACTIONS(289), 1, + ACTIONS(268), 1, anon_sym_LT_LT, - ACTIONS(291), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(272), 1, anon_sym_fn, - ACTIONS(295), 1, + ACTIONS(274), 1, anon_sym_todo, - ACTIONS(299), 1, + ACTIONS(278), 1, anon_sym_case, - ACTIONS(301), 1, + ACTIONS(280), 1, anon_sym_let, - ACTIONS(303), 1, + ACTIONS(282), 1, anon_sym_assert, - ACTIONS(305), 1, + ACTIONS(284), 1, anon_sym_BANG, - ACTIONS(307), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(309), 1, + ACTIONS(288), 1, sym_float, - ACTIONS(313), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(315), 1, + ACTIONS(294), 1, sym__discard_name, - ACTIONS(317), 1, + ACTIONS(296), 1, sym__name, - ACTIONS(319), 1, + ACTIONS(298), 1, sym__upname, - ACTIONS(381), 1, + ACTIONS(397), 1, anon_sym_RPAREN, - STATE(375), 1, + STATE(366), 1, sym_identifier, + STATE(387), 1, + sym_tuple, STATE(388), 1, sym_anonymous_function, - STATE(397), 1, - sym_tuple, - STATE(927), 1, - sym_argument, - STATE(1108), 1, + STATE(1143), 1, sym_hole, - STATE(1128), 1, + STATE(1149), 1, sym__maybe_function_expression, - STATE(1195), 1, - sym__maybe_record_expression, - STATE(1247), 1, - sym__maybe_tuple_expression, - STATE(1256), 1, + STATE(1163), 1, + sym_argument, + STATE(1220), 1, sym_label, + STATE(1259), 1, + sym__maybe_tuple_expression, + STATE(1262), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(357), 2, + STATE(360), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(398), 2, + STATE(386), 2, sym_record, sym_record_update, - ACTIONS(311), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, + STATE(368), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(583), 11, + STATE(603), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -8910,23 +8755,21 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [2952] = 5, + [2708] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(411), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(266), 24, + ACTIONS(401), 24, anon_sym_if, anon_sym_import, anon_sym_SLASH, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_LT, anon_sym_LT_EQ, @@ -8943,9 +8786,10 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(264), 25, + ACTIONS(399), 26, ts_builtin_sym_end, anon_sym_LBRACE, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -8969,171 +8813,141 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [3016] = 34, + [2770] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(281), 1, - anon_sym_LBRACE, - ACTIONS(283), 1, - anon_sym_POUND, - ACTIONS(287), 1, - anon_sym_LBRACK, - ACTIONS(289), 1, - anon_sym_LT_LT, - ACTIONS(291), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(405), 24, + anon_sym_if, + anon_sym_import, + anon_sym_SLASH, + anon_sym_const, anon_sym_DASH, - ACTIONS(293), 1, anon_sym_fn, - ACTIONS(295), 1, + anon_sym_external, + anon_sym_type, + anon_sym_try, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(299), 1, anon_sym_case, - ACTIONS(301), 1, anon_sym_let, - ACTIONS(303), 1, anon_sym_assert, - ACTIONS(305), 1, anon_sym_BANG, - ACTIONS(307), 1, - anon_sym_DQUOTE, - ACTIONS(309), 1, - sym_float, - ACTIONS(313), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(315), 1, - sym__discard_name, - ACTIONS(317), 1, sym__name, - ACTIONS(319), 1, - sym__upname, - ACTIONS(413), 1, - anon_sym_RPAREN, - STATE(375), 1, - sym_identifier, - STATE(388), 1, - sym_anonymous_function, - STATE(397), 1, - sym_tuple, - STATE(1108), 1, - sym_hole, - STATE(1128), 1, - sym__maybe_function_expression, - STATE(1167), 1, - sym_argument, - STATE(1195), 1, - sym__maybe_record_expression, - STATE(1247), 1, - sym__maybe_tuple_expression, - STATE(1256), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(357), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(398), 2, - sym_record, - sym_record_update, - ACTIONS(311), 3, + ACTIONS(403), 26, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_POUND, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DQUOTE, + sym_float, sym__hex, sym__octal, sym__binary, - STATE(374), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(583), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [3138] = 34, + sym__upname, + [2832] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(281), 1, + ACTIONS(260), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(262), 1, anon_sym_POUND, - ACTIONS(287), 1, + ACTIONS(266), 1, anon_sym_LBRACK, - ACTIONS(289), 1, + ACTIONS(268), 1, anon_sym_LT_LT, - ACTIONS(291), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(272), 1, anon_sym_fn, - ACTIONS(295), 1, + ACTIONS(274), 1, anon_sym_todo, - ACTIONS(299), 1, + ACTIONS(278), 1, anon_sym_case, - ACTIONS(301), 1, + ACTIONS(280), 1, anon_sym_let, - ACTIONS(303), 1, + ACTIONS(282), 1, anon_sym_assert, - ACTIONS(305), 1, + ACTIONS(284), 1, anon_sym_BANG, - ACTIONS(307), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(309), 1, + ACTIONS(288), 1, sym_float, - ACTIONS(313), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(315), 1, + ACTIONS(294), 1, sym__discard_name, - ACTIONS(317), 1, + ACTIONS(296), 1, sym__name, - ACTIONS(319), 1, + ACTIONS(298), 1, sym__upname, - ACTIONS(329), 1, + ACTIONS(407), 1, anon_sym_RPAREN, - STATE(375), 1, + STATE(366), 1, sym_identifier, + STATE(387), 1, + sym_tuple, STATE(388), 1, sym_anonymous_function, - STATE(397), 1, - sym_tuple, - STATE(978), 1, - sym_argument, - STATE(1108), 1, + STATE(1143), 1, sym_hole, - STATE(1128), 1, + STATE(1149), 1, sym__maybe_function_expression, - STATE(1195), 1, - sym__maybe_record_expression, - STATE(1247), 1, - sym__maybe_tuple_expression, - STATE(1256), 1, + STATE(1163), 1, + sym_argument, + STATE(1220), 1, sym_label, + STATE(1259), 1, + sym__maybe_tuple_expression, + STATE(1262), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(357), 2, + STATE(360), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(398), 2, + STATE(386), 2, sym_record, sym_record_update, - ACTIONS(311), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, + STATE(368), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(583), 11, + STATE(603), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -9145,21 +8959,21 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [3260] = 4, + [2954] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(417), 24, + ACTIONS(411), 24, anon_sym_if, anon_sym_import, anon_sym_SLASH, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_LT, anon_sym_LT_EQ, @@ -9176,7 +8990,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(415), 26, + ACTIONS(409), 26, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_DOT, @@ -9203,83 +9017,83 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [3322] = 34, + [3016] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(281), 1, + ACTIONS(260), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(262), 1, anon_sym_POUND, - ACTIONS(285), 1, - anon_sym_RPAREN, - ACTIONS(287), 1, + ACTIONS(266), 1, anon_sym_LBRACK, - ACTIONS(289), 1, + ACTIONS(268), 1, anon_sym_LT_LT, - ACTIONS(291), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(272), 1, anon_sym_fn, - ACTIONS(295), 1, + ACTIONS(274), 1, anon_sym_todo, - ACTIONS(299), 1, + ACTIONS(278), 1, anon_sym_case, - ACTIONS(301), 1, + ACTIONS(280), 1, anon_sym_let, - ACTIONS(303), 1, + ACTIONS(282), 1, anon_sym_assert, - ACTIONS(305), 1, + ACTIONS(284), 1, anon_sym_BANG, - ACTIONS(307), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(309), 1, + ACTIONS(288), 1, sym_float, - ACTIONS(313), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(315), 1, + ACTIONS(294), 1, sym__discard_name, - ACTIONS(317), 1, + ACTIONS(296), 1, sym__name, - ACTIONS(319), 1, + ACTIONS(298), 1, sym__upname, - STATE(375), 1, + ACTIONS(317), 1, + anon_sym_RPAREN, + STATE(366), 1, sym_identifier, + STATE(387), 1, + sym_tuple, STATE(388), 1, sym_anonymous_function, - STATE(397), 1, - sym_tuple, - STATE(948), 1, + STATE(1059), 1, sym_argument, - STATE(1108), 1, + STATE(1143), 1, sym_hole, - STATE(1128), 1, + STATE(1149), 1, sym__maybe_function_expression, - STATE(1195), 1, - sym__maybe_record_expression, - STATE(1247), 1, - sym__maybe_tuple_expression, - STATE(1256), 1, + STATE(1220), 1, sym_label, + STATE(1259), 1, + sym__maybe_tuple_expression, + STATE(1262), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(357), 2, + STATE(360), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(398), 2, + STATE(386), 2, sym_record, sym_record_update, - ACTIONS(311), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, + STATE(368), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(583), 11, + STATE(603), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -9291,23 +9105,21 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [3444] = 5, + [3138] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(423), 1, - anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(421), 24, + ACTIONS(415), 24, anon_sym_if, anon_sym_import, anon_sym_SLASH, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_LT, anon_sym_LT_EQ, @@ -9324,9 +9136,10 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(419), 25, + ACTIONS(413), 26, ts_builtin_sym_end, anon_sym_LBRACE, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -9350,21 +9163,109 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [3508] = 4, + [3200] = 34, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(260), 1, + anon_sym_LBRACE, + ACTIONS(262), 1, + anon_sym_POUND, + ACTIONS(266), 1, + anon_sym_LBRACK, + ACTIONS(268), 1, + anon_sym_LT_LT, + ACTIONS(270), 1, + anon_sym_DASH, + ACTIONS(272), 1, + anon_sym_fn, + ACTIONS(274), 1, + anon_sym_todo, + ACTIONS(278), 1, + anon_sym_case, + ACTIONS(280), 1, + anon_sym_let, + ACTIONS(282), 1, + anon_sym_assert, + ACTIONS(284), 1, + anon_sym_BANG, + ACTIONS(286), 1, + anon_sym_DQUOTE, + ACTIONS(288), 1, + sym_float, + ACTIONS(292), 1, + sym__decimal, + ACTIONS(294), 1, + sym__discard_name, + ACTIONS(296), 1, + sym__name, + ACTIONS(298), 1, + sym__upname, + ACTIONS(333), 1, + anon_sym_RPAREN, + STATE(366), 1, + sym_identifier, + STATE(387), 1, + sym_tuple, + STATE(388), 1, + sym_anonymous_function, + STATE(989), 1, + sym_argument, + STATE(1143), 1, + sym_hole, + STATE(1149), 1, + sym__maybe_function_expression, + STATE(1220), 1, + sym_label, + STATE(1259), 1, + sym__maybe_tuple_expression, + STATE(1262), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(360), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(386), 2, + sym_record, + sym_record_update, + ACTIONS(290), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(368), 5, + sym_expression_group, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(603), 11, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_list, + sym__expression_bit_string, + sym_let, + sym_assert, + sym_negation, + sym_string, + sym_integer, + [3322] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(427), 24, + ACTIONS(419), 24, anon_sym_if, anon_sym_import, anon_sym_SLASH, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_LT, anon_sym_LT_EQ, @@ -9381,11 +9282,11 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(425), 26, + ACTIONS(417), 26, ts_builtin_sym_end, anon_sym_LBRACE, + anon_sym_DOT, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, @@ -9408,83 +9309,83 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [3570] = 34, + [3384] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(281), 1, + ACTIONS(260), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(262), 1, anon_sym_POUND, - ACTIONS(287), 1, + ACTIONS(266), 1, anon_sym_LBRACK, - ACTIONS(289), 1, + ACTIONS(268), 1, anon_sym_LT_LT, - ACTIONS(291), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(272), 1, anon_sym_fn, - ACTIONS(295), 1, + ACTIONS(274), 1, anon_sym_todo, - ACTIONS(299), 1, + ACTIONS(278), 1, anon_sym_case, - ACTIONS(301), 1, + ACTIONS(280), 1, anon_sym_let, - ACTIONS(303), 1, + ACTIONS(282), 1, anon_sym_assert, - ACTIONS(305), 1, + ACTIONS(284), 1, anon_sym_BANG, - ACTIONS(307), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(309), 1, + ACTIONS(288), 1, sym_float, - ACTIONS(313), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(315), 1, + ACTIONS(294), 1, sym__discard_name, - ACTIONS(317), 1, + ACTIONS(296), 1, sym__name, - ACTIONS(319), 1, + ACTIONS(298), 1, sym__upname, - ACTIONS(429), 1, + ACTIONS(369), 1, anon_sym_RPAREN, - STATE(375), 1, + STATE(366), 1, sym_identifier, + STATE(387), 1, + sym_tuple, STATE(388), 1, sym_anonymous_function, - STATE(397), 1, - sym_tuple, - STATE(1108), 1, + STATE(961), 1, + sym_argument, + STATE(1143), 1, sym_hole, - STATE(1128), 1, + STATE(1149), 1, sym__maybe_function_expression, - STATE(1167), 1, - sym_argument, - STATE(1195), 1, - sym__maybe_record_expression, - STATE(1247), 1, - sym__maybe_tuple_expression, - STATE(1256), 1, + STATE(1220), 1, sym_label, + STATE(1259), 1, + sym__maybe_tuple_expression, + STATE(1262), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(357), 2, + STATE(360), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(398), 2, + STATE(386), 2, sym_record, sym_record_update, - ACTIONS(311), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, + STATE(368), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(583), 11, + STATE(603), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -9496,83 +9397,83 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [3692] = 34, + [3506] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(281), 1, + ACTIONS(260), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(262), 1, anon_sym_POUND, - ACTIONS(287), 1, + ACTIONS(266), 1, anon_sym_LBRACK, - ACTIONS(289), 1, + ACTIONS(268), 1, anon_sym_LT_LT, - ACTIONS(291), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(272), 1, anon_sym_fn, - ACTIONS(295), 1, + ACTIONS(274), 1, anon_sym_todo, - ACTIONS(299), 1, + ACTIONS(278), 1, anon_sym_case, - ACTIONS(301), 1, + ACTIONS(280), 1, anon_sym_let, - ACTIONS(303), 1, + ACTIONS(282), 1, anon_sym_assert, - ACTIONS(305), 1, + ACTIONS(284), 1, anon_sym_BANG, - ACTIONS(307), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(309), 1, + ACTIONS(288), 1, sym_float, - ACTIONS(313), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(315), 1, + ACTIONS(294), 1, sym__discard_name, - ACTIONS(317), 1, + ACTIONS(296), 1, sym__name, - ACTIONS(319), 1, + ACTIONS(298), 1, sym__upname, - ACTIONS(431), 1, + ACTIONS(421), 1, anon_sym_RPAREN, - STATE(375), 1, + STATE(366), 1, sym_identifier, + STATE(387), 1, + sym_tuple, STATE(388), 1, sym_anonymous_function, - STATE(397), 1, - sym_tuple, - STATE(1108), 1, + STATE(1143), 1, sym_hole, - STATE(1128), 1, + STATE(1149), 1, sym__maybe_function_expression, - STATE(1167), 1, + STATE(1163), 1, sym_argument, - STATE(1195), 1, - sym__maybe_record_expression, - STATE(1247), 1, - sym__maybe_tuple_expression, - STATE(1256), 1, + STATE(1220), 1, sym_label, + STATE(1259), 1, + sym__maybe_tuple_expression, + STATE(1262), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(357), 2, + STATE(360), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(398), 2, + STATE(386), 2, sym_record, sym_record_update, - ACTIONS(311), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, + STATE(368), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(583), 11, + STATE(603), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -9584,21 +9485,23 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [3814] = 4, + [3628] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(427), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(435), 24, + ACTIONS(425), 24, anon_sym_if, anon_sym_import, anon_sym_SLASH, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_LT, anon_sym_LT_EQ, @@ -9615,10 +9518,9 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(433), 26, + ACTIONS(423), 25, ts_builtin_sym_end, anon_sym_LBRACE, - anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -9642,171 +9544,83 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [3876] = 34, + [3692] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(281), 1, + ACTIONS(260), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(262), 1, anon_sym_POUND, - ACTIONS(287), 1, + ACTIONS(266), 1, anon_sym_LBRACK, - ACTIONS(289), 1, + ACTIONS(268), 1, anon_sym_LT_LT, - ACTIONS(291), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(272), 1, anon_sym_fn, - ACTIONS(295), 1, + ACTIONS(274), 1, anon_sym_todo, - ACTIONS(299), 1, + ACTIONS(278), 1, anon_sym_case, - ACTIONS(301), 1, + ACTIONS(280), 1, anon_sym_let, - ACTIONS(303), 1, + ACTIONS(282), 1, anon_sym_assert, - ACTIONS(305), 1, + ACTIONS(284), 1, anon_sym_BANG, - ACTIONS(307), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(309), 1, + ACTIONS(288), 1, sym_float, - ACTIONS(313), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(315), 1, + ACTIONS(294), 1, sym__discard_name, - ACTIONS(317), 1, + ACTIONS(296), 1, sym__name, - ACTIONS(319), 1, + ACTIONS(298), 1, sym__upname, - ACTIONS(437), 1, + ACTIONS(429), 1, anon_sym_RPAREN, - STATE(375), 1, + STATE(366), 1, sym_identifier, + STATE(387), 1, + sym_tuple, STATE(388), 1, sym_anonymous_function, - STATE(397), 1, - sym_tuple, - STATE(1108), 1, + STATE(1143), 1, sym_hole, - STATE(1128), 1, + STATE(1149), 1, sym__maybe_function_expression, - STATE(1167), 1, + STATE(1163), 1, sym_argument, - STATE(1195), 1, - sym__maybe_record_expression, - STATE(1247), 1, - sym__maybe_tuple_expression, - STATE(1256), 1, + STATE(1220), 1, sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(357), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(398), 2, - sym_record, - sym_record_update, - ACTIONS(311), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(374), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(583), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [3998] = 34, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(281), 1, - anon_sym_LBRACE, - ACTIONS(283), 1, - anon_sym_POUND, - ACTIONS(287), 1, - anon_sym_LBRACK, - ACTIONS(289), 1, - anon_sym_LT_LT, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_fn, - ACTIONS(295), 1, - anon_sym_todo, - ACTIONS(299), 1, - anon_sym_case, - ACTIONS(301), 1, - anon_sym_let, - ACTIONS(303), 1, - anon_sym_assert, - ACTIONS(305), 1, - anon_sym_BANG, - ACTIONS(307), 1, - anon_sym_DQUOTE, - ACTIONS(309), 1, - sym_float, - ACTIONS(313), 1, - sym__decimal, - ACTIONS(315), 1, - sym__discard_name, - ACTIONS(317), 1, - sym__name, - ACTIONS(319), 1, - sym__upname, - ACTIONS(325), 1, - anon_sym_RPAREN, - STATE(375), 1, - sym_identifier, - STATE(388), 1, - sym_anonymous_function, - STATE(397), 1, - sym_tuple, - STATE(1039), 1, - sym_argument, - STATE(1108), 1, - sym_hole, - STATE(1128), 1, - sym__maybe_function_expression, - STATE(1195), 1, - sym__maybe_record_expression, - STATE(1247), 1, + STATE(1259), 1, sym__maybe_tuple_expression, - STATE(1256), 1, - sym_label, + STATE(1262), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(357), 2, + STATE(360), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(398), 2, + STATE(386), 2, sym_record, sym_record_update, - ACTIONS(311), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, + STATE(368), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(583), 11, + STATE(603), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -9818,21 +9632,21 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [4120] = 4, + [3814] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(441), 24, + ACTIONS(433), 24, anon_sym_if, anon_sym_import, anon_sym_SLASH, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_LT, anon_sym_LT_EQ, @@ -9849,7 +9663,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(439), 26, + ACTIONS(431), 26, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_DOT, @@ -9876,138 +9690,171 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [4182] = 4, + [3876] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(445), 24, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_const, + ACTIONS(260), 1, + anon_sym_LBRACE, + ACTIONS(262), 1, + anon_sym_POUND, + ACTIONS(266), 1, + anon_sym_LBRACK, + ACTIONS(268), 1, + anon_sym_LT_LT, + ACTIONS(270), 1, anon_sym_DASH, - anon_sym_external, - anon_sym_type, + ACTIONS(272), 1, anon_sym_fn, - anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(274), 1, anon_sym_todo, + ACTIONS(278), 1, anon_sym_case, + ACTIONS(280), 1, anon_sym_let, + ACTIONS(282), 1, anon_sym_assert, + ACTIONS(284), 1, anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(443), 25, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, + ACTIONS(286), 1, anon_sym_DQUOTE, + ACTIONS(288), 1, sym_float, + ACTIONS(292), 1, + sym__decimal, + ACTIONS(294), 1, + sym__discard_name, + ACTIONS(296), 1, + sym__name, + ACTIONS(298), 1, + sym__upname, + ACTIONS(435), 1, + anon_sym_RPAREN, + STATE(366), 1, + sym_identifier, + STATE(387), 1, + sym_tuple, + STATE(388), 1, + sym_anonymous_function, + STATE(1143), 1, + sym_hole, + STATE(1149), 1, + sym__maybe_function_expression, + STATE(1163), 1, + sym_argument, + STATE(1220), 1, + sym_label, + STATE(1259), 1, + sym__maybe_tuple_expression, + STATE(1262), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(360), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(386), 2, + sym_record, + sym_record_update, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [4243] = 33, + STATE(368), 5, + sym_expression_group, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(603), 11, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_list, + sym__expression_bit_string, + sym_let, + sym_assert, + sym_negation, + sym_string, + sym_integer, + [3998] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(260), 1, anon_sym_LBRACE, - ACTIONS(449), 1, - anon_sym_RBRACE, - ACTIONS(451), 1, + ACTIONS(262), 1, anon_sym_POUND, - ACTIONS(453), 1, + ACTIONS(266), 1, anon_sym_LBRACK, - ACTIONS(455), 1, + ACTIONS(268), 1, anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(459), 1, + ACTIONS(272), 1, anon_sym_fn, - ACTIONS(461), 1, - anon_sym_try, - ACTIONS(463), 1, + ACTIONS(274), 1, anon_sym_todo, - ACTIONS(465), 1, + ACTIONS(278), 1, anon_sym_case, - ACTIONS(467), 1, + ACTIONS(280), 1, anon_sym_let, - ACTIONS(469), 1, + ACTIONS(282), 1, anon_sym_assert, - ACTIONS(471), 1, + ACTIONS(284), 1, anon_sym_BANG, - ACTIONS(473), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(475), 1, + ACTIONS(288), 1, sym_float, - ACTIONS(479), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(481), 1, + ACTIONS(294), 1, + sym__discard_name, + ACTIONS(296), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(298), 1, sym__upname, - STATE(93), 1, - aux_sym__expression_seq, - STATE(142), 1, + ACTIONS(437), 1, + anon_sym_RPAREN, + STATE(366), 1, sym_identifier, - STATE(170), 1, + STATE(387), 1, sym_tuple, - STATE(171), 1, + STATE(388), 1, sym_anonymous_function, - STATE(631), 1, - sym_try, - STATE(1101), 1, + STATE(1143), 1, + sym_hole, + STATE(1149), 1, sym__maybe_function_expression, - STATE(1211), 1, - sym__maybe_record_expression, - STATE(1263), 1, + STATE(1163), 1, + sym_argument, + STATE(1220), 1, + sym_label, + STATE(1259), 1, sym__maybe_tuple_expression, + STATE(1262), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(123), 2, + STATE(360), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(386), 2, sym_record, sym_record_update, - ACTIONS(477), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(368), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(281), 11, + STATE(603), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -10019,41 +9866,78 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [4362] = 12, + [4120] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(499), 1, - anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(489), 2, + ACTIONS(441), 24, + anon_sym_if, + anon_sym_import, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(491), 2, + anon_sym_const, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(493), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(501), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(503), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(495), 4, + anon_sym_fn, + anon_sym_external, + anon_sym_type, + anon_sym_try, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(497), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + ACTIONS(439), 26, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(485), 13, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [4182] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(447), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(449), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(443), 22, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -10061,20 +9945,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - ACTIONS(487), 16, + ACTIONS(445), 22, anon_sym_if, anon_sym_import, anon_sym_const, + anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, anon_sym_todo, anon_sym_case, anon_sym_let, @@ -10084,107 +9983,78 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [4439] = 33, + [4247] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, - anon_sym_LBRACE, - ACTIONS(451), 1, - anon_sym_POUND, - ACTIONS(453), 1, - anon_sym_LBRACK, - ACTIONS(455), 1, - anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(453), 24, + anon_sym_if, + anon_sym_import, + anon_sym_SLASH, + anon_sym_const, anon_sym_DASH, - ACTIONS(459), 1, anon_sym_fn, - ACTIONS(461), 1, + anon_sym_external, + anon_sym_type, anon_sym_try, - ACTIONS(463), 1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(465), 1, anon_sym_case, - ACTIONS(467), 1, anon_sym_let, - ACTIONS(469), 1, anon_sym_assert, - ACTIONS(471), 1, anon_sym_BANG, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(475), 1, - sym_float, - ACTIONS(479), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(481), 1, sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(505), 1, - anon_sym_RBRACE, - STATE(68), 1, - aux_sym__expression_seq, - STATE(142), 1, - sym_identifier, - STATE(170), 1, - sym_tuple, - STATE(171), 1, - sym_anonymous_function, - STATE(631), 1, - sym_try, - STATE(1101), 1, - sym__maybe_function_expression, - STATE(1211), 1, - sym__maybe_record_expression, - STATE(1263), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(123), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(169), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, + ACTIONS(451), 25, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DQUOTE, + sym_float, sym__hex, sym__octal, sym__binary, - STATE(145), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(281), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [4558] = 4, + sym__upname, + [4308] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(509), 24, + ACTIONS(457), 24, anon_sym_if, anon_sym_import, anon_sym_SLASH, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_LT, anon_sym_LT_EQ, @@ -10201,7 +10071,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(507), 25, + ACTIONS(455), 25, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -10227,106 +10097,82 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [4619] = 33, + [4369] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(465), 1, + anon_sym_PIPE_PIPE, + ACTIONS(467), 1, + anon_sym_AMP_AMP, + ACTIONS(475), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(447), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(463), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(469), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(477), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(449), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(471), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(473), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(459), 11, + ts_builtin_sym_end, anon_sym_LBRACE, - ACTIONS(451), 1, anon_sym_POUND, - ACTIONS(453), 1, anon_sym_LBRACK, - ACTIONS(455), 1, anon_sym_LT_LT, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(459), 1, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(461), 16, + anon_sym_if, + anon_sym_import, + anon_sym_const, anon_sym_fn, - ACTIONS(461), 1, + anon_sym_external, + anon_sym_type, anon_sym_try, - ACTIONS(463), 1, anon_sym_todo, - ACTIONS(465), 1, anon_sym_case, - ACTIONS(467), 1, anon_sym_let, - ACTIONS(469), 1, anon_sym_assert, - ACTIONS(471), 1, anon_sym_BANG, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(475), 1, - sym_float, - ACTIONS(479), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(481), 1, sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(511), 1, - anon_sym_RBRACE, - STATE(93), 1, - aux_sym__expression_seq, - STATE(142), 1, - sym_identifier, - STATE(170), 1, - sym_tuple, - STATE(171), 1, - sym_anonymous_function, - STATE(631), 1, - sym_try, - STATE(1101), 1, - sym__maybe_function_expression, - STATE(1211), 1, - sym__maybe_record_expression, - STATE(1263), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(123), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(169), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(145), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(281), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [4738] = 4, + [4450] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(515), 24, - anon_sym_if, - anon_sym_import, + ACTIONS(363), 17, anon_sym_SLASH, - anon_sym_const, anon_sym_DASH, - anon_sym_external, - anon_sym_type, anon_sym_fn, anon_sym_try, anon_sym_LT, @@ -10340,16 +10186,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_assert, anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(513), 25, - ts_builtin_sym_end, + ACTIONS(361), 32, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_COMMA, anon_sym_POUND, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -10370,60 +10221,60 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [4799] = 33, + [4511] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(479), 1, anon_sym_LBRACE, - ACTIONS(451), 1, + ACTIONS(481), 1, + anon_sym_RBRACE, + ACTIONS(483), 1, anon_sym_POUND, - ACTIONS(453), 1, + ACTIONS(485), 1, anon_sym_LBRACK, - ACTIONS(455), 1, + ACTIONS(487), 1, anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(459), 1, + ACTIONS(491), 1, anon_sym_fn, - ACTIONS(461), 1, + ACTIONS(493), 1, anon_sym_try, - ACTIONS(463), 1, + ACTIONS(495), 1, anon_sym_todo, - ACTIONS(465), 1, + ACTIONS(497), 1, anon_sym_case, - ACTIONS(467), 1, + ACTIONS(499), 1, anon_sym_let, - ACTIONS(469), 1, + ACTIONS(501), 1, anon_sym_assert, - ACTIONS(471), 1, + ACTIONS(503), 1, anon_sym_BANG, - ACTIONS(473), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(475), 1, + ACTIONS(507), 1, sym_float, - ACTIONS(479), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(481), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(515), 1, sym__upname, - ACTIONS(517), 1, - anon_sym_RBRACE, - STATE(93), 1, + STATE(113), 1, aux_sym__expression_seq, - STATE(142), 1, + STATE(141), 1, sym_identifier, - STATE(170), 1, - sym_tuple, - STATE(171), 1, + STATE(174), 1, sym_anonymous_function, - STATE(631), 1, + STATE(175), 1, + sym_tuple, + STATE(634), 1, sym_try, - STATE(1101), 1, + STATE(1118), 1, sym__maybe_function_expression, - STATE(1211), 1, + STATE(1232), 1, sym__maybe_record_expression, - STATE(1263), 1, + STATE(1292), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -10431,14 +10282,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(123), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(178), 2, sym_record, sym_record_update, - ACTIONS(477), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(140), 5, sym_expression_group, sym_case, sym_tuple_access, @@ -10456,60 +10307,60 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [4918] = 33, + [4630] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(479), 1, anon_sym_LBRACE, - ACTIONS(451), 1, + ACTIONS(483), 1, anon_sym_POUND, - ACTIONS(453), 1, + ACTIONS(485), 1, anon_sym_LBRACK, - ACTIONS(455), 1, + ACTIONS(487), 1, anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(459), 1, + ACTIONS(491), 1, anon_sym_fn, - ACTIONS(461), 1, + ACTIONS(493), 1, anon_sym_try, - ACTIONS(463), 1, + ACTIONS(495), 1, anon_sym_todo, - ACTIONS(465), 1, + ACTIONS(497), 1, anon_sym_case, - ACTIONS(467), 1, + ACTIONS(499), 1, anon_sym_let, - ACTIONS(469), 1, + ACTIONS(501), 1, anon_sym_assert, - ACTIONS(471), 1, + ACTIONS(503), 1, anon_sym_BANG, - ACTIONS(473), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(475), 1, + ACTIONS(507), 1, sym_float, - ACTIONS(479), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(481), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(515), 1, sym__upname, - ACTIONS(519), 1, + ACTIONS(517), 1, anon_sym_RBRACE, - STATE(93), 1, + STATE(113), 1, aux_sym__expression_seq, - STATE(142), 1, + STATE(141), 1, sym_identifier, - STATE(170), 1, - sym_tuple, - STATE(171), 1, + STATE(174), 1, sym_anonymous_function, - STATE(631), 1, + STATE(175), 1, + sym_tuple, + STATE(634), 1, sym_try, - STATE(1101), 1, + STATE(1118), 1, sym__maybe_function_expression, - STATE(1211), 1, + STATE(1232), 1, sym__maybe_record_expression, - STATE(1263), 1, + STATE(1292), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -10517,14 +10368,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(123), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(178), 2, sym_record, sym_record_update, - ACTIONS(477), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(140), 5, sym_expression_group, sym_case, sym_tuple_access, @@ -10542,147 +10393,81 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [5037] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(499), 1, - anon_sym_PIPE_GT, - ACTIONS(521), 1, - anon_sym_AMP_AMP, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(489), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(491), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(493), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(501), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(503), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(495), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(497), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(485), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(487), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [5116] = 33, + [4749] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(281), 1, + ACTIONS(479), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(483), 1, anon_sym_POUND, - ACTIONS(287), 1, + ACTIONS(485), 1, anon_sym_LBRACK, - ACTIONS(289), 1, + ACTIONS(487), 1, anon_sym_LT_LT, - ACTIONS(291), 1, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(491), 1, anon_sym_fn, - ACTIONS(295), 1, + ACTIONS(493), 1, + anon_sym_try, + ACTIONS(495), 1, anon_sym_todo, - ACTIONS(299), 1, + ACTIONS(497), 1, anon_sym_case, - ACTIONS(301), 1, + ACTIONS(499), 1, anon_sym_let, - ACTIONS(303), 1, + ACTIONS(501), 1, anon_sym_assert, - ACTIONS(305), 1, + ACTIONS(503), 1, anon_sym_BANG, - ACTIONS(307), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(309), 1, + ACTIONS(507), 1, sym_float, - ACTIONS(313), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(315), 1, - sym__discard_name, - ACTIONS(317), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(319), 1, + ACTIONS(515), 1, sym__upname, - STATE(375), 1, + ACTIONS(519), 1, + anon_sym_RBRACE, + STATE(113), 1, + aux_sym__expression_seq, + STATE(141), 1, sym_identifier, - STATE(388), 1, + STATE(174), 1, sym_anonymous_function, - STATE(397), 1, + STATE(175), 1, sym_tuple, - STATE(1108), 1, - sym_hole, - STATE(1128), 1, + STATE(634), 1, + sym_try, + STATE(1118), 1, sym__maybe_function_expression, - STATE(1167), 1, - sym_argument, - STATE(1195), 1, + STATE(1232), 1, sym__maybe_record_expression, - STATE(1247), 1, + STATE(1292), 1, sym__maybe_tuple_expression, - STATE(1256), 1, - sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(357), 2, + STATE(123), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(398), 2, + STATE(178), 2, sym_record, sym_record_update, - ACTIONS(311), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, + STATE(140), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(583), 11, + STATE(281), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -10694,113 +10479,150 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [5235] = 4, + [4868] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(525), 24, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_const, + ACTIONS(479), 1, + anon_sym_LBRACE, + ACTIONS(483), 1, + anon_sym_POUND, + ACTIONS(485), 1, + anon_sym_LBRACK, + ACTIONS(487), 1, + anon_sym_LT_LT, + ACTIONS(489), 1, anon_sym_DASH, - anon_sym_external, - anon_sym_type, + ACTIONS(491), 1, anon_sym_fn, + ACTIONS(493), 1, anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(495), 1, anon_sym_todo, + ACTIONS(497), 1, anon_sym_case, + ACTIONS(499), 1, anon_sym_let, + ACTIONS(501), 1, anon_sym_assert, + ACTIONS(503), 1, anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(523), 25, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, + ACTIONS(505), 1, anon_sym_DQUOTE, + ACTIONS(507), 1, sym_float, + ACTIONS(511), 1, + sym__decimal, + ACTIONS(513), 1, + sym__name, + ACTIONS(515), 1, + sym__upname, + ACTIONS(521), 1, + anon_sym_RBRACE, + STATE(59), 1, + aux_sym__expression_seq, + STATE(141), 1, + sym_identifier, + STATE(174), 1, + sym_anonymous_function, + STATE(175), 1, + sym_tuple, + STATE(634), 1, + sym_try, + STATE(1118), 1, + sym__maybe_function_expression, + STATE(1232), 1, + sym__maybe_record_expression, + STATE(1292), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(123), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(178), 2, + sym_record, + sym_record_update, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [5296] = 6, + STATE(140), 5, + sym_expression_group, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(281), 11, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_list, + sym__expression_bit_string, + sym_let, + sym_assert, + sym_negation, + sym_string, + sym_integer, + [4987] = 14, ACTIONS(3), 1, sym_module_comment, + ACTIONS(465), 1, + anon_sym_PIPE_PIPE, + ACTIONS(467), 1, + anon_sym_AMP_AMP, + ACTIONS(475), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(489), 2, + ACTIONS(447), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(503), 3, + ACTIONS(463), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(469), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(477), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(449), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(485), 22, + ACTIONS(471), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(473), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(523), 11, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - ACTIONS(487), 22, + ACTIONS(525), 16, anon_sym_if, anon_sym_import, anon_sym_const, - anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, anon_sym_todo, anon_sym_case, anon_sym_let, @@ -10810,60 +10632,60 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [5361] = 33, + [5068] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(479), 1, anon_sym_LBRACE, - ACTIONS(451), 1, + ACTIONS(483), 1, anon_sym_POUND, - ACTIONS(453), 1, + ACTIONS(485), 1, anon_sym_LBRACK, - ACTIONS(455), 1, + ACTIONS(487), 1, anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(459), 1, + ACTIONS(491), 1, anon_sym_fn, - ACTIONS(461), 1, + ACTIONS(493), 1, anon_sym_try, - ACTIONS(463), 1, + ACTIONS(495), 1, anon_sym_todo, - ACTIONS(465), 1, + ACTIONS(497), 1, anon_sym_case, - ACTIONS(467), 1, + ACTIONS(499), 1, anon_sym_let, - ACTIONS(469), 1, + ACTIONS(501), 1, anon_sym_assert, - ACTIONS(471), 1, + ACTIONS(503), 1, anon_sym_BANG, - ACTIONS(473), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(475), 1, + ACTIONS(507), 1, sym_float, - ACTIONS(479), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(481), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(515), 1, sym__upname, ACTIONS(527), 1, anon_sym_RBRACE, - STATE(93), 1, + STATE(113), 1, aux_sym__expression_seq, - STATE(142), 1, + STATE(141), 1, sym_identifier, - STATE(170), 1, - sym_tuple, - STATE(171), 1, + STATE(174), 1, sym_anonymous_function, - STATE(631), 1, + STATE(175), 1, + sym_tuple, + STATE(634), 1, sym_try, - STATE(1101), 1, + STATE(1118), 1, sym__maybe_function_expression, - STATE(1211), 1, + STATE(1232), 1, sym__maybe_record_expression, - STATE(1263), 1, + STATE(1292), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -10871,14 +10693,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(123), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(178), 2, sym_record, sym_record_update, - ACTIONS(477), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(140), 5, sym_expression_group, sym_case, sym_tuple_access, @@ -10896,40 +10718,40 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [5480] = 14, + [5187] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(499), 1, - anon_sym_PIPE_GT, - ACTIONS(521), 1, - anon_sym_AMP_AMP, - ACTIONS(533), 1, + ACTIONS(465), 1, anon_sym_PIPE_PIPE, + ACTIONS(467), 1, + anon_sym_AMP_AMP, + ACTIONS(475), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(489), 2, + ACTIONS(447), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(491), 2, + ACTIONS(463), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(493), 2, + ACTIONS(469), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(501), 2, + ACTIONS(477), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(503), 3, + ACTIONS(449), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(495), 4, + ACTIONS(471), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(497), 4, + ACTIONS(473), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, @@ -10950,10 +10772,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_import, anon_sym_const, + anon_sym_fn, anon_sym_external, anon_sym_type, + anon_sym_try, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [5268] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(535), 24, + anon_sym_if, + anon_sym_import, + anon_sym_SLASH, + anon_sym_const, + anon_sym_DASH, anon_sym_fn, + anon_sym_external, + anon_sym_type, anon_sym_try, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, anon_sym_case, anon_sym_let, @@ -10963,60 +10816,86 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [5561] = 33, + ACTIONS(533), 25, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [5329] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(479), 1, anon_sym_LBRACE, - ACTIONS(451), 1, + ACTIONS(483), 1, anon_sym_POUND, - ACTIONS(453), 1, + ACTIONS(485), 1, anon_sym_LBRACK, - ACTIONS(455), 1, + ACTIONS(487), 1, anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(459), 1, + ACTIONS(491), 1, anon_sym_fn, - ACTIONS(461), 1, + ACTIONS(493), 1, anon_sym_try, - ACTIONS(463), 1, + ACTIONS(495), 1, anon_sym_todo, - ACTIONS(465), 1, + ACTIONS(497), 1, anon_sym_case, - ACTIONS(467), 1, + ACTIONS(499), 1, anon_sym_let, - ACTIONS(469), 1, + ACTIONS(501), 1, anon_sym_assert, - ACTIONS(471), 1, + ACTIONS(503), 1, anon_sym_BANG, - ACTIONS(473), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(475), 1, + ACTIONS(507), 1, sym_float, - ACTIONS(479), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(481), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(515), 1, sym__upname, - ACTIONS(535), 1, + ACTIONS(537), 1, anon_sym_RBRACE, - STATE(93), 1, + STATE(113), 1, aux_sym__expression_seq, - STATE(142), 1, + STATE(141), 1, sym_identifier, - STATE(170), 1, - sym_tuple, - STATE(171), 1, + STATE(174), 1, sym_anonymous_function, - STATE(631), 1, + STATE(175), 1, + sym_tuple, + STATE(634), 1, sym_try, - STATE(1101), 1, + STATE(1118), 1, sym__maybe_function_expression, - STATE(1211), 1, + STATE(1232), 1, sym__maybe_record_expression, - STATE(1263), 1, + STATE(1292), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -11024,14 +10903,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(123), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(178), 2, sym_record, sym_record_update, - ACTIONS(477), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(140), 5, sym_expression_group, sym_case, sym_tuple_access, @@ -11049,60 +10928,174 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [5680] = 33, + [5448] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(541), 24, + anon_sym_if, + anon_sym_import, + anon_sym_SLASH, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_type, + anon_sym_try, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + ACTIONS(539), 25, + ts_builtin_sym_end, anon_sym_LBRACE, - ACTIONS(451), 1, anon_sym_POUND, - ACTIONS(453), 1, anon_sym_LBRACK, - ACTIONS(455), 1, anon_sym_LT_LT, - ACTIONS(457), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [5509] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(545), 24, + anon_sym_if, + anon_sym_import, + anon_sym_SLASH, + anon_sym_const, anon_sym_DASH, - ACTIONS(459), 1, anon_sym_fn, - ACTIONS(461), 1, + anon_sym_external, + anon_sym_type, anon_sym_try, - ACTIONS(463), 1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(465), 1, anon_sym_case, - ACTIONS(467), 1, anon_sym_let, - ACTIONS(469), 1, anon_sym_assert, - ACTIONS(471), 1, anon_sym_BANG, - ACTIONS(473), 1, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + ACTIONS(543), 25, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, anon_sym_DQUOTE, - ACTIONS(475), 1, sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [5570] = 33, + ACTIONS(3), 1, + sym_module_comment, ACTIONS(479), 1, + anon_sym_LBRACE, + ACTIONS(483), 1, + anon_sym_POUND, + ACTIONS(485), 1, + anon_sym_LBRACK, + ACTIONS(487), 1, + anon_sym_LT_LT, + ACTIONS(489), 1, + anon_sym_DASH, + ACTIONS(491), 1, + anon_sym_fn, + ACTIONS(493), 1, + anon_sym_try, + ACTIONS(495), 1, + anon_sym_todo, + ACTIONS(497), 1, + anon_sym_case, + ACTIONS(499), 1, + anon_sym_let, + ACTIONS(501), 1, + anon_sym_assert, + ACTIONS(503), 1, + anon_sym_BANG, + ACTIONS(505), 1, + anon_sym_DQUOTE, + ACTIONS(507), 1, + sym_float, + ACTIONS(511), 1, sym__decimal, - ACTIONS(481), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(515), 1, sym__upname, - ACTIONS(537), 1, + ACTIONS(547), 1, anon_sym_RBRACE, - STATE(93), 1, + STATE(113), 1, aux_sym__expression_seq, - STATE(142), 1, + STATE(141), 1, sym_identifier, - STATE(170), 1, - sym_tuple, - STATE(171), 1, + STATE(174), 1, sym_anonymous_function, - STATE(631), 1, + STATE(175), 1, + sym_tuple, + STATE(634), 1, sym_try, - STATE(1101), 1, + STATE(1118), 1, sym__maybe_function_expression, - STATE(1211), 1, + STATE(1232), 1, sym__maybe_record_expression, - STATE(1263), 1, + STATE(1292), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -11110,14 +11103,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(123), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(178), 2, sym_record, sym_record_update, - ACTIONS(477), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(140), 5, sym_expression_group, sym_case, sym_tuple_access, @@ -11135,60 +11128,117 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [5799] = 33, + [5689] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(551), 24, + anon_sym_if, + anon_sym_import, + anon_sym_SLASH, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_type, + anon_sym_try, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + ACTIONS(549), 25, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [5750] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(479), 1, anon_sym_LBRACE, - ACTIONS(451), 1, + ACTIONS(483), 1, anon_sym_POUND, - ACTIONS(453), 1, + ACTIONS(485), 1, anon_sym_LBRACK, - ACTIONS(455), 1, + ACTIONS(487), 1, anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(459), 1, + ACTIONS(491), 1, anon_sym_fn, - ACTIONS(461), 1, + ACTIONS(493), 1, anon_sym_try, - ACTIONS(463), 1, + ACTIONS(495), 1, anon_sym_todo, - ACTIONS(465), 1, + ACTIONS(497), 1, anon_sym_case, - ACTIONS(467), 1, + ACTIONS(499), 1, anon_sym_let, - ACTIONS(469), 1, + ACTIONS(501), 1, anon_sym_assert, - ACTIONS(471), 1, + ACTIONS(503), 1, anon_sym_BANG, - ACTIONS(473), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(475), 1, + ACTIONS(507), 1, sym_float, - ACTIONS(479), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(481), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(515), 1, sym__upname, - ACTIONS(539), 1, + ACTIONS(553), 1, anon_sym_RBRACE, - STATE(74), 1, + STATE(113), 1, aux_sym__expression_seq, - STATE(142), 1, + STATE(141), 1, sym_identifier, - STATE(170), 1, - sym_tuple, - STATE(171), 1, + STATE(174), 1, sym_anonymous_function, - STATE(631), 1, + STATE(175), 1, + sym_tuple, + STATE(634), 1, sym_try, - STATE(1101), 1, + STATE(1118), 1, sym__maybe_function_expression, - STATE(1211), 1, + STATE(1232), 1, sym__maybe_record_expression, - STATE(1263), 1, + STATE(1292), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -11196,14 +11246,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(123), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(178), 2, sym_record, sym_record_update, - ACTIONS(477), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(140), 5, sym_expression_group, sym_case, sym_tuple_access, @@ -11221,60 +11271,60 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [5918] = 33, + [5869] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(479), 1, anon_sym_LBRACE, - ACTIONS(451), 1, + ACTIONS(483), 1, anon_sym_POUND, - ACTIONS(453), 1, + ACTIONS(485), 1, anon_sym_LBRACK, - ACTIONS(455), 1, + ACTIONS(487), 1, anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(459), 1, + ACTIONS(491), 1, anon_sym_fn, - ACTIONS(461), 1, + ACTIONS(493), 1, anon_sym_try, - ACTIONS(463), 1, + ACTIONS(495), 1, anon_sym_todo, - ACTIONS(465), 1, + ACTIONS(497), 1, anon_sym_case, - ACTIONS(467), 1, + ACTIONS(499), 1, anon_sym_let, - ACTIONS(469), 1, + ACTIONS(501), 1, anon_sym_assert, - ACTIONS(471), 1, + ACTIONS(503), 1, anon_sym_BANG, - ACTIONS(473), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(475), 1, + ACTIONS(507), 1, sym_float, - ACTIONS(479), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(481), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(515), 1, sym__upname, - ACTIONS(541), 1, + ACTIONS(555), 1, anon_sym_RBRACE, - STATE(93), 1, + STATE(113), 1, aux_sym__expression_seq, - STATE(142), 1, + STATE(141), 1, sym_identifier, - STATE(170), 1, - sym_tuple, - STATE(171), 1, + STATE(174), 1, sym_anonymous_function, - STATE(631), 1, + STATE(175), 1, + sym_tuple, + STATE(634), 1, sym_try, - STATE(1101), 1, + STATE(1118), 1, sym__maybe_function_expression, - STATE(1211), 1, + STATE(1232), 1, sym__maybe_record_expression, - STATE(1263), 1, + STATE(1292), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -11282,14 +11332,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(123), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(178), 2, sym_record, sym_record_update, - ACTIONS(477), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(140), 5, sym_expression_group, sym_case, sym_tuple_access, @@ -11307,21 +11357,21 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [6037] = 4, + [5988] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(487), 24, + ACTIONS(559), 24, anon_sym_if, anon_sym_import, anon_sym_SLASH, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_LT, anon_sym_LT_EQ, @@ -11338,7 +11388,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(485), 25, + ACTIONS(557), 25, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -11364,21 +11414,21 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [6098] = 4, + [6049] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(545), 24, + ACTIONS(563), 24, anon_sym_if, anon_sym_import, anon_sym_SLASH, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_LT, anon_sym_LT_EQ, @@ -11395,7 +11445,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(543), 25, + ACTIONS(561), 25, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -11421,106 +11471,72 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [6159] = 33, + [6110] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, - anon_sym_LBRACE, - ACTIONS(451), 1, - anon_sym_POUND, - ACTIONS(453), 1, - anon_sym_LBRACK, - ACTIONS(455), 1, - anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(567), 24, + anon_sym_if, + anon_sym_import, + anon_sym_SLASH, + anon_sym_const, anon_sym_DASH, - ACTIONS(459), 1, anon_sym_fn, - ACTIONS(461), 1, + anon_sym_external, + anon_sym_type, anon_sym_try, - ACTIONS(463), 1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(465), 1, anon_sym_case, - ACTIONS(467), 1, anon_sym_let, - ACTIONS(469), 1, anon_sym_assert, - ACTIONS(471), 1, anon_sym_BANG, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(475), 1, - sym_float, - ACTIONS(479), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(481), 1, sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(547), 1, - anon_sym_RBRACE, - STATE(93), 1, - aux_sym__expression_seq, - STATE(142), 1, - sym_identifier, - STATE(170), 1, - sym_tuple, - STATE(171), 1, - sym_anonymous_function, - STATE(631), 1, - sym_try, - STATE(1101), 1, - sym__maybe_function_expression, - STATE(1211), 1, - sym__maybe_record_expression, - STATE(1263), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(123), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(169), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, + ACTIONS(565), 25, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DQUOTE, + sym_float, sym__hex, sym__octal, sym__binary, - STATE(145), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(281), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [6278] = 4, + sym__upname, + [6171] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(551), 24, - anon_sym_if, - anon_sym_import, + ACTIONS(315), 17, anon_sym_SLASH, - anon_sym_const, anon_sym_DASH, - anon_sym_external, - anon_sym_type, anon_sym_fn, anon_sym_try, anon_sym_LT, @@ -11534,16 +11550,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_assert, anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(549), 25, - ts_builtin_sym_end, + ACTIONS(313), 32, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_COMMA, anon_sym_POUND, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -11564,38 +11585,112 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [6339] = 11, + [6232] = 33, ACTIONS(3), 1, sym_module_comment, + ACTIONS(479), 1, + anon_sym_LBRACE, + ACTIONS(483), 1, + anon_sym_POUND, + ACTIONS(485), 1, + anon_sym_LBRACK, + ACTIONS(487), 1, + anon_sym_LT_LT, + ACTIONS(489), 1, + anon_sym_DASH, + ACTIONS(491), 1, + anon_sym_fn, + ACTIONS(493), 1, + anon_sym_try, + ACTIONS(495), 1, + anon_sym_todo, + ACTIONS(497), 1, + anon_sym_case, ACTIONS(499), 1, - anon_sym_PIPE_GT, + anon_sym_let, + ACTIONS(501), 1, + anon_sym_assert, + ACTIONS(503), 1, + anon_sym_BANG, + ACTIONS(505), 1, + anon_sym_DQUOTE, + ACTIONS(507), 1, + sym_float, + ACTIONS(511), 1, + sym__decimal, + ACTIONS(513), 1, + sym__name, + ACTIONS(515), 1, + sym__upname, + ACTIONS(569), 1, + anon_sym_RBRACE, + STATE(112), 1, + aux_sym__expression_seq, + STATE(141), 1, + sym_identifier, + STATE(174), 1, + sym_anonymous_function, + STATE(175), 1, + sym_tuple, + STATE(634), 1, + sym_try, + STATE(1118), 1, + sym__maybe_function_expression, + STATE(1232), 1, + sym__maybe_record_expression, + STATE(1292), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(123), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(178), 2, + sym_record, + sym_record_update, + ACTIONS(509), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(140), 5, + sym_expression_group, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(281), 11, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_list, + sym__expression_bit_string, + sym_let, + sym_assert, + sym_negation, + sym_string, + sym_integer, + [6351] = 8, + ACTIONS(3), 1, + sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(489), 2, + ACTIONS(447), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(491), 2, + ACTIONS(463), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(501), 2, + ACTIONS(477), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(503), 3, + ACTIONS(449), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(495), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(497), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(485), 15, + ACTIONS(443), 20, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -11605,20 +11700,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - ACTIONS(487), 16, + ACTIONS(445), 20, anon_sym_if, anon_sym_import, anon_sym_const, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, anon_sym_todo, anon_sym_case, anon_sym_let, @@ -11628,83 +11732,114 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [6414] = 4, + [6420] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(363), 17, - anon_sym_SLASH, + ACTIONS(479), 1, + anon_sym_LBRACE, + ACTIONS(483), 1, + anon_sym_POUND, + ACTIONS(485), 1, + anon_sym_LBRACK, + ACTIONS(487), 1, + anon_sym_LT_LT, + ACTIONS(489), 1, anon_sym_DASH, + ACTIONS(491), 1, anon_sym_fn, + ACTIONS(493), 1, anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(495), 1, anon_sym_todo, + ACTIONS(497), 1, anon_sym_case, + ACTIONS(499), 1, anon_sym_let, + ACTIONS(501), 1, anon_sym_assert, + ACTIONS(503), 1, anon_sym_BANG, + ACTIONS(505), 1, + anon_sym_DQUOTE, + ACTIONS(507), 1, + sym_float, + ACTIONS(511), 1, sym__decimal, + ACTIONS(513), 1, sym__name, - ACTIONS(361), 32, - anon_sym_LBRACE, + ACTIONS(515), 1, + sym__upname, + ACTIONS(571), 1, anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_POUND, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DQUOTE, - sym_float, + STATE(113), 1, + aux_sym__expression_seq, + STATE(141), 1, + sym_identifier, + STATE(174), 1, + sym_anonymous_function, + STATE(175), 1, + sym_tuple, + STATE(634), 1, + sym_try, + STATE(1118), 1, + sym__maybe_function_expression, + STATE(1232), 1, + sym__maybe_record_expression, + STATE(1292), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(123), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(178), 2, + sym_record, + sym_record_update, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [6475] = 8, + STATE(140), 5, + sym_expression_group, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(281), 11, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_list, + sym__expression_bit_string, + sym_let, + sym_assert, + sym_negation, + sym_string, + sym_integer, + [6539] = 9, ACTIONS(3), 1, sym_module_comment, + ACTIONS(475), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(489), 2, + ACTIONS(447), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(491), 2, + ACTIONS(463), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(501), 2, + ACTIONS(477), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(503), 3, + ACTIONS(449), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(485), 20, + ACTIONS(443), 19, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -11718,20 +11853,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - ACTIONS(487), 20, + ACTIONS(445), 20, anon_sym_if, anon_sym_import, anon_sym_const, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_LT, anon_sym_LT_EQ, @@ -11746,38 +11880,38 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [6544] = 4, + [6610] = 11, ACTIONS(3), 1, sym_module_comment, + ACTIONS(475), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(555), 24, - anon_sym_if, - anon_sym_import, + ACTIONS(447), 2, anon_sym_SLASH, - anon_sym_const, + anon_sym_STAR, + ACTIONS(463), 2, anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, + anon_sym_PLUS, + ACTIONS(477), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(449), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(471), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(553), 25, + ACTIONS(473), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(443), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -11787,44 +11921,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [6605] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(559), 24, + ACTIONS(445), 16, anon_sym_if, anon_sym_import, - anon_sym_SLASH, anon_sym_const, - anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, anon_sym_todo, anon_sym_case, anon_sym_let, @@ -11834,86 +11944,60 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(557), 25, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [6666] = 33, + [6685] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(479), 1, anon_sym_LBRACE, - ACTIONS(451), 1, + ACTIONS(483), 1, anon_sym_POUND, - ACTIONS(453), 1, + ACTIONS(485), 1, anon_sym_LBRACK, - ACTIONS(455), 1, + ACTIONS(487), 1, anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(459), 1, + ACTIONS(491), 1, anon_sym_fn, - ACTIONS(461), 1, + ACTIONS(493), 1, anon_sym_try, - ACTIONS(463), 1, + ACTIONS(495), 1, anon_sym_todo, - ACTIONS(465), 1, + ACTIONS(497), 1, anon_sym_case, - ACTIONS(467), 1, + ACTIONS(499), 1, anon_sym_let, - ACTIONS(469), 1, + ACTIONS(501), 1, anon_sym_assert, - ACTIONS(471), 1, + ACTIONS(503), 1, anon_sym_BANG, - ACTIONS(473), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(475), 1, + ACTIONS(507), 1, sym_float, - ACTIONS(479), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(481), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(515), 1, sym__upname, - ACTIONS(561), 1, + ACTIONS(573), 1, anon_sym_RBRACE, - STATE(93), 1, + STATE(113), 1, aux_sym__expression_seq, - STATE(142), 1, + STATE(141), 1, sym_identifier, - STATE(170), 1, - sym_tuple, - STATE(171), 1, + STATE(174), 1, sym_anonymous_function, - STATE(631), 1, + STATE(175), 1, + sym_tuple, + STATE(634), 1, sym_try, - STATE(1101), 1, + STATE(1118), 1, sym__maybe_function_expression, - STATE(1211), 1, + STATE(1232), 1, sym__maybe_record_expression, - STATE(1263), 1, + STATE(1292), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -11921,14 +12005,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(123), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(178), 2, sym_record, sym_record_update, - ACTIONS(477), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(140), 5, sym_expression_group, sym_case, sym_tuple_access, @@ -11946,38 +12030,41 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [6785] = 4, + [6804] = 12, ACTIONS(3), 1, sym_module_comment, + ACTIONS(475), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(565), 24, - anon_sym_if, - anon_sym_import, + ACTIONS(447), 2, anon_sym_SLASH, - anon_sym_const, + anon_sym_STAR, + ACTIONS(463), 2, anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, + anon_sym_PLUS, + ACTIONS(469), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(477), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(449), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(471), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(563), 25, + ACTIONS(473), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(443), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -11985,78 +12072,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [6846] = 33, + ACTIONS(445), 16, + anon_sym_if, + anon_sym_import, + anon_sym_const, + anon_sym_fn, + anon_sym_external, + anon_sym_type, + anon_sym_try, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [6881] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(479), 1, anon_sym_LBRACE, - ACTIONS(451), 1, + ACTIONS(483), 1, anon_sym_POUND, - ACTIONS(453), 1, + ACTIONS(485), 1, anon_sym_LBRACK, - ACTIONS(455), 1, + ACTIONS(487), 1, anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(459), 1, + ACTIONS(491), 1, anon_sym_fn, - ACTIONS(461), 1, + ACTIONS(493), 1, anon_sym_try, - ACTIONS(463), 1, + ACTIONS(495), 1, anon_sym_todo, - ACTIONS(465), 1, + ACTIONS(497), 1, anon_sym_case, - ACTIONS(467), 1, + ACTIONS(499), 1, anon_sym_let, - ACTIONS(469), 1, + ACTIONS(501), 1, anon_sym_assert, - ACTIONS(471), 1, + ACTIONS(503), 1, anon_sym_BANG, - ACTIONS(473), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(475), 1, + ACTIONS(507), 1, sym_float, - ACTIONS(479), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(481), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(515), 1, sym__upname, - ACTIONS(567), 1, + ACTIONS(575), 1, anon_sym_RBRACE, - STATE(93), 1, + STATE(113), 1, aux_sym__expression_seq, - STATE(142), 1, + STATE(141), 1, sym_identifier, - STATE(170), 1, - sym_tuple, - STATE(171), 1, + STATE(174), 1, sym_anonymous_function, - STATE(631), 1, + STATE(175), 1, + sym_tuple, + STATE(634), 1, sym_try, - STATE(1101), 1, + STATE(1118), 1, sym__maybe_function_expression, - STATE(1211), 1, + STATE(1232), 1, sym__maybe_record_expression, - STATE(1263), 1, + STATE(1292), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -12064,14 +12156,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(123), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(178), 2, sym_record, sym_record_update, - ACTIONS(477), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(140), 5, sym_expression_group, sym_case, sym_tuple_access, @@ -12089,60 +12181,126 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [6965] = 33, + [7000] = 13, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(467), 1, + anon_sym_AMP_AMP, + ACTIONS(475), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(447), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(463), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(469), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(477), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(449), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(471), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(473), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(443), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(445), 16, + anon_sym_if, + anon_sym_import, + anon_sym_const, + anon_sym_fn, + anon_sym_external, + anon_sym_type, + anon_sym_try, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [7079] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(479), 1, anon_sym_LBRACE, - ACTIONS(451), 1, + ACTIONS(483), 1, anon_sym_POUND, - ACTIONS(453), 1, + ACTIONS(485), 1, anon_sym_LBRACK, - ACTIONS(455), 1, + ACTIONS(487), 1, anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(459), 1, + ACTIONS(491), 1, anon_sym_fn, - ACTIONS(461), 1, + ACTIONS(493), 1, anon_sym_try, - ACTIONS(463), 1, + ACTIONS(495), 1, anon_sym_todo, - ACTIONS(465), 1, + ACTIONS(497), 1, anon_sym_case, - ACTIONS(467), 1, + ACTIONS(499), 1, anon_sym_let, - ACTIONS(469), 1, + ACTIONS(501), 1, anon_sym_assert, - ACTIONS(471), 1, + ACTIONS(503), 1, anon_sym_BANG, - ACTIONS(473), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(475), 1, + ACTIONS(507), 1, sym_float, - ACTIONS(479), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(481), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(515), 1, sym__upname, - ACTIONS(569), 1, + ACTIONS(577), 1, anon_sym_RBRACE, - STATE(93), 1, + STATE(113), 1, aux_sym__expression_seq, - STATE(142), 1, + STATE(141), 1, sym_identifier, - STATE(170), 1, - sym_tuple, - STATE(171), 1, + STATE(174), 1, sym_anonymous_function, - STATE(631), 1, + STATE(175), 1, + sym_tuple, + STATE(634), 1, sym_try, - STATE(1101), 1, + STATE(1118), 1, sym__maybe_function_expression, - STATE(1211), 1, + STATE(1232), 1, sym__maybe_record_expression, - STATE(1263), 1, + STATE(1292), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -12150,14 +12308,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(123), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(178), 2, sym_record, sym_record_update, - ACTIONS(477), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(140), 5, sym_expression_group, sym_case, sym_tuple_access, @@ -12175,16 +12333,21 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [7084] = 4, + [7198] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(367), 17, + ACTIONS(581), 24, + anon_sym_if, + anon_sym_import, anon_sym_SLASH, + anon_sym_const, anon_sym_DASH, anon_sym_fn, + anon_sym_external, + anon_sym_type, anon_sym_try, anon_sym_LT, anon_sym_LT_EQ, @@ -12197,21 +12360,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_assert, anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(365), 32, + ACTIONS(579), 25, + ts_builtin_sym_end, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_COMMA, anon_sym_POUND, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -12232,114 +12390,38 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [7145] = 33, + [7259] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, - anon_sym_LBRACE, - ACTIONS(451), 1, - anon_sym_POUND, - ACTIONS(453), 1, - anon_sym_LBRACK, - ACTIONS(455), 1, - anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(445), 24, + anon_sym_if, + anon_sym_import, + anon_sym_SLASH, + anon_sym_const, anon_sym_DASH, - ACTIONS(459), 1, anon_sym_fn, - ACTIONS(461), 1, + anon_sym_external, + anon_sym_type, anon_sym_try, - ACTIONS(463), 1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(465), 1, anon_sym_case, - ACTIONS(467), 1, anon_sym_let, - ACTIONS(469), 1, anon_sym_assert, - ACTIONS(471), 1, anon_sym_BANG, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(475), 1, - sym_float, - ACTIONS(479), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(481), 1, sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(571), 1, - anon_sym_RBRACE, - STATE(101), 1, - aux_sym__expression_seq, - STATE(142), 1, - sym_identifier, - STATE(170), 1, - sym_tuple, - STATE(171), 1, - sym_anonymous_function, - STATE(631), 1, - sym_try, - STATE(1101), 1, - sym__maybe_function_expression, - STATE(1211), 1, - sym__maybe_record_expression, - STATE(1263), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(123), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(169), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(145), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(281), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [7264] = 9, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(499), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(489), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(491), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(501), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(503), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(485), 19, + ACTIONS(443), 25, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -12353,24 +12435,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - ACTIONS(487), 20, + [7320] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(585), 24, anon_sym_if, anon_sym_import, + anon_sym_SLASH, anon_sym_const, + anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, anon_sym_case, anon_sym_let, @@ -12380,88 +12478,47 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [7335] = 14, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(499), 1, - anon_sym_PIPE_GT, - ACTIONS(521), 1, - anon_sym_AMP_AMP, - ACTIONS(533), 1, + ACTIONS(583), 25, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, anon_sym_PIPE_PIPE, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(489), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(491), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(493), 2, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(501), 2, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(503), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(495), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(497), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(573), 11, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - ACTIONS(575), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [7416] = 4, + [7381] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(579), 24, + ACTIONS(589), 24, anon_sym_if, anon_sym_import, anon_sym_SLASH, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_LT, anon_sym_LT_EQ, @@ -12478,7 +12535,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(577), 25, + ACTIONS(587), 25, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -12504,13 +12561,80 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [7477] = 4, + [7442] = 14, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(465), 1, + anon_sym_PIPE_PIPE, + ACTIONS(467), 1, + anon_sym_AMP_AMP, + ACTIONS(475), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(447), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(463), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(469), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(477), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(449), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(471), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(473), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(591), 11, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(593), 16, + anon_sym_if, + anon_sym_import, + anon_sym_const, + anon_sym_fn, + anon_sym_external, + anon_sym_type, + anon_sym_try, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [7523] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(279), 17, + ACTIONS(367), 17, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -12528,7 +12652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(277), 32, + ACTIONS(365), 32, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, @@ -12561,60 +12685,60 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [7538] = 33, + [7584] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(479), 1, anon_sym_LBRACE, - ACTIONS(451), 1, + ACTIONS(483), 1, anon_sym_POUND, - ACTIONS(453), 1, + ACTIONS(485), 1, anon_sym_LBRACK, - ACTIONS(455), 1, + ACTIONS(487), 1, anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(459), 1, + ACTIONS(491), 1, anon_sym_fn, - ACTIONS(461), 1, + ACTIONS(493), 1, anon_sym_try, - ACTIONS(463), 1, + ACTIONS(495), 1, anon_sym_todo, - ACTIONS(465), 1, + ACTIONS(497), 1, anon_sym_case, - ACTIONS(467), 1, + ACTIONS(499), 1, anon_sym_let, - ACTIONS(469), 1, + ACTIONS(501), 1, anon_sym_assert, - ACTIONS(471), 1, + ACTIONS(503), 1, anon_sym_BANG, - ACTIONS(473), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(475), 1, + ACTIONS(507), 1, sym_float, - ACTIONS(479), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(481), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(515), 1, sym__upname, - ACTIONS(581), 1, + ACTIONS(595), 1, anon_sym_RBRACE, - STATE(93), 1, + STATE(58), 1, aux_sym__expression_seq, - STATE(142), 1, + STATE(141), 1, sym_identifier, - STATE(170), 1, - sym_tuple, - STATE(171), 1, + STATE(174), 1, sym_anonymous_function, - STATE(631), 1, + STATE(175), 1, + sym_tuple, + STATE(634), 1, sym_try, - STATE(1101), 1, + STATE(1118), 1, sym__maybe_function_expression, - STATE(1211), 1, + STATE(1232), 1, sym__maybe_record_expression, - STATE(1263), 1, + STATE(1292), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -12622,14 +12746,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(123), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(178), 2, sym_record, sym_record_update, - ACTIONS(477), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(140), 5, sym_expression_group, sym_case, sym_tuple_access, @@ -12647,16 +12771,21 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [7657] = 4, + [7703] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(351), 17, + ACTIONS(599), 24, + anon_sym_if, + anon_sym_import, anon_sym_SLASH, + anon_sym_const, anon_sym_DASH, anon_sym_fn, + anon_sym_external, + anon_sym_type, anon_sym_try, anon_sym_LT, anon_sym_LT_EQ, @@ -12669,21 +12798,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_assert, anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(349), 32, + ACTIONS(597), 25, + ts_builtin_sym_end, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_COMMA, anon_sym_POUND, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -12704,60 +12828,146 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [7718] = 33, + [7764] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(138), 1, - anon_sym_RBRACE, - ACTIONS(583), 1, + ACTIONS(479), 1, anon_sym_LBRACE, - ACTIONS(586), 1, + ACTIONS(483), 1, anon_sym_POUND, - ACTIONS(589), 1, + ACTIONS(485), 1, anon_sym_LBRACK, - ACTIONS(592), 1, + ACTIONS(487), 1, anon_sym_LT_LT, - ACTIONS(595), 1, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(598), 1, + ACTIONS(491), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(493), 1, anon_sym_try, - ACTIONS(604), 1, + ACTIONS(495), 1, anon_sym_todo, - ACTIONS(607), 1, + ACTIONS(497), 1, anon_sym_case, - ACTIONS(610), 1, + ACTIONS(499), 1, anon_sym_let, - ACTIONS(613), 1, + ACTIONS(501), 1, anon_sym_assert, - ACTIONS(616), 1, + ACTIONS(503), 1, anon_sym_BANG, - ACTIONS(619), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(622), 1, + ACTIONS(507), 1, sym_float, - ACTIONS(628), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(631), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(634), 1, + ACTIONS(515), 1, sym__upname, - STATE(93), 1, + ACTIONS(601), 1, + anon_sym_RBRACE, + STATE(113), 1, aux_sym__expression_seq, - STATE(142), 1, + STATE(141), 1, sym_identifier, - STATE(170), 1, + STATE(174), 1, + sym_anonymous_function, + STATE(175), 1, sym_tuple, - STATE(171), 1, + STATE(634), 1, + sym_try, + STATE(1118), 1, + sym__maybe_function_expression, + STATE(1232), 1, + sym__maybe_record_expression, + STATE(1292), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(123), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(178), 2, + sym_record, + sym_record_update, + ACTIONS(509), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(140), 5, + sym_expression_group, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(281), 11, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_list, + sym__expression_bit_string, + sym_let, + sym_assert, + sym_negation, + sym_string, + sym_integer, + [7883] = 33, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(479), 1, + anon_sym_LBRACE, + ACTIONS(483), 1, + anon_sym_POUND, + ACTIONS(485), 1, + anon_sym_LBRACK, + ACTIONS(487), 1, + anon_sym_LT_LT, + ACTIONS(489), 1, + anon_sym_DASH, + ACTIONS(491), 1, + anon_sym_fn, + ACTIONS(493), 1, + anon_sym_try, + ACTIONS(495), 1, + anon_sym_todo, + ACTIONS(497), 1, + anon_sym_case, + ACTIONS(499), 1, + anon_sym_let, + ACTIONS(501), 1, + anon_sym_assert, + ACTIONS(503), 1, + anon_sym_BANG, + ACTIONS(505), 1, + anon_sym_DQUOTE, + ACTIONS(507), 1, + sym_float, + ACTIONS(511), 1, + sym__decimal, + ACTIONS(513), 1, + sym__name, + ACTIONS(515), 1, + sym__upname, + ACTIONS(603), 1, + anon_sym_RBRACE, + STATE(102), 1, + aux_sym__expression_seq, + STATE(141), 1, + sym_identifier, + STATE(174), 1, sym_anonymous_function, - STATE(631), 1, + STATE(175), 1, + sym_tuple, + STATE(634), 1, sym_try, - STATE(1101), 1, + STATE(1118), 1, sym__maybe_function_expression, - STATE(1211), 1, + STATE(1232), 1, sym__maybe_record_expression, - STATE(1263), 1, + STATE(1292), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -12765,14 +12975,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(123), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(178), 2, sym_record, sym_record_update, - ACTIONS(625), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(140), 5, sym_expression_group, sym_case, sym_tuple_access, @@ -12790,20 +13000,15 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [7837] = 4, + [8002] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(639), 24, - anon_sym_if, - anon_sym_import, + ACTIONS(343), 17, anon_sym_SLASH, - anon_sym_const, anon_sym_DASH, - anon_sym_external, - anon_sym_type, anon_sym_fn, anon_sym_try, anon_sym_LT, @@ -12817,16 +13022,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_assert, anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(637), 25, - ts_builtin_sym_end, + ACTIONS(341), 32, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_COMMA, anon_sym_POUND, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -12847,20 +13057,15 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [7898] = 4, + [8063] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(643), 24, - anon_sym_if, - anon_sym_import, + ACTIONS(355), 17, anon_sym_SLASH, - anon_sym_const, anon_sym_DASH, - anon_sym_external, - anon_sym_type, anon_sym_fn, anon_sym_try, anon_sym_LT, @@ -12874,16 +13079,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_assert, anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(641), 25, - ts_builtin_sym_end, + ACTIONS(353), 32, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_COMMA, anon_sym_POUND, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -12904,107 +13114,21 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [7959] = 33, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(447), 1, - anon_sym_LBRACE, - ACTIONS(451), 1, - anon_sym_POUND, - ACTIONS(453), 1, - anon_sym_LBRACK, - ACTIONS(455), 1, - anon_sym_LT_LT, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(459), 1, - anon_sym_fn, - ACTIONS(461), 1, - anon_sym_try, - ACTIONS(463), 1, - anon_sym_todo, - ACTIONS(465), 1, - anon_sym_case, - ACTIONS(467), 1, - anon_sym_let, - ACTIONS(469), 1, - anon_sym_assert, - ACTIONS(471), 1, - anon_sym_BANG, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(475), 1, - sym_float, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(645), 1, - anon_sym_RBRACE, - STATE(93), 1, - aux_sym__expression_seq, - STATE(142), 1, - sym_identifier, - STATE(170), 1, - sym_tuple, - STATE(171), 1, - sym_anonymous_function, - STATE(631), 1, - sym_try, - STATE(1101), 1, - sym__maybe_function_expression, - STATE(1211), 1, - sym__maybe_record_expression, - STATE(1263), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(123), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(169), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(145), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(281), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [8078] = 4, + [8124] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(649), 24, + ACTIONS(607), 24, anon_sym_if, anon_sym_import, anon_sym_SLASH, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_LT, anon_sym_LT_EQ, @@ -13021,7 +13145,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(647), 25, + ACTIONS(605), 25, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -13047,60 +13171,60 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [8139] = 33, + [8185] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(479), 1, anon_sym_LBRACE, - ACTIONS(451), 1, + ACTIONS(483), 1, anon_sym_POUND, - ACTIONS(453), 1, + ACTIONS(485), 1, anon_sym_LBRACK, - ACTIONS(455), 1, + ACTIONS(487), 1, anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(459), 1, + ACTIONS(491), 1, anon_sym_fn, - ACTIONS(461), 1, + ACTIONS(493), 1, anon_sym_try, - ACTIONS(463), 1, + ACTIONS(495), 1, anon_sym_todo, - ACTIONS(465), 1, + ACTIONS(497), 1, anon_sym_case, - ACTIONS(467), 1, + ACTIONS(499), 1, anon_sym_let, - ACTIONS(469), 1, + ACTIONS(501), 1, anon_sym_assert, - ACTIONS(471), 1, + ACTIONS(503), 1, anon_sym_BANG, - ACTIONS(473), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(475), 1, + ACTIONS(507), 1, sym_float, - ACTIONS(479), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(481), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(515), 1, sym__upname, - ACTIONS(651), 1, + ACTIONS(609), 1, anon_sym_RBRACE, - STATE(93), 1, + STATE(113), 1, aux_sym__expression_seq, - STATE(142), 1, + STATE(141), 1, sym_identifier, - STATE(170), 1, - sym_tuple, - STATE(171), 1, + STATE(174), 1, sym_anonymous_function, - STATE(631), 1, + STATE(175), 1, + sym_tuple, + STATE(634), 1, sym_try, - STATE(1101), 1, + STATE(1118), 1, sym__maybe_function_expression, - STATE(1211), 1, + STATE(1232), 1, sym__maybe_record_expression, - STATE(1263), 1, + STATE(1292), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -13108,14 +13232,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(123), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(178), 2, sym_record, sym_record_update, - ACTIONS(477), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(140), 5, sym_expression_group, sym_case, sym_tuple_access, @@ -13133,127 +13257,60 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [8258] = 14, + [8304] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(499), 1, - anon_sym_PIPE_GT, - ACTIONS(521), 1, - anon_sym_AMP_AMP, - ACTIONS(533), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(489), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(491), 2, + ACTIONS(479), 1, + anon_sym_LBRACE, + ACTIONS(483), 1, + anon_sym_POUND, + ACTIONS(485), 1, + anon_sym_LBRACK, + ACTIONS(487), 1, + anon_sym_LT_LT, + ACTIONS(489), 1, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(493), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(501), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(503), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(495), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(497), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(653), 11, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(655), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [8339] = 33, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(447), 1, - anon_sym_LBRACE, - ACTIONS(451), 1, - anon_sym_POUND, - ACTIONS(453), 1, - anon_sym_LBRACK, - ACTIONS(455), 1, - anon_sym_LT_LT, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(459), 1, + ACTIONS(491), 1, anon_sym_fn, - ACTIONS(461), 1, + ACTIONS(493), 1, anon_sym_try, - ACTIONS(463), 1, + ACTIONS(495), 1, anon_sym_todo, - ACTIONS(465), 1, + ACTIONS(497), 1, anon_sym_case, - ACTIONS(467), 1, + ACTIONS(499), 1, anon_sym_let, - ACTIONS(469), 1, + ACTIONS(501), 1, anon_sym_assert, - ACTIONS(471), 1, + ACTIONS(503), 1, anon_sym_BANG, - ACTIONS(473), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(475), 1, + ACTIONS(507), 1, sym_float, - ACTIONS(479), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(481), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(515), 1, sym__upname, - ACTIONS(657), 1, + ACTIONS(611), 1, anon_sym_RBRACE, - STATE(96), 1, + STATE(66), 1, aux_sym__expression_seq, - STATE(142), 1, + STATE(141), 1, sym_identifier, - STATE(170), 1, - sym_tuple, - STATE(171), 1, + STATE(174), 1, sym_anonymous_function, - STATE(631), 1, + STATE(175), 1, + sym_tuple, + STATE(634), 1, sym_try, - STATE(1101), 1, + STATE(1118), 1, sym__maybe_function_expression, - STATE(1211), 1, + STATE(1232), 1, sym__maybe_record_expression, - STATE(1263), 1, + STATE(1292), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -13261,14 +13318,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(123), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(178), 2, sym_record, sym_record_update, - ACTIONS(477), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(140), 5, sym_expression_group, sym_case, sym_tuple_access, @@ -13286,60 +13343,60 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [8458] = 33, + [8423] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(479), 1, anon_sym_LBRACE, - ACTIONS(451), 1, + ACTIONS(483), 1, anon_sym_POUND, - ACTIONS(453), 1, + ACTIONS(485), 1, anon_sym_LBRACK, - ACTIONS(455), 1, + ACTIONS(487), 1, anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(459), 1, + ACTIONS(491), 1, anon_sym_fn, - ACTIONS(461), 1, + ACTIONS(493), 1, anon_sym_try, - ACTIONS(463), 1, + ACTIONS(495), 1, anon_sym_todo, - ACTIONS(465), 1, + ACTIONS(497), 1, anon_sym_case, - ACTIONS(467), 1, + ACTIONS(499), 1, anon_sym_let, - ACTIONS(469), 1, + ACTIONS(501), 1, anon_sym_assert, - ACTIONS(471), 1, + ACTIONS(503), 1, anon_sym_BANG, - ACTIONS(473), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(475), 1, + ACTIONS(507), 1, sym_float, - ACTIONS(479), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(481), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(515), 1, sym__upname, - ACTIONS(659), 1, + ACTIONS(613), 1, anon_sym_RBRACE, - STATE(93), 1, + STATE(113), 1, aux_sym__expression_seq, - STATE(142), 1, + STATE(141), 1, sym_identifier, - STATE(170), 1, - sym_tuple, - STATE(171), 1, + STATE(174), 1, sym_anonymous_function, - STATE(631), 1, + STATE(175), 1, + sym_tuple, + STATE(634), 1, sym_try, - STATE(1101), 1, + STATE(1118), 1, sym__maybe_function_expression, - STATE(1211), 1, + STATE(1232), 1, sym__maybe_record_expression, - STATE(1263), 1, + STATE(1292), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -13347,14 +13404,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(123), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(178), 2, sym_record, sym_record_update, - ACTIONS(477), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(140), 5, sym_expression_group, sym_case, sym_tuple_access, @@ -13372,81 +13429,81 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [8577] = 33, + [8542] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(260), 1, anon_sym_LBRACE, - ACTIONS(451), 1, + ACTIONS(262), 1, anon_sym_POUND, - ACTIONS(453), 1, + ACTIONS(266), 1, anon_sym_LBRACK, - ACTIONS(455), 1, + ACTIONS(268), 1, anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(459), 1, + ACTIONS(272), 1, anon_sym_fn, - ACTIONS(461), 1, - anon_sym_try, - ACTIONS(463), 1, + ACTIONS(274), 1, anon_sym_todo, - ACTIONS(465), 1, + ACTIONS(278), 1, anon_sym_case, - ACTIONS(467), 1, + ACTIONS(280), 1, anon_sym_let, - ACTIONS(469), 1, + ACTIONS(282), 1, anon_sym_assert, - ACTIONS(471), 1, + ACTIONS(284), 1, anon_sym_BANG, - ACTIONS(473), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(475), 1, + ACTIONS(288), 1, sym_float, - ACTIONS(479), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(481), 1, + ACTIONS(294), 1, + sym__discard_name, + ACTIONS(296), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(298), 1, sym__upname, - ACTIONS(661), 1, - anon_sym_RBRACE, - STATE(93), 1, - aux_sym__expression_seq, - STATE(142), 1, + STATE(366), 1, sym_identifier, - STATE(170), 1, + STATE(387), 1, sym_tuple, - STATE(171), 1, + STATE(388), 1, sym_anonymous_function, - STATE(631), 1, - sym_try, - STATE(1101), 1, + STATE(1143), 1, + sym_hole, + STATE(1149), 1, sym__maybe_function_expression, - STATE(1211), 1, - sym__maybe_record_expression, - STATE(1263), 1, + STATE(1163), 1, + sym_argument, + STATE(1220), 1, + sym_label, + STATE(1259), 1, sym__maybe_tuple_expression, + STATE(1262), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(123), 2, + STATE(360), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(386), 2, sym_record, sym_record_update, - ACTIONS(477), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(368), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(281), 11, + STATE(603), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -13458,117 +13515,127 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [8696] = 4, + [8661] = 14, ACTIONS(3), 1, sym_module_comment, + ACTIONS(465), 1, + anon_sym_PIPE_PIPE, + ACTIONS(467), 1, + anon_sym_AMP_AMP, + ACTIONS(475), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(665), 24, - anon_sym_if, - anon_sym_import, + ACTIONS(447), 2, anon_sym_SLASH, - anon_sym_const, + anon_sym_STAR, + ACTIONS(463), 2, anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, + anon_sym_PLUS, + ACTIONS(469), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(477), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(449), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(471), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(663), 25, + ACTIONS(473), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(615), 11, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [8757] = 33, + ACTIONS(617), 16, + anon_sym_if, + anon_sym_import, + anon_sym_const, + anon_sym_fn, + anon_sym_external, + anon_sym_type, + anon_sym_try, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [8742] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(479), 1, anon_sym_LBRACE, - ACTIONS(451), 1, + ACTIONS(483), 1, anon_sym_POUND, - ACTIONS(453), 1, + ACTIONS(485), 1, anon_sym_LBRACK, - ACTIONS(455), 1, + ACTIONS(487), 1, anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(459), 1, + ACTIONS(491), 1, anon_sym_fn, - ACTIONS(461), 1, + ACTIONS(493), 1, anon_sym_try, - ACTIONS(463), 1, + ACTIONS(495), 1, anon_sym_todo, - ACTIONS(465), 1, + ACTIONS(497), 1, anon_sym_case, - ACTIONS(467), 1, + ACTIONS(499), 1, anon_sym_let, - ACTIONS(469), 1, + ACTIONS(501), 1, anon_sym_assert, - ACTIONS(471), 1, + ACTIONS(503), 1, anon_sym_BANG, - ACTIONS(473), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(475), 1, + ACTIONS(507), 1, sym_float, - ACTIONS(479), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(481), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(515), 1, sym__upname, - ACTIONS(667), 1, + ACTIONS(619), 1, anon_sym_RBRACE, - STATE(102), 1, + STATE(113), 1, aux_sym__expression_seq, - STATE(142), 1, + STATE(141), 1, sym_identifier, - STATE(170), 1, - sym_tuple, - STATE(171), 1, + STATE(174), 1, sym_anonymous_function, - STATE(631), 1, + STATE(175), 1, + sym_tuple, + STATE(634), 1, sym_try, - STATE(1101), 1, + STATE(1118), 1, sym__maybe_function_expression, - STATE(1211), 1, + STATE(1232), 1, sym__maybe_record_expression, - STATE(1263), 1, + STATE(1292), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -13576,14 +13643,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(123), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(178), 2, sym_record, sym_record_update, - ACTIONS(477), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(140), 5, sym_expression_group, sym_case, sym_tuple_access, @@ -13601,60 +13668,60 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [8876] = 33, + [8861] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(479), 1, anon_sym_LBRACE, - ACTIONS(451), 1, + ACTIONS(483), 1, anon_sym_POUND, - ACTIONS(453), 1, + ACTIONS(485), 1, anon_sym_LBRACK, - ACTIONS(455), 1, + ACTIONS(487), 1, anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(459), 1, + ACTIONS(491), 1, anon_sym_fn, - ACTIONS(461), 1, + ACTIONS(493), 1, anon_sym_try, - ACTIONS(463), 1, + ACTIONS(495), 1, anon_sym_todo, - ACTIONS(465), 1, + ACTIONS(497), 1, anon_sym_case, - ACTIONS(467), 1, + ACTIONS(499), 1, anon_sym_let, - ACTIONS(469), 1, + ACTIONS(501), 1, anon_sym_assert, - ACTIONS(471), 1, + ACTIONS(503), 1, anon_sym_BANG, - ACTIONS(473), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(475), 1, + ACTIONS(507), 1, sym_float, - ACTIONS(479), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(481), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(515), 1, sym__upname, - ACTIONS(669), 1, + ACTIONS(621), 1, anon_sym_RBRACE, - STATE(93), 1, + STATE(105), 1, aux_sym__expression_seq, - STATE(142), 1, + STATE(141), 1, sym_identifier, - STATE(170), 1, - sym_tuple, - STATE(171), 1, + STATE(174), 1, sym_anonymous_function, - STATE(631), 1, + STATE(175), 1, + sym_tuple, + STATE(634), 1, sym_try, - STATE(1101), 1, + STATE(1118), 1, sym__maybe_function_expression, - STATE(1211), 1, + STATE(1232), 1, sym__maybe_record_expression, - STATE(1263), 1, + STATE(1292), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -13662,14 +13729,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(123), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(178), 2, sym_record, sym_record_update, - ACTIONS(477), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(140), 5, sym_expression_group, sym_case, sym_tuple_access, @@ -13687,127 +13754,146 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [8995] = 14, + [8980] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(499), 1, - anon_sym_PIPE_GT, - ACTIONS(521), 1, - anon_sym_AMP_AMP, - ACTIONS(533), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(489), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(491), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(493), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(501), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(503), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(495), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(497), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(671), 11, - ts_builtin_sym_end, + ACTIONS(479), 1, anon_sym_LBRACE, + ACTIONS(483), 1, anon_sym_POUND, + ACTIONS(485), 1, anon_sym_LBRACK, + ACTIONS(487), 1, anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(673), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, - anon_sym_external, - anon_sym_type, + ACTIONS(489), 1, + anon_sym_DASH, + ACTIONS(491), 1, anon_sym_fn, + ACTIONS(493), 1, anon_sym_try, + ACTIONS(495), 1, anon_sym_todo, + ACTIONS(497), 1, anon_sym_case, + ACTIONS(499), 1, anon_sym_let, + ACTIONS(501), 1, anon_sym_assert, + ACTIONS(503), 1, anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, + ACTIONS(505), 1, + anon_sym_DQUOTE, + ACTIONS(507), 1, + sym_float, + ACTIONS(511), 1, sym__decimal, + ACTIONS(513), 1, sym__name, - [9076] = 33, + ACTIONS(515), 1, + sym__upname, + ACTIONS(623), 1, + anon_sym_RBRACE, + STATE(113), 1, + aux_sym__expression_seq, + STATE(141), 1, + sym_identifier, + STATE(174), 1, + sym_anonymous_function, + STATE(175), 1, + sym_tuple, + STATE(634), 1, + sym_try, + STATE(1118), 1, + sym__maybe_function_expression, + STATE(1232), 1, + sym__maybe_record_expression, + STATE(1292), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(123), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(178), 2, + sym_record, + sym_record_update, + ACTIONS(509), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(140), 5, + sym_expression_group, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(281), 11, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_list, + sym__expression_bit_string, + sym_let, + sym_assert, + sym_negation, + sym_string, + sym_integer, + [9099] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(479), 1, anon_sym_LBRACE, - ACTIONS(451), 1, + ACTIONS(483), 1, anon_sym_POUND, - ACTIONS(453), 1, + ACTIONS(485), 1, anon_sym_LBRACK, - ACTIONS(455), 1, + ACTIONS(487), 1, anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(459), 1, + ACTIONS(491), 1, anon_sym_fn, - ACTIONS(461), 1, + ACTIONS(493), 1, anon_sym_try, - ACTIONS(463), 1, + ACTIONS(495), 1, anon_sym_todo, - ACTIONS(465), 1, + ACTIONS(497), 1, anon_sym_case, - ACTIONS(467), 1, + ACTIONS(499), 1, anon_sym_let, - ACTIONS(469), 1, + ACTIONS(501), 1, anon_sym_assert, - ACTIONS(471), 1, + ACTIONS(503), 1, anon_sym_BANG, - ACTIONS(473), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(475), 1, + ACTIONS(507), 1, sym_float, - ACTIONS(479), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(481), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(515), 1, sym__upname, - ACTIONS(675), 1, + ACTIONS(625), 1, anon_sym_RBRACE, - STATE(54), 1, + STATE(113), 1, aux_sym__expression_seq, - STATE(142), 1, + STATE(141), 1, sym_identifier, - STATE(170), 1, - sym_tuple, - STATE(171), 1, + STATE(174), 1, sym_anonymous_function, - STATE(631), 1, + STATE(175), 1, + sym_tuple, + STATE(634), 1, sym_try, - STATE(1101), 1, + STATE(1118), 1, sym__maybe_function_expression, - STATE(1211), 1, + STATE(1232), 1, sym__maybe_record_expression, - STATE(1263), 1, + STATE(1292), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -13815,14 +13901,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(123), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(178), 2, sym_record, sym_record_update, - ACTIONS(477), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(140), 5, sym_expression_group, sym_case, sym_tuple_access, @@ -13840,60 +13926,60 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [9195] = 33, + [9218] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(479), 1, anon_sym_LBRACE, - ACTIONS(451), 1, + ACTIONS(483), 1, anon_sym_POUND, - ACTIONS(453), 1, + ACTIONS(485), 1, anon_sym_LBRACK, - ACTIONS(455), 1, + ACTIONS(487), 1, anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(459), 1, + ACTIONS(491), 1, anon_sym_fn, - ACTIONS(461), 1, + ACTIONS(493), 1, anon_sym_try, - ACTIONS(463), 1, + ACTIONS(495), 1, anon_sym_todo, - ACTIONS(465), 1, + ACTIONS(497), 1, anon_sym_case, - ACTIONS(467), 1, + ACTIONS(499), 1, anon_sym_let, - ACTIONS(469), 1, + ACTIONS(501), 1, anon_sym_assert, - ACTIONS(471), 1, + ACTIONS(503), 1, anon_sym_BANG, - ACTIONS(473), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(475), 1, + ACTIONS(507), 1, sym_float, - ACTIONS(479), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(481), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(515), 1, sym__upname, - ACTIONS(677), 1, + ACTIONS(627), 1, anon_sym_RBRACE, - STATE(93), 1, + STATE(107), 1, aux_sym__expression_seq, - STATE(142), 1, + STATE(141), 1, sym_identifier, - STATE(170), 1, - sym_tuple, - STATE(171), 1, + STATE(174), 1, sym_anonymous_function, - STATE(631), 1, + STATE(175), 1, + sym_tuple, + STATE(634), 1, sym_try, - STATE(1101), 1, + STATE(1118), 1, sym__maybe_function_expression, - STATE(1211), 1, + STATE(1232), 1, sym__maybe_record_expression, - STATE(1263), 1, + STATE(1292), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -13901,14 +13987,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(123), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(178), 2, sym_record, sym_record_update, - ACTIONS(477), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(140), 5, sym_expression_group, sym_case, sym_tuple_access, @@ -13926,184 +14012,146 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [9314] = 14, + [9337] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(499), 1, - anon_sym_PIPE_GT, - ACTIONS(521), 1, - anon_sym_AMP_AMP, - ACTIONS(533), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(489), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(491), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(493), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(501), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(503), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(495), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(497), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(679), 11, - ts_builtin_sym_end, + ACTIONS(479), 1, anon_sym_LBRACE, + ACTIONS(483), 1, anon_sym_POUND, + ACTIONS(485), 1, anon_sym_LBRACK, + ACTIONS(487), 1, anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(681), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, - anon_sym_external, - anon_sym_type, + ACTIONS(489), 1, + anon_sym_DASH, + ACTIONS(491), 1, anon_sym_fn, + ACTIONS(493), 1, anon_sym_try, + ACTIONS(495), 1, anon_sym_todo, + ACTIONS(497), 1, anon_sym_case, + ACTIONS(499), 1, anon_sym_let, + ACTIONS(501), 1, anon_sym_assert, + ACTIONS(503), 1, anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, + ACTIONS(505), 1, + anon_sym_DQUOTE, + ACTIONS(507), 1, + sym_float, + ACTIONS(511), 1, sym__decimal, + ACTIONS(513), 1, sym__name, - [9395] = 4, - ACTIONS(3), 1, - sym_module_comment, + ACTIONS(515), 1, + sym__upname, + ACTIONS(629), 1, + anon_sym_RBRACE, + STATE(113), 1, + aux_sym__expression_seq, + STATE(141), 1, + sym_identifier, + STATE(174), 1, + sym_anonymous_function, + STATE(175), 1, + sym_tuple, + STATE(634), 1, + sym_try, + STATE(1118), 1, + sym__maybe_function_expression, + STATE(1232), 1, + sym__maybe_record_expression, + STATE(1292), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(685), 24, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_const, - anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(683), 25, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DQUOTE, - sym_float, + STATE(123), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(178), 2, + sym_record, + sym_record_update, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - sym__upname, + STATE(140), 5, + sym_expression_group, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(281), 11, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_list, + sym__expression_bit_string, + sym_let, + sym_assert, + sym_negation, + sym_string, + sym_integer, [9456] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(479), 1, anon_sym_LBRACE, - ACTIONS(451), 1, + ACTIONS(483), 1, anon_sym_POUND, - ACTIONS(453), 1, + ACTIONS(485), 1, anon_sym_LBRACK, - ACTIONS(455), 1, + ACTIONS(487), 1, anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(459), 1, + ACTIONS(491), 1, anon_sym_fn, - ACTIONS(461), 1, + ACTIONS(493), 1, anon_sym_try, - ACTIONS(463), 1, + ACTIONS(495), 1, anon_sym_todo, - ACTIONS(465), 1, + ACTIONS(497), 1, anon_sym_case, - ACTIONS(467), 1, + ACTIONS(499), 1, anon_sym_let, - ACTIONS(469), 1, + ACTIONS(501), 1, anon_sym_assert, - ACTIONS(471), 1, + ACTIONS(503), 1, anon_sym_BANG, - ACTIONS(473), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(475), 1, + ACTIONS(507), 1, sym_float, - ACTIONS(479), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(481), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(515), 1, sym__upname, - ACTIONS(687), 1, + ACTIONS(631), 1, anon_sym_RBRACE, - STATE(93), 1, + STATE(108), 1, aux_sym__expression_seq, - STATE(142), 1, + STATE(141), 1, sym_identifier, - STATE(170), 1, - sym_tuple, - STATE(171), 1, + STATE(174), 1, sym_anonymous_function, - STATE(631), 1, + STATE(175), 1, + sym_tuple, + STATE(634), 1, sym_try, - STATE(1101), 1, + STATE(1118), 1, sym__maybe_function_expression, - STATE(1211), 1, + STATE(1232), 1, sym__maybe_record_expression, - STATE(1263), 1, + STATE(1292), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -14111,14 +14159,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(123), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(178), 2, sym_record, sym_record_update, - ACTIONS(477), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(140), 5, sym_expression_group, sym_case, sym_tuple_access, @@ -14136,174 +14184,60 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [9575] = 4, + [9575] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(691), 24, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_const, + ACTIONS(479), 1, + anon_sym_LBRACE, + ACTIONS(483), 1, + anon_sym_POUND, + ACTIONS(485), 1, + anon_sym_LBRACK, + ACTIONS(487), 1, + anon_sym_LT_LT, + ACTIONS(489), 1, anon_sym_DASH, - anon_sym_external, - anon_sym_type, + ACTIONS(491), 1, anon_sym_fn, + ACTIONS(493), 1, anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(689), 25, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [9636] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(695), 24, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_const, - anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(693), 25, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [9697] = 33, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(447), 1, - anon_sym_LBRACE, - ACTIONS(451), 1, - anon_sym_POUND, - ACTIONS(453), 1, - anon_sym_LBRACK, - ACTIONS(455), 1, - anon_sym_LT_LT, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(459), 1, - anon_sym_fn, - ACTIONS(461), 1, - anon_sym_try, - ACTIONS(463), 1, + ACTIONS(495), 1, anon_sym_todo, - ACTIONS(465), 1, + ACTIONS(497), 1, anon_sym_case, - ACTIONS(467), 1, + ACTIONS(499), 1, anon_sym_let, - ACTIONS(469), 1, + ACTIONS(501), 1, anon_sym_assert, - ACTIONS(471), 1, + ACTIONS(503), 1, anon_sym_BANG, - ACTIONS(473), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(475), 1, + ACTIONS(507), 1, sym_float, - ACTIONS(479), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(481), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(515), 1, sym__upname, - ACTIONS(697), 1, + ACTIONS(633), 1, anon_sym_RBRACE, - STATE(60), 1, + STATE(113), 1, aux_sym__expression_seq, - STATE(142), 1, + STATE(141), 1, sym_identifier, - STATE(170), 1, - sym_tuple, - STATE(171), 1, + STATE(174), 1, sym_anonymous_function, - STATE(631), 1, + STATE(175), 1, + sym_tuple, + STATE(634), 1, sym_try, - STATE(1101), 1, + STATE(1118), 1, sym__maybe_function_expression, - STATE(1211), 1, + STATE(1232), 1, sym__maybe_record_expression, - STATE(1263), 1, + STATE(1292), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -14311,14 +14245,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(123), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(178), 2, sym_record, sym_record_update, - ACTIONS(477), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(140), 5, sym_expression_group, sym_case, sym_tuple_access, @@ -14336,60 +14270,60 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [9816] = 33, + [9694] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(138), 1, + anon_sym_RBRACE, + ACTIONS(635), 1, anon_sym_LBRACE, - ACTIONS(451), 1, + ACTIONS(638), 1, anon_sym_POUND, - ACTIONS(453), 1, + ACTIONS(641), 1, anon_sym_LBRACK, - ACTIONS(455), 1, + ACTIONS(644), 1, anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(647), 1, anon_sym_DASH, - ACTIONS(459), 1, + ACTIONS(650), 1, anon_sym_fn, - ACTIONS(461), 1, + ACTIONS(653), 1, anon_sym_try, - ACTIONS(463), 1, + ACTIONS(656), 1, anon_sym_todo, - ACTIONS(465), 1, + ACTIONS(659), 1, anon_sym_case, - ACTIONS(467), 1, + ACTIONS(662), 1, anon_sym_let, - ACTIONS(469), 1, + ACTIONS(665), 1, anon_sym_assert, - ACTIONS(471), 1, + ACTIONS(668), 1, anon_sym_BANG, - ACTIONS(473), 1, + ACTIONS(671), 1, anon_sym_DQUOTE, - ACTIONS(475), 1, + ACTIONS(674), 1, sym_float, - ACTIONS(479), 1, + ACTIONS(680), 1, sym__decimal, - ACTIONS(481), 1, + ACTIONS(683), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(686), 1, sym__upname, - ACTIONS(699), 1, - anon_sym_RBRACE, - STATE(108), 1, + STATE(113), 1, aux_sym__expression_seq, - STATE(142), 1, + STATE(141), 1, sym_identifier, - STATE(170), 1, - sym_tuple, - STATE(171), 1, + STATE(174), 1, sym_anonymous_function, - STATE(631), 1, + STATE(175), 1, + sym_tuple, + STATE(634), 1, sym_try, - STATE(1101), 1, + STATE(1118), 1, sym__maybe_function_expression, - STATE(1211), 1, + STATE(1232), 1, sym__maybe_record_expression, - STATE(1263), 1, + STATE(1292), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -14397,14 +14331,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(123), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(178), 2, sym_record, sym_record_update, - ACTIONS(477), 3, + ACTIONS(677), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(140), 5, sym_expression_group, sym_case, sym_tuple_access, @@ -14422,142 +14356,229 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [9935] = 32, + [9813] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(691), 24, + anon_sym_if, + anon_sym_import, + anon_sym_SLASH, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_type, + anon_sym_try, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + ACTIONS(689), 25, + ts_builtin_sym_end, anon_sym_LBRACE, - ACTIONS(451), 1, anon_sym_POUND, - ACTIONS(453), 1, anon_sym_LBRACK, - ACTIONS(455), 1, anon_sym_LT_LT, - ACTIONS(457), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [9874] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(695), 24, + anon_sym_if, + anon_sym_import, + anon_sym_SLASH, + anon_sym_const, anon_sym_DASH, - ACTIONS(459), 1, anon_sym_fn, - ACTIONS(461), 1, + anon_sym_external, + anon_sym_type, anon_sym_try, - ACTIONS(463), 1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(465), 1, anon_sym_case, - ACTIONS(467), 1, anon_sym_let, - ACTIONS(469), 1, anon_sym_assert, - ACTIONS(471), 1, anon_sym_BANG, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(475), 1, - sym_float, - ACTIONS(479), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(481), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(693), 25, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, sym__upname, - STATE(105), 1, - aux_sym__expression_seq, - STATE(142), 1, - sym_identifier, - STATE(170), 1, - sym_tuple, - STATE(171), 1, - sym_anonymous_function, - STATE(631), 1, - sym_try, - STATE(1101), 1, - sym__maybe_function_expression, - STATE(1211), 1, - sym__maybe_record_expression, - STATE(1263), 1, - sym__maybe_tuple_expression, + [9935] = 4, + ACTIONS(3), 1, + sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(123), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(169), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, + ACTIONS(699), 24, + anon_sym_if, + anon_sym_import, + anon_sym_SLASH, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_type, + anon_sym_try, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + ACTIONS(697), 25, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DQUOTE, + sym_float, sym__hex, sym__octal, sym__binary, - STATE(145), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(281), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [10051] = 32, + sym__upname, + [9996] = 32, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(479), 1, anon_sym_LBRACE, - ACTIONS(451), 1, + ACTIONS(483), 1, anon_sym_POUND, - ACTIONS(453), 1, + ACTIONS(485), 1, anon_sym_LBRACK, - ACTIONS(455), 1, + ACTIONS(487), 1, anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(459), 1, + ACTIONS(491), 1, anon_sym_fn, - ACTIONS(461), 1, + ACTIONS(493), 1, anon_sym_try, - ACTIONS(463), 1, + ACTIONS(495), 1, anon_sym_todo, - ACTIONS(465), 1, + ACTIONS(497), 1, anon_sym_case, - ACTIONS(467), 1, + ACTIONS(499), 1, anon_sym_let, - ACTIONS(469), 1, + ACTIONS(501), 1, anon_sym_assert, - ACTIONS(471), 1, + ACTIONS(503), 1, anon_sym_BANG, - ACTIONS(473), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(475), 1, + ACTIONS(507), 1, sym_float, - ACTIONS(479), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(481), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(515), 1, sym__upname, - STATE(66), 1, + STATE(82), 1, aux_sym__expression_seq, - STATE(142), 1, + STATE(141), 1, sym_identifier, - STATE(170), 1, - sym_tuple, - STATE(171), 1, + STATE(174), 1, sym_anonymous_function, - STATE(631), 1, + STATE(175), 1, + sym_tuple, + STATE(634), 1, sym_try, - STATE(1101), 1, + STATE(1118), 1, sym__maybe_function_expression, - STATE(1211), 1, + STATE(1232), 1, sym__maybe_record_expression, - STATE(1263), 1, + STATE(1292), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -14565,14 +14586,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(123), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(178), 2, sym_record, sym_record_update, - ACTIONS(477), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(140), 5, sym_expression_group, sym_case, sym_tuple_access, @@ -14590,58 +14611,58 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [10167] = 32, + [10112] = 32, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(479), 1, anon_sym_LBRACE, - ACTIONS(451), 1, + ACTIONS(483), 1, anon_sym_POUND, - ACTIONS(453), 1, + ACTIONS(485), 1, anon_sym_LBRACK, - ACTIONS(455), 1, + ACTIONS(487), 1, anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(459), 1, + ACTIONS(491), 1, anon_sym_fn, - ACTIONS(461), 1, + ACTIONS(493), 1, anon_sym_try, - ACTIONS(463), 1, + ACTIONS(495), 1, anon_sym_todo, - ACTIONS(465), 1, + ACTIONS(497), 1, anon_sym_case, - ACTIONS(467), 1, + ACTIONS(499), 1, anon_sym_let, - ACTIONS(469), 1, + ACTIONS(501), 1, anon_sym_assert, - ACTIONS(471), 1, + ACTIONS(503), 1, anon_sym_BANG, - ACTIONS(473), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(475), 1, + ACTIONS(507), 1, sym_float, - ACTIONS(479), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(481), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(515), 1, sym__upname, - STATE(98), 1, + STATE(63), 1, aux_sym__expression_seq, - STATE(142), 1, + STATE(141), 1, sym_identifier, - STATE(170), 1, - sym_tuple, - STATE(171), 1, + STATE(174), 1, sym_anonymous_function, - STATE(631), 1, + STATE(175), 1, + sym_tuple, + STATE(634), 1, sym_try, - STATE(1101), 1, + STATE(1118), 1, sym__maybe_function_expression, - STATE(1211), 1, + STATE(1232), 1, sym__maybe_record_expression, - STATE(1263), 1, + STATE(1292), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -14649,14 +14670,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(123), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(178), 2, sym_record, sym_record_update, - ACTIONS(477), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(140), 5, sym_expression_group, sym_case, sym_tuple_access, @@ -14674,58 +14695,58 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [10283] = 32, + [10228] = 32, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(479), 1, anon_sym_LBRACE, - ACTIONS(451), 1, + ACTIONS(483), 1, anon_sym_POUND, - ACTIONS(453), 1, + ACTIONS(485), 1, anon_sym_LBRACK, - ACTIONS(455), 1, + ACTIONS(487), 1, anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(459), 1, + ACTIONS(491), 1, anon_sym_fn, - ACTIONS(461), 1, + ACTIONS(493), 1, anon_sym_try, - ACTIONS(463), 1, + ACTIONS(495), 1, anon_sym_todo, - ACTIONS(465), 1, + ACTIONS(497), 1, anon_sym_case, - ACTIONS(467), 1, + ACTIONS(499), 1, anon_sym_let, - ACTIONS(469), 1, + ACTIONS(501), 1, anon_sym_assert, - ACTIONS(471), 1, + ACTIONS(503), 1, anon_sym_BANG, - ACTIONS(473), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(475), 1, + ACTIONS(507), 1, sym_float, - ACTIONS(479), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(481), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(515), 1, sym__upname, - STATE(91), 1, + STATE(79), 1, aux_sym__expression_seq, - STATE(142), 1, + STATE(141), 1, sym_identifier, - STATE(170), 1, - sym_tuple, - STATE(171), 1, + STATE(174), 1, sym_anonymous_function, - STATE(631), 1, + STATE(175), 1, + sym_tuple, + STATE(634), 1, sym_try, - STATE(1101), 1, + STATE(1118), 1, sym__maybe_function_expression, - STATE(1211), 1, + STATE(1232), 1, sym__maybe_record_expression, - STATE(1263), 1, + STATE(1292), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -14733,14 +14754,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(123), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(178), 2, sym_record, sym_record_update, - ACTIONS(477), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(140), 5, sym_expression_group, sym_case, sym_tuple_access, @@ -14758,58 +14779,58 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [10399] = 32, + [10344] = 32, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(479), 1, anon_sym_LBRACE, - ACTIONS(451), 1, + ACTIONS(483), 1, anon_sym_POUND, - ACTIONS(453), 1, + ACTIONS(485), 1, anon_sym_LBRACK, - ACTIONS(455), 1, + ACTIONS(487), 1, anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(459), 1, + ACTIONS(491), 1, anon_sym_fn, - ACTIONS(461), 1, + ACTIONS(493), 1, anon_sym_try, - ACTIONS(463), 1, + ACTIONS(495), 1, anon_sym_todo, - ACTIONS(465), 1, + ACTIONS(497), 1, anon_sym_case, - ACTIONS(467), 1, + ACTIONS(499), 1, anon_sym_let, - ACTIONS(469), 1, + ACTIONS(501), 1, anon_sym_assert, - ACTIONS(471), 1, + ACTIONS(503), 1, anon_sym_BANG, - ACTIONS(473), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(475), 1, + ACTIONS(507), 1, sym_float, - ACTIONS(479), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(481), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(515), 1, sym__upname, - STATE(111), 1, + STATE(72), 1, aux_sym__expression_seq, - STATE(142), 1, + STATE(141), 1, sym_identifier, - STATE(170), 1, - sym_tuple, - STATE(171), 1, + STATE(174), 1, sym_anonymous_function, - STATE(631), 1, + STATE(175), 1, + sym_tuple, + STATE(634), 1, sym_try, - STATE(1101), 1, + STATE(1118), 1, sym__maybe_function_expression, - STATE(1211), 1, + STATE(1232), 1, sym__maybe_record_expression, - STATE(1263), 1, + STATE(1292), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -14817,14 +14838,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(123), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(178), 2, sym_record, sym_record_update, - ACTIONS(477), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(140), 5, sym_expression_group, sym_case, sym_tuple_access, @@ -14842,58 +14863,58 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [10515] = 32, + [10460] = 32, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(479), 1, anon_sym_LBRACE, - ACTIONS(451), 1, + ACTIONS(483), 1, anon_sym_POUND, - ACTIONS(453), 1, + ACTIONS(485), 1, anon_sym_LBRACK, - ACTIONS(455), 1, + ACTIONS(487), 1, anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(459), 1, + ACTIONS(491), 1, anon_sym_fn, - ACTIONS(461), 1, + ACTIONS(493), 1, anon_sym_try, - ACTIONS(463), 1, + ACTIONS(495), 1, anon_sym_todo, - ACTIONS(465), 1, + ACTIONS(497), 1, anon_sym_case, - ACTIONS(467), 1, + ACTIONS(499), 1, anon_sym_let, - ACTIONS(469), 1, + ACTIONS(501), 1, anon_sym_assert, - ACTIONS(471), 1, + ACTIONS(503), 1, anon_sym_BANG, - ACTIONS(473), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(475), 1, + ACTIONS(507), 1, sym_float, - ACTIONS(479), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(481), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(515), 1, sym__upname, - STATE(81), 1, + STATE(60), 1, aux_sym__expression_seq, - STATE(142), 1, + STATE(141), 1, sym_identifier, - STATE(170), 1, - sym_tuple, - STATE(171), 1, + STATE(174), 1, sym_anonymous_function, - STATE(631), 1, + STATE(175), 1, + sym_tuple, + STATE(634), 1, sym_try, - STATE(1101), 1, + STATE(1118), 1, sym__maybe_function_expression, - STATE(1211), 1, + STATE(1232), 1, sym__maybe_record_expression, - STATE(1263), 1, + STATE(1292), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -14901,14 +14922,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(123), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(178), 2, sym_record, sym_record_update, - ACTIONS(477), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(140), 5, sym_expression_group, sym_case, sym_tuple_access, @@ -14926,58 +14947,58 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [10631] = 32, + [10576] = 32, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(479), 1, anon_sym_LBRACE, - ACTIONS(451), 1, + ACTIONS(483), 1, anon_sym_POUND, - ACTIONS(453), 1, + ACTIONS(485), 1, anon_sym_LBRACK, - ACTIONS(455), 1, + ACTIONS(487), 1, anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(459), 1, + ACTIONS(491), 1, anon_sym_fn, - ACTIONS(461), 1, + ACTIONS(493), 1, anon_sym_try, - ACTIONS(463), 1, + ACTIONS(495), 1, anon_sym_todo, - ACTIONS(465), 1, + ACTIONS(497), 1, anon_sym_case, - ACTIONS(467), 1, + ACTIONS(499), 1, anon_sym_let, - ACTIONS(469), 1, + ACTIONS(501), 1, anon_sym_assert, - ACTIONS(471), 1, + ACTIONS(503), 1, anon_sym_BANG, - ACTIONS(473), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(475), 1, + ACTIONS(507), 1, sym_float, - ACTIONS(479), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(481), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(515), 1, sym__upname, - STATE(84), 1, + STATE(71), 1, aux_sym__expression_seq, - STATE(142), 1, + STATE(141), 1, sym_identifier, - STATE(170), 1, - sym_tuple, - STATE(171), 1, + STATE(174), 1, sym_anonymous_function, - STATE(631), 1, + STATE(175), 1, + sym_tuple, + STATE(634), 1, sym_try, - STATE(1101), 1, + STATE(1118), 1, sym__maybe_function_expression, - STATE(1211), 1, + STATE(1232), 1, sym__maybe_record_expression, - STATE(1263), 1, + STATE(1292), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -14985,14 +15006,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(123), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(178), 2, sym_record, sym_record_update, - ACTIONS(477), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(140), 5, sym_expression_group, sym_case, sym_tuple_access, @@ -15010,12 +15031,12 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [10747] = 6, + [10692] = 6, ACTIONS(3), 1, sym_module_comment, ACTIONS(701), 1, anon_sym_LPAREN, - STATE(174), 1, + STATE(155), 1, sym_arguments, ACTIONS(5), 2, sym_statement_comment, @@ -15068,58 +15089,58 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [10811] = 32, + [10756] = 32, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(479), 1, anon_sym_LBRACE, - ACTIONS(451), 1, + ACTIONS(483), 1, anon_sym_POUND, - ACTIONS(453), 1, + ACTIONS(485), 1, anon_sym_LBRACK, - ACTIONS(455), 1, + ACTIONS(487), 1, anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(459), 1, + ACTIONS(491), 1, anon_sym_fn, - ACTIONS(461), 1, + ACTIONS(493), 1, anon_sym_try, - ACTIONS(463), 1, + ACTIONS(495), 1, anon_sym_todo, - ACTIONS(465), 1, + ACTIONS(497), 1, anon_sym_case, - ACTIONS(467), 1, + ACTIONS(499), 1, anon_sym_let, - ACTIONS(469), 1, + ACTIONS(501), 1, anon_sym_assert, - ACTIONS(471), 1, + ACTIONS(503), 1, anon_sym_BANG, - ACTIONS(473), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(475), 1, + ACTIONS(507), 1, sym_float, - ACTIONS(479), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(481), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(515), 1, sym__upname, - STATE(61), 1, + STATE(100), 1, aux_sym__expression_seq, - STATE(142), 1, + STATE(141), 1, sym_identifier, - STATE(170), 1, - sym_tuple, - STATE(171), 1, + STATE(174), 1, sym_anonymous_function, - STATE(631), 1, + STATE(175), 1, + sym_tuple, + STATE(634), 1, sym_try, - STATE(1101), 1, + STATE(1118), 1, sym__maybe_function_expression, - STATE(1211), 1, + STATE(1232), 1, sym__maybe_record_expression, - STATE(1263), 1, + STATE(1292), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -15127,14 +15148,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(123), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(178), 2, sym_record, sym_record_update, - ACTIONS(477), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(140), 5, sym_expression_group, sym_case, sym_tuple_access, @@ -15152,58 +15173,58 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [10927] = 32, + [10872] = 32, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(479), 1, anon_sym_LBRACE, - ACTIONS(451), 1, + ACTIONS(483), 1, anon_sym_POUND, - ACTIONS(453), 1, + ACTIONS(485), 1, anon_sym_LBRACK, - ACTIONS(455), 1, + ACTIONS(487), 1, anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(459), 1, + ACTIONS(491), 1, anon_sym_fn, - ACTIONS(461), 1, + ACTIONS(493), 1, anon_sym_try, - ACTIONS(463), 1, + ACTIONS(495), 1, anon_sym_todo, - ACTIONS(465), 1, + ACTIONS(497), 1, anon_sym_case, - ACTIONS(467), 1, + ACTIONS(499), 1, anon_sym_let, - ACTIONS(469), 1, + ACTIONS(501), 1, anon_sym_assert, - ACTIONS(471), 1, + ACTIONS(503), 1, anon_sym_BANG, - ACTIONS(473), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(475), 1, + ACTIONS(507), 1, sym_float, - ACTIONS(479), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(481), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(515), 1, sym__upname, - STATE(69), 1, + STATE(86), 1, aux_sym__expression_seq, - STATE(142), 1, + STATE(141), 1, sym_identifier, - STATE(170), 1, - sym_tuple, - STATE(171), 1, + STATE(174), 1, sym_anonymous_function, - STATE(631), 1, + STATE(175), 1, + sym_tuple, + STATE(634), 1, sym_try, - STATE(1101), 1, + STATE(1118), 1, sym__maybe_function_expression, - STATE(1211), 1, + STATE(1232), 1, sym__maybe_record_expression, - STATE(1263), 1, + STATE(1292), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -15211,14 +15232,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(123), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(178), 2, sym_record, sym_record_update, - ACTIONS(477), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(140), 5, sym_expression_group, sym_case, sym_tuple_access, @@ -15236,58 +15257,58 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [11043] = 32, + [10988] = 32, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(479), 1, anon_sym_LBRACE, - ACTIONS(451), 1, + ACTIONS(483), 1, anon_sym_POUND, - ACTIONS(453), 1, + ACTIONS(485), 1, anon_sym_LBRACK, - ACTIONS(455), 1, + ACTIONS(487), 1, anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(459), 1, + ACTIONS(491), 1, anon_sym_fn, - ACTIONS(461), 1, + ACTIONS(493), 1, anon_sym_try, - ACTIONS(463), 1, + ACTIONS(495), 1, anon_sym_todo, - ACTIONS(465), 1, + ACTIONS(497), 1, anon_sym_case, - ACTIONS(467), 1, + ACTIONS(499), 1, anon_sym_let, - ACTIONS(469), 1, + ACTIONS(501), 1, anon_sym_assert, - ACTIONS(471), 1, + ACTIONS(503), 1, anon_sym_BANG, - ACTIONS(473), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(475), 1, + ACTIONS(507), 1, sym_float, - ACTIONS(479), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(481), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(515), 1, sym__upname, - STATE(58), 1, + STATE(110), 1, aux_sym__expression_seq, - STATE(142), 1, + STATE(141), 1, sym_identifier, - STATE(170), 1, - sym_tuple, - STATE(171), 1, + STATE(174), 1, sym_anonymous_function, - STATE(631), 1, + STATE(175), 1, + sym_tuple, + STATE(634), 1, sym_try, - STATE(1101), 1, + STATE(1118), 1, sym__maybe_function_expression, - STATE(1211), 1, + STATE(1232), 1, sym__maybe_record_expression, - STATE(1263), 1, + STATE(1292), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -15295,14 +15316,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(123), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(178), 2, sym_record, sym_record_update, - ACTIONS(477), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(140), 5, sym_expression_group, sym_case, sym_tuple_access, @@ -15320,58 +15341,58 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [11159] = 32, + [11104] = 32, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(479), 1, anon_sym_LBRACE, - ACTIONS(451), 1, + ACTIONS(483), 1, anon_sym_POUND, - ACTIONS(453), 1, + ACTIONS(485), 1, anon_sym_LBRACK, - ACTIONS(455), 1, + ACTIONS(487), 1, anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(459), 1, + ACTIONS(491), 1, anon_sym_fn, - ACTIONS(461), 1, + ACTIONS(493), 1, anon_sym_try, - ACTIONS(463), 1, + ACTIONS(495), 1, anon_sym_todo, - ACTIONS(465), 1, + ACTIONS(497), 1, anon_sym_case, - ACTIONS(467), 1, + ACTIONS(499), 1, anon_sym_let, - ACTIONS(469), 1, + ACTIONS(501), 1, anon_sym_assert, - ACTIONS(471), 1, + ACTIONS(503), 1, anon_sym_BANG, - ACTIONS(473), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(475), 1, + ACTIONS(507), 1, sym_float, - ACTIONS(479), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(481), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(515), 1, sym__upname, - STATE(71), 1, + STATE(95), 1, aux_sym__expression_seq, - STATE(142), 1, + STATE(141), 1, sym_identifier, - STATE(170), 1, - sym_tuple, - STATE(171), 1, + STATE(174), 1, sym_anonymous_function, - STATE(631), 1, + STATE(175), 1, + sym_tuple, + STATE(634), 1, sym_try, - STATE(1101), 1, + STATE(1118), 1, sym__maybe_function_expression, - STATE(1211), 1, + STATE(1232), 1, sym__maybe_record_expression, - STATE(1263), 1, + STATE(1292), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -15379,14 +15400,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(123), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(178), 2, sym_record, sym_record_update, - ACTIONS(477), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(140), 5, sym_expression_group, sym_case, sym_tuple_access, @@ -15404,58 +15425,58 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [11275] = 32, + [11220] = 32, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(479), 1, anon_sym_LBRACE, - ACTIONS(451), 1, + ACTIONS(483), 1, anon_sym_POUND, - ACTIONS(453), 1, + ACTIONS(485), 1, anon_sym_LBRACK, - ACTIONS(455), 1, + ACTIONS(487), 1, anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(459), 1, + ACTIONS(491), 1, anon_sym_fn, - ACTIONS(461), 1, + ACTIONS(493), 1, anon_sym_try, - ACTIONS(463), 1, + ACTIONS(495), 1, anon_sym_todo, - ACTIONS(465), 1, + ACTIONS(497), 1, anon_sym_case, - ACTIONS(467), 1, + ACTIONS(499), 1, anon_sym_let, - ACTIONS(469), 1, + ACTIONS(501), 1, anon_sym_assert, - ACTIONS(471), 1, + ACTIONS(503), 1, anon_sym_BANG, - ACTIONS(473), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(475), 1, + ACTIONS(507), 1, sym_float, - ACTIONS(479), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(481), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(515), 1, sym__upname, - STATE(83), 1, + STATE(84), 1, aux_sym__expression_seq, - STATE(142), 1, + STATE(141), 1, sym_identifier, - STATE(170), 1, - sym_tuple, - STATE(171), 1, + STATE(174), 1, sym_anonymous_function, - STATE(631), 1, + STATE(175), 1, + sym_tuple, + STATE(634), 1, sym_try, - STATE(1101), 1, + STATE(1118), 1, sym__maybe_function_expression, - STATE(1211), 1, + STATE(1232), 1, sym__maybe_record_expression, - STATE(1263), 1, + STATE(1292), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -15463,14 +15484,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(123), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(178), 2, sym_record, sym_record_update, - ACTIONS(477), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(140), 5, sym_expression_group, sym_case, sym_tuple_access, @@ -15488,68 +15509,179 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [11391] = 4, + [11336] = 32, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(565), 17, - anon_sym_SLASH, + ACTIONS(479), 1, + anon_sym_LBRACE, + ACTIONS(483), 1, + anon_sym_POUND, + ACTIONS(485), 1, + anon_sym_LBRACK, + ACTIONS(487), 1, + anon_sym_LT_LT, + ACTIONS(489), 1, anon_sym_DASH, + ACTIONS(491), 1, anon_sym_fn, + ACTIONS(493), 1, anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(495), 1, anon_sym_todo, + ACTIONS(497), 1, anon_sym_case, + ACTIONS(499), 1, anon_sym_let, + ACTIONS(501), 1, anon_sym_assert, + ACTIONS(503), 1, anon_sym_BANG, + ACTIONS(505), 1, + anon_sym_DQUOTE, + ACTIONS(507), 1, + sym_float, + ACTIONS(511), 1, sym__decimal, + ACTIONS(513), 1, sym__name, - ACTIONS(563), 30, + ACTIONS(515), 1, + sym__upname, + STATE(69), 1, + aux_sym__expression_seq, + STATE(141), 1, + sym_identifier, + STATE(174), 1, + sym_anonymous_function, + STATE(175), 1, + sym_tuple, + STATE(634), 1, + sym_try, + STATE(1118), 1, + sym__maybe_function_expression, + STATE(1232), 1, + sym__maybe_record_expression, + STATE(1292), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(123), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(178), 2, + sym_record, + sym_record_update, + ACTIONS(509), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(140), 5, + sym_expression_group, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(281), 11, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_list, + sym__expression_bit_string, + sym_let, + sym_assert, + sym_negation, + sym_string, + sym_integer, + [11452] = 31, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(260), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(262), 1, anon_sym_POUND, - anon_sym_RPAREN, + ACTIONS(266), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(268), 1, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, + ACTIONS(270), 1, + anon_sym_DASH, + ACTIONS(272), 1, + anon_sym_fn, + ACTIONS(274), 1, + anon_sym_todo, + ACTIONS(278), 1, + anon_sym_case, + ACTIONS(280), 1, + anon_sym_let, + ACTIONS(282), 1, + anon_sym_assert, + ACTIONS(284), 1, + anon_sym_BANG, + ACTIONS(286), 1, anon_sym_DQUOTE, + ACTIONS(292), 1, + sym__decimal, + ACTIONS(298), 1, + sym__upname, + ACTIONS(703), 1, + anon_sym_RBRACK, + ACTIONS(705), 1, + anon_sym_DOT_DOT, + ACTIONS(707), 1, sym_float, + ACTIONS(709), 1, + sym__name, + STATE(366), 1, + sym_identifier, + STATE(387), 1, + sym_tuple, + STATE(388), 1, + sym_anonymous_function, + STATE(1149), 1, + sym__maybe_function_expression, + STATE(1259), 1, + sym__maybe_tuple_expression, + STATE(1262), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(360), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(386), 2, + sym_record, + sym_record_update, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [11450] = 4, + STATE(368), 5, + sym_expression_group, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(523), 11, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_list, + sym__expression_bit_string, + sym_let, + sym_assert, + sym_negation, + sym_string, + sym_integer, + [11565] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(323), 17, + ACTIONS(351), 17, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -15567,7 +15699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(321), 30, + ACTIONS(349), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, @@ -15598,68 +15730,341 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [11509] = 4, + [11624] = 31, ACTIONS(3), 1, sym_module_comment, + ACTIONS(260), 1, + anon_sym_LBRACE, + ACTIONS(262), 1, + anon_sym_POUND, + ACTIONS(266), 1, + anon_sym_LBRACK, + ACTIONS(268), 1, + anon_sym_LT_LT, + ACTIONS(270), 1, + anon_sym_DASH, + ACTIONS(272), 1, + anon_sym_fn, + ACTIONS(274), 1, + anon_sym_todo, + ACTIONS(278), 1, + anon_sym_case, + ACTIONS(280), 1, + anon_sym_let, + ACTIONS(282), 1, + anon_sym_assert, + ACTIONS(284), 1, + anon_sym_BANG, + ACTIONS(286), 1, + anon_sym_DQUOTE, + ACTIONS(292), 1, + sym__decimal, + ACTIONS(298), 1, + sym__upname, + ACTIONS(707), 1, + sym_float, + ACTIONS(709), 1, + sym__name, + ACTIONS(711), 1, + anon_sym_RBRACK, + ACTIONS(713), 1, + anon_sym_DOT_DOT, + STATE(366), 1, + sym_identifier, + STATE(387), 1, + sym_tuple, + STATE(388), 1, + sym_anonymous_function, + STATE(1149), 1, + sym__maybe_function_expression, + STATE(1259), 1, + sym__maybe_tuple_expression, + STATE(1262), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(343), 17, - anon_sym_SLASH, + STATE(360), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(386), 2, + sym_record, + sym_record_update, + ACTIONS(290), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(368), 5, + sym_expression_group, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(523), 11, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_list, + sym__expression_bit_string, + sym_let, + sym_assert, + sym_negation, + sym_string, + sym_integer, + [11737] = 31, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(260), 1, + anon_sym_LBRACE, + ACTIONS(262), 1, + anon_sym_POUND, + ACTIONS(266), 1, + anon_sym_LBRACK, + ACTIONS(268), 1, + anon_sym_LT_LT, + ACTIONS(270), 1, anon_sym_DASH, + ACTIONS(272), 1, anon_sym_fn, - anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(274), 1, anon_sym_todo, + ACTIONS(278), 1, anon_sym_case, + ACTIONS(280), 1, anon_sym_let, + ACTIONS(282), 1, anon_sym_assert, + ACTIONS(284), 1, anon_sym_BANG, + ACTIONS(286), 1, + anon_sym_DQUOTE, + ACTIONS(292), 1, sym__decimal, + ACTIONS(294), 1, + sym__discard_name, + ACTIONS(298), 1, + sym__upname, + ACTIONS(709), 1, sym__name, - ACTIONS(341), 30, + ACTIONS(715), 1, + sym_float, + STATE(366), 1, + sym_identifier, + STATE(387), 1, + sym_tuple, + STATE(388), 1, + sym_anonymous_function, + STATE(1149), 1, + sym__maybe_function_expression, + STATE(1166), 1, + sym_hole, + STATE(1259), 1, + sym__maybe_tuple_expression, + STATE(1262), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(360), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(386), 2, + sym_record, + sym_record_update, + ACTIONS(290), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(368), 5, + sym_expression_group, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(598), 11, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_list, + sym__expression_bit_string, + sym_let, + sym_assert, + sym_negation, + sym_string, + sym_integer, + [11850] = 31, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(260), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_COMMA, + ACTIONS(262), 1, anon_sym_POUND, - anon_sym_LPAREN, + ACTIONS(266), 1, anon_sym_LBRACK, + ACTIONS(268), 1, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, + ACTIONS(270), 1, + anon_sym_DASH, + ACTIONS(272), 1, + anon_sym_fn, + ACTIONS(274), 1, + anon_sym_todo, + ACTIONS(278), 1, + anon_sym_case, + ACTIONS(280), 1, + anon_sym_let, + ACTIONS(282), 1, + anon_sym_assert, + ACTIONS(284), 1, + anon_sym_BANG, + ACTIONS(286), 1, anon_sym_DQUOTE, + ACTIONS(292), 1, + sym__decimal, + ACTIONS(298), 1, + sym__upname, + ACTIONS(707), 1, sym_float, + ACTIONS(709), 1, + sym__name, + ACTIONS(717), 1, + anon_sym_RBRACK, + ACTIONS(719), 1, + anon_sym_DOT_DOT, + STATE(366), 1, + sym_identifier, + STATE(387), 1, + sym_tuple, + STATE(388), 1, + sym_anonymous_function, + STATE(1149), 1, + sym__maybe_function_expression, + STATE(1259), 1, + sym__maybe_tuple_expression, + STATE(1262), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(360), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(386), 2, + sym_record, + sym_record_update, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, + STATE(368), 5, + sym_expression_group, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(523), 11, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_list, + sym__expression_bit_string, + sym_let, + sym_assert, + sym_negation, + sym_string, + sym_integer, + [11963] = 31, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(260), 1, + anon_sym_LBRACE, + ACTIONS(262), 1, + anon_sym_POUND, + ACTIONS(266), 1, + anon_sym_LBRACK, + ACTIONS(268), 1, + anon_sym_LT_LT, + ACTIONS(270), 1, + anon_sym_DASH, + ACTIONS(272), 1, + anon_sym_fn, + ACTIONS(274), 1, + anon_sym_todo, + ACTIONS(278), 1, + anon_sym_case, + ACTIONS(280), 1, + anon_sym_let, + ACTIONS(282), 1, + anon_sym_assert, + ACTIONS(284), 1, + anon_sym_BANG, + ACTIONS(286), 1, + anon_sym_DQUOTE, + ACTIONS(292), 1, + sym__decimal, + ACTIONS(298), 1, sym__upname, - [11568] = 4, + ACTIONS(707), 1, + sym_float, + ACTIONS(709), 1, + sym__name, + ACTIONS(721), 1, + anon_sym_RBRACK, + ACTIONS(723), 1, + anon_sym_DOT_DOT, + STATE(366), 1, + sym_identifier, + STATE(387), 1, + sym_tuple, + STATE(388), 1, + sym_anonymous_function, + STATE(1149), 1, + sym__maybe_function_expression, + STATE(1259), 1, + sym__maybe_tuple_expression, + STATE(1262), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(360), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(386), 2, + sym_record, + sym_record_update, + ACTIONS(290), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(368), 5, + sym_expression_group, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(523), 11, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_list, + sym__expression_bit_string, + sym_let, + sym_assert, + sym_negation, + sym_string, + sym_integer, + [12076] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(347), 17, + ACTIONS(311), 17, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -15677,7 +16082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(345), 30, + ACTIONS(309), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, @@ -15708,13 +16113,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [11627] = 4, + [12135] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(559), 17, + ACTIONS(375), 17, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -15732,14 +16137,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(557), 30, + ACTIONS(373), 30, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_COMMA, anon_sym_POUND, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_COLON, @@ -15763,13 +16168,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [11686] = 4, + [12194] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(355), 17, + ACTIONS(339), 17, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -15787,7 +16192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(353), 30, + ACTIONS(337), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, @@ -15818,13 +16223,99 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [11745] = 4, + [12253] = 31, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(260), 1, + anon_sym_LBRACE, + ACTIONS(262), 1, + anon_sym_POUND, + ACTIONS(266), 1, + anon_sym_LBRACK, + ACTIONS(268), 1, + anon_sym_LT_LT, + ACTIONS(270), 1, + anon_sym_DASH, + ACTIONS(272), 1, + anon_sym_fn, + ACTIONS(274), 1, + anon_sym_todo, + ACTIONS(278), 1, + anon_sym_case, + ACTIONS(280), 1, + anon_sym_let, + ACTIONS(282), 1, + anon_sym_assert, + ACTIONS(284), 1, + anon_sym_BANG, + ACTIONS(286), 1, + anon_sym_DQUOTE, + ACTIONS(292), 1, + sym__decimal, + ACTIONS(298), 1, + sym__upname, + ACTIONS(707), 1, + sym_float, + ACTIONS(709), 1, + sym__name, + ACTIONS(725), 1, + anon_sym_RBRACK, + ACTIONS(727), 1, + anon_sym_DOT_DOT, + STATE(366), 1, + sym_identifier, + STATE(387), 1, + sym_tuple, + STATE(388), 1, + sym_anonymous_function, + STATE(1149), 1, + sym__maybe_function_expression, + STATE(1259), 1, + sym__maybe_tuple_expression, + STATE(1262), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(360), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(386), 2, + sym_record, + sym_record_update, + ACTIONS(290), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(368), 5, + sym_expression_group, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(523), 11, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_list, + sym__expression_bit_string, + sym_let, + sym_assert, + sym_negation, + sym_string, + sym_integer, + [12366] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(304), 1, + anon_sym_DOT, + ACTIONS(307), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(375), 17, + ACTIONS(302), 17, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -15842,13 +16333,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(373), 30, + ACTIONS(300), 28, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_COMMA, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_GT_GT, @@ -15873,13 +16362,17 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [11804] = 4, + [12429] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(307), 1, + anon_sym_LPAREN, + ACTIONS(729), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(275), 17, + ACTIONS(302), 17, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -15897,13 +16390,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(273), 30, + ACTIONS(300), 28, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_COMMA, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_GT_GT, @@ -15928,68 +16419,95 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [11863] = 4, + [12492] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(335), 17, - anon_sym_SLASH, + ACTIONS(260), 1, + anon_sym_LBRACE, + ACTIONS(262), 1, + anon_sym_POUND, + ACTIONS(266), 1, + anon_sym_LBRACK, + ACTIONS(268), 1, + anon_sym_LT_LT, + ACTIONS(270), 1, anon_sym_DASH, + ACTIONS(272), 1, anon_sym_fn, - anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(274), 1, anon_sym_todo, + ACTIONS(278), 1, anon_sym_case, + ACTIONS(280), 1, anon_sym_let, + ACTIONS(282), 1, anon_sym_assert, + ACTIONS(284), 1, anon_sym_BANG, + ACTIONS(286), 1, + anon_sym_DQUOTE, + ACTIONS(292), 1, sym__decimal, - sym__name, - ACTIONS(333), 30, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_POUND, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DQUOTE, + ACTIONS(298), 1, + sym__upname, + ACTIONS(707), 1, sym_float, + ACTIONS(709), 1, + sym__name, + ACTIONS(733), 1, + anon_sym_RBRACK, + ACTIONS(735), 1, + anon_sym_DOT_DOT, + STATE(366), 1, + sym_identifier, + STATE(387), 1, + sym_tuple, + STATE(388), 1, + sym_anonymous_function, + STATE(1149), 1, + sym__maybe_function_expression, + STATE(1259), 1, + sym__maybe_tuple_expression, + STATE(1262), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(360), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(386), 2, + sym_record, + sym_record_update, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [11922] = 4, + STATE(368), 5, + sym_expression_group, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(523), 11, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_list, + sym__expression_bit_string, + sym_let, + sym_assert, + sym_negation, + sym_string, + sym_integer, + [12605] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(262), 17, + ACTIONS(327), 17, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -16007,7 +16525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(260), 30, + ACTIONS(325), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, @@ -16038,77 +16556,77 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [11981] = 31, + [12664] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(281), 1, + ACTIONS(260), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(262), 1, anon_sym_POUND, - ACTIONS(287), 1, + ACTIONS(266), 1, anon_sym_LBRACK, - ACTIONS(289), 1, + ACTIONS(268), 1, anon_sym_LT_LT, - ACTIONS(291), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(272), 1, anon_sym_fn, - ACTIONS(295), 1, + ACTIONS(274), 1, anon_sym_todo, - ACTIONS(299), 1, + ACTIONS(278), 1, anon_sym_case, - ACTIONS(301), 1, + ACTIONS(280), 1, anon_sym_let, - ACTIONS(303), 1, + ACTIONS(282), 1, anon_sym_assert, - ACTIONS(305), 1, + ACTIONS(284), 1, anon_sym_BANG, - ACTIONS(307), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(319), 1, + ACTIONS(298), 1, sym__upname, - ACTIONS(703), 1, - anon_sym_RBRACK, - ACTIONS(705), 1, - anon_sym_DOT_DOT, ACTIONS(707), 1, sym_float, ACTIONS(709), 1, sym__name, - STATE(375), 1, + ACTIONS(737), 1, + anon_sym_RBRACK, + ACTIONS(739), 1, + anon_sym_DOT_DOT, + STATE(366), 1, sym_identifier, + STATE(387), 1, + sym_tuple, STATE(388), 1, sym_anonymous_function, - STATE(397), 1, - sym_tuple, - STATE(1128), 1, + STATE(1149), 1, sym__maybe_function_expression, - STATE(1195), 1, - sym__maybe_record_expression, - STATE(1247), 1, + STATE(1259), 1, sym__maybe_tuple_expression, + STATE(1262), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(357), 2, + STATE(360), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(398), 2, + STATE(386), 2, sym_record, sym_record_update, - ACTIONS(311), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, + STATE(368), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(522), 11, + STATE(523), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -16120,181 +16638,68 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [12094] = 31, + [12777] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(281), 1, - anon_sym_LBRACE, - ACTIONS(283), 1, - anon_sym_POUND, - ACTIONS(287), 1, - anon_sym_LBRACK, - ACTIONS(289), 1, - anon_sym_LT_LT, - ACTIONS(291), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(453), 17, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(293), 1, anon_sym_fn, - ACTIONS(295), 1, + anon_sym_try, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(299), 1, anon_sym_case, - ACTIONS(301), 1, anon_sym_let, - ACTIONS(303), 1, anon_sym_assert, - ACTIONS(305), 1, anon_sym_BANG, - ACTIONS(307), 1, - anon_sym_DQUOTE, - ACTIONS(313), 1, sym__decimal, - ACTIONS(319), 1, - sym__upname, - ACTIONS(707), 1, - sym_float, - ACTIONS(709), 1, sym__name, - ACTIONS(711), 1, - anon_sym_RBRACK, - ACTIONS(713), 1, - anon_sym_DOT_DOT, - STATE(375), 1, - sym_identifier, - STATE(388), 1, - sym_anonymous_function, - STATE(397), 1, - sym_tuple, - STATE(1128), 1, - sym__maybe_function_expression, - STATE(1195), 1, - sym__maybe_record_expression, - STATE(1247), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(357), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(398), 2, - sym_record, - sym_record_update, - ACTIONS(311), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(374), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(522), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [12207] = 31, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(281), 1, + ACTIONS(451), 30, anon_sym_LBRACE, - ACTIONS(283), 1, + anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_POUND, - ACTIONS(287), 1, + anon_sym_RPAREN, anon_sym_LBRACK, - ACTIONS(289), 1, + anon_sym_RBRACK, anon_sym_LT_LT, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_fn, - ACTIONS(295), 1, - anon_sym_todo, - ACTIONS(299), 1, - anon_sym_case, - ACTIONS(301), 1, - anon_sym_let, - ACTIONS(303), 1, - anon_sym_assert, - ACTIONS(305), 1, - anon_sym_BANG, - ACTIONS(307), 1, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, anon_sym_DQUOTE, - ACTIONS(313), 1, - sym__decimal, - ACTIONS(315), 1, - sym__discard_name, - ACTIONS(319), 1, - sym__upname, - ACTIONS(709), 1, - sym__name, - ACTIONS(715), 1, sym_float, - STATE(375), 1, - sym_identifier, - STATE(388), 1, - sym_anonymous_function, - STATE(397), 1, - sym_tuple, - STATE(1128), 1, - sym__maybe_function_expression, - STATE(1178), 1, - sym_hole, - STATE(1195), 1, - sym__maybe_record_expression, - STATE(1247), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(357), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(398), 2, - sym_record, - sym_record_update, - ACTIONS(311), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(581), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [12320] = 6, + sym__upname, + [12836] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(271), 1, - anon_sym_LPAREN, - ACTIONS(717), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(266), 17, + ACTIONS(599), 17, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -16312,12 +16717,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(264), 28, + ACTIONS(597), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_POUND, + anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_COLON, @@ -16341,77 +16748,77 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [12383] = 31, + [12895] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(281), 1, + ACTIONS(260), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(262), 1, anon_sym_POUND, - ACTIONS(287), 1, + ACTIONS(266), 1, anon_sym_LBRACK, - ACTIONS(289), 1, + ACTIONS(268), 1, anon_sym_LT_LT, - ACTIONS(291), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(272), 1, anon_sym_fn, - ACTIONS(295), 1, + ACTIONS(274), 1, anon_sym_todo, - ACTIONS(299), 1, + ACTIONS(278), 1, anon_sym_case, - ACTIONS(301), 1, + ACTIONS(280), 1, anon_sym_let, - ACTIONS(303), 1, + ACTIONS(282), 1, anon_sym_assert, - ACTIONS(305), 1, + ACTIONS(284), 1, anon_sym_BANG, - ACTIONS(307), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(319), 1, + ACTIONS(298), 1, sym__upname, ACTIONS(707), 1, sym_float, ACTIONS(709), 1, sym__name, - ACTIONS(721), 1, + ACTIONS(741), 1, anon_sym_RBRACK, - ACTIONS(723), 1, + ACTIONS(743), 1, anon_sym_DOT_DOT, - STATE(375), 1, + STATE(366), 1, sym_identifier, + STATE(387), 1, + sym_tuple, STATE(388), 1, sym_anonymous_function, - STATE(397), 1, - sym_tuple, - STATE(1128), 1, + STATE(1149), 1, sym__maybe_function_expression, - STATE(1195), 1, - sym__maybe_record_expression, - STATE(1247), 1, + STATE(1259), 1, sym__maybe_tuple_expression, + STATE(1262), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(357), 2, + STATE(360), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(398), 2, + STATE(386), 2, sym_record, sym_record_update, - ACTIONS(311), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, + STATE(368), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(522), 11, + STATE(523), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -16423,7 +16830,7 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [12496] = 4, + [13008] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, @@ -16478,17 +16885,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [12555] = 6, + [13067] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(268), 1, - anon_sym_DOT, - ACTIONS(271), 1, - anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(266), 17, + ACTIONS(331), 17, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -16506,11 +16909,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(264), 28, + ACTIONS(329), 30, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_COMMA, anon_sym_POUND, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_GT_GT, @@ -16535,13 +16940,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [12618] = 4, + [13126] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(379), 17, + ACTIONS(347), 17, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -16559,7 +16964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(377), 30, + ACTIONS(345), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, @@ -16590,241 +16995,130 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [12677] = 31, + [13185] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(281), 1, - anon_sym_LBRACE, - ACTIONS(283), 1, - anon_sym_POUND, - ACTIONS(287), 1, - anon_sym_LBRACK, - ACTIONS(289), 1, - anon_sym_LT_LT, - ACTIONS(291), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(383), 17, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(293), 1, anon_sym_fn, - ACTIONS(295), 1, + anon_sym_try, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(299), 1, anon_sym_case, - ACTIONS(301), 1, anon_sym_let, - ACTIONS(303), 1, anon_sym_assert, - ACTIONS(305), 1, anon_sym_BANG, - ACTIONS(307), 1, - anon_sym_DQUOTE, - ACTIONS(313), 1, sym__decimal, - ACTIONS(319), 1, - sym__upname, - ACTIONS(707), 1, - sym_float, - ACTIONS(709), 1, sym__name, - ACTIONS(725), 1, - anon_sym_RBRACK, - ACTIONS(727), 1, - anon_sym_DOT_DOT, - STATE(375), 1, - sym_identifier, - STATE(388), 1, - sym_anonymous_function, - STATE(397), 1, - sym_tuple, - STATE(1128), 1, - sym__maybe_function_expression, - STATE(1195), 1, - sym__maybe_record_expression, - STATE(1247), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(357), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(398), 2, - sym_record, - sym_record_update, - ACTIONS(311), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(374), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(522), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [12790] = 31, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(281), 1, + ACTIONS(381), 30, anon_sym_LBRACE, - ACTIONS(283), 1, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_COMMA, anon_sym_POUND, - ACTIONS(287), 1, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(289), 1, anon_sym_LT_LT, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_fn, - ACTIONS(295), 1, - anon_sym_todo, - ACTIONS(299), 1, - anon_sym_case, - ACTIONS(301), 1, - anon_sym_let, - ACTIONS(303), 1, - anon_sym_assert, - ACTIONS(305), 1, - anon_sym_BANG, - ACTIONS(307), 1, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, anon_sym_DQUOTE, - ACTIONS(313), 1, - sym__decimal, - ACTIONS(319), 1, - sym__upname, - ACTIONS(707), 1, sym_float, - ACTIONS(709), 1, - sym__name, - ACTIONS(729), 1, - anon_sym_RBRACK, - ACTIONS(731), 1, - anon_sym_DOT_DOT, - STATE(375), 1, - sym_identifier, - STATE(388), 1, - sym_anonymous_function, - STATE(397), 1, - sym_tuple, - STATE(1128), 1, - sym__maybe_function_expression, - STATE(1195), 1, - sym__maybe_record_expression, - STATE(1247), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(357), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(398), 2, - sym_record, - sym_record_update, - ACTIONS(311), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(522), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [12903] = 31, + sym__upname, + [13244] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(281), 1, + ACTIONS(260), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(262), 1, anon_sym_POUND, - ACTIONS(287), 1, + ACTIONS(266), 1, anon_sym_LBRACK, - ACTIONS(289), 1, + ACTIONS(268), 1, anon_sym_LT_LT, - ACTIONS(291), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(272), 1, anon_sym_fn, - ACTIONS(295), 1, + ACTIONS(274), 1, anon_sym_todo, - ACTIONS(299), 1, + ACTIONS(278), 1, anon_sym_case, - ACTIONS(301), 1, + ACTIONS(280), 1, anon_sym_let, - ACTIONS(303), 1, + ACTIONS(282), 1, anon_sym_assert, - ACTIONS(305), 1, + ACTIONS(284), 1, anon_sym_BANG, - ACTIONS(307), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(319), 1, + ACTIONS(298), 1, sym__upname, ACTIONS(707), 1, sym_float, ACTIONS(709), 1, sym__name, - ACTIONS(733), 1, - anon_sym_RBRACK, - ACTIONS(735), 1, - anon_sym_DOT_DOT, - STATE(375), 1, + ACTIONS(745), 1, + anon_sym_RPAREN, + STATE(366), 1, sym_identifier, + STATE(387), 1, + sym_tuple, STATE(388), 1, sym_anonymous_function, - STATE(397), 1, - sym_tuple, - STATE(1128), 1, + STATE(1149), 1, sym__maybe_function_expression, - STATE(1195), 1, - sym__maybe_record_expression, - STATE(1247), 1, + STATE(1259), 1, sym__maybe_tuple_expression, + STATE(1262), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(357), 2, + STATE(360), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(398), 2, + STATE(386), 2, sym_record, sym_record_update, - ACTIONS(311), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, + STATE(368), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(522), 11, + STATE(523), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -16836,77 +17130,75 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [13016] = 31, + [13354] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(281), 1, + ACTIONS(260), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(262), 1, anon_sym_POUND, - ACTIONS(287), 1, + ACTIONS(266), 1, anon_sym_LBRACK, - ACTIONS(289), 1, + ACTIONS(268), 1, anon_sym_LT_LT, - ACTIONS(291), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(272), 1, anon_sym_fn, - ACTIONS(295), 1, + ACTIONS(274), 1, anon_sym_todo, - ACTIONS(299), 1, + ACTIONS(278), 1, anon_sym_case, - ACTIONS(301), 1, + ACTIONS(280), 1, anon_sym_let, - ACTIONS(303), 1, + ACTIONS(282), 1, anon_sym_assert, - ACTIONS(305), 1, + ACTIONS(284), 1, anon_sym_BANG, - ACTIONS(307), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(319), 1, + ACTIONS(298), 1, sym__upname, - ACTIONS(707), 1, - sym_float, ACTIONS(709), 1, sym__name, - ACTIONS(737), 1, - anon_sym_RBRACK, - ACTIONS(739), 1, - anon_sym_DOT_DOT, - STATE(375), 1, + ACTIONS(747), 1, + sym_float, + STATE(366), 1, sym_identifier, + STATE(387), 1, + sym_tuple, STATE(388), 1, sym_anonymous_function, - STATE(397), 1, - sym_tuple, - STATE(1128), 1, + STATE(1149), 1, sym__maybe_function_expression, - STATE(1195), 1, - sym__maybe_record_expression, - STATE(1247), 1, + STATE(1259), 1, sym__maybe_tuple_expression, + STATE(1262), 1, + sym__maybe_record_expression, + STATE(1300), 1, + sym_case_subjects, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(357), 2, + STATE(360), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(398), 2, + STATE(386), 2, sym_record, sym_record_update, - ACTIONS(311), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, + STATE(368), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(522), 11, + STATE(559), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -16918,77 +17210,75 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [13129] = 31, + [13464] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(281), 1, + ACTIONS(260), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(262), 1, anon_sym_POUND, - ACTIONS(287), 1, + ACTIONS(266), 1, anon_sym_LBRACK, - ACTIONS(289), 1, + ACTIONS(268), 1, anon_sym_LT_LT, - ACTIONS(291), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(272), 1, anon_sym_fn, - ACTIONS(295), 1, + ACTIONS(274), 1, anon_sym_todo, - ACTIONS(299), 1, + ACTIONS(278), 1, anon_sym_case, - ACTIONS(301), 1, + ACTIONS(280), 1, anon_sym_let, - ACTIONS(303), 1, + ACTIONS(282), 1, anon_sym_assert, - ACTIONS(305), 1, + ACTIONS(284), 1, anon_sym_BANG, - ACTIONS(307), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(319), 1, + ACTIONS(298), 1, sym__upname, ACTIONS(707), 1, sym_float, ACTIONS(709), 1, sym__name, - ACTIONS(741), 1, - anon_sym_RBRACK, - ACTIONS(743), 1, - anon_sym_DOT_DOT, - STATE(375), 1, + ACTIONS(749), 1, + anon_sym_RPAREN, + STATE(366), 1, sym_identifier, + STATE(387), 1, + sym_tuple, STATE(388), 1, sym_anonymous_function, - STATE(397), 1, - sym_tuple, - STATE(1128), 1, + STATE(1149), 1, sym__maybe_function_expression, - STATE(1195), 1, - sym__maybe_record_expression, - STATE(1247), 1, + STATE(1259), 1, sym__maybe_tuple_expression, + STATE(1262), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(357), 2, + STATE(360), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(398), 2, + STATE(386), 2, sym_record, sym_record_update, - ACTIONS(311), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, + STATE(368), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(522), 11, + STATE(523), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -17000,13 +17290,13 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [13242] = 4, + [13574] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(389), 17, + ACTIONS(401), 17, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -17024,7 +17314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(387), 29, + ACTIONS(399), 29, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, @@ -17054,13 +17344,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [13300] = 4, + [13632] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(417), 17, + ACTIONS(419), 17, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -17078,7 +17368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(415), 29, + ACTIONS(417), 29, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, @@ -17108,75 +17398,75 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [13358] = 30, + [13690] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(281), 1, + ACTIONS(260), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(262), 1, anon_sym_POUND, - ACTIONS(287), 1, + ACTIONS(266), 1, anon_sym_LBRACK, - ACTIONS(289), 1, + ACTIONS(268), 1, anon_sym_LT_LT, - ACTIONS(291), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(272), 1, anon_sym_fn, - ACTIONS(295), 1, + ACTIONS(274), 1, anon_sym_todo, - ACTIONS(299), 1, + ACTIONS(278), 1, anon_sym_case, - ACTIONS(301), 1, + ACTIONS(280), 1, anon_sym_let, - ACTIONS(303), 1, + ACTIONS(282), 1, anon_sym_assert, - ACTIONS(305), 1, + ACTIONS(284), 1, anon_sym_BANG, - ACTIONS(307), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(319), 1, + ACTIONS(298), 1, sym__upname, ACTIONS(709), 1, sym__name, - ACTIONS(745), 1, + ACTIONS(751), 1, + anon_sym_RBRACK, + ACTIONS(753), 1, sym_float, - STATE(375), 1, + STATE(366), 1, sym_identifier, + STATE(387), 1, + sym_tuple, STATE(388), 1, sym_anonymous_function, - STATE(397), 1, - sym_tuple, - STATE(1128), 1, + STATE(1149), 1, sym__maybe_function_expression, - STATE(1195), 1, - sym__maybe_record_expression, - STATE(1247), 1, + STATE(1259), 1, sym__maybe_tuple_expression, - STATE(1279), 1, - sym_case_subjects, + STATE(1262), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(357), 2, + STATE(360), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(398), 2, + STATE(386), 2, sym_record, sym_record_update, - ACTIONS(311), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, + STATE(368), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(561), 11, + STATE(551), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -17188,75 +17478,75 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [13468] = 30, + [13800] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(281), 1, + ACTIONS(260), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(262), 1, anon_sym_POUND, - ACTIONS(287), 1, + ACTIONS(266), 1, anon_sym_LBRACK, - ACTIONS(289), 1, + ACTIONS(268), 1, anon_sym_LT_LT, - ACTIONS(291), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(272), 1, anon_sym_fn, - ACTIONS(295), 1, + ACTIONS(274), 1, anon_sym_todo, - ACTIONS(299), 1, + ACTIONS(278), 1, anon_sym_case, - ACTIONS(301), 1, + ACTIONS(280), 1, anon_sym_let, - ACTIONS(303), 1, + ACTIONS(282), 1, anon_sym_assert, - ACTIONS(305), 1, + ACTIONS(284), 1, anon_sym_BANG, - ACTIONS(307), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(319), 1, + ACTIONS(298), 1, sym__upname, ACTIONS(709), 1, sym__name, - ACTIONS(745), 1, + ACTIONS(755), 1, + anon_sym_RBRACK, + ACTIONS(757), 1, sym_float, - STATE(375), 1, + STATE(366), 1, sym_identifier, + STATE(387), 1, + sym_tuple, STATE(388), 1, sym_anonymous_function, - STATE(397), 1, - sym_tuple, - STATE(1128), 1, + STATE(1149), 1, sym__maybe_function_expression, - STATE(1195), 1, - sym__maybe_record_expression, - STATE(1247), 1, + STATE(1259), 1, sym__maybe_tuple_expression, - STATE(1275), 1, - sym_case_subjects, + STATE(1262), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(357), 2, + STATE(360), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(398), 2, + STATE(386), 2, sym_record, sym_record_update, - ACTIONS(311), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, + STATE(368), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(561), 11, + STATE(530), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -17268,75 +17558,75 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [13578] = 30, + [13910] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(281), 1, + ACTIONS(260), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(262), 1, anon_sym_POUND, - ACTIONS(287), 1, + ACTIONS(266), 1, anon_sym_LBRACK, - ACTIONS(289), 1, + ACTIONS(268), 1, anon_sym_LT_LT, - ACTIONS(291), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(272), 1, anon_sym_fn, - ACTIONS(295), 1, + ACTIONS(274), 1, anon_sym_todo, - ACTIONS(299), 1, + ACTIONS(278), 1, anon_sym_case, - ACTIONS(301), 1, + ACTIONS(280), 1, anon_sym_let, - ACTIONS(303), 1, + ACTIONS(282), 1, anon_sym_assert, - ACTIONS(305), 1, + ACTIONS(284), 1, anon_sym_BANG, - ACTIONS(307), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(319), 1, + ACTIONS(298), 1, sym__upname, ACTIONS(709), 1, sym__name, ACTIONS(747), 1, - anon_sym_RBRACK, - ACTIONS(749), 1, sym_float, - STATE(375), 1, + STATE(366), 1, sym_identifier, + STATE(387), 1, + sym_tuple, STATE(388), 1, sym_anonymous_function, - STATE(397), 1, - sym_tuple, - STATE(1128), 1, + STATE(1149), 1, sym__maybe_function_expression, - STATE(1195), 1, - sym__maybe_record_expression, - STATE(1247), 1, + STATE(1259), 1, sym__maybe_tuple_expression, + STATE(1262), 1, + sym__maybe_record_expression, + STATE(1296), 1, + sym_case_subjects, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(357), 2, + STATE(360), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(398), 2, + STATE(386), 2, sym_record, sym_record_update, - ACTIONS(311), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, + STATE(368), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(545), 11, + STATE(559), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -17348,75 +17638,129 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [13688] = 30, + [14020] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(281), 1, - anon_sym_LBRACE, - ACTIONS(283), 1, - anon_sym_POUND, - ACTIONS(287), 1, - anon_sym_LBRACK, - ACTIONS(289), 1, - anon_sym_LT_LT, - ACTIONS(291), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(415), 17, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(293), 1, anon_sym_fn, - ACTIONS(295), 1, + anon_sym_try, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(299), 1, anon_sym_case, - ACTIONS(301), 1, anon_sym_let, - ACTIONS(303), 1, anon_sym_assert, - ACTIONS(305), 1, anon_sym_BANG, - ACTIONS(307), 1, + sym__decimal, + sym__name, + ACTIONS(413), 29, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [14078] = 30, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(260), 1, + anon_sym_LBRACE, + ACTIONS(262), 1, + anon_sym_POUND, + ACTIONS(266), 1, + anon_sym_LBRACK, + ACTIONS(268), 1, + anon_sym_LT_LT, + ACTIONS(270), 1, + anon_sym_DASH, + ACTIONS(272), 1, + anon_sym_fn, + ACTIONS(274), 1, + anon_sym_todo, + ACTIONS(278), 1, + anon_sym_case, + ACTIONS(280), 1, + anon_sym_let, + ACTIONS(282), 1, + anon_sym_assert, + ACTIONS(284), 1, + anon_sym_BANG, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(319), 1, + ACTIONS(298), 1, sym__upname, ACTIONS(709), 1, sym__name, - ACTIONS(745), 1, + ACTIONS(759), 1, + anon_sym_RPAREN, + ACTIONS(761), 1, sym_float, - STATE(375), 1, + STATE(366), 1, sym_identifier, + STATE(387), 1, + sym_tuple, STATE(388), 1, sym_anonymous_function, - STATE(397), 1, - sym_tuple, - STATE(1128), 1, + STATE(1149), 1, sym__maybe_function_expression, - STATE(1195), 1, - sym__maybe_record_expression, - STATE(1247), 1, + STATE(1259), 1, sym__maybe_tuple_expression, - STATE(1264), 1, - sym_case_subjects, + STATE(1262), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(357), 2, + STATE(360), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(398), 2, + STATE(386), 2, sym_record, sym_record_update, - ACTIONS(311), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, + STATE(368), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(561), 11, + STATE(567), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -17428,75 +17772,75 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [13798] = 30, + [14188] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(281), 1, + ACTIONS(260), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(262), 1, anon_sym_POUND, - ACTIONS(287), 1, + ACTIONS(266), 1, anon_sym_LBRACK, - ACTIONS(289), 1, + ACTIONS(268), 1, anon_sym_LT_LT, - ACTIONS(291), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(272), 1, anon_sym_fn, - ACTIONS(295), 1, + ACTIONS(274), 1, anon_sym_todo, - ACTIONS(299), 1, + ACTIONS(278), 1, anon_sym_case, - ACTIONS(301), 1, + ACTIONS(280), 1, anon_sym_let, - ACTIONS(303), 1, + ACTIONS(282), 1, anon_sym_assert, - ACTIONS(305), 1, + ACTIONS(284), 1, anon_sym_BANG, - ACTIONS(307), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(319), 1, + ACTIONS(298), 1, sym__upname, ACTIONS(709), 1, sym__name, - ACTIONS(745), 1, + ACTIONS(763), 1, + anon_sym_RPAREN, + ACTIONS(765), 1, sym_float, - STATE(375), 1, + STATE(366), 1, sym_identifier, + STATE(387), 1, + sym_tuple, STATE(388), 1, sym_anonymous_function, - STATE(397), 1, - sym_tuple, - STATE(1128), 1, + STATE(1149), 1, sym__maybe_function_expression, - STATE(1195), 1, - sym__maybe_record_expression, - STATE(1227), 1, - sym_case_subjects, - STATE(1247), 1, + STATE(1259), 1, sym__maybe_tuple_expression, + STATE(1262), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(357), 2, + STATE(360), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(398), 2, + STATE(386), 2, sym_record, sym_record_update, - ACTIONS(311), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, + STATE(368), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(561), 11, + STATE(560), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -17508,75 +17852,184 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [13908] = 30, + [14298] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(433), 17, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_fn, + anon_sym_try, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(431), 29, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [14356] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(281), 1, + ACTIONS(767), 1, + anon_sym_LPAREN, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(425), 17, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_fn, + anon_sym_try, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(423), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [14416] = 30, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(260), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(262), 1, anon_sym_POUND, - ACTIONS(287), 1, + ACTIONS(266), 1, anon_sym_LBRACK, - ACTIONS(289), 1, + ACTIONS(268), 1, anon_sym_LT_LT, - ACTIONS(291), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(272), 1, anon_sym_fn, - ACTIONS(295), 1, + ACTIONS(274), 1, anon_sym_todo, - ACTIONS(299), 1, + ACTIONS(278), 1, anon_sym_case, - ACTIONS(301), 1, + ACTIONS(280), 1, anon_sym_let, - ACTIONS(303), 1, + ACTIONS(282), 1, anon_sym_assert, - ACTIONS(305), 1, + ACTIONS(284), 1, anon_sym_BANG, - ACTIONS(307), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(319), 1, + ACTIONS(298), 1, sym__upname, ACTIONS(707), 1, sym_float, ACTIONS(709), 1, sym__name, - ACTIONS(751), 1, + ACTIONS(769), 1, anon_sym_RPAREN, - STATE(375), 1, + STATE(366), 1, sym_identifier, + STATE(387), 1, + sym_tuple, STATE(388), 1, sym_anonymous_function, - STATE(397), 1, - sym_tuple, - STATE(1128), 1, + STATE(1149), 1, sym__maybe_function_expression, - STATE(1195), 1, - sym__maybe_record_expression, - STATE(1247), 1, + STATE(1259), 1, sym__maybe_tuple_expression, + STATE(1262), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(357), 2, + STATE(360), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(398), 2, + STATE(386), 2, sym_record, sym_record_update, - ACTIONS(311), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, + STATE(368), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(522), 11, + STATE(523), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -17588,75 +18041,75 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [14018] = 30, + [14526] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(281), 1, + ACTIONS(260), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(262), 1, anon_sym_POUND, - ACTIONS(287), 1, + ACTIONS(266), 1, anon_sym_LBRACK, - ACTIONS(289), 1, + ACTIONS(268), 1, anon_sym_LT_LT, - ACTIONS(291), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(272), 1, anon_sym_fn, - ACTIONS(295), 1, + ACTIONS(274), 1, anon_sym_todo, - ACTIONS(299), 1, + ACTIONS(278), 1, anon_sym_case, - ACTIONS(301), 1, + ACTIONS(280), 1, anon_sym_let, - ACTIONS(303), 1, + ACTIONS(282), 1, anon_sym_assert, - ACTIONS(305), 1, + ACTIONS(284), 1, anon_sym_BANG, - ACTIONS(307), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(319), 1, + ACTIONS(298), 1, sym__upname, + ACTIONS(707), 1, + sym_float, ACTIONS(709), 1, sym__name, - ACTIONS(753), 1, + ACTIONS(771), 1, anon_sym_RPAREN, - ACTIONS(755), 1, - sym_float, - STATE(375), 1, + STATE(366), 1, sym_identifier, + STATE(387), 1, + sym_tuple, STATE(388), 1, sym_anonymous_function, - STATE(397), 1, - sym_tuple, - STATE(1128), 1, + STATE(1149), 1, sym__maybe_function_expression, - STATE(1195), 1, - sym__maybe_record_expression, - STATE(1247), 1, + STATE(1259), 1, sym__maybe_tuple_expression, + STATE(1262), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(357), 2, + STATE(360), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(398), 2, + STATE(386), 2, sym_record, sym_record_update, - ACTIONS(311), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, + STATE(368), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(573), 11, + STATE(523), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -17668,75 +18121,75 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [14128] = 30, + [14636] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(281), 1, + ACTIONS(260), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(262), 1, anon_sym_POUND, - ACTIONS(287), 1, + ACTIONS(266), 1, anon_sym_LBRACK, - ACTIONS(289), 1, + ACTIONS(268), 1, anon_sym_LT_LT, - ACTIONS(291), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(272), 1, anon_sym_fn, - ACTIONS(295), 1, + ACTIONS(274), 1, anon_sym_todo, - ACTIONS(299), 1, + ACTIONS(278), 1, anon_sym_case, - ACTIONS(301), 1, + ACTIONS(280), 1, anon_sym_let, - ACTIONS(303), 1, + ACTIONS(282), 1, anon_sym_assert, - ACTIONS(305), 1, + ACTIONS(284), 1, anon_sym_BANG, - ACTIONS(307), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(319), 1, + ACTIONS(298), 1, sym__upname, - ACTIONS(707), 1, - sym_float, ACTIONS(709), 1, sym__name, - ACTIONS(757), 1, - anon_sym_RPAREN, - STATE(375), 1, + ACTIONS(747), 1, + sym_float, + STATE(366), 1, sym_identifier, + STATE(387), 1, + sym_tuple, STATE(388), 1, sym_anonymous_function, - STATE(397), 1, - sym_tuple, - STATE(1128), 1, + STATE(1149), 1, sym__maybe_function_expression, - STATE(1195), 1, - sym__maybe_record_expression, - STATE(1247), 1, + STATE(1259), 1, sym__maybe_tuple_expression, + STATE(1262), 1, + sym__maybe_record_expression, + STATE(1285), 1, + sym_case_subjects, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(357), 2, + STATE(360), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(398), 2, + STATE(386), 2, sym_record, sym_record_update, - ACTIONS(311), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, + STATE(368), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(522), 11, + STATE(559), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -17748,75 +18201,75 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [14238] = 30, + [14746] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(281), 1, + ACTIONS(260), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(262), 1, anon_sym_POUND, - ACTIONS(287), 1, + ACTIONS(266), 1, anon_sym_LBRACK, - ACTIONS(289), 1, + ACTIONS(268), 1, anon_sym_LT_LT, - ACTIONS(291), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(272), 1, anon_sym_fn, - ACTIONS(295), 1, + ACTIONS(274), 1, anon_sym_todo, - ACTIONS(299), 1, + ACTIONS(278), 1, anon_sym_case, - ACTIONS(301), 1, + ACTIONS(280), 1, anon_sym_let, - ACTIONS(303), 1, + ACTIONS(282), 1, anon_sym_assert, - ACTIONS(305), 1, + ACTIONS(284), 1, anon_sym_BANG, - ACTIONS(307), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(319), 1, + ACTIONS(298), 1, sym__upname, ACTIONS(707), 1, sym_float, ACTIONS(709), 1, sym__name, - ACTIONS(759), 1, + ACTIONS(773), 1, anon_sym_RPAREN, - STATE(375), 1, + STATE(366), 1, sym_identifier, + STATE(387), 1, + sym_tuple, STATE(388), 1, sym_anonymous_function, - STATE(397), 1, - sym_tuple, - STATE(1128), 1, + STATE(1149), 1, sym__maybe_function_expression, - STATE(1195), 1, - sym__maybe_record_expression, - STATE(1247), 1, + STATE(1259), 1, sym__maybe_tuple_expression, + STATE(1262), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(357), 2, + STATE(360), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(398), 2, + STATE(386), 2, sym_record, sym_record_update, - ACTIONS(311), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, + STATE(368), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(522), 11, + STATE(523), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -17828,75 +18281,75 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [14348] = 30, + [14856] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(281), 1, + ACTIONS(260), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(262), 1, anon_sym_POUND, - ACTIONS(287), 1, + ACTIONS(266), 1, anon_sym_LBRACK, - ACTIONS(289), 1, + ACTIONS(268), 1, anon_sym_LT_LT, - ACTIONS(291), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(272), 1, anon_sym_fn, - ACTIONS(295), 1, + ACTIONS(274), 1, anon_sym_todo, - ACTIONS(299), 1, + ACTIONS(278), 1, anon_sym_case, - ACTIONS(301), 1, + ACTIONS(280), 1, anon_sym_let, - ACTIONS(303), 1, + ACTIONS(282), 1, anon_sym_assert, - ACTIONS(305), 1, + ACTIONS(284), 1, anon_sym_BANG, - ACTIONS(307), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(319), 1, + ACTIONS(298), 1, sym__upname, ACTIONS(709), 1, sym__name, - ACTIONS(761), 1, - anon_sym_RPAREN, - ACTIONS(763), 1, + ACTIONS(775), 1, + anon_sym_RBRACK, + ACTIONS(777), 1, sym_float, - STATE(375), 1, + STATE(366), 1, sym_identifier, + STATE(387), 1, + sym_tuple, STATE(388), 1, sym_anonymous_function, - STATE(397), 1, - sym_tuple, - STATE(1128), 1, + STATE(1149), 1, sym__maybe_function_expression, - STATE(1195), 1, - sym__maybe_record_expression, - STATE(1247), 1, + STATE(1259), 1, sym__maybe_tuple_expression, + STATE(1262), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(357), 2, + STATE(360), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(398), 2, + STATE(386), 2, sym_record, sym_record_update, - ACTIONS(311), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, + STATE(368), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(550), 11, + STATE(527), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -17908,75 +18361,75 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [14458] = 30, + [14966] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(281), 1, + ACTIONS(260), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(262), 1, anon_sym_POUND, - ACTIONS(287), 1, + ACTIONS(266), 1, anon_sym_LBRACK, - ACTIONS(289), 1, + ACTIONS(268), 1, anon_sym_LT_LT, - ACTIONS(291), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(272), 1, anon_sym_fn, - ACTIONS(295), 1, + ACTIONS(274), 1, anon_sym_todo, - ACTIONS(299), 1, + ACTIONS(278), 1, anon_sym_case, - ACTIONS(301), 1, + ACTIONS(280), 1, anon_sym_let, - ACTIONS(303), 1, + ACTIONS(282), 1, anon_sym_assert, - ACTIONS(305), 1, + ACTIONS(284), 1, anon_sym_BANG, - ACTIONS(307), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(319), 1, + ACTIONS(298), 1, sym__upname, + ACTIONS(707), 1, + sym_float, ACTIONS(709), 1, sym__name, - ACTIONS(765), 1, - anon_sym_RBRACK, - ACTIONS(767), 1, - sym_float, - STATE(375), 1, + ACTIONS(779), 1, + anon_sym_RPAREN, + STATE(366), 1, sym_identifier, + STATE(387), 1, + sym_tuple, STATE(388), 1, sym_anonymous_function, - STATE(397), 1, - sym_tuple, - STATE(1128), 1, + STATE(1149), 1, sym__maybe_function_expression, - STATE(1195), 1, - sym__maybe_record_expression, - STATE(1247), 1, + STATE(1259), 1, sym__maybe_tuple_expression, + STATE(1262), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(357), 2, + STATE(360), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(398), 2, + STATE(386), 2, sym_record, sym_record_update, - ACTIONS(311), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, + STATE(368), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(529), 11, + STATE(523), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -17988,75 +18441,75 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [14568] = 30, + [15076] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(281), 1, + ACTIONS(260), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(262), 1, anon_sym_POUND, - ACTIONS(287), 1, + ACTIONS(266), 1, anon_sym_LBRACK, - ACTIONS(289), 1, + ACTIONS(268), 1, anon_sym_LT_LT, - ACTIONS(291), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(272), 1, anon_sym_fn, - ACTIONS(295), 1, + ACTIONS(274), 1, anon_sym_todo, - ACTIONS(299), 1, + ACTIONS(278), 1, anon_sym_case, - ACTIONS(301), 1, + ACTIONS(280), 1, anon_sym_let, - ACTIONS(303), 1, + ACTIONS(282), 1, anon_sym_assert, - ACTIONS(305), 1, + ACTIONS(284), 1, anon_sym_BANG, - ACTIONS(307), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(319), 1, + ACTIONS(298), 1, sym__upname, - ACTIONS(707), 1, - sym_float, ACTIONS(709), 1, sym__name, - ACTIONS(769), 1, + ACTIONS(781), 1, anon_sym_RPAREN, - STATE(375), 1, + ACTIONS(783), 1, + sym_float, + STATE(366), 1, sym_identifier, + STATE(387), 1, + sym_tuple, STATE(388), 1, sym_anonymous_function, - STATE(397), 1, - sym_tuple, - STATE(1128), 1, + STATE(1149), 1, sym__maybe_function_expression, - STATE(1195), 1, - sym__maybe_record_expression, - STATE(1247), 1, + STATE(1259), 1, sym__maybe_tuple_expression, + STATE(1262), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(357), 2, + STATE(360), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(398), 2, + STATE(386), 2, sym_record, sym_record_update, - ACTIONS(311), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, + STATE(368), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(522), 11, + STATE(585), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -18068,75 +18521,75 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [14678] = 30, + [15186] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(281), 1, + ACTIONS(260), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(262), 1, anon_sym_POUND, - ACTIONS(287), 1, + ACTIONS(266), 1, anon_sym_LBRACK, - ACTIONS(289), 1, + ACTIONS(268), 1, anon_sym_LT_LT, - ACTIONS(291), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(272), 1, anon_sym_fn, - ACTIONS(295), 1, + ACTIONS(274), 1, anon_sym_todo, - ACTIONS(299), 1, + ACTIONS(278), 1, anon_sym_case, - ACTIONS(301), 1, + ACTIONS(280), 1, anon_sym_let, - ACTIONS(303), 1, + ACTIONS(282), 1, anon_sym_assert, - ACTIONS(305), 1, + ACTIONS(284), 1, anon_sym_BANG, - ACTIONS(307), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(319), 1, + ACTIONS(298), 1, sym__upname, - ACTIONS(707), 1, - sym_float, ACTIONS(709), 1, sym__name, - ACTIONS(771), 1, + ACTIONS(785), 1, anon_sym_RPAREN, - STATE(375), 1, + ACTIONS(787), 1, + sym_float, + STATE(366), 1, sym_identifier, + STATE(387), 1, + sym_tuple, STATE(388), 1, sym_anonymous_function, - STATE(397), 1, - sym_tuple, - STATE(1128), 1, + STATE(1149), 1, sym__maybe_function_expression, - STATE(1195), 1, - sym__maybe_record_expression, - STATE(1247), 1, + STATE(1259), 1, sym__maybe_tuple_expression, + STATE(1262), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(357), 2, + STATE(360), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(398), 2, + STATE(386), 2, sym_record, sym_record_update, - ACTIONS(311), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, + STATE(368), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(522), 11, + STATE(571), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -18148,15 +18601,13 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [14788] = 5, + [15296] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(773), 1, - anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(421), 17, + ACTIONS(405), 17, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -18174,11 +18625,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(419), 28, + ACTIONS(403), 29, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_POUND, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_GT_GT, @@ -18203,95 +18655,15 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [14848] = 30, + [15354] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(281), 1, - anon_sym_LBRACE, - ACTIONS(283), 1, - anon_sym_POUND, - ACTIONS(287), 1, - anon_sym_LBRACK, - ACTIONS(289), 1, - anon_sym_LT_LT, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_fn, - ACTIONS(295), 1, - anon_sym_todo, - ACTIONS(299), 1, - anon_sym_case, - ACTIONS(301), 1, - anon_sym_let, - ACTIONS(303), 1, - anon_sym_assert, - ACTIONS(305), 1, - anon_sym_BANG, ACTIONS(307), 1, - anon_sym_DQUOTE, - ACTIONS(313), 1, - sym__decimal, - ACTIONS(319), 1, - sym__upname, - ACTIONS(709), 1, - sym__name, - ACTIONS(775), 1, - anon_sym_RPAREN, - ACTIONS(777), 1, - sym_float, - STATE(375), 1, - sym_identifier, - STATE(388), 1, - sym_anonymous_function, - STATE(397), 1, - sym_tuple, - STATE(1128), 1, - sym__maybe_function_expression, - STATE(1195), 1, - sym__maybe_record_expression, - STATE(1247), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(357), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(398), 2, - sym_record, - sym_record_update, - ACTIONS(311), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(374), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(557), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [14958] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(393), 1, - anon_sym_DOT, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(266), 17, + ACTIONS(302), 17, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -18309,7 +18681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(264), 28, + ACTIONS(300), 28, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -18338,15 +18710,15 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [15018] = 5, + [15414] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(411), 1, + ACTIONS(385), 1, anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(266), 17, + ACTIONS(302), 17, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -18364,7 +18736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(264), 28, + ACTIONS(300), 28, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -18393,15 +18765,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [15078] = 5, + [15474] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(271), 1, - anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(266), 17, + ACTIONS(411), 17, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -18419,9 +18789,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(264), 28, + ACTIONS(409), 29, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_COMMA, anon_sym_POUND, anon_sym_LBRACK, @@ -18448,155 +18819,75 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [15138] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(281), 1, - anon_sym_LBRACE, - ACTIONS(283), 1, - anon_sym_POUND, - ACTIONS(287), 1, - anon_sym_LBRACK, - ACTIONS(289), 1, - anon_sym_LT_LT, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_fn, - ACTIONS(295), 1, - anon_sym_todo, - ACTIONS(299), 1, - anon_sym_case, - ACTIONS(301), 1, - anon_sym_let, - ACTIONS(303), 1, - anon_sym_assert, - ACTIONS(305), 1, - anon_sym_BANG, - ACTIONS(307), 1, - anon_sym_DQUOTE, - ACTIONS(313), 1, - sym__decimal, - ACTIONS(319), 1, - sym__upname, - ACTIONS(709), 1, - sym__name, - ACTIONS(779), 1, - anon_sym_RBRACK, - ACTIONS(781), 1, - sym_float, - STATE(375), 1, - sym_identifier, - STATE(388), 1, - sym_anonymous_function, - STATE(397), 1, - sym_tuple, - STATE(1128), 1, - sym__maybe_function_expression, - STATE(1195), 1, - sym__maybe_record_expression, - STATE(1247), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(357), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(398), 2, - sym_record, - sym_record_update, - ACTIONS(311), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(374), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(542), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [15248] = 30, + [15532] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(281), 1, + ACTIONS(260), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(262), 1, anon_sym_POUND, - ACTIONS(287), 1, + ACTIONS(266), 1, anon_sym_LBRACK, - ACTIONS(289), 1, + ACTIONS(268), 1, anon_sym_LT_LT, - ACTIONS(291), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(272), 1, anon_sym_fn, - ACTIONS(295), 1, + ACTIONS(274), 1, anon_sym_todo, - ACTIONS(299), 1, + ACTIONS(278), 1, anon_sym_case, - ACTIONS(301), 1, + ACTIONS(280), 1, anon_sym_let, - ACTIONS(303), 1, + ACTIONS(282), 1, anon_sym_assert, - ACTIONS(305), 1, + ACTIONS(284), 1, anon_sym_BANG, - ACTIONS(307), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(319), 1, + ACTIONS(298), 1, sym__upname, ACTIONS(707), 1, sym_float, ACTIONS(709), 1, sym__name, - ACTIONS(783), 1, + ACTIONS(789), 1, anon_sym_RPAREN, - STATE(375), 1, + STATE(366), 1, sym_identifier, + STATE(387), 1, + sym_tuple, STATE(388), 1, sym_anonymous_function, - STATE(397), 1, - sym_tuple, - STATE(1128), 1, + STATE(1149), 1, sym__maybe_function_expression, - STATE(1195), 1, - sym__maybe_record_expression, - STATE(1247), 1, + STATE(1259), 1, sym__maybe_tuple_expression, + STATE(1262), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(357), 2, + STATE(360), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(398), 2, + STATE(386), 2, sym_record, sym_record_update, - ACTIONS(311), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, + STATE(368), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(522), 11, + STATE(523), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -18608,13 +18899,15 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [15358] = 4, + [15642] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(393), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(401), 17, + ACTIONS(302), 17, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -18632,10 +18925,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(399), 29, + ACTIONS(300), 28, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_COMMA, anon_sym_POUND, anon_sym_LBRACK, @@ -18662,13 +18954,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [15416] = 4, + [15702] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(435), 17, + ACTIONS(389), 17, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -18686,12 +18978,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(433), 29, + ACTIONS(387), 29, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_COMMA, anon_sym_POUND, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_GT_GT, @@ -18716,13 +19008,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [15474] = 4, + [15760] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(427), 17, + ACTIONS(441), 17, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -18740,12 +19032,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(425), 29, + ACTIONS(439), 29, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_COMMA, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_GT_GT, @@ -18770,75 +19062,75 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [15532] = 30, + [15818] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(281), 1, + ACTIONS(260), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(262), 1, anon_sym_POUND, - ACTIONS(287), 1, + ACTIONS(266), 1, anon_sym_LBRACK, - ACTIONS(289), 1, + ACTIONS(268), 1, anon_sym_LT_LT, - ACTIONS(291), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(272), 1, anon_sym_fn, - ACTIONS(295), 1, + ACTIONS(274), 1, anon_sym_todo, - ACTIONS(299), 1, + ACTIONS(278), 1, anon_sym_case, - ACTIONS(301), 1, + ACTIONS(280), 1, anon_sym_let, - ACTIONS(303), 1, + ACTIONS(282), 1, anon_sym_assert, - ACTIONS(305), 1, + ACTIONS(284), 1, anon_sym_BANG, - ACTIONS(307), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(319), 1, + ACTIONS(298), 1, sym__upname, - ACTIONS(707), 1, - sym_float, ACTIONS(709), 1, sym__name, - ACTIONS(785), 1, - anon_sym_RPAREN, - STATE(375), 1, + ACTIONS(791), 1, + anon_sym_RBRACK, + ACTIONS(793), 1, + sym_float, + STATE(366), 1, sym_identifier, + STATE(387), 1, + sym_tuple, STATE(388), 1, sym_anonymous_function, - STATE(397), 1, - sym_tuple, - STATE(1128), 1, + STATE(1149), 1, sym__maybe_function_expression, - STATE(1195), 1, - sym__maybe_record_expression, - STATE(1247), 1, + STATE(1259), 1, sym__maybe_tuple_expression, + STATE(1262), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(357), 2, + STATE(360), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(398), 2, + STATE(386), 2, sym_record, sym_record_update, - ACTIONS(311), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, + STATE(368), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(522), 11, + STATE(545), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -18850,75 +19142,75 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [15642] = 30, + [15928] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(281), 1, + ACTIONS(260), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(262), 1, anon_sym_POUND, - ACTIONS(287), 1, + ACTIONS(266), 1, anon_sym_LBRACK, - ACTIONS(289), 1, + ACTIONS(268), 1, anon_sym_LT_LT, - ACTIONS(291), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(272), 1, anon_sym_fn, - ACTIONS(295), 1, + ACTIONS(274), 1, anon_sym_todo, - ACTIONS(299), 1, + ACTIONS(278), 1, anon_sym_case, - ACTIONS(301), 1, + ACTIONS(280), 1, anon_sym_let, - ACTIONS(303), 1, + ACTIONS(282), 1, anon_sym_assert, - ACTIONS(305), 1, + ACTIONS(284), 1, anon_sym_BANG, - ACTIONS(307), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(319), 1, + ACTIONS(298), 1, sym__upname, - ACTIONS(707), 1, - sym_float, ACTIONS(709), 1, sym__name, - ACTIONS(787), 1, - anon_sym_RPAREN, - STATE(375), 1, + ACTIONS(747), 1, + sym_float, + STATE(366), 1, sym_identifier, + STATE(387), 1, + sym_tuple, STATE(388), 1, sym_anonymous_function, - STATE(397), 1, - sym_tuple, - STATE(1128), 1, + STATE(1149), 1, sym__maybe_function_expression, - STATE(1195), 1, - sym__maybe_record_expression, - STATE(1247), 1, + STATE(1234), 1, + sym_case_subjects, + STATE(1259), 1, sym__maybe_tuple_expression, + STATE(1262), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(357), 2, + STATE(360), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(398), 2, + STATE(386), 2, sym_record, sym_record_update, - ACTIONS(311), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, + STATE(368), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(522), 11, + STATE(559), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -18930,183 +19222,153 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [15752] = 4, + [16038] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(407), 17, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(405), 29, + ACTIONS(260), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(262), 1, anon_sym_POUND, - anon_sym_LPAREN, + ACTIONS(266), 1, anon_sym_LBRACK, + ACTIONS(268), 1, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [15810] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(397), 17, - anon_sym_SLASH, + ACTIONS(270), 1, anon_sym_DASH, + ACTIONS(272), 1, anon_sym_fn, - anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(274), 1, anon_sym_todo, + ACTIONS(278), 1, anon_sym_case, + ACTIONS(280), 1, anon_sym_let, + ACTIONS(282), 1, anon_sym_assert, + ACTIONS(284), 1, anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(395), 29, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, + ACTIONS(286), 1, anon_sym_DQUOTE, + ACTIONS(292), 1, + sym__decimal, + ACTIONS(298), 1, + sym__upname, + ACTIONS(707), 1, sym_float, + ACTIONS(709), 1, + sym__name, + ACTIONS(795), 1, + anon_sym_RPAREN, + STATE(366), 1, + sym_identifier, + STATE(387), 1, + sym_tuple, + STATE(388), 1, + sym_anonymous_function, + STATE(1149), 1, + sym__maybe_function_expression, + STATE(1259), 1, + sym__maybe_tuple_expression, + STATE(1262), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(360), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(386), 2, + sym_record, + sym_record_update, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [15868] = 30, + STATE(368), 5, + sym_expression_group, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(523), 11, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_list, + sym__expression_bit_string, + sym_let, + sym_assert, + sym_negation, + sym_string, + sym_integer, + [16148] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(281), 1, + ACTIONS(479), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(483), 1, anon_sym_POUND, - ACTIONS(287), 1, + ACTIONS(485), 1, anon_sym_LBRACK, - ACTIONS(289), 1, + ACTIONS(487), 1, anon_sym_LT_LT, - ACTIONS(291), 1, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(491), 1, anon_sym_fn, - ACTIONS(295), 1, + ACTIONS(495), 1, anon_sym_todo, - ACTIONS(299), 1, + ACTIONS(497), 1, anon_sym_case, - ACTIONS(301), 1, + ACTIONS(499), 1, anon_sym_let, - ACTIONS(303), 1, + ACTIONS(501), 1, anon_sym_assert, - ACTIONS(305), 1, + ACTIONS(503), 1, anon_sym_BANG, - ACTIONS(307), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(319), 1, - sym__upname, - ACTIONS(709), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(789), 1, - anon_sym_RPAREN, - ACTIONS(791), 1, + ACTIONS(515), 1, + sym__upname, + ACTIONS(797), 1, sym_float, - STATE(375), 1, + STATE(141), 1, sym_identifier, - STATE(388), 1, + STATE(174), 1, sym_anonymous_function, - STATE(397), 1, + STATE(175), 1, sym_tuple, - STATE(1128), 1, + STATE(1118), 1, sym__maybe_function_expression, - STATE(1195), 1, + STATE(1232), 1, sym__maybe_record_expression, - STATE(1247), 1, + STATE(1292), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(357), 2, + STATE(123), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(398), 2, + STATE(178), 2, sym_record, sym_record_update, - ACTIONS(311), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, + STATE(140), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(568), 11, + STATE(285), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -19118,129 +19380,153 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [15978] = 4, + [16255] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(441), 17, - anon_sym_SLASH, + ACTIONS(479), 1, + anon_sym_LBRACE, + ACTIONS(483), 1, + anon_sym_POUND, + ACTIONS(485), 1, + anon_sym_LBRACK, + ACTIONS(487), 1, + anon_sym_LT_LT, + ACTIONS(489), 1, anon_sym_DASH, + ACTIONS(491), 1, anon_sym_fn, - anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(495), 1, anon_sym_todo, + ACTIONS(497), 1, anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_BANG, + ACTIONS(505), 1, + anon_sym_DQUOTE, + ACTIONS(511), 1, sym__decimal, + ACTIONS(513), 1, sym__name, - ACTIONS(439), 29, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, + ACTIONS(515), 1, + sym__upname, + ACTIONS(799), 1, anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DQUOTE, + ACTIONS(801), 1, + anon_sym_let, + ACTIONS(803), 1, + anon_sym_assert, + ACTIONS(805), 1, + anon_sym_BANG, + ACTIONS(807), 1, sym_float, + STATE(141), 1, + sym_identifier, + STATE(174), 1, + sym_anonymous_function, + STATE(175), 1, + sym_tuple, + STATE(1118), 1, + sym__maybe_function_expression, + STATE(1132), 1, + sym_expression_bit_string_segment, + STATE(1232), 1, + sym__maybe_record_expression, + STATE(1292), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(123), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(178), 2, + sym_record, + sym_record_update, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [16036] = 30, + STATE(140), 5, + sym_expression_group, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(952), 9, + sym__expression_unit, + sym_todo, + sym_list, + sym__expression_bit_string, + sym_let, + sym_assert, + sym_negation, + sym_string, + sym_integer, + [16366] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(281), 1, + ACTIONS(260), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(262), 1, anon_sym_POUND, - ACTIONS(287), 1, + ACTIONS(266), 1, anon_sym_LBRACK, - ACTIONS(289), 1, + ACTIONS(268), 1, anon_sym_LT_LT, - ACTIONS(291), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(272), 1, anon_sym_fn, - ACTIONS(295), 1, + ACTIONS(274), 1, anon_sym_todo, - ACTIONS(299), 1, + ACTIONS(278), 1, anon_sym_case, - ACTIONS(301), 1, + ACTIONS(280), 1, anon_sym_let, - ACTIONS(303), 1, + ACTIONS(282), 1, anon_sym_assert, - ACTIONS(305), 1, + ACTIONS(284), 1, anon_sym_BANG, - ACTIONS(307), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(319), 1, + ACTIONS(298), 1, sym__upname, ACTIONS(709), 1, sym__name, - ACTIONS(793), 1, - anon_sym_RBRACK, - ACTIONS(795), 1, + ACTIONS(809), 1, sym_float, - STATE(375), 1, + STATE(366), 1, sym_identifier, + STATE(387), 1, + sym_tuple, STATE(388), 1, sym_anonymous_function, - STATE(397), 1, - sym_tuple, - STATE(1128), 1, + STATE(1149), 1, sym__maybe_function_expression, - STATE(1195), 1, - sym__maybe_record_expression, - STATE(1247), 1, + STATE(1259), 1, sym__maybe_tuple_expression, + STATE(1262), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(357), 2, + STATE(360), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(398), 2, + STATE(386), 2, sym_record, sym_record_update, - ACTIONS(311), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, + STATE(368), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(536), 11, + STATE(623), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -19252,109 +19538,56 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [16146] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(579), 17, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(577), 28, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [16203] = 31, + [16473] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(479), 1, anon_sym_LBRACE, - ACTIONS(451), 1, + ACTIONS(483), 1, anon_sym_POUND, - ACTIONS(453), 1, + ACTIONS(485), 1, anon_sym_LBRACK, - ACTIONS(455), 1, + ACTIONS(487), 1, anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(459), 1, + ACTIONS(491), 1, anon_sym_fn, - ACTIONS(463), 1, + ACTIONS(495), 1, anon_sym_todo, - ACTIONS(465), 1, + ACTIONS(497), 1, anon_sym_case, - ACTIONS(473), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(481), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(515), 1, sym__upname, - ACTIONS(797), 1, - anon_sym_GT_GT, - ACTIONS(799), 1, - anon_sym_let, ACTIONS(801), 1, - anon_sym_assert, + anon_sym_let, ACTIONS(803), 1, - anon_sym_BANG, + anon_sym_assert, ACTIONS(805), 1, + anon_sym_BANG, + ACTIONS(807), 1, sym_float, - STATE(142), 1, + ACTIONS(811), 1, + anon_sym_GT_GT, + STATE(141), 1, sym_identifier, - STATE(170), 1, - sym_tuple, - STATE(171), 1, + STATE(174), 1, sym_anonymous_function, - STATE(1101), 1, + STATE(175), 1, + sym_tuple, + STATE(1118), 1, sym__maybe_function_expression, - STATE(1183), 1, + STATE(1132), 1, sym_expression_bit_string_segment, - STATE(1211), 1, + STATE(1232), 1, sym__maybe_record_expression, - STATE(1263), 1, + STATE(1292), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -19362,20 +19595,20 @@ static const uint16_t ts_small_parse_table[] = { STATE(123), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(178), 2, sym_record, sym_record_update, - ACTIONS(477), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(140), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(940), 9, + STATE(952), 9, sym__expression_unit, sym_todo, sym_list, @@ -19385,73 +19618,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [16314] = 29, + [16584] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(281), 1, + ACTIONS(260), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(262), 1, anon_sym_POUND, - ACTIONS(287), 1, + ACTIONS(266), 1, anon_sym_LBRACK, - ACTIONS(289), 1, + ACTIONS(268), 1, anon_sym_LT_LT, - ACTIONS(291), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(272), 1, anon_sym_fn, - ACTIONS(295), 1, + ACTIONS(274), 1, anon_sym_todo, - ACTIONS(299), 1, + ACTIONS(278), 1, anon_sym_case, - ACTIONS(301), 1, + ACTIONS(280), 1, anon_sym_let, - ACTIONS(303), 1, + ACTIONS(282), 1, anon_sym_assert, - ACTIONS(305), 1, + ACTIONS(284), 1, anon_sym_BANG, - ACTIONS(307), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(319), 1, + ACTIONS(298), 1, sym__upname, ACTIONS(709), 1, sym__name, - ACTIONS(807), 1, + ACTIONS(813), 1, sym_float, - STATE(375), 1, + STATE(366), 1, sym_identifier, + STATE(387), 1, + sym_tuple, STATE(388), 1, sym_anonymous_function, - STATE(397), 1, - sym_tuple, - STATE(1128), 1, + STATE(1149), 1, sym__maybe_function_expression, - STATE(1195), 1, - sym__maybe_record_expression, - STATE(1247), 1, + STATE(1259), 1, sym__maybe_tuple_expression, + STATE(1262), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(357), 2, + STATE(360), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(398), 2, + STATE(386), 2, sym_record, sym_record_update, - ACTIONS(311), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, + STATE(368), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(407), 11, + STATE(620), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -19463,126 +19696,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [16421] = 4, + [16691] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(639), 17, - anon_sym_SLASH, + ACTIONS(260), 1, + anon_sym_LBRACE, + ACTIONS(262), 1, + anon_sym_POUND, + ACTIONS(266), 1, + anon_sym_LBRACK, + ACTIONS(268), 1, + anon_sym_LT_LT, + ACTIONS(270), 1, anon_sym_DASH, + ACTIONS(272), 1, anon_sym_fn, - anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(274), 1, anon_sym_todo, + ACTIONS(278), 1, anon_sym_case, + ACTIONS(280), 1, anon_sym_let, + ACTIONS(282), 1, anon_sym_assert, + ACTIONS(284), 1, anon_sym_BANG, + ACTIONS(286), 1, + anon_sym_DQUOTE, + ACTIONS(292), 1, sym__decimal, + ACTIONS(298), 1, + sym__upname, + ACTIONS(709), 1, sym__name, - ACTIONS(637), 28, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [16478] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(809), 1, - anon_sym_LBRACE, - ACTIONS(811), 1, - anon_sym_POUND, - ACTIONS(813), 1, - anon_sym_LBRACK, ACTIONS(815), 1, - anon_sym_LT_LT, - ACTIONS(817), 1, - anon_sym_DASH, - ACTIONS(819), 1, - anon_sym_fn, - ACTIONS(821), 1, - anon_sym_todo, - ACTIONS(823), 1, - anon_sym_case, - ACTIONS(825), 1, - anon_sym_let, - ACTIONS(827), 1, - anon_sym_assert, - ACTIONS(829), 1, - anon_sym_BANG, - ACTIONS(831), 1, - anon_sym_DQUOTE, - ACTIONS(833), 1, sym_float, - ACTIONS(837), 1, - sym__decimal, - ACTIONS(839), 1, - sym__name, - ACTIONS(841), 1, - sym__upname, - STATE(303), 1, + STATE(366), 1, sym_identifier, - STATE(319), 1, - sym_anonymous_function, - STATE(327), 1, + STATE(387), 1, sym_tuple, - STATE(1168), 1, + STATE(388), 1, + sym_anonymous_function, + STATE(1149), 1, sym__maybe_function_expression, - STATE(1196), 1, + STATE(1259), 1, sym__maybe_tuple_expression, - STATE(1252), 1, + STATE(1262), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(299), 2, + STATE(360), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(324), 2, + STATE(386), 2, sym_record, sym_record_update, - ACTIONS(835), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(301), 5, + STATE(368), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(329), 11, + STATE(413), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -19594,73 +19774,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [16585] = 29, + [16798] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(281), 1, + ACTIONS(260), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(262), 1, anon_sym_POUND, - ACTIONS(287), 1, + ACTIONS(266), 1, anon_sym_LBRACK, - ACTIONS(289), 1, + ACTIONS(268), 1, anon_sym_LT_LT, - ACTIONS(291), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(272), 1, anon_sym_fn, - ACTIONS(295), 1, + ACTIONS(274), 1, anon_sym_todo, - ACTIONS(299), 1, + ACTIONS(278), 1, anon_sym_case, - ACTIONS(301), 1, + ACTIONS(280), 1, anon_sym_let, - ACTIONS(303), 1, + ACTIONS(282), 1, anon_sym_assert, - ACTIONS(305), 1, + ACTIONS(284), 1, anon_sym_BANG, - ACTIONS(307), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(319), 1, + ACTIONS(298), 1, sym__upname, ACTIONS(709), 1, sym__name, - ACTIONS(843), 1, + ACTIONS(817), 1, sym_float, - STATE(375), 1, + STATE(366), 1, sym_identifier, + STATE(387), 1, + sym_tuple, STATE(388), 1, sym_anonymous_function, - STATE(397), 1, - sym_tuple, - STATE(1128), 1, + STATE(1149), 1, sym__maybe_function_expression, - STATE(1195), 1, - sym__maybe_record_expression, - STATE(1247), 1, + STATE(1259), 1, sym__maybe_tuple_expression, + STATE(1262), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(357), 2, + STATE(360), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(398), 2, + STATE(386), 2, sym_record, sym_record_update, - ACTIONS(311), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, + STATE(368), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(593), 11, + STATE(609), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -19672,73 +19852,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [16692] = 29, + [16905] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(809), 1, + ACTIONS(819), 1, anon_sym_LBRACE, - ACTIONS(811), 1, + ACTIONS(821), 1, anon_sym_POUND, - ACTIONS(813), 1, + ACTIONS(823), 1, anon_sym_LBRACK, - ACTIONS(815), 1, + ACTIONS(825), 1, anon_sym_LT_LT, - ACTIONS(817), 1, + ACTIONS(827), 1, anon_sym_DASH, - ACTIONS(819), 1, + ACTIONS(829), 1, anon_sym_fn, - ACTIONS(821), 1, + ACTIONS(831), 1, anon_sym_todo, - ACTIONS(823), 1, + ACTIONS(833), 1, anon_sym_case, - ACTIONS(825), 1, + ACTIONS(835), 1, anon_sym_let, - ACTIONS(827), 1, + ACTIONS(837), 1, anon_sym_assert, - ACTIONS(829), 1, + ACTIONS(839), 1, anon_sym_BANG, - ACTIONS(831), 1, + ACTIONS(841), 1, anon_sym_DQUOTE, - ACTIONS(837), 1, + ACTIONS(843), 1, + sym_float, + ACTIONS(847), 1, sym__decimal, - ACTIONS(839), 1, + ACTIONS(849), 1, sym__name, - ACTIONS(841), 1, + ACTIONS(851), 1, sym__upname, - ACTIONS(845), 1, - sym_float, - STATE(303), 1, + STATE(305), 1, sym_identifier, - STATE(319), 1, - sym_anonymous_function, - STATE(327), 1, + STATE(321), 1, sym_tuple, - STATE(1168), 1, + STATE(327), 1, + sym_anonymous_function, + STATE(1189), 1, sym__maybe_function_expression, - STATE(1196), 1, + STATE(1218), 1, sym__maybe_tuple_expression, - STATE(1252), 1, + STATE(1273), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(299), 2, + STATE(300), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(324), 2, + STATE(320), 2, sym_record, sym_record_update, - ACTIONS(835), 3, + ACTIONS(845), 3, sym__hex, sym__octal, sym__binary, - STATE(301), 5, + STATE(303), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(351), 11, + STATE(332), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -19750,73 +19930,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [16799] = 29, + [17012] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(281), 1, + ACTIONS(11), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(17), 1, anon_sym_POUND, - ACTIONS(287), 1, + ACTIONS(19), 1, anon_sym_LBRACK, - ACTIONS(289), 1, + ACTIONS(21), 1, anon_sym_LT_LT, - ACTIONS(291), 1, + ACTIONS(23), 1, anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_fn, - ACTIONS(295), 1, + ACTIONS(33), 1, anon_sym_todo, - ACTIONS(299), 1, + ACTIONS(35), 1, anon_sym_case, - ACTIONS(301), 1, + ACTIONS(37), 1, anon_sym_let, - ACTIONS(303), 1, + ACTIONS(39), 1, anon_sym_assert, - ACTIONS(305), 1, + ACTIONS(41), 1, anon_sym_BANG, - ACTIONS(307), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(53), 1, sym__decimal, - ACTIONS(319), 1, - sym__upname, - ACTIONS(709), 1, + ACTIONS(55), 1, sym__name, - ACTIONS(847), 1, + ACTIONS(57), 1, + sym__upname, + ACTIONS(853), 1, + anon_sym_fn, + ACTIONS(855), 1, sym_float, - STATE(375), 1, + STATE(27), 1, sym_identifier, - STATE(388), 1, - sym_anonymous_function, - STATE(397), 1, + STATE(29), 1, sym_tuple, - STATE(1128), 1, + STATE(31), 1, + sym_anonymous_function, + STATE(1145), 1, sym__maybe_function_expression, - STATE(1195), 1, + STATE(1265), 1, sym__maybe_record_expression, - STATE(1247), 1, + STATE(1267), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(357), 2, + STATE(6), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(398), 2, + STATE(34), 2, sym_record, sym_record_update, - ACTIONS(311), 3, + ACTIONS(51), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, + STATE(8), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(610), 11, + STATE(88), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -19828,73 +20008,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [16906] = 29, + [17119] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(809), 1, + ACTIONS(260), 1, anon_sym_LBRACE, - ACTIONS(811), 1, + ACTIONS(262), 1, anon_sym_POUND, - ACTIONS(813), 1, + ACTIONS(266), 1, anon_sym_LBRACK, - ACTIONS(815), 1, + ACTIONS(268), 1, anon_sym_LT_LT, - ACTIONS(817), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(819), 1, + ACTIONS(272), 1, anon_sym_fn, - ACTIONS(821), 1, + ACTIONS(274), 1, anon_sym_todo, - ACTIONS(823), 1, + ACTIONS(278), 1, anon_sym_case, - ACTIONS(825), 1, + ACTIONS(280), 1, anon_sym_let, - ACTIONS(827), 1, + ACTIONS(282), 1, anon_sym_assert, - ACTIONS(829), 1, + ACTIONS(284), 1, anon_sym_BANG, - ACTIONS(831), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(837), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(839), 1, - sym__name, - ACTIONS(841), 1, + ACTIONS(298), 1, sym__upname, - ACTIONS(849), 1, + ACTIONS(709), 1, + sym__name, + ACTIONS(857), 1, sym_float, - STATE(303), 1, + STATE(366), 1, sym_identifier, - STATE(319), 1, - sym_anonymous_function, - STATE(327), 1, + STATE(387), 1, sym_tuple, - STATE(1168), 1, + STATE(388), 1, + sym_anonymous_function, + STATE(1149), 1, sym__maybe_function_expression, - STATE(1196), 1, + STATE(1259), 1, sym__maybe_tuple_expression, - STATE(1252), 1, + STATE(1262), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(299), 2, + STATE(360), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(324), 2, + STATE(386), 2, sym_record, sym_record_update, - ACTIONS(835), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(301), 5, + STATE(368), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(350), 11, + STATE(406), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -19906,73 +20086,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [17013] = 29, + [17226] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(281), 1, + ACTIONS(260), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(262), 1, anon_sym_POUND, - ACTIONS(287), 1, + ACTIONS(266), 1, anon_sym_LBRACK, - ACTIONS(289), 1, + ACTIONS(268), 1, anon_sym_LT_LT, - ACTIONS(291), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(272), 1, anon_sym_fn, - ACTIONS(295), 1, + ACTIONS(274), 1, anon_sym_todo, - ACTIONS(299), 1, + ACTIONS(278), 1, anon_sym_case, - ACTIONS(301), 1, + ACTIONS(280), 1, anon_sym_let, - ACTIONS(303), 1, + ACTIONS(282), 1, anon_sym_assert, - ACTIONS(305), 1, + ACTIONS(284), 1, anon_sym_BANG, - ACTIONS(307), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(319), 1, + ACTIONS(298), 1, sym__upname, ACTIONS(709), 1, sym__name, - ACTIONS(851), 1, + ACTIONS(859), 1, sym_float, - STATE(375), 1, + STATE(366), 1, sym_identifier, + STATE(387), 1, + sym_tuple, STATE(388), 1, sym_anonymous_function, - STATE(397), 1, - sym_tuple, - STATE(1128), 1, + STATE(1149), 1, sym__maybe_function_expression, - STATE(1195), 1, - sym__maybe_record_expression, - STATE(1247), 1, + STATE(1259), 1, sym__maybe_tuple_expression, + STATE(1262), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(357), 2, + STATE(360), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(398), 2, + STATE(386), 2, sym_record, sym_record_update, - ACTIONS(311), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, + STATE(368), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(441), 11, + STATE(410), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -19984,126 +20164,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [17120] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(555), 17, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(553), 28, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [17177] = 29, + [17333] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(11), 1, + ACTIONS(260), 1, anon_sym_LBRACE, - ACTIONS(17), 1, + ACTIONS(262), 1, anon_sym_POUND, - ACTIONS(19), 1, + ACTIONS(266), 1, anon_sym_LBRACK, - ACTIONS(21), 1, + ACTIONS(268), 1, anon_sym_LT_LT, - ACTIONS(23), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(33), 1, + ACTIONS(272), 1, + anon_sym_fn, + ACTIONS(274), 1, anon_sym_todo, - ACTIONS(35), 1, + ACTIONS(278), 1, anon_sym_case, - ACTIONS(37), 1, + ACTIONS(280), 1, anon_sym_let, - ACTIONS(39), 1, + ACTIONS(282), 1, anon_sym_assert, - ACTIONS(41), 1, + ACTIONS(284), 1, anon_sym_BANG, - ACTIONS(47), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(55), 1, - sym__name, - ACTIONS(57), 1, + ACTIONS(298), 1, sym__upname, - ACTIONS(853), 1, - anon_sym_fn, - ACTIONS(855), 1, + ACTIONS(709), 1, + sym__name, + ACTIONS(861), 1, sym_float, - STATE(25), 1, + STATE(366), 1, sym_identifier, - STATE(31), 1, - sym_anonymous_function, - STATE(40), 1, + STATE(387), 1, sym_tuple, - STATE(1131), 1, + STATE(388), 1, + sym_anonymous_function, + STATE(1149), 1, sym__maybe_function_expression, - STATE(1241), 1, - sym__maybe_record_expression, - STATE(1242), 1, + STATE(1259), 1, sym__maybe_tuple_expression, + STATE(1262), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(6), 2, + STATE(360), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(33), 2, + STATE(386), 2, sym_record, sym_record_update, - ACTIONS(51), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(8), 5, + STATE(368), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(67), 11, + STATE(429), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -20115,126 +20242,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [17284] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(643), 17, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(641), 28, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [17341] = 29, + [17440] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(809), 1, + ACTIONS(260), 1, anon_sym_LBRACE, - ACTIONS(811), 1, + ACTIONS(262), 1, anon_sym_POUND, - ACTIONS(813), 1, + ACTIONS(266), 1, anon_sym_LBRACK, - ACTIONS(815), 1, + ACTIONS(268), 1, anon_sym_LT_LT, - ACTIONS(817), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(819), 1, + ACTIONS(272), 1, anon_sym_fn, - ACTIONS(821), 1, + ACTIONS(274), 1, anon_sym_todo, - ACTIONS(823), 1, + ACTIONS(278), 1, anon_sym_case, - ACTIONS(825), 1, + ACTIONS(280), 1, anon_sym_let, - ACTIONS(827), 1, + ACTIONS(282), 1, anon_sym_assert, - ACTIONS(829), 1, + ACTIONS(284), 1, anon_sym_BANG, - ACTIONS(831), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(837), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(839), 1, - sym__name, - ACTIONS(841), 1, + ACTIONS(298), 1, sym__upname, - ACTIONS(857), 1, + ACTIONS(709), 1, + sym__name, + ACTIONS(863), 1, sym_float, - STATE(303), 1, + STATE(366), 1, sym_identifier, - STATE(319), 1, - sym_anonymous_function, - STATE(327), 1, + STATE(387), 1, sym_tuple, - STATE(1168), 1, + STATE(388), 1, + sym_anonymous_function, + STATE(1149), 1, sym__maybe_function_expression, - STATE(1196), 1, + STATE(1259), 1, sym__maybe_tuple_expression, - STATE(1252), 1, + STATE(1262), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(299), 2, + STATE(360), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(324), 2, + STATE(386), 2, sym_record, sym_record_update, - ACTIONS(835), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(301), 5, + STATE(368), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(346), 11, + STATE(431), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -20246,73 +20320,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [17448] = 29, + [17547] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(260), 1, anon_sym_LBRACE, - ACTIONS(451), 1, + ACTIONS(262), 1, anon_sym_POUND, - ACTIONS(453), 1, + ACTIONS(266), 1, anon_sym_LBRACK, - ACTIONS(455), 1, + ACTIONS(268), 1, anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(459), 1, + ACTIONS(272), 1, anon_sym_fn, - ACTIONS(463), 1, + ACTIONS(274), 1, anon_sym_todo, - ACTIONS(465), 1, + ACTIONS(278), 1, anon_sym_case, - ACTIONS(467), 1, + ACTIONS(280), 1, anon_sym_let, - ACTIONS(469), 1, + ACTIONS(282), 1, anon_sym_assert, - ACTIONS(471), 1, + ACTIONS(284), 1, anon_sym_BANG, - ACTIONS(473), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, + ACTIONS(298), 1, sym__upname, - ACTIONS(859), 1, + ACTIONS(709), 1, + sym__name, + ACTIONS(865), 1, sym_float, - STATE(142), 1, + STATE(366), 1, sym_identifier, - STATE(170), 1, + STATE(387), 1, sym_tuple, - STATE(171), 1, + STATE(388), 1, sym_anonymous_function, - STATE(1101), 1, + STATE(1149), 1, sym__maybe_function_expression, - STATE(1211), 1, - sym__maybe_record_expression, - STATE(1263), 1, + STATE(1259), 1, sym__maybe_tuple_expression, + STATE(1262), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(123), 2, + STATE(360), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(386), 2, sym_record, sym_record_update, - ACTIONS(477), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(368), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(291), 11, + STATE(440), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -20324,73 +20398,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [17555] = 29, + [17654] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(281), 1, + ACTIONS(260), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(262), 1, anon_sym_POUND, - ACTIONS(287), 1, + ACTIONS(266), 1, anon_sym_LBRACK, - ACTIONS(289), 1, + ACTIONS(268), 1, anon_sym_LT_LT, - ACTIONS(291), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(272), 1, anon_sym_fn, - ACTIONS(295), 1, + ACTIONS(274), 1, anon_sym_todo, - ACTIONS(299), 1, + ACTIONS(278), 1, anon_sym_case, - ACTIONS(301), 1, + ACTIONS(280), 1, anon_sym_let, - ACTIONS(303), 1, + ACTIONS(282), 1, anon_sym_assert, - ACTIONS(305), 1, + ACTIONS(284), 1, anon_sym_BANG, - ACTIONS(307), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(319), 1, + ACTIONS(298), 1, sym__upname, ACTIONS(709), 1, sym__name, - ACTIONS(861), 1, + ACTIONS(867), 1, sym_float, - STATE(375), 1, + STATE(366), 1, sym_identifier, + STATE(387), 1, + sym_tuple, STATE(388), 1, sym_anonymous_function, - STATE(397), 1, - sym_tuple, - STATE(1128), 1, + STATE(1149), 1, sym__maybe_function_expression, - STATE(1195), 1, - sym__maybe_record_expression, - STATE(1247), 1, + STATE(1259), 1, sym__maybe_tuple_expression, + STATE(1262), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(357), 2, + STATE(360), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(398), 2, + STATE(386), 2, sym_record, sym_record_update, - ACTIONS(311), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, + STATE(368), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(430), 11, + STATE(401), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -20402,126 +20476,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [17662] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(665), 17, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(663), 28, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [17719] = 29, + [17761] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(260), 1, anon_sym_LBRACE, - ACTIONS(451), 1, + ACTIONS(262), 1, anon_sym_POUND, - ACTIONS(453), 1, + ACTIONS(266), 1, anon_sym_LBRACK, - ACTIONS(455), 1, + ACTIONS(268), 1, anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(459), 1, + ACTIONS(272), 1, anon_sym_fn, - ACTIONS(463), 1, + ACTIONS(274), 1, anon_sym_todo, - ACTIONS(465), 1, + ACTIONS(278), 1, anon_sym_case, - ACTIONS(467), 1, + ACTIONS(280), 1, anon_sym_let, - ACTIONS(469), 1, + ACTIONS(282), 1, anon_sym_assert, - ACTIONS(471), 1, + ACTIONS(284), 1, anon_sym_BANG, - ACTIONS(473), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, + ACTIONS(298), 1, sym__upname, - ACTIONS(863), 1, + ACTIONS(709), 1, + sym__name, + ACTIONS(869), 1, sym_float, - STATE(142), 1, + STATE(366), 1, sym_identifier, - STATE(170), 1, + STATE(387), 1, sym_tuple, - STATE(171), 1, + STATE(388), 1, sym_anonymous_function, - STATE(1101), 1, + STATE(1149), 1, sym__maybe_function_expression, - STATE(1211), 1, - sym__maybe_record_expression, - STATE(1263), 1, + STATE(1259), 1, sym__maybe_tuple_expression, + STATE(1262), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(123), 2, + STATE(360), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(386), 2, sym_record, sym_record_update, - ACTIONS(477), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(368), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(290), 11, + STATE(403), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -20533,73 +20554,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [17826] = 29, + [17868] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(281), 1, + ACTIONS(260), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(262), 1, anon_sym_POUND, - ACTIONS(287), 1, + ACTIONS(266), 1, anon_sym_LBRACK, - ACTIONS(289), 1, + ACTIONS(268), 1, anon_sym_LT_LT, - ACTIONS(291), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(272), 1, anon_sym_fn, - ACTIONS(295), 1, + ACTIONS(274), 1, anon_sym_todo, - ACTIONS(299), 1, + ACTIONS(278), 1, anon_sym_case, - ACTIONS(301), 1, + ACTIONS(280), 1, anon_sym_let, - ACTIONS(303), 1, + ACTIONS(282), 1, anon_sym_assert, - ACTIONS(305), 1, + ACTIONS(284), 1, anon_sym_BANG, - ACTIONS(307), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(319), 1, + ACTIONS(298), 1, sym__upname, ACTIONS(709), 1, sym__name, - ACTIONS(865), 1, + ACTIONS(871), 1, sym_float, - STATE(375), 1, + STATE(366), 1, sym_identifier, + STATE(387), 1, + sym_tuple, STATE(388), 1, sym_anonymous_function, - STATE(397), 1, - sym_tuple, - STATE(1128), 1, + STATE(1149), 1, sym__maybe_function_expression, - STATE(1195), 1, - sym__maybe_record_expression, - STATE(1247), 1, + STATE(1259), 1, sym__maybe_tuple_expression, + STATE(1262), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(357), 2, + STATE(360), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(398), 2, + STATE(386), 2, sym_record, sym_record_update, - ACTIONS(311), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, + STATE(368), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(592), 11, + STATE(404), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -20611,179 +20632,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [17933] = 4, + [17975] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(685), 17, - anon_sym_SLASH, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + anon_sym_POUND, + ACTIONS(19), 1, + anon_sym_LBRACK, + ACTIONS(21), 1, + anon_sym_LT_LT, + ACTIONS(23), 1, anon_sym_DASH, - anon_sym_fn, - anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(33), 1, anon_sym_todo, + ACTIONS(35), 1, anon_sym_case, + ACTIONS(37), 1, anon_sym_let, + ACTIONS(39), 1, anon_sym_assert, + ACTIONS(41), 1, anon_sym_BANG, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, sym__decimal, + ACTIONS(55), 1, sym__name, - ACTIONS(683), 28, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [17990] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(649), 17, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(647), 28, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, + ACTIONS(57), 1, sym__upname, - [18047] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(809), 1, - anon_sym_LBRACE, - ACTIONS(811), 1, - anon_sym_POUND, - ACTIONS(813), 1, - anon_sym_LBRACK, - ACTIONS(815), 1, - anon_sym_LT_LT, - ACTIONS(817), 1, - anon_sym_DASH, - ACTIONS(819), 1, + ACTIONS(853), 1, anon_sym_fn, - ACTIONS(821), 1, - anon_sym_todo, - ACTIONS(823), 1, - anon_sym_case, - ACTIONS(825), 1, - anon_sym_let, - ACTIONS(827), 1, - anon_sym_assert, - ACTIONS(829), 1, - anon_sym_BANG, - ACTIONS(831), 1, - anon_sym_DQUOTE, - ACTIONS(837), 1, - sym__decimal, - ACTIONS(839), 1, - sym__name, - ACTIONS(841), 1, - sym__upname, - ACTIONS(867), 1, + ACTIONS(873), 1, sym_float, - STATE(303), 1, + STATE(27), 1, sym_identifier, - STATE(319), 1, - sym_anonymous_function, - STATE(327), 1, + STATE(29), 1, sym_tuple, - STATE(1168), 1, + STATE(31), 1, + sym_anonymous_function, + STATE(1145), 1, sym__maybe_function_expression, - STATE(1196), 1, - sym__maybe_tuple_expression, - STATE(1252), 1, + STATE(1265), 1, sym__maybe_record_expression, + STATE(1267), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(299), 2, + STATE(6), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(324), 2, + STATE(34), 2, sym_record, sym_record_update, - ACTIONS(835), 3, + ACTIONS(51), 3, sym__hex, sym__octal, sym__binary, - STATE(301), 5, + STATE(8), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(336), 11, + STATE(53), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -20795,73 +20710,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [18154] = 29, + [18082] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(809), 1, + ACTIONS(11), 1, anon_sym_LBRACE, - ACTIONS(811), 1, + ACTIONS(17), 1, anon_sym_POUND, - ACTIONS(813), 1, + ACTIONS(19), 1, anon_sym_LBRACK, - ACTIONS(815), 1, + ACTIONS(21), 1, anon_sym_LT_LT, - ACTIONS(817), 1, + ACTIONS(23), 1, anon_sym_DASH, - ACTIONS(819), 1, - anon_sym_fn, - ACTIONS(821), 1, + ACTIONS(33), 1, anon_sym_todo, - ACTIONS(823), 1, + ACTIONS(35), 1, anon_sym_case, - ACTIONS(825), 1, + ACTIONS(37), 1, anon_sym_let, - ACTIONS(827), 1, + ACTIONS(39), 1, anon_sym_assert, - ACTIONS(829), 1, + ACTIONS(41), 1, anon_sym_BANG, - ACTIONS(831), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(837), 1, + ACTIONS(53), 1, sym__decimal, - ACTIONS(839), 1, + ACTIONS(55), 1, sym__name, - ACTIONS(841), 1, + ACTIONS(57), 1, sym__upname, - ACTIONS(869), 1, + ACTIONS(853), 1, + anon_sym_fn, + ACTIONS(875), 1, sym_float, - STATE(303), 1, + STATE(27), 1, sym_identifier, - STATE(319), 1, - sym_anonymous_function, - STATE(327), 1, + STATE(29), 1, sym_tuple, - STATE(1168), 1, + STATE(31), 1, + sym_anonymous_function, + STATE(1145), 1, sym__maybe_function_expression, - STATE(1196), 1, - sym__maybe_tuple_expression, - STATE(1252), 1, + STATE(1265), 1, sym__maybe_record_expression, + STATE(1267), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(299), 2, + STATE(6), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(324), 2, + STATE(34), 2, sym_record, sym_record_update, - ACTIONS(835), 3, + ACTIONS(51), 3, sym__hex, sym__octal, sym__binary, - STATE(301), 5, + STATE(8), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(334), 11, + STATE(85), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -20873,73 +20788,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [18261] = 29, + [18189] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(809), 1, + ACTIONS(260), 1, anon_sym_LBRACE, - ACTIONS(811), 1, + ACTIONS(262), 1, anon_sym_POUND, - ACTIONS(813), 1, + ACTIONS(266), 1, anon_sym_LBRACK, - ACTIONS(815), 1, + ACTIONS(268), 1, anon_sym_LT_LT, - ACTIONS(817), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(819), 1, + ACTIONS(272), 1, anon_sym_fn, - ACTIONS(821), 1, + ACTIONS(274), 1, anon_sym_todo, - ACTIONS(823), 1, + ACTIONS(278), 1, anon_sym_case, - ACTIONS(825), 1, + ACTIONS(280), 1, anon_sym_let, - ACTIONS(827), 1, + ACTIONS(282), 1, anon_sym_assert, - ACTIONS(829), 1, + ACTIONS(284), 1, anon_sym_BANG, - ACTIONS(831), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(837), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(839), 1, - sym__name, - ACTIONS(841), 1, + ACTIONS(298), 1, sym__upname, - ACTIONS(871), 1, + ACTIONS(709), 1, + sym__name, + ACTIONS(877), 1, sym_float, - STATE(303), 1, + STATE(366), 1, sym_identifier, - STATE(319), 1, - sym_anonymous_function, - STATE(327), 1, + STATE(387), 1, sym_tuple, - STATE(1168), 1, + STATE(388), 1, + sym_anonymous_function, + STATE(1149), 1, sym__maybe_function_expression, - STATE(1196), 1, + STATE(1259), 1, sym__maybe_tuple_expression, - STATE(1252), 1, + STATE(1262), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(299), 2, + STATE(360), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(324), 2, + STATE(386), 2, sym_record, sym_record_update, - ACTIONS(835), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(301), 5, + STATE(368), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(332), 11, + STATE(612), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -20951,73 +20866,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [18368] = 29, + [18296] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(809), 1, + ACTIONS(260), 1, anon_sym_LBRACE, - ACTIONS(811), 1, + ACTIONS(262), 1, anon_sym_POUND, - ACTIONS(813), 1, + ACTIONS(266), 1, anon_sym_LBRACK, - ACTIONS(815), 1, + ACTIONS(268), 1, anon_sym_LT_LT, - ACTIONS(817), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(819), 1, + ACTIONS(272), 1, anon_sym_fn, - ACTIONS(821), 1, + ACTIONS(274), 1, anon_sym_todo, - ACTIONS(823), 1, + ACTIONS(278), 1, anon_sym_case, - ACTIONS(825), 1, + ACTIONS(280), 1, anon_sym_let, - ACTIONS(827), 1, + ACTIONS(282), 1, anon_sym_assert, - ACTIONS(829), 1, + ACTIONS(284), 1, anon_sym_BANG, - ACTIONS(831), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(837), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(839), 1, - sym__name, - ACTIONS(841), 1, + ACTIONS(298), 1, sym__upname, - ACTIONS(873), 1, + ACTIONS(709), 1, + sym__name, + ACTIONS(879), 1, sym_float, - STATE(303), 1, + STATE(366), 1, sym_identifier, - STATE(319), 1, - sym_anonymous_function, - STATE(327), 1, + STATE(387), 1, sym_tuple, - STATE(1168), 1, + STATE(388), 1, + sym_anonymous_function, + STATE(1149), 1, sym__maybe_function_expression, - STATE(1196), 1, + STATE(1259), 1, sym__maybe_tuple_expression, - STATE(1252), 1, + STATE(1262), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(299), 2, + STATE(360), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(324), 2, + STATE(386), 2, sym_record, sym_record_update, - ACTIONS(835), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(301), 5, + STATE(368), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(330), 11, + STATE(615), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -21029,73 +20944,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [18475] = 29, + [18403] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(281), 1, + ACTIONS(11), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(17), 1, anon_sym_POUND, - ACTIONS(287), 1, + ACTIONS(19), 1, anon_sym_LBRACK, - ACTIONS(289), 1, + ACTIONS(21), 1, anon_sym_LT_LT, - ACTIONS(291), 1, + ACTIONS(23), 1, anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_fn, - ACTIONS(295), 1, + ACTIONS(33), 1, anon_sym_todo, - ACTIONS(299), 1, + ACTIONS(35), 1, anon_sym_case, - ACTIONS(301), 1, + ACTIONS(37), 1, anon_sym_let, - ACTIONS(303), 1, + ACTIONS(39), 1, anon_sym_assert, - ACTIONS(305), 1, + ACTIONS(41), 1, anon_sym_BANG, - ACTIONS(307), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(53), 1, sym__decimal, - ACTIONS(319), 1, - sym__upname, - ACTIONS(709), 1, + ACTIONS(55), 1, sym__name, - ACTIONS(875), 1, + ACTIONS(57), 1, + sym__upname, + ACTIONS(853), 1, + anon_sym_fn, + ACTIONS(881), 1, sym_float, - STATE(375), 1, + STATE(27), 1, sym_identifier, - STATE(388), 1, - sym_anonymous_function, - STATE(397), 1, + STATE(29), 1, sym_tuple, - STATE(1128), 1, + STATE(31), 1, + sym_anonymous_function, + STATE(1145), 1, sym__maybe_function_expression, - STATE(1195), 1, + STATE(1265), 1, sym__maybe_record_expression, - STATE(1247), 1, + STATE(1267), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(357), 2, + STATE(6), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(398), 2, + STATE(34), 2, sym_record, sym_record_update, - ACTIONS(311), 3, + ACTIONS(51), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, + STATE(8), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(591), 11, + STATE(83), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -21107,73 +21022,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [18582] = 29, + [18510] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(281), 1, + ACTIONS(260), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(262), 1, anon_sym_POUND, - ACTIONS(287), 1, + ACTIONS(266), 1, anon_sym_LBRACK, - ACTIONS(289), 1, + ACTIONS(268), 1, anon_sym_LT_LT, - ACTIONS(291), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(272), 1, anon_sym_fn, - ACTIONS(295), 1, + ACTIONS(274), 1, anon_sym_todo, - ACTIONS(299), 1, + ACTIONS(278), 1, anon_sym_case, - ACTIONS(301), 1, + ACTIONS(280), 1, anon_sym_let, - ACTIONS(303), 1, + ACTIONS(282), 1, anon_sym_assert, - ACTIONS(305), 1, + ACTIONS(284), 1, anon_sym_BANG, - ACTIONS(307), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(319), 1, + ACTIONS(298), 1, sym__upname, ACTIONS(709), 1, sym__name, - ACTIONS(877), 1, + ACTIONS(883), 1, sym_float, - STATE(375), 1, + STATE(366), 1, sym_identifier, + STATE(387), 1, + sym_tuple, STATE(388), 1, sym_anonymous_function, - STATE(397), 1, - sym_tuple, - STATE(1128), 1, + STATE(1149), 1, sym__maybe_function_expression, - STATE(1195), 1, - sym__maybe_record_expression, - STATE(1247), 1, + STATE(1259), 1, sym__maybe_tuple_expression, + STATE(1262), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(357), 2, + STATE(360), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(398), 2, + STATE(386), 2, sym_record, sym_record_update, - ACTIONS(311), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, + STATE(368), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(603), 11, + STATE(630), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -21185,77 +21100,75 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [18689] = 31, + [18617] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(260), 1, anon_sym_LBRACE, - ACTIONS(451), 1, + ACTIONS(262), 1, anon_sym_POUND, - ACTIONS(453), 1, + ACTIONS(266), 1, anon_sym_LBRACK, - ACTIONS(455), 1, + ACTIONS(268), 1, anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(459), 1, + ACTIONS(272), 1, anon_sym_fn, - ACTIONS(463), 1, + ACTIONS(274), 1, anon_sym_todo, - ACTIONS(465), 1, + ACTIONS(278), 1, anon_sym_case, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(799), 1, + ACTIONS(280), 1, anon_sym_let, - ACTIONS(801), 1, + ACTIONS(282), 1, anon_sym_assert, - ACTIONS(803), 1, + ACTIONS(284), 1, anon_sym_BANG, - ACTIONS(805), 1, + ACTIONS(286), 1, + anon_sym_DQUOTE, + ACTIONS(292), 1, + sym__decimal, + ACTIONS(298), 1, + sym__upname, + ACTIONS(709), 1, + sym__name, + ACTIONS(885), 1, sym_float, - ACTIONS(879), 1, - anon_sym_GT_GT, - STATE(142), 1, + STATE(366), 1, sym_identifier, - STATE(170), 1, + STATE(387), 1, sym_tuple, - STATE(171), 1, + STATE(388), 1, sym_anonymous_function, - STATE(1012), 1, - sym_expression_bit_string_segment, - STATE(1101), 1, + STATE(1149), 1, sym__maybe_function_expression, - STATE(1211), 1, - sym__maybe_record_expression, - STATE(1263), 1, + STATE(1259), 1, sym__maybe_tuple_expression, + STATE(1262), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(123), 2, + STATE(360), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(386), 2, sym_record, sym_record_update, - ACTIONS(477), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(368), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(940), 9, + STATE(625), 11, + sym__expression, + sym_binary_expression, sym__expression_unit, sym_todo, sym_list, @@ -21265,75 +21178,77 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [18800] = 29, + [18724] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(281), 1, + ACTIONS(479), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(483), 1, anon_sym_POUND, - ACTIONS(287), 1, + ACTIONS(485), 1, anon_sym_LBRACK, - ACTIONS(289), 1, + ACTIONS(487), 1, anon_sym_LT_LT, - ACTIONS(291), 1, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(491), 1, anon_sym_fn, - ACTIONS(295), 1, + ACTIONS(495), 1, anon_sym_todo, - ACTIONS(299), 1, + ACTIONS(497), 1, anon_sym_case, - ACTIONS(301), 1, - anon_sym_let, - ACTIONS(303), 1, - anon_sym_assert, - ACTIONS(305), 1, - anon_sym_BANG, - ACTIONS(307), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(319), 1, + ACTIONS(513), 1, + sym__name, + ACTIONS(515), 1, sym__upname, - ACTIONS(707), 1, + ACTIONS(801), 1, + anon_sym_let, + ACTIONS(803), 1, + anon_sym_assert, + ACTIONS(805), 1, + anon_sym_BANG, + ACTIONS(807), 1, sym_float, - ACTIONS(709), 1, - sym__name, - STATE(375), 1, + ACTIONS(887), 1, + anon_sym_GT_GT, + STATE(141), 1, sym_identifier, - STATE(388), 1, + STATE(174), 1, sym_anonymous_function, - STATE(397), 1, + STATE(175), 1, sym_tuple, - STATE(1128), 1, + STATE(953), 1, + sym_expression_bit_string_segment, + STATE(1118), 1, sym__maybe_function_expression, - STATE(1195), 1, + STATE(1232), 1, sym__maybe_record_expression, - STATE(1247), 1, + STATE(1292), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(357), 2, + STATE(123), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(398), 2, + STATE(178), 2, sym_record, sym_record_update, - ACTIONS(311), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, + STATE(140), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(522), 11, - sym__expression, - sym_binary_expression, + STATE(952), 9, sym__expression_unit, sym_todo, sym_list, @@ -21343,77 +21258,75 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [18907] = 31, + [18835] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(11), 1, anon_sym_LBRACE, - ACTIONS(451), 1, + ACTIONS(17), 1, anon_sym_POUND, - ACTIONS(453), 1, + ACTIONS(19), 1, anon_sym_LBRACK, - ACTIONS(455), 1, + ACTIONS(21), 1, anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(23), 1, anon_sym_DASH, - ACTIONS(459), 1, - anon_sym_fn, - ACTIONS(463), 1, + ACTIONS(33), 1, anon_sym_todo, - ACTIONS(465), 1, + ACTIONS(35), 1, anon_sym_case, - ACTIONS(473), 1, + ACTIONS(37), 1, + anon_sym_let, + ACTIONS(39), 1, + anon_sym_assert, + ACTIONS(41), 1, + anon_sym_BANG, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(53), 1, sym__decimal, - ACTIONS(481), 1, + ACTIONS(55), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(57), 1, sym__upname, - ACTIONS(799), 1, - anon_sym_let, - ACTIONS(801), 1, - anon_sym_assert, - ACTIONS(803), 1, - anon_sym_BANG, - ACTIONS(805), 1, + ACTIONS(853), 1, + anon_sym_fn, + ACTIONS(889), 1, sym_float, - ACTIONS(881), 1, - anon_sym_GT_GT, - STATE(142), 1, + STATE(27), 1, sym_identifier, - STATE(170), 1, + STATE(29), 1, sym_tuple, - STATE(171), 1, + STATE(31), 1, sym_anonymous_function, - STATE(942), 1, - sym_expression_bit_string_segment, - STATE(1101), 1, + STATE(1145), 1, sym__maybe_function_expression, - STATE(1211), 1, + STATE(1265), 1, sym__maybe_record_expression, - STATE(1263), 1, + STATE(1267), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(123), 2, + STATE(6), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(34), 2, sym_record, sym_record_update, - ACTIONS(477), 3, + ACTIONS(51), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(8), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(940), 9, + STATE(81), 11, + sym__expression, + sym_binary_expression, sym__expression_unit, sym_todo, sym_list, @@ -21423,73 +21336,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [19018] = 29, + [18942] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(281), 1, + ACTIONS(260), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(262), 1, anon_sym_POUND, - ACTIONS(287), 1, + ACTIONS(266), 1, anon_sym_LBRACK, - ACTIONS(289), 1, + ACTIONS(268), 1, anon_sym_LT_LT, - ACTIONS(291), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(272), 1, anon_sym_fn, - ACTIONS(295), 1, + ACTIONS(274), 1, anon_sym_todo, - ACTIONS(299), 1, + ACTIONS(278), 1, anon_sym_case, - ACTIONS(301), 1, + ACTIONS(280), 1, anon_sym_let, - ACTIONS(303), 1, + ACTIONS(282), 1, anon_sym_assert, - ACTIONS(305), 1, + ACTIONS(284), 1, anon_sym_BANG, - ACTIONS(307), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(319), 1, + ACTIONS(298), 1, sym__upname, ACTIONS(709), 1, sym__name, - ACTIONS(883), 1, + ACTIONS(891), 1, sym_float, - STATE(375), 1, + STATE(366), 1, sym_identifier, + STATE(387), 1, + sym_tuple, STATE(388), 1, sym_anonymous_function, - STATE(397), 1, - sym_tuple, - STATE(1128), 1, + STATE(1149), 1, sym__maybe_function_expression, - STATE(1195), 1, - sym__maybe_record_expression, - STATE(1247), 1, + STATE(1259), 1, sym__maybe_tuple_expression, + STATE(1262), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(357), 2, + STATE(360), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(398), 2, + STATE(386), 2, sym_record, sym_record_update, - ACTIONS(311), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, + STATE(368), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(611), 11, + STATE(610), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -21501,73 +21414,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [19125] = 29, + [19049] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(281), 1, + ACTIONS(11), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(17), 1, anon_sym_POUND, - ACTIONS(287), 1, + ACTIONS(19), 1, anon_sym_LBRACK, - ACTIONS(289), 1, + ACTIONS(21), 1, anon_sym_LT_LT, - ACTIONS(291), 1, + ACTIONS(23), 1, anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_fn, - ACTIONS(295), 1, + ACTIONS(33), 1, anon_sym_todo, - ACTIONS(299), 1, + ACTIONS(35), 1, anon_sym_case, - ACTIONS(301), 1, + ACTIONS(37), 1, anon_sym_let, - ACTIONS(303), 1, + ACTIONS(39), 1, anon_sym_assert, - ACTIONS(305), 1, + ACTIONS(41), 1, anon_sym_BANG, - ACTIONS(307), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(53), 1, sym__decimal, - ACTIONS(319), 1, - sym__upname, - ACTIONS(709), 1, + ACTIONS(55), 1, sym__name, - ACTIONS(885), 1, + ACTIONS(57), 1, + sym__upname, + ACTIONS(853), 1, + anon_sym_fn, + ACTIONS(893), 1, sym_float, - STATE(375), 1, + STATE(27), 1, sym_identifier, - STATE(388), 1, - sym_anonymous_function, - STATE(397), 1, + STATE(29), 1, sym_tuple, - STATE(1128), 1, + STATE(31), 1, + sym_anonymous_function, + STATE(1145), 1, sym__maybe_function_expression, - STATE(1195), 1, + STATE(1265), 1, sym__maybe_record_expression, - STATE(1247), 1, + STATE(1267), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(357), 2, + STATE(6), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(398), 2, + STATE(34), 2, sym_record, sym_record_update, - ACTIONS(311), 3, + ACTIONS(51), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, + STATE(8), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(612), 11, + STATE(80), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -21579,73 +21492,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [19232] = 29, + [19156] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(281), 1, + ACTIONS(260), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(262), 1, anon_sym_POUND, - ACTIONS(287), 1, + ACTIONS(266), 1, anon_sym_LBRACK, - ACTIONS(289), 1, + ACTIONS(268), 1, anon_sym_LT_LT, - ACTIONS(291), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(272), 1, anon_sym_fn, - ACTIONS(295), 1, + ACTIONS(274), 1, anon_sym_todo, - ACTIONS(299), 1, + ACTIONS(278), 1, anon_sym_case, - ACTIONS(301), 1, + ACTIONS(280), 1, anon_sym_let, - ACTIONS(303), 1, + ACTIONS(282), 1, anon_sym_assert, - ACTIONS(305), 1, + ACTIONS(284), 1, anon_sym_BANG, - ACTIONS(307), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(319), 1, + ACTIONS(298), 1, sym__upname, ACTIONS(709), 1, sym__name, - ACTIONS(887), 1, + ACTIONS(895), 1, sym_float, - STATE(375), 1, + STATE(366), 1, sym_identifier, + STATE(387), 1, + sym_tuple, STATE(388), 1, sym_anonymous_function, - STATE(397), 1, - sym_tuple, - STATE(1128), 1, + STATE(1149), 1, sym__maybe_function_expression, - STATE(1195), 1, - sym__maybe_record_expression, - STATE(1247), 1, + STATE(1259), 1, sym__maybe_tuple_expression, + STATE(1262), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(357), 2, + STATE(360), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(398), 2, + STATE(386), 2, sym_record, sym_record_update, - ACTIONS(311), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, + STATE(368), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(426), 11, + STATE(611), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -21657,77 +21570,75 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [19339] = 31, + [19263] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(260), 1, anon_sym_LBRACE, - ACTIONS(451), 1, + ACTIONS(262), 1, anon_sym_POUND, - ACTIONS(453), 1, + ACTIONS(266), 1, anon_sym_LBRACK, - ACTIONS(455), 1, + ACTIONS(268), 1, anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(459), 1, + ACTIONS(272), 1, anon_sym_fn, - ACTIONS(463), 1, + ACTIONS(274), 1, anon_sym_todo, - ACTIONS(465), 1, + ACTIONS(278), 1, anon_sym_case, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(799), 1, + ACTIONS(280), 1, anon_sym_let, - ACTIONS(801), 1, + ACTIONS(282), 1, anon_sym_assert, - ACTIONS(803), 1, + ACTIONS(284), 1, anon_sym_BANG, - ACTIONS(805), 1, + ACTIONS(286), 1, + anon_sym_DQUOTE, + ACTIONS(292), 1, + sym__decimal, + ACTIONS(298), 1, + sym__upname, + ACTIONS(709), 1, + sym__name, + ACTIONS(897), 1, sym_float, - ACTIONS(889), 1, - anon_sym_GT_GT, - STATE(142), 1, + STATE(366), 1, sym_identifier, - STATE(170), 1, + STATE(387), 1, sym_tuple, - STATE(171), 1, + STATE(388), 1, sym_anonymous_function, - STATE(1101), 1, + STATE(1149), 1, sym__maybe_function_expression, - STATE(1183), 1, - sym_expression_bit_string_segment, - STATE(1211), 1, - sym__maybe_record_expression, - STATE(1263), 1, + STATE(1259), 1, sym__maybe_tuple_expression, + STATE(1262), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(123), 2, + STATE(360), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(386), 2, sym_record, sym_record_update, - ACTIONS(477), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(368), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(940), 9, + STATE(628), 11, + sym__expression, + sym_binary_expression, sym__expression_unit, sym_todo, sym_list, @@ -21737,73 +21648,126 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [19450] = 29, + [19370] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(281), 1, - anon_sym_LBRACE, - ACTIONS(283), 1, - anon_sym_POUND, - ACTIONS(287), 1, - anon_sym_LBRACK, - ACTIONS(289), 1, - anon_sym_LT_LT, - ACTIONS(291), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(699), 17, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(293), 1, anon_sym_fn, - ACTIONS(295), 1, + anon_sym_try, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(299), 1, anon_sym_case, - ACTIONS(301), 1, anon_sym_let, - ACTIONS(303), 1, anon_sym_assert, - ACTIONS(305), 1, anon_sym_BANG, - ACTIONS(307), 1, - anon_sym_DQUOTE, - ACTIONS(313), 1, sym__decimal, - ACTIONS(319), 1, - sym__upname, - ACTIONS(709), 1, sym__name, - ACTIONS(891), 1, - sym_float, - STATE(375), 1, - sym_identifier, - STATE(388), 1, - sym_anonymous_function, - STATE(397), 1, + ACTIONS(697), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [19427] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, + anon_sym_POUND, + ACTIONS(19), 1, + anon_sym_LBRACK, + ACTIONS(21), 1, + anon_sym_LT_LT, + ACTIONS(23), 1, + anon_sym_DASH, + ACTIONS(33), 1, + anon_sym_todo, + ACTIONS(35), 1, + anon_sym_case, + ACTIONS(37), 1, + anon_sym_let, + ACTIONS(39), 1, + anon_sym_assert, + ACTIONS(41), 1, + anon_sym_BANG, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym__decimal, + ACTIONS(55), 1, + sym__name, + ACTIONS(57), 1, + sym__upname, + ACTIONS(853), 1, + anon_sym_fn, + ACTIONS(899), 1, + sym_float, + STATE(27), 1, + sym_identifier, + STATE(29), 1, sym_tuple, - STATE(1128), 1, + STATE(31), 1, + sym_anonymous_function, + STATE(1145), 1, sym__maybe_function_expression, - STATE(1195), 1, + STATE(1265), 1, sym__maybe_record_expression, - STATE(1247), 1, + STATE(1267), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(357), 2, + STATE(6), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(398), 2, + STATE(34), 2, sym_record, sym_record_update, - ACTIONS(311), 3, + ACTIONS(51), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, + STATE(8), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(614), 11, + STATE(78), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -21815,77 +21779,128 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [19557] = 31, + [19534] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(607), 17, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_fn, + anon_sym_try, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(605), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [19591] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(819), 1, anon_sym_LBRACE, - ACTIONS(451), 1, + ACTIONS(821), 1, anon_sym_POUND, - ACTIONS(453), 1, + ACTIONS(823), 1, anon_sym_LBRACK, - ACTIONS(455), 1, + ACTIONS(825), 1, anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(827), 1, anon_sym_DASH, - ACTIONS(459), 1, + ACTIONS(829), 1, anon_sym_fn, - ACTIONS(463), 1, + ACTIONS(831), 1, anon_sym_todo, - ACTIONS(465), 1, + ACTIONS(833), 1, anon_sym_case, - ACTIONS(473), 1, + ACTIONS(835), 1, + anon_sym_let, + ACTIONS(837), 1, + anon_sym_assert, + ACTIONS(839), 1, + anon_sym_BANG, + ACTIONS(841), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(847), 1, sym__decimal, - ACTIONS(481), 1, + ACTIONS(849), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(851), 1, sym__upname, - ACTIONS(799), 1, - anon_sym_let, - ACTIONS(801), 1, - anon_sym_assert, - ACTIONS(803), 1, - anon_sym_BANG, - ACTIONS(805), 1, + ACTIONS(901), 1, sym_float, - ACTIONS(893), 1, - anon_sym_GT_GT, - STATE(142), 1, + STATE(305), 1, sym_identifier, - STATE(170), 1, + STATE(321), 1, sym_tuple, - STATE(171), 1, + STATE(327), 1, sym_anonymous_function, - STATE(1101), 1, + STATE(1189), 1, sym__maybe_function_expression, - STATE(1183), 1, - sym_expression_bit_string_segment, - STATE(1211), 1, - sym__maybe_record_expression, - STATE(1263), 1, + STATE(1218), 1, sym__maybe_tuple_expression, + STATE(1273), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(123), 2, + STATE(300), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(320), 2, sym_record, sym_record_update, - ACTIONS(477), 3, + ACTIONS(845), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(303), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(940), 9, + STATE(339), 11, + sym__expression, + sym_binary_expression, sym__expression_unit, sym_todo, sym_list, @@ -21895,73 +21910,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [19668] = 29, + [19698] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(283), 1, + ACTIONS(819), 1, + anon_sym_LBRACE, + ACTIONS(821), 1, anon_sym_POUND, - ACTIONS(287), 1, + ACTIONS(823), 1, anon_sym_LBRACK, - ACTIONS(289), 1, + ACTIONS(825), 1, anon_sym_LT_LT, - ACTIONS(291), 1, + ACTIONS(827), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(829), 1, anon_sym_fn, - ACTIONS(295), 1, + ACTIONS(831), 1, anon_sym_todo, - ACTIONS(299), 1, + ACTIONS(833), 1, anon_sym_case, - ACTIONS(301), 1, + ACTIONS(835), 1, anon_sym_let, - ACTIONS(303), 1, + ACTIONS(837), 1, anon_sym_assert, - ACTIONS(305), 1, + ACTIONS(839), 1, anon_sym_BANG, - ACTIONS(307), 1, + ACTIONS(841), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(847), 1, sym__decimal, - ACTIONS(319), 1, + ACTIONS(849), 1, + sym__name, + ACTIONS(851), 1, sym__upname, - ACTIONS(707), 1, + ACTIONS(903), 1, sym_float, - ACTIONS(709), 1, - sym__name, - ACTIONS(895), 1, - anon_sym_LBRACE, - STATE(375), 1, + STATE(305), 1, sym_identifier, - STATE(388), 1, - sym_anonymous_function, - STATE(397), 1, + STATE(321), 1, sym_tuple, - STATE(1128), 1, + STATE(327), 1, + sym_anonymous_function, + STATE(1189), 1, sym__maybe_function_expression, - STATE(1195), 1, - sym__maybe_record_expression, - STATE(1247), 1, + STATE(1218), 1, sym__maybe_tuple_expression, + STATE(1273), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(357), 2, + STATE(300), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(398), 2, + STATE(320), 2, sym_record, sym_record_update, - ACTIONS(311), 3, + ACTIONS(845), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, + STATE(303), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(522), 11, + STATE(335), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -21973,52 +21988,56 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [19775] = 29, + [19805] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(479), 1, anon_sym_LBRACE, - ACTIONS(451), 1, + ACTIONS(483), 1, anon_sym_POUND, - ACTIONS(453), 1, + ACTIONS(485), 1, anon_sym_LBRACK, - ACTIONS(455), 1, + ACTIONS(487), 1, anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(459), 1, + ACTIONS(491), 1, anon_sym_fn, - ACTIONS(463), 1, + ACTIONS(495), 1, anon_sym_todo, - ACTIONS(465), 1, + ACTIONS(497), 1, anon_sym_case, - ACTIONS(467), 1, - anon_sym_let, - ACTIONS(469), 1, - anon_sym_assert, - ACTIONS(471), 1, - anon_sym_BANG, - ACTIONS(473), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(481), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(515), 1, sym__upname, - ACTIONS(898), 1, + ACTIONS(801), 1, + anon_sym_let, + ACTIONS(803), 1, + anon_sym_assert, + ACTIONS(805), 1, + anon_sym_BANG, + ACTIONS(807), 1, sym_float, - STATE(142), 1, + ACTIONS(905), 1, + anon_sym_GT_GT, + STATE(141), 1, sym_identifier, - STATE(170), 1, - sym_tuple, - STATE(171), 1, + STATE(174), 1, sym_anonymous_function, - STATE(1101), 1, + STATE(175), 1, + sym_tuple, + STATE(1118), 1, sym__maybe_function_expression, - STATE(1211), 1, + STATE(1132), 1, + sym_expression_bit_string_segment, + STATE(1232), 1, sym__maybe_record_expression, - STATE(1263), 1, + STATE(1292), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -22026,22 +22045,20 @@ static const uint16_t ts_small_parse_table[] = { STATE(123), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(178), 2, sym_record, sym_record_update, - ACTIONS(477), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(140), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(289), 11, - sym__expression, - sym_binary_expression, + STATE(952), 9, sym__expression_unit, sym_todo, sym_list, @@ -22051,73 +22068,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [19882] = 29, + [19916] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(819), 1, anon_sym_LBRACE, - ACTIONS(451), 1, + ACTIONS(821), 1, anon_sym_POUND, - ACTIONS(453), 1, + ACTIONS(823), 1, anon_sym_LBRACK, - ACTIONS(455), 1, + ACTIONS(825), 1, anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(827), 1, anon_sym_DASH, - ACTIONS(459), 1, + ACTIONS(829), 1, anon_sym_fn, - ACTIONS(463), 1, + ACTIONS(831), 1, anon_sym_todo, - ACTIONS(465), 1, + ACTIONS(833), 1, anon_sym_case, - ACTIONS(467), 1, + ACTIONS(835), 1, anon_sym_let, - ACTIONS(469), 1, + ACTIONS(837), 1, anon_sym_assert, - ACTIONS(471), 1, + ACTIONS(839), 1, anon_sym_BANG, - ACTIONS(473), 1, + ACTIONS(841), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(847), 1, sym__decimal, - ACTIONS(481), 1, + ACTIONS(849), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(851), 1, sym__upname, - ACTIONS(900), 1, + ACTIONS(907), 1, sym_float, - STATE(142), 1, + STATE(305), 1, sym_identifier, - STATE(170), 1, + STATE(321), 1, sym_tuple, - STATE(171), 1, + STATE(327), 1, sym_anonymous_function, - STATE(1101), 1, + STATE(1189), 1, sym__maybe_function_expression, - STATE(1211), 1, - sym__maybe_record_expression, - STATE(1263), 1, + STATE(1218), 1, sym__maybe_tuple_expression, + STATE(1273), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(123), 2, + STATE(300), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(320), 2, sym_record, sym_record_update, - ACTIONS(477), 3, + ACTIONS(845), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(303), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(288), 11, + STATE(345), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -22129,183 +22146,75 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [19989] = 4, + [20023] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(695), 17, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(693), 28, + ACTIONS(819), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(821), 1, anon_sym_POUND, + ACTIONS(823), 1, anon_sym_LBRACK, + ACTIONS(825), 1, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [20046] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(691), 17, - anon_sym_SLASH, + ACTIONS(827), 1, anon_sym_DASH, + ACTIONS(829), 1, anon_sym_fn, - anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(831), 1, anon_sym_todo, + ACTIONS(833), 1, anon_sym_case, + ACTIONS(835), 1, anon_sym_let, + ACTIONS(837), 1, anon_sym_assert, + ACTIONS(839), 1, anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(689), 28, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [20103] = 31, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(447), 1, - anon_sym_LBRACE, - ACTIONS(451), 1, - anon_sym_POUND, - ACTIONS(453), 1, - anon_sym_LBRACK, - ACTIONS(455), 1, - anon_sym_LT_LT, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(459), 1, - anon_sym_fn, - ACTIONS(463), 1, - anon_sym_todo, - ACTIONS(465), 1, - anon_sym_case, - ACTIONS(473), 1, + ACTIONS(841), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(847), 1, sym__decimal, - ACTIONS(481), 1, + ACTIONS(849), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(851), 1, sym__upname, - ACTIONS(799), 1, - anon_sym_let, - ACTIONS(801), 1, - anon_sym_assert, - ACTIONS(803), 1, - anon_sym_BANG, - ACTIONS(805), 1, + ACTIONS(909), 1, sym_float, - ACTIONS(902), 1, - anon_sym_GT_GT, - STATE(142), 1, + STATE(305), 1, sym_identifier, - STATE(170), 1, + STATE(321), 1, sym_tuple, - STATE(171), 1, + STATE(327), 1, sym_anonymous_function, - STATE(1101), 1, + STATE(1189), 1, sym__maybe_function_expression, - STATE(1183), 1, - sym_expression_bit_string_segment, - STATE(1211), 1, - sym__maybe_record_expression, - STATE(1263), 1, + STATE(1218), 1, sym__maybe_tuple_expression, + STATE(1273), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(123), 2, + STATE(300), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(320), 2, sym_record, sym_record_update, - ACTIONS(477), 3, + ACTIONS(845), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(303), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(940), 9, + STATE(338), 11, + sym__expression, + sym_binary_expression, sym__expression_unit, sym_todo, sym_list, @@ -22315,77 +22224,75 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [20214] = 31, + [20130] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(819), 1, anon_sym_LBRACE, - ACTIONS(451), 1, + ACTIONS(821), 1, anon_sym_POUND, - ACTIONS(453), 1, + ACTIONS(823), 1, anon_sym_LBRACK, - ACTIONS(455), 1, + ACTIONS(825), 1, anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(827), 1, anon_sym_DASH, - ACTIONS(459), 1, + ACTIONS(829), 1, anon_sym_fn, - ACTIONS(463), 1, + ACTIONS(831), 1, anon_sym_todo, - ACTIONS(465), 1, + ACTIONS(833), 1, anon_sym_case, - ACTIONS(473), 1, + ACTIONS(835), 1, + anon_sym_let, + ACTIONS(837), 1, + anon_sym_assert, + ACTIONS(839), 1, + anon_sym_BANG, + ACTIONS(841), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(847), 1, sym__decimal, - ACTIONS(481), 1, + ACTIONS(849), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(851), 1, sym__upname, - ACTIONS(799), 1, - anon_sym_let, - ACTIONS(801), 1, - anon_sym_assert, - ACTIONS(803), 1, - anon_sym_BANG, - ACTIONS(805), 1, + ACTIONS(911), 1, sym_float, - ACTIONS(904), 1, - anon_sym_GT_GT, - STATE(142), 1, + STATE(305), 1, sym_identifier, - STATE(170), 1, + STATE(321), 1, sym_tuple, - STATE(171), 1, + STATE(327), 1, sym_anonymous_function, - STATE(1101), 1, + STATE(1189), 1, sym__maybe_function_expression, - STATE(1183), 1, - sym_expression_bit_string_segment, - STATE(1211), 1, - sym__maybe_record_expression, - STATE(1263), 1, + STATE(1218), 1, sym__maybe_tuple_expression, + STATE(1273), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(123), 2, + STATE(300), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(320), 2, sym_record, sym_record_update, - ACTIONS(477), 3, + ACTIONS(845), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(303), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(940), 9, + STATE(337), 11, + sym__expression, + sym_binary_expression, sym__expression_unit, sym_todo, sym_list, @@ -22395,75 +22302,77 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [20325] = 29, + [20237] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(281), 1, + ACTIONS(479), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(483), 1, anon_sym_POUND, - ACTIONS(287), 1, + ACTIONS(485), 1, anon_sym_LBRACK, - ACTIONS(289), 1, + ACTIONS(487), 1, anon_sym_LT_LT, - ACTIONS(291), 1, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(491), 1, anon_sym_fn, - ACTIONS(295), 1, + ACTIONS(495), 1, anon_sym_todo, - ACTIONS(299), 1, + ACTIONS(497), 1, anon_sym_case, - ACTIONS(301), 1, - anon_sym_let, - ACTIONS(303), 1, - anon_sym_assert, - ACTIONS(305), 1, - anon_sym_BANG, - ACTIONS(307), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(319), 1, - sym__upname, - ACTIONS(709), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(906), 1, + ACTIONS(515), 1, + sym__upname, + ACTIONS(801), 1, + anon_sym_let, + ACTIONS(803), 1, + anon_sym_assert, + ACTIONS(805), 1, + anon_sym_BANG, + ACTIONS(807), 1, sym_float, - STATE(375), 1, + ACTIONS(913), 1, + anon_sym_GT_GT, + STATE(141), 1, sym_identifier, - STATE(388), 1, + STATE(174), 1, sym_anonymous_function, - STATE(397), 1, + STATE(175), 1, sym_tuple, - STATE(1128), 1, + STATE(997), 1, + sym_expression_bit_string_segment, + STATE(1118), 1, sym__maybe_function_expression, - STATE(1195), 1, + STATE(1232), 1, sym__maybe_record_expression, - STATE(1247), 1, + STATE(1292), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(357), 2, + STATE(123), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(398), 2, + STATE(178), 2, sym_record, sym_record_update, - ACTIONS(311), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, + STATE(140), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(400), 11, - sym__expression, - sym_binary_expression, + STATE(952), 9, sym__expression_unit, sym_todo, sym_list, @@ -22473,73 +22382,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [20432] = 29, + [20348] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(281), 1, + ACTIONS(260), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(262), 1, anon_sym_POUND, - ACTIONS(287), 1, + ACTIONS(266), 1, anon_sym_LBRACK, - ACTIONS(289), 1, + ACTIONS(268), 1, anon_sym_LT_LT, - ACTIONS(291), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(272), 1, anon_sym_fn, - ACTIONS(295), 1, + ACTIONS(274), 1, anon_sym_todo, - ACTIONS(299), 1, + ACTIONS(278), 1, anon_sym_case, - ACTIONS(301), 1, + ACTIONS(280), 1, anon_sym_let, - ACTIONS(303), 1, + ACTIONS(282), 1, anon_sym_assert, - ACTIONS(305), 1, + ACTIONS(284), 1, anon_sym_BANG, - ACTIONS(307), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(319), 1, + ACTIONS(298), 1, sym__upname, ACTIONS(709), 1, sym__name, - ACTIONS(908), 1, + ACTIONS(915), 1, sym_float, - STATE(375), 1, + STATE(366), 1, sym_identifier, + STATE(387), 1, + sym_tuple, STATE(388), 1, sym_anonymous_function, - STATE(397), 1, - sym_tuple, - STATE(1128), 1, + STATE(1149), 1, sym__maybe_function_expression, - STATE(1195), 1, - sym__maybe_record_expression, - STATE(1247), 1, + STATE(1259), 1, sym__maybe_tuple_expression, + STATE(1262), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(357), 2, + STATE(360), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(398), 2, + STATE(386), 2, sym_record, sym_record_update, - ACTIONS(311), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, + STATE(368), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(607), 11, + STATE(613), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -22551,229 +22460,126 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [20539] = 29, + [20455] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, - anon_sym_LBRACE, - ACTIONS(451), 1, - anon_sym_POUND, - ACTIONS(453), 1, - anon_sym_LBRACK, - ACTIONS(455), 1, - anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(457), 17, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(459), 1, anon_sym_fn, - ACTIONS(463), 1, + anon_sym_try, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(465), 1, anon_sym_case, - ACTIONS(467), 1, anon_sym_let, - ACTIONS(469), 1, anon_sym_assert, - ACTIONS(471), 1, anon_sym_BANG, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, sym__decimal, - ACTIONS(481), 1, sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(910), 1, - sym_float, - STATE(142), 1, - sym_identifier, - STATE(170), 1, - sym_tuple, - STATE(171), 1, - sym_anonymous_function, - STATE(1101), 1, - sym__maybe_function_expression, - STATE(1211), 1, - sym__maybe_record_expression, - STATE(1263), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(123), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(169), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(145), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(287), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [20646] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(447), 1, + ACTIONS(455), 28, anon_sym_LBRACE, - ACTIONS(451), 1, + anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_POUND, - ACTIONS(453), 1, anon_sym_LBRACK, - ACTIONS(455), 1, anon_sym_LT_LT, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(459), 1, - anon_sym_fn, - ACTIONS(463), 1, - anon_sym_todo, - ACTIONS(465), 1, - anon_sym_case, - ACTIONS(467), 1, - anon_sym_let, - ACTIONS(469), 1, - anon_sym_assert, - ACTIONS(471), 1, - anon_sym_BANG, - ACTIONS(473), 1, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(912), 1, sym_float, - STATE(142), 1, - sym_identifier, - STATE(170), 1, - sym_tuple, - STATE(171), 1, - sym_anonymous_function, - STATE(1101), 1, - sym__maybe_function_expression, - STATE(1211), 1, - sym__maybe_record_expression, - STATE(1263), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(123), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(169), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(286), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [20753] = 29, + sym__upname, + [20512] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(260), 1, anon_sym_LBRACE, - ACTIONS(451), 1, + ACTIONS(262), 1, anon_sym_POUND, - ACTIONS(453), 1, + ACTIONS(266), 1, anon_sym_LBRACK, - ACTIONS(455), 1, + ACTIONS(268), 1, anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(459), 1, + ACTIONS(272), 1, anon_sym_fn, - ACTIONS(463), 1, + ACTIONS(274), 1, anon_sym_todo, - ACTIONS(465), 1, + ACTIONS(278), 1, anon_sym_case, - ACTIONS(467), 1, + ACTIONS(280), 1, anon_sym_let, - ACTIONS(469), 1, + ACTIONS(282), 1, anon_sym_assert, - ACTIONS(471), 1, + ACTIONS(284), 1, anon_sym_BANG, - ACTIONS(473), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, + ACTIONS(298), 1, sym__upname, - ACTIONS(914), 1, + ACTIONS(709), 1, + sym__name, + ACTIONS(917), 1, sym_float, - STATE(142), 1, + STATE(366), 1, sym_identifier, - STATE(170), 1, + STATE(387), 1, sym_tuple, - STATE(171), 1, + STATE(388), 1, sym_anonymous_function, - STATE(1101), 1, + STATE(1149), 1, sym__maybe_function_expression, - STATE(1211), 1, - sym__maybe_record_expression, - STATE(1263), 1, + STATE(1259), 1, sym__maybe_tuple_expression, + STATE(1262), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(123), 2, + STATE(360), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(386), 2, sym_record, sym_record_update, - ACTIONS(477), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(368), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(285), 11, + STATE(633), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -22785,229 +22591,179 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [20860] = 29, + [20619] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, - anon_sym_LBRACE, - ACTIONS(451), 1, - anon_sym_POUND, - ACTIONS(453), 1, - anon_sym_LBRACK, - ACTIONS(455), 1, - anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(535), 17, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(459), 1, anon_sym_fn, - ACTIONS(463), 1, + anon_sym_try, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(465), 1, anon_sym_case, - ACTIONS(467), 1, anon_sym_let, - ACTIONS(469), 1, anon_sym_assert, - ACTIONS(471), 1, anon_sym_BANG, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, sym__decimal, - ACTIONS(481), 1, sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(916), 1, + ACTIONS(533), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DQUOTE, sym_float, - STATE(142), 1, - sym_identifier, - STATE(170), 1, - sym_tuple, - STATE(171), 1, - sym_anonymous_function, - STATE(1101), 1, - sym__maybe_function_expression, - STATE(1211), 1, - sym__maybe_record_expression, - STATE(1263), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(123), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(169), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(284), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [20967] = 29, + sym__upname, + [20676] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, - anon_sym_LBRACE, - ACTIONS(451), 1, - anon_sym_POUND, - ACTIONS(453), 1, - anon_sym_LBRACK, - ACTIONS(455), 1, - anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(559), 17, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(459), 1, anon_sym_fn, - ACTIONS(463), 1, + anon_sym_try, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(465), 1, anon_sym_case, - ACTIONS(467), 1, anon_sym_let, - ACTIONS(469), 1, anon_sym_assert, - ACTIONS(471), 1, anon_sym_BANG, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, sym__decimal, - ACTIONS(481), 1, sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(918), 1, + ACTIONS(557), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DQUOTE, sym_float, - STATE(142), 1, - sym_identifier, - STATE(170), 1, - sym_tuple, - STATE(171), 1, - sym_anonymous_function, - STATE(1101), 1, - sym__maybe_function_expression, - STATE(1211), 1, - sym__maybe_record_expression, - STATE(1263), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(123), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(169), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(283), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [21074] = 29, + sym__upname, + [20733] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(260), 1, anon_sym_LBRACE, - ACTIONS(451), 1, + ACTIONS(262), 1, anon_sym_POUND, - ACTIONS(453), 1, + ACTIONS(266), 1, anon_sym_LBRACK, - ACTIONS(455), 1, + ACTIONS(268), 1, anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(459), 1, + ACTIONS(272), 1, anon_sym_fn, - ACTIONS(463), 1, + ACTIONS(274), 1, anon_sym_todo, - ACTIONS(465), 1, + ACTIONS(278), 1, anon_sym_case, - ACTIONS(467), 1, + ACTIONS(280), 1, anon_sym_let, - ACTIONS(469), 1, + ACTIONS(282), 1, anon_sym_assert, - ACTIONS(471), 1, + ACTIONS(284), 1, anon_sym_BANG, - ACTIONS(473), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, + ACTIONS(298), 1, sym__upname, - ACTIONS(920), 1, + ACTIONS(709), 1, + sym__name, + ACTIONS(919), 1, sym_float, - STATE(142), 1, + STATE(366), 1, sym_identifier, - STATE(170), 1, + STATE(387), 1, sym_tuple, - STATE(171), 1, + STATE(388), 1, sym_anonymous_function, - STATE(1101), 1, + STATE(1149), 1, sym__maybe_function_expression, - STATE(1211), 1, - sym__maybe_record_expression, - STATE(1263), 1, + STATE(1259), 1, sym__maybe_tuple_expression, + STATE(1262), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(123), 2, + STATE(360), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(386), 2, sym_record, sym_record_update, - ACTIONS(477), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(368), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(282), 11, + STATE(614), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -23019,73 +22775,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [21181] = 29, + [20840] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(819), 1, anon_sym_LBRACE, - ACTIONS(451), 1, + ACTIONS(821), 1, anon_sym_POUND, - ACTIONS(453), 1, + ACTIONS(823), 1, anon_sym_LBRACK, - ACTIONS(455), 1, + ACTIONS(825), 1, anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(827), 1, anon_sym_DASH, - ACTIONS(459), 1, + ACTIONS(829), 1, anon_sym_fn, - ACTIONS(463), 1, + ACTIONS(831), 1, anon_sym_todo, - ACTIONS(465), 1, + ACTIONS(833), 1, anon_sym_case, - ACTIONS(467), 1, + ACTIONS(835), 1, anon_sym_let, - ACTIONS(469), 1, + ACTIONS(837), 1, anon_sym_assert, - ACTIONS(471), 1, + ACTIONS(839), 1, anon_sym_BANG, - ACTIONS(473), 1, + ACTIONS(841), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(847), 1, sym__decimal, - ACTIONS(481), 1, + ACTIONS(849), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(851), 1, sym__upname, - ACTIONS(922), 1, + ACTIONS(921), 1, sym_float, - STATE(142), 1, + STATE(305), 1, sym_identifier, - STATE(170), 1, + STATE(321), 1, sym_tuple, - STATE(171), 1, + STATE(327), 1, sym_anonymous_function, - STATE(1101), 1, + STATE(1189), 1, sym__maybe_function_expression, - STATE(1211), 1, - sym__maybe_record_expression, - STATE(1263), 1, + STATE(1218), 1, sym__maybe_tuple_expression, + STATE(1273), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(123), 2, + STATE(300), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(320), 2, sym_record, sym_record_update, - ACTIONS(477), 3, + ACTIONS(845), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(303), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(280), 11, + STATE(334), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -23097,73 +22853,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [21288] = 29, + [20947] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(281), 1, + ACTIONS(479), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(483), 1, anon_sym_POUND, - ACTIONS(287), 1, + ACTIONS(485), 1, anon_sym_LBRACK, - ACTIONS(289), 1, + ACTIONS(487), 1, anon_sym_LT_LT, - ACTIONS(291), 1, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(491), 1, anon_sym_fn, - ACTIONS(295), 1, + ACTIONS(495), 1, anon_sym_todo, - ACTIONS(299), 1, + ACTIONS(497), 1, anon_sym_case, - ACTIONS(301), 1, + ACTIONS(499), 1, anon_sym_let, - ACTIONS(303), 1, + ACTIONS(501), 1, anon_sym_assert, - ACTIONS(305), 1, + ACTIONS(503), 1, anon_sym_BANG, - ACTIONS(307), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(319), 1, - sym__upname, - ACTIONS(709), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(924), 1, + ACTIONS(515), 1, + sym__upname, + ACTIONS(923), 1, sym_float, - STATE(375), 1, + STATE(141), 1, sym_identifier, - STATE(388), 1, + STATE(174), 1, sym_anonymous_function, - STATE(397), 1, + STATE(175), 1, sym_tuple, - STATE(1128), 1, + STATE(1118), 1, sym__maybe_function_expression, - STATE(1195), 1, + STATE(1232), 1, sym__maybe_record_expression, - STATE(1247), 1, + STATE(1292), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(357), 2, + STATE(123), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(398), 2, + STATE(178), 2, sym_record, sym_record_update, - ACTIONS(311), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, + STATE(140), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(616), 11, + STATE(289), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -23175,75 +22931,77 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [21395] = 29, + [21054] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(281), 1, + ACTIONS(479), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(483), 1, anon_sym_POUND, - ACTIONS(287), 1, + ACTIONS(485), 1, anon_sym_LBRACK, - ACTIONS(289), 1, + ACTIONS(487), 1, anon_sym_LT_LT, - ACTIONS(291), 1, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(491), 1, anon_sym_fn, - ACTIONS(295), 1, + ACTIONS(495), 1, anon_sym_todo, - ACTIONS(299), 1, + ACTIONS(497), 1, anon_sym_case, - ACTIONS(301), 1, - anon_sym_let, - ACTIONS(303), 1, - anon_sym_assert, - ACTIONS(305), 1, - anon_sym_BANG, - ACTIONS(307), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(319), 1, - sym__upname, - ACTIONS(709), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(926), 1, + ACTIONS(515), 1, + sym__upname, + ACTIONS(801), 1, + anon_sym_let, + ACTIONS(803), 1, + anon_sym_assert, + ACTIONS(805), 1, + anon_sym_BANG, + ACTIONS(807), 1, sym_float, - STATE(375), 1, + ACTIONS(925), 1, + anon_sym_GT_GT, + STATE(141), 1, sym_identifier, - STATE(388), 1, + STATE(174), 1, sym_anonymous_function, - STATE(397), 1, + STATE(175), 1, sym_tuple, - STATE(1128), 1, + STATE(1118), 1, sym__maybe_function_expression, - STATE(1195), 1, + STATE(1132), 1, + sym_expression_bit_string_segment, + STATE(1232), 1, sym__maybe_record_expression, - STATE(1247), 1, + STATE(1292), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(357), 2, + STATE(123), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(398), 2, + STATE(178), 2, sym_record, sym_record_update, - ACTIONS(311), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, + STATE(140), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(399), 11, - sym__expression, - sym_binary_expression, + STATE(952), 9, sym__expression_unit, sym_todo, sym_list, @@ -23253,13 +23011,13 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [21502] = 4, + [21165] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(445), 17, + ACTIONS(691), 17, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -23277,7 +23035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(443), 28, + ACTIONS(689), 28, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -23306,56 +23064,134 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [21559] = 31, + [21222] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(479), 1, anon_sym_LBRACE, - ACTIONS(451), 1, + ACTIONS(483), 1, anon_sym_POUND, - ACTIONS(453), 1, + ACTIONS(485), 1, anon_sym_LBRACK, - ACTIONS(455), 1, + ACTIONS(487), 1, anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(459), 1, + ACTIONS(491), 1, anon_sym_fn, - ACTIONS(463), 1, + ACTIONS(495), 1, anon_sym_todo, - ACTIONS(465), 1, + ACTIONS(497), 1, anon_sym_case, - ACTIONS(473), 1, + ACTIONS(499), 1, + anon_sym_let, + ACTIONS(501), 1, + anon_sym_assert, + ACTIONS(503), 1, + anon_sym_BANG, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(481), 1, + ACTIONS(513), 1, sym__name, + ACTIONS(515), 1, + sym__upname, + ACTIONS(927), 1, + sym_float, + STATE(141), 1, + sym_identifier, + STATE(174), 1, + sym_anonymous_function, + STATE(175), 1, + sym_tuple, + STATE(1118), 1, + sym__maybe_function_expression, + STATE(1232), 1, + sym__maybe_record_expression, + STATE(1292), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(123), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(178), 2, + sym_record, + sym_record_update, + ACTIONS(509), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(140), 5, + sym_expression_group, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(288), 11, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_list, + sym__expression_bit_string, + sym_let, + sym_assert, + sym_negation, + sym_string, + sym_integer, + [21329] = 31, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(479), 1, + anon_sym_LBRACE, ACTIONS(483), 1, + anon_sym_POUND, + ACTIONS(485), 1, + anon_sym_LBRACK, + ACTIONS(487), 1, + anon_sym_LT_LT, + ACTIONS(489), 1, + anon_sym_DASH, + ACTIONS(491), 1, + anon_sym_fn, + ACTIONS(495), 1, + anon_sym_todo, + ACTIONS(497), 1, + anon_sym_case, + ACTIONS(505), 1, + anon_sym_DQUOTE, + ACTIONS(511), 1, + sym__decimal, + ACTIONS(513), 1, + sym__name, + ACTIONS(515), 1, sym__upname, - ACTIONS(799), 1, - anon_sym_let, ACTIONS(801), 1, - anon_sym_assert, + anon_sym_let, ACTIONS(803), 1, - anon_sym_BANG, + anon_sym_assert, ACTIONS(805), 1, + anon_sym_BANG, + ACTIONS(807), 1, sym_float, - ACTIONS(928), 1, + ACTIONS(929), 1, anon_sym_GT_GT, - STATE(142), 1, + STATE(141), 1, sym_identifier, - STATE(170), 1, - sym_tuple, - STATE(171), 1, + STATE(174), 1, sym_anonymous_function, - STATE(988), 1, - sym_expression_bit_string_segment, - STATE(1101), 1, + STATE(175), 1, + sym_tuple, + STATE(1118), 1, sym__maybe_function_expression, - STATE(1211), 1, + STATE(1132), 1, + sym_expression_bit_string_segment, + STATE(1232), 1, sym__maybe_record_expression, - STATE(1263), 1, + STATE(1292), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -23363,20 +23199,20 @@ static const uint16_t ts_small_parse_table[] = { STATE(123), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(178), 2, sym_record, sym_record_update, - ACTIONS(477), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(140), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(940), 9, + STATE(952), 9, sym__expression_unit, sym_todo, sym_list, @@ -23386,13 +23222,13 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [21670] = 4, + [21440] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(551), 17, + ACTIONS(563), 17, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -23410,7 +23246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(549), 28, + ACTIONS(561), 28, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -23439,13 +23275,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [21727] = 4, + [21497] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(545), 17, + ACTIONS(541), 17, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -23463,7 +23299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(543), 28, + ACTIONS(539), 28, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -23492,73 +23328,73 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [21784] = 29, + [21554] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(11), 1, + ACTIONS(819), 1, anon_sym_LBRACE, - ACTIONS(17), 1, + ACTIONS(821), 1, anon_sym_POUND, - ACTIONS(19), 1, + ACTIONS(823), 1, anon_sym_LBRACK, - ACTIONS(21), 1, + ACTIONS(825), 1, anon_sym_LT_LT, - ACTIONS(23), 1, + ACTIONS(827), 1, anon_sym_DASH, - ACTIONS(33), 1, + ACTIONS(829), 1, + anon_sym_fn, + ACTIONS(831), 1, anon_sym_todo, - ACTIONS(35), 1, + ACTIONS(833), 1, anon_sym_case, - ACTIONS(37), 1, + ACTIONS(835), 1, anon_sym_let, - ACTIONS(39), 1, + ACTIONS(837), 1, anon_sym_assert, - ACTIONS(41), 1, + ACTIONS(839), 1, anon_sym_BANG, - ACTIONS(47), 1, + ACTIONS(841), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(847), 1, sym__decimal, - ACTIONS(55), 1, + ACTIONS(849), 1, sym__name, - ACTIONS(57), 1, + ACTIONS(851), 1, sym__upname, - ACTIONS(853), 1, - anon_sym_fn, - ACTIONS(930), 1, + ACTIONS(931), 1, sym_float, - STATE(25), 1, + STATE(305), 1, sym_identifier, - STATE(31), 1, - sym_anonymous_function, - STATE(40), 1, + STATE(321), 1, sym_tuple, - STATE(1131), 1, + STATE(327), 1, + sym_anonymous_function, + STATE(1189), 1, sym__maybe_function_expression, - STATE(1241), 1, - sym__maybe_record_expression, - STATE(1242), 1, + STATE(1218), 1, sym__maybe_tuple_expression, + STATE(1273), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(6), 2, + STATE(300), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(33), 2, + STATE(320), 2, sym_record, sym_record_update, - ACTIONS(51), 3, + ACTIONS(845), 3, sym__hex, sym__octal, sym__binary, - STATE(8), 5, + STATE(303), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(78), 11, + STATE(340), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -23570,179 +23406,151 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [21891] = 4, + [21661] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(515), 17, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(513), 28, + ACTIONS(819), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(821), 1, anon_sym_POUND, + ACTIONS(823), 1, anon_sym_LBRACK, + ACTIONS(825), 1, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [21948] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(509), 17, - anon_sym_SLASH, + ACTIONS(827), 1, anon_sym_DASH, + ACTIONS(829), 1, anon_sym_fn, - anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(831), 1, anon_sym_todo, + ACTIONS(833), 1, anon_sym_case, + ACTIONS(835), 1, anon_sym_let, + ACTIONS(837), 1, anon_sym_assert, + ACTIONS(839), 1, anon_sym_BANG, + ACTIONS(841), 1, + anon_sym_DQUOTE, + ACTIONS(847), 1, sym__decimal, + ACTIONS(849), 1, sym__name, - ACTIONS(507), 28, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DQUOTE, + ACTIONS(851), 1, + sym__upname, + ACTIONS(933), 1, sym_float, + STATE(305), 1, + sym_identifier, + STATE(321), 1, + sym_tuple, + STATE(327), 1, + sym_anonymous_function, + STATE(1189), 1, + sym__maybe_function_expression, + STATE(1218), 1, + sym__maybe_tuple_expression, + STATE(1273), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(300), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(320), 2, + sym_record, + sym_record_update, + ACTIONS(845), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [22005] = 29, + STATE(303), 5, + sym_expression_group, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(341), 11, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_list, + sym__expression_bit_string, + sym_let, + sym_assert, + sym_negation, + sym_string, + sym_integer, + [21768] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(11), 1, + ACTIONS(260), 1, anon_sym_LBRACE, - ACTIONS(17), 1, + ACTIONS(262), 1, anon_sym_POUND, - ACTIONS(19), 1, + ACTIONS(266), 1, anon_sym_LBRACK, - ACTIONS(21), 1, + ACTIONS(268), 1, anon_sym_LT_LT, - ACTIONS(23), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(33), 1, + ACTIONS(272), 1, + anon_sym_fn, + ACTIONS(274), 1, anon_sym_todo, - ACTIONS(35), 1, + ACTIONS(278), 1, anon_sym_case, - ACTIONS(37), 1, + ACTIONS(280), 1, anon_sym_let, - ACTIONS(39), 1, + ACTIONS(282), 1, anon_sym_assert, - ACTIONS(41), 1, + ACTIONS(284), 1, anon_sym_BANG, - ACTIONS(47), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(55), 1, - sym__name, - ACTIONS(57), 1, + ACTIONS(298), 1, sym__upname, - ACTIONS(853), 1, - anon_sym_fn, - ACTIONS(932), 1, + ACTIONS(707), 1, sym_float, - STATE(25), 1, + ACTIONS(709), 1, + sym__name, + STATE(366), 1, sym_identifier, - STATE(31), 1, - sym_anonymous_function, - STATE(40), 1, + STATE(387), 1, sym_tuple, - STATE(1131), 1, + STATE(388), 1, + sym_anonymous_function, + STATE(1149), 1, sym__maybe_function_expression, - STATE(1241), 1, - sym__maybe_record_expression, - STATE(1242), 1, + STATE(1259), 1, sym__maybe_tuple_expression, + STATE(1262), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(6), 2, + STATE(360), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(33), 2, + STATE(386), 2, sym_record, sym_record_update, - ACTIONS(51), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(8), 5, + STATE(368), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(87), 11, + STATE(523), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -23754,73 +23562,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [22112] = 29, + [21875] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(11), 1, + ACTIONS(260), 1, anon_sym_LBRACE, - ACTIONS(17), 1, + ACTIONS(262), 1, anon_sym_POUND, - ACTIONS(19), 1, + ACTIONS(266), 1, anon_sym_LBRACK, - ACTIONS(21), 1, + ACTIONS(268), 1, anon_sym_LT_LT, - ACTIONS(23), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(33), 1, + ACTIONS(272), 1, + anon_sym_fn, + ACTIONS(274), 1, anon_sym_todo, - ACTIONS(35), 1, + ACTIONS(278), 1, anon_sym_case, - ACTIONS(37), 1, + ACTIONS(280), 1, anon_sym_let, - ACTIONS(39), 1, + ACTIONS(282), 1, anon_sym_assert, - ACTIONS(41), 1, + ACTIONS(284), 1, anon_sym_BANG, - ACTIONS(47), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(55), 1, - sym__name, - ACTIONS(57), 1, + ACTIONS(298), 1, sym__upname, - ACTIONS(853), 1, - anon_sym_fn, - ACTIONS(934), 1, + ACTIONS(709), 1, + sym__name, + ACTIONS(935), 1, sym_float, - STATE(25), 1, + STATE(366), 1, sym_identifier, - STATE(31), 1, - sym_anonymous_function, - STATE(40), 1, + STATE(387), 1, sym_tuple, - STATE(1131), 1, + STATE(388), 1, + sym_anonymous_function, + STATE(1149), 1, sym__maybe_function_expression, - STATE(1241), 1, - sym__maybe_record_expression, - STATE(1242), 1, + STATE(1259), 1, sym__maybe_tuple_expression, + STATE(1262), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(6), 2, + STATE(360), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(33), 2, + STATE(386), 2, sym_record, sym_record_update, - ACTIONS(51), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(8), 5, + STATE(368), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(76), 11, + STATE(631), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -23832,75 +23640,77 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [22219] = 29, + [21982] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(11), 1, + ACTIONS(479), 1, anon_sym_LBRACE, - ACTIONS(17), 1, + ACTIONS(483), 1, anon_sym_POUND, - ACTIONS(19), 1, + ACTIONS(485), 1, anon_sym_LBRACK, - ACTIONS(21), 1, + ACTIONS(487), 1, anon_sym_LT_LT, - ACTIONS(23), 1, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(33), 1, + ACTIONS(491), 1, + anon_sym_fn, + ACTIONS(495), 1, anon_sym_todo, - ACTIONS(35), 1, + ACTIONS(497), 1, anon_sym_case, - ACTIONS(37), 1, - anon_sym_let, - ACTIONS(39), 1, - anon_sym_assert, - ACTIONS(41), 1, - anon_sym_BANG, - ACTIONS(47), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(55), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(57), 1, + ACTIONS(515), 1, sym__upname, - ACTIONS(853), 1, - anon_sym_fn, - ACTIONS(936), 1, + ACTIONS(801), 1, + anon_sym_let, + ACTIONS(803), 1, + anon_sym_assert, + ACTIONS(805), 1, + anon_sym_BANG, + ACTIONS(807), 1, sym_float, - STATE(25), 1, + ACTIONS(937), 1, + anon_sym_GT_GT, + STATE(141), 1, sym_identifier, - STATE(31), 1, + STATE(174), 1, sym_anonymous_function, - STATE(40), 1, + STATE(175), 1, sym_tuple, - STATE(1131), 1, + STATE(1118), 1, sym__maybe_function_expression, - STATE(1241), 1, + STATE(1132), 1, + sym_expression_bit_string_segment, + STATE(1232), 1, sym__maybe_record_expression, - STATE(1242), 1, + STATE(1292), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(6), 2, + STATE(123), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(33), 2, + STATE(178), 2, sym_record, sym_record_update, - ACTIONS(51), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(8), 5, + STATE(140), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(55), 11, - sym__expression, - sym_binary_expression, + STATE(952), 9, sym__expression_unit, sym_todo, sym_list, @@ -23910,75 +23720,77 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [22326] = 29, + [22093] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(11), 1, + ACTIONS(479), 1, anon_sym_LBRACE, - ACTIONS(17), 1, + ACTIONS(483), 1, anon_sym_POUND, - ACTIONS(19), 1, + ACTIONS(485), 1, anon_sym_LBRACK, - ACTIONS(21), 1, + ACTIONS(487), 1, anon_sym_LT_LT, - ACTIONS(23), 1, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(33), 1, + ACTIONS(491), 1, + anon_sym_fn, + ACTIONS(495), 1, anon_sym_todo, - ACTIONS(35), 1, + ACTIONS(497), 1, anon_sym_case, - ACTIONS(37), 1, - anon_sym_let, - ACTIONS(39), 1, - anon_sym_assert, - ACTIONS(41), 1, - anon_sym_BANG, - ACTIONS(47), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(55), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(57), 1, + ACTIONS(515), 1, sym__upname, - ACTIONS(853), 1, - anon_sym_fn, - ACTIONS(938), 1, + ACTIONS(801), 1, + anon_sym_let, + ACTIONS(803), 1, + anon_sym_assert, + ACTIONS(805), 1, + anon_sym_BANG, + ACTIONS(807), 1, sym_float, - STATE(25), 1, + ACTIONS(939), 1, + anon_sym_GT_GT, + STATE(141), 1, sym_identifier, - STATE(31), 1, + STATE(174), 1, sym_anonymous_function, - STATE(40), 1, + STATE(175), 1, sym_tuple, - STATE(1131), 1, + STATE(1118), 1, sym__maybe_function_expression, - STATE(1241), 1, + STATE(1132), 1, + sym_expression_bit_string_segment, + STATE(1232), 1, sym__maybe_record_expression, - STATE(1242), 1, + STATE(1292), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(6), 2, + STATE(123), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(33), 2, + STATE(178), 2, sym_record, sym_record_update, - ACTIONS(51), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(8), 5, + STATE(140), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(62), 11, - sym__expression, - sym_binary_expression, + STATE(952), 9, sym__expression_unit, sym_todo, sym_list, @@ -23988,73 +23800,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [22433] = 29, + [22204] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(809), 1, + ACTIONS(819), 1, anon_sym_LBRACE, - ACTIONS(811), 1, + ACTIONS(821), 1, anon_sym_POUND, - ACTIONS(813), 1, + ACTIONS(823), 1, anon_sym_LBRACK, - ACTIONS(815), 1, + ACTIONS(825), 1, anon_sym_LT_LT, - ACTIONS(817), 1, + ACTIONS(827), 1, anon_sym_DASH, - ACTIONS(819), 1, + ACTIONS(829), 1, anon_sym_fn, - ACTIONS(821), 1, + ACTIONS(831), 1, anon_sym_todo, - ACTIONS(823), 1, + ACTIONS(833), 1, anon_sym_case, - ACTIONS(825), 1, + ACTIONS(835), 1, anon_sym_let, - ACTIONS(827), 1, + ACTIONS(837), 1, anon_sym_assert, - ACTIONS(829), 1, + ACTIONS(839), 1, anon_sym_BANG, - ACTIONS(831), 1, + ACTIONS(841), 1, anon_sym_DQUOTE, - ACTIONS(837), 1, + ACTIONS(847), 1, sym__decimal, - ACTIONS(839), 1, + ACTIONS(849), 1, sym__name, - ACTIONS(841), 1, + ACTIONS(851), 1, sym__upname, - ACTIONS(940), 1, + ACTIONS(941), 1, sym_float, - STATE(303), 1, + STATE(305), 1, sym_identifier, - STATE(319), 1, - sym_anonymous_function, - STATE(327), 1, + STATE(321), 1, sym_tuple, - STATE(1168), 1, + STATE(327), 1, + sym_anonymous_function, + STATE(1189), 1, sym__maybe_function_expression, - STATE(1196), 1, + STATE(1218), 1, sym__maybe_tuple_expression, - STATE(1252), 1, + STATE(1273), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(299), 2, + STATE(300), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(324), 2, + STATE(320), 2, sym_record, sym_record_update, - ACTIONS(835), 3, + ACTIONS(845), 3, sym__hex, sym__octal, sym__binary, - STATE(301), 5, + STATE(303), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(343), 11, + STATE(355), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -24066,75 +23878,77 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [22540] = 29, + [22311] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(809), 1, + ACTIONS(479), 1, anon_sym_LBRACE, - ACTIONS(811), 1, + ACTIONS(483), 1, anon_sym_POUND, - ACTIONS(813), 1, + ACTIONS(485), 1, anon_sym_LBRACK, - ACTIONS(815), 1, + ACTIONS(487), 1, anon_sym_LT_LT, - ACTIONS(817), 1, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(819), 1, + ACTIONS(491), 1, anon_sym_fn, - ACTIONS(821), 1, + ACTIONS(495), 1, anon_sym_todo, - ACTIONS(823), 1, + ACTIONS(497), 1, anon_sym_case, - ACTIONS(825), 1, - anon_sym_let, - ACTIONS(827), 1, - anon_sym_assert, - ACTIONS(829), 1, - anon_sym_BANG, - ACTIONS(831), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(837), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(839), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(841), 1, + ACTIONS(515), 1, sym__upname, - ACTIONS(942), 1, + ACTIONS(801), 1, + anon_sym_let, + ACTIONS(803), 1, + anon_sym_assert, + ACTIONS(805), 1, + anon_sym_BANG, + ACTIONS(807), 1, sym_float, - STATE(303), 1, + ACTIONS(943), 1, + anon_sym_GT_GT, + STATE(141), 1, sym_identifier, - STATE(319), 1, + STATE(174), 1, sym_anonymous_function, - STATE(327), 1, + STATE(175), 1, sym_tuple, - STATE(1168), 1, + STATE(1118), 1, sym__maybe_function_expression, - STATE(1196), 1, - sym__maybe_tuple_expression, - STATE(1252), 1, + STATE(1132), 1, + sym_expression_bit_string_segment, + STATE(1232), 1, sym__maybe_record_expression, + STATE(1292), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(299), 2, + STATE(123), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(324), 2, + STATE(178), 2, sym_record, sym_record_update, - ACTIONS(835), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(301), 5, + STATE(140), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(348), 11, - sym__expression, - sym_binary_expression, + STATE(952), 9, sym__expression_unit, sym_todo, sym_list, @@ -24144,75 +23958,77 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [22647] = 29, + [22422] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(281), 1, + ACTIONS(479), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(483), 1, anon_sym_POUND, - ACTIONS(287), 1, + ACTIONS(485), 1, anon_sym_LBRACK, - ACTIONS(289), 1, + ACTIONS(487), 1, anon_sym_LT_LT, - ACTIONS(291), 1, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(491), 1, anon_sym_fn, - ACTIONS(295), 1, + ACTIONS(495), 1, anon_sym_todo, - ACTIONS(299), 1, + ACTIONS(497), 1, anon_sym_case, - ACTIONS(301), 1, - anon_sym_let, - ACTIONS(303), 1, - anon_sym_assert, - ACTIONS(305), 1, - anon_sym_BANG, - ACTIONS(307), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(319), 1, - sym__upname, - ACTIONS(709), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(944), 1, + ACTIONS(515), 1, + sym__upname, + ACTIONS(801), 1, + anon_sym_let, + ACTIONS(803), 1, + anon_sym_assert, + ACTIONS(805), 1, + anon_sym_BANG, + ACTIONS(807), 1, sym_float, - STATE(375), 1, + ACTIONS(945), 1, + anon_sym_GT_GT, + STATE(141), 1, sym_identifier, - STATE(388), 1, + STATE(174), 1, sym_anonymous_function, - STATE(397), 1, + STATE(175), 1, sym_tuple, - STATE(1128), 1, + STATE(1032), 1, + sym_expression_bit_string_segment, + STATE(1118), 1, sym__maybe_function_expression, - STATE(1195), 1, + STATE(1232), 1, sym__maybe_record_expression, - STATE(1247), 1, + STATE(1292), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(357), 2, + STATE(123), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(398), 2, + STATE(178), 2, sym_record, sym_record_update, - ACTIONS(311), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, + STATE(140), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(619), 11, - sym__expression, - sym_binary_expression, + STATE(952), 9, sym__expression_unit, sym_todo, sym_list, @@ -24222,73 +24038,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [22754] = 29, + [22533] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(11), 1, + ACTIONS(260), 1, anon_sym_LBRACE, - ACTIONS(17), 1, + ACTIONS(262), 1, anon_sym_POUND, - ACTIONS(19), 1, + ACTIONS(266), 1, anon_sym_LBRACK, - ACTIONS(21), 1, + ACTIONS(268), 1, anon_sym_LT_LT, - ACTIONS(23), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(33), 1, + ACTIONS(272), 1, + anon_sym_fn, + ACTIONS(274), 1, anon_sym_todo, - ACTIONS(35), 1, + ACTIONS(278), 1, anon_sym_case, - ACTIONS(37), 1, + ACTIONS(280), 1, anon_sym_let, - ACTIONS(39), 1, + ACTIONS(282), 1, anon_sym_assert, - ACTIONS(41), 1, + ACTIONS(284), 1, anon_sym_BANG, - ACTIONS(47), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(55), 1, - sym__name, - ACTIONS(57), 1, + ACTIONS(298), 1, sym__upname, - ACTIONS(853), 1, - anon_sym_fn, - ACTIONS(946), 1, + ACTIONS(709), 1, + sym__name, + ACTIONS(947), 1, sym_float, - STATE(25), 1, + STATE(366), 1, sym_identifier, - STATE(31), 1, - sym_anonymous_function, - STATE(40), 1, + STATE(387), 1, sym_tuple, - STATE(1131), 1, + STATE(388), 1, + sym_anonymous_function, + STATE(1149), 1, sym__maybe_function_expression, - STATE(1241), 1, - sym__maybe_record_expression, - STATE(1242), 1, + STATE(1259), 1, sym__maybe_tuple_expression, + STATE(1262), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(6), 2, + STATE(360), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(33), 2, + STATE(386), 2, sym_record, sym_record_update, - ACTIONS(51), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(8), 5, + STATE(368), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(106), 11, + STATE(594), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -24300,73 +24116,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [22861] = 29, + [22640] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(11), 1, + ACTIONS(260), 1, anon_sym_LBRACE, - ACTIONS(17), 1, + ACTIONS(262), 1, anon_sym_POUND, - ACTIONS(19), 1, + ACTIONS(266), 1, anon_sym_LBRACK, - ACTIONS(21), 1, + ACTIONS(268), 1, anon_sym_LT_LT, - ACTIONS(23), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(33), 1, + ACTIONS(272), 1, + anon_sym_fn, + ACTIONS(274), 1, anon_sym_todo, - ACTIONS(35), 1, + ACTIONS(278), 1, anon_sym_case, - ACTIONS(37), 1, + ACTIONS(280), 1, anon_sym_let, - ACTIONS(39), 1, + ACTIONS(282), 1, anon_sym_assert, - ACTIONS(41), 1, + ACTIONS(284), 1, anon_sym_BANG, - ACTIONS(47), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(55), 1, - sym__name, - ACTIONS(57), 1, + ACTIONS(298), 1, sym__upname, - ACTIONS(853), 1, - anon_sym_fn, - ACTIONS(948), 1, + ACTIONS(709), 1, + sym__name, + ACTIONS(949), 1, sym_float, - STATE(25), 1, + STATE(366), 1, sym_identifier, - STATE(31), 1, - sym_anonymous_function, - STATE(40), 1, + STATE(387), 1, sym_tuple, - STATE(1131), 1, + STATE(388), 1, + sym_anonymous_function, + STATE(1149), 1, sym__maybe_function_expression, - STATE(1241), 1, - sym__maybe_record_expression, - STATE(1242), 1, + STATE(1259), 1, sym__maybe_tuple_expression, + STATE(1262), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(6), 2, + STATE(360), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(33), 2, + STATE(386), 2, sym_record, sym_record_update, - ACTIONS(51), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(8), 5, + STATE(368), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(65), 11, + STATE(622), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -24378,7 +24194,7 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [22968] = 29, + [22747] = 29, ACTIONS(3), 1, sym_module_comment, ACTIONS(11), 1, @@ -24411,19 +24227,19 @@ static const uint16_t ts_small_parse_table[] = { sym__upname, ACTIONS(853), 1, anon_sym_fn, - ACTIONS(950), 1, + ACTIONS(951), 1, sym_float, - STATE(25), 1, + STATE(27), 1, sym_identifier, + STATE(29), 1, + sym_tuple, STATE(31), 1, sym_anonymous_function, - STATE(40), 1, - sym_tuple, - STATE(1131), 1, + STATE(1145), 1, sym__maybe_function_expression, - STATE(1241), 1, + STATE(1265), 1, sym__maybe_record_expression, - STATE(1242), 1, + STATE(1267), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -24431,7 +24247,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(6), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(33), 2, + STATE(34), 2, sym_record, sym_record_update, ACTIONS(51), 3, @@ -24444,7 +24260,7 @@ static const uint16_t ts_small_parse_table[] = { sym_tuple_access, sym_field_access, sym_function_call, - STATE(72), 11, + STATE(91), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -24456,151 +24272,179 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [23075] = 29, + [22854] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(281), 1, - anon_sym_LBRACE, - ACTIONS(283), 1, - anon_sym_POUND, - ACTIONS(287), 1, - anon_sym_LBRACK, - ACTIONS(289), 1, - anon_sym_LT_LT, - ACTIONS(291), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(545), 17, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(293), 1, anon_sym_fn, - ACTIONS(295), 1, - anon_sym_todo, - ACTIONS(299), 1, - anon_sym_case, - ACTIONS(301), 1, - anon_sym_let, - ACTIONS(303), 1, - anon_sym_assert, - ACTIONS(305), 1, + anon_sym_try, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, anon_sym_BANG, - ACTIONS(307), 1, - anon_sym_DQUOTE, - ACTIONS(313), 1, sym__decimal, - ACTIONS(319), 1, - sym__upname, - ACTIONS(709), 1, sym__name, - ACTIONS(952), 1, + ACTIONS(543), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DQUOTE, sym_float, - STATE(375), 1, - sym_identifier, - STATE(388), 1, - sym_anonymous_function, - STATE(397), 1, - sym_tuple, - STATE(1128), 1, - sym__maybe_function_expression, - STATE(1195), 1, - sym__maybe_record_expression, - STATE(1247), 1, - sym__maybe_tuple_expression, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [22911] = 4, + ACTIONS(3), 1, + sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(357), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(398), 2, - sym_record, - sym_record_update, - ACTIONS(311), 3, + ACTIONS(551), 17, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_fn, + anon_sym_try, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(549), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DQUOTE, + sym_float, sym__hex, sym__octal, sym__binary, - STATE(374), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(613), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [23182] = 29, + sym__upname, + [22968] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(281), 1, + ACTIONS(11), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(17), 1, anon_sym_POUND, - ACTIONS(287), 1, + ACTIONS(19), 1, anon_sym_LBRACK, - ACTIONS(289), 1, + ACTIONS(21), 1, anon_sym_LT_LT, - ACTIONS(291), 1, + ACTIONS(23), 1, anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_fn, - ACTIONS(295), 1, + ACTIONS(33), 1, anon_sym_todo, - ACTIONS(299), 1, + ACTIONS(35), 1, anon_sym_case, - ACTIONS(301), 1, + ACTIONS(37), 1, anon_sym_let, - ACTIONS(303), 1, + ACTIONS(39), 1, anon_sym_assert, - ACTIONS(305), 1, + ACTIONS(41), 1, anon_sym_BANG, - ACTIONS(307), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(53), 1, sym__decimal, - ACTIONS(319), 1, - sym__upname, - ACTIONS(709), 1, + ACTIONS(55), 1, sym__name, - ACTIONS(954), 1, + ACTIONS(57), 1, + sym__upname, + ACTIONS(853), 1, + anon_sym_fn, + ACTIONS(953), 1, sym_float, - STATE(375), 1, + STATE(27), 1, sym_identifier, - STATE(388), 1, - sym_anonymous_function, - STATE(397), 1, + STATE(29), 1, sym_tuple, - STATE(1128), 1, + STATE(31), 1, + sym_anonymous_function, + STATE(1145), 1, sym__maybe_function_expression, - STATE(1195), 1, + STATE(1265), 1, sym__maybe_record_expression, - STATE(1247), 1, + STATE(1267), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(357), 2, + STATE(6), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(398), 2, + STATE(34), 2, sym_record, sym_record_update, - ACTIONS(311), 3, + ACTIONS(51), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, + STATE(8), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(604), 11, + STATE(64), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -24612,73 +24456,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [23289] = 29, + [23075] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(281), 1, + ACTIONS(479), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(483), 1, anon_sym_POUND, - ACTIONS(287), 1, + ACTIONS(485), 1, anon_sym_LBRACK, - ACTIONS(289), 1, + ACTIONS(487), 1, anon_sym_LT_LT, - ACTIONS(291), 1, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(491), 1, anon_sym_fn, - ACTIONS(295), 1, + ACTIONS(495), 1, anon_sym_todo, - ACTIONS(299), 1, + ACTIONS(497), 1, anon_sym_case, - ACTIONS(301), 1, + ACTIONS(499), 1, anon_sym_let, - ACTIONS(303), 1, + ACTIONS(501), 1, anon_sym_assert, - ACTIONS(305), 1, + ACTIONS(503), 1, anon_sym_BANG, - ACTIONS(307), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(319), 1, - sym__upname, - ACTIONS(709), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(956), 1, + ACTIONS(515), 1, + sym__upname, + ACTIONS(955), 1, sym_float, - STATE(375), 1, + STATE(141), 1, sym_identifier, - STATE(388), 1, + STATE(174), 1, sym_anonymous_function, - STATE(397), 1, + STATE(175), 1, sym_tuple, - STATE(1128), 1, + STATE(1118), 1, sym__maybe_function_expression, - STATE(1195), 1, + STATE(1232), 1, sym__maybe_record_expression, - STATE(1247), 1, + STATE(1292), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(357), 2, + STATE(123), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(398), 2, + STATE(178), 2, sym_record, sym_record_update, - ACTIONS(311), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, + STATE(140), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(601), 11, + STATE(287), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -24690,56 +24534,52 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [23396] = 31, + [23182] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(479), 1, anon_sym_LBRACE, - ACTIONS(451), 1, + ACTIONS(483), 1, anon_sym_POUND, - ACTIONS(453), 1, + ACTIONS(485), 1, anon_sym_LBRACK, - ACTIONS(455), 1, + ACTIONS(487), 1, anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(459), 1, + ACTIONS(491), 1, anon_sym_fn, - ACTIONS(463), 1, + ACTIONS(495), 1, anon_sym_todo, - ACTIONS(465), 1, + ACTIONS(497), 1, anon_sym_case, - ACTIONS(473), 1, + ACTIONS(499), 1, + anon_sym_let, + ACTIONS(501), 1, + anon_sym_assert, + ACTIONS(503), 1, + anon_sym_BANG, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(481), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(515), 1, sym__upname, - ACTIONS(799), 1, - anon_sym_let, - ACTIONS(801), 1, - anon_sym_assert, - ACTIONS(803), 1, - anon_sym_BANG, - ACTIONS(805), 1, + ACTIONS(957), 1, sym_float, - ACTIONS(958), 1, - anon_sym_GT_GT, - STATE(142), 1, + STATE(141), 1, sym_identifier, - STATE(170), 1, - sym_tuple, - STATE(171), 1, + STATE(174), 1, sym_anonymous_function, - STATE(1101), 1, + STATE(175), 1, + sym_tuple, + STATE(1118), 1, sym__maybe_function_expression, - STATE(1183), 1, - sym_expression_bit_string_segment, - STATE(1211), 1, + STATE(1232), 1, sym__maybe_record_expression, - STATE(1263), 1, + STATE(1292), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -24747,20 +24587,22 @@ static const uint16_t ts_small_parse_table[] = { STATE(123), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(178), 2, sym_record, sym_record_update, - ACTIONS(477), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(140), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(940), 9, + STATE(286), 11, + sym__expression, + sym_binary_expression, sym__expression_unit, sym_todo, sym_list, @@ -24770,75 +24612,183 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [23507] = 29, + [23289] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(281), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(567), 17, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_fn, + anon_sym_try, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(565), 28, anon_sym_LBRACE, - ACTIONS(283), 1, + anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_POUND, - ACTIONS(287), 1, anon_sym_LBRACK, - ACTIONS(289), 1, anon_sym_LT_LT, - ACTIONS(291), 1, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [23346] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(695), 17, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(293), 1, anon_sym_fn, - ACTIONS(295), 1, + anon_sym_try, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(299), 1, anon_sym_case, - ACTIONS(301), 1, anon_sym_let, - ACTIONS(303), 1, anon_sym_assert, - ACTIONS(305), 1, anon_sym_BANG, - ACTIONS(307), 1, - anon_sym_DQUOTE, - ACTIONS(313), 1, sym__decimal, - ACTIONS(319), 1, + sym__name, + ACTIONS(693), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, sym__upname, - ACTIONS(709), 1, + [23403] = 31, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(479), 1, + anon_sym_LBRACE, + ACTIONS(483), 1, + anon_sym_POUND, + ACTIONS(485), 1, + anon_sym_LBRACK, + ACTIONS(487), 1, + anon_sym_LT_LT, + ACTIONS(489), 1, + anon_sym_DASH, + ACTIONS(491), 1, + anon_sym_fn, + ACTIONS(495), 1, + anon_sym_todo, + ACTIONS(497), 1, + anon_sym_case, + ACTIONS(505), 1, + anon_sym_DQUOTE, + ACTIONS(511), 1, + sym__decimal, + ACTIONS(513), 1, sym__name, - ACTIONS(960), 1, + ACTIONS(515), 1, + sym__upname, + ACTIONS(801), 1, + anon_sym_let, + ACTIONS(803), 1, + anon_sym_assert, + ACTIONS(805), 1, + anon_sym_BANG, + ACTIONS(807), 1, sym_float, - STATE(375), 1, + ACTIONS(959), 1, + anon_sym_GT_GT, + STATE(141), 1, sym_identifier, - STATE(388), 1, + STATE(174), 1, sym_anonymous_function, - STATE(397), 1, + STATE(175), 1, sym_tuple, - STATE(1128), 1, + STATE(972), 1, + sym_expression_bit_string_segment, + STATE(1118), 1, sym__maybe_function_expression, - STATE(1195), 1, + STATE(1232), 1, sym__maybe_record_expression, - STATE(1247), 1, + STATE(1292), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(357), 2, + STATE(123), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(398), 2, + STATE(178), 2, sym_record, sym_record_update, - ACTIONS(311), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, + STATE(140), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(578), 11, - sym__expression, - sym_binary_expression, + STATE(952), 9, sym__expression_unit, sym_todo, sym_list, @@ -24848,73 +24798,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [23614] = 29, + [23514] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(281), 1, - anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(262), 1, anon_sym_POUND, - ACTIONS(287), 1, + ACTIONS(266), 1, anon_sym_LBRACK, - ACTIONS(289), 1, + ACTIONS(268), 1, anon_sym_LT_LT, - ACTIONS(291), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(272), 1, anon_sym_fn, - ACTIONS(295), 1, + ACTIONS(274), 1, anon_sym_todo, - ACTIONS(299), 1, + ACTIONS(278), 1, anon_sym_case, - ACTIONS(301), 1, + ACTIONS(280), 1, anon_sym_let, - ACTIONS(303), 1, + ACTIONS(282), 1, anon_sym_assert, - ACTIONS(305), 1, + ACTIONS(284), 1, anon_sym_BANG, - ACTIONS(307), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(319), 1, + ACTIONS(298), 1, sym__upname, + ACTIONS(707), 1, + sym_float, ACTIONS(709), 1, sym__name, - ACTIONS(962), 1, - sym_float, - STATE(375), 1, + ACTIONS(961), 1, + anon_sym_LBRACE, + STATE(366), 1, sym_identifier, + STATE(387), 1, + sym_tuple, STATE(388), 1, sym_anonymous_function, - STATE(397), 1, - sym_tuple, - STATE(1128), 1, + STATE(1149), 1, sym__maybe_function_expression, - STATE(1195), 1, - sym__maybe_record_expression, - STATE(1247), 1, + STATE(1259), 1, sym__maybe_tuple_expression, + STATE(1262), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(357), 2, + STATE(360), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(398), 2, + STATE(386), 2, sym_record, sym_record_update, - ACTIONS(311), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, + STATE(368), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(595), 11, + STATE(523), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -24926,77 +24876,75 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [23721] = 31, + [23621] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(260), 1, anon_sym_LBRACE, - ACTIONS(451), 1, + ACTIONS(262), 1, anon_sym_POUND, - ACTIONS(453), 1, + ACTIONS(266), 1, anon_sym_LBRACK, - ACTIONS(455), 1, + ACTIONS(268), 1, anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(459), 1, + ACTIONS(272), 1, anon_sym_fn, - ACTIONS(463), 1, + ACTIONS(274), 1, anon_sym_todo, - ACTIONS(465), 1, + ACTIONS(278), 1, anon_sym_case, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(799), 1, + ACTIONS(280), 1, anon_sym_let, - ACTIONS(801), 1, + ACTIONS(282), 1, anon_sym_assert, - ACTIONS(803), 1, + ACTIONS(284), 1, anon_sym_BANG, - ACTIONS(805), 1, - sym_float, + ACTIONS(286), 1, + anon_sym_DQUOTE, + ACTIONS(292), 1, + sym__decimal, + ACTIONS(298), 1, + sym__upname, + ACTIONS(709), 1, + sym__name, ACTIONS(964), 1, - anon_sym_GT_GT, - STATE(142), 1, + sym_float, + STATE(366), 1, sym_identifier, - STATE(170), 1, + STATE(387), 1, sym_tuple, - STATE(171), 1, + STATE(388), 1, sym_anonymous_function, - STATE(1101), 1, + STATE(1149), 1, sym__maybe_function_expression, - STATE(1183), 1, - sym_expression_bit_string_segment, - STATE(1211), 1, - sym__maybe_record_expression, - STATE(1263), 1, + STATE(1259), 1, sym__maybe_tuple_expression, + STATE(1262), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(123), 2, + STATE(360), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(386), 2, sym_record, sym_record_update, - ACTIONS(477), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(368), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(940), 9, + STATE(616), 11, + sym__expression, + sym_binary_expression, sym__expression_unit, sym_todo, sym_list, @@ -25006,73 +24954,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [23832] = 29, + [23728] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(281), 1, + ACTIONS(479), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(483), 1, anon_sym_POUND, - ACTIONS(287), 1, + ACTIONS(485), 1, anon_sym_LBRACK, - ACTIONS(289), 1, + ACTIONS(487), 1, anon_sym_LT_LT, - ACTIONS(291), 1, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(491), 1, anon_sym_fn, - ACTIONS(295), 1, + ACTIONS(495), 1, anon_sym_todo, - ACTIONS(299), 1, + ACTIONS(497), 1, anon_sym_case, - ACTIONS(301), 1, + ACTIONS(499), 1, anon_sym_let, - ACTIONS(303), 1, + ACTIONS(501), 1, anon_sym_assert, - ACTIONS(305), 1, + ACTIONS(503), 1, anon_sym_BANG, - ACTIONS(307), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(319), 1, - sym__upname, - ACTIONS(709), 1, + ACTIONS(513), 1, sym__name, + ACTIONS(515), 1, + sym__upname, ACTIONS(966), 1, sym_float, - STATE(375), 1, + STATE(141), 1, sym_identifier, - STATE(388), 1, + STATE(174), 1, sym_anonymous_function, - STATE(397), 1, + STATE(175), 1, sym_tuple, - STATE(1128), 1, + STATE(1118), 1, sym__maybe_function_expression, - STATE(1195), 1, + STATE(1232), 1, sym__maybe_record_expression, - STATE(1247), 1, + STATE(1292), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(357), 2, + STATE(123), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(398), 2, + STATE(178), 2, sym_record, sym_record_update, - ACTIONS(311), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, + STATE(140), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(609), 11, + STATE(284), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -25084,73 +25032,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [23939] = 29, + [23835] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(281), 1, + ACTIONS(479), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(483), 1, anon_sym_POUND, - ACTIONS(287), 1, + ACTIONS(485), 1, anon_sym_LBRACK, - ACTIONS(289), 1, + ACTIONS(487), 1, anon_sym_LT_LT, - ACTIONS(291), 1, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(491), 1, anon_sym_fn, - ACTIONS(295), 1, + ACTIONS(495), 1, anon_sym_todo, - ACTIONS(299), 1, + ACTIONS(497), 1, anon_sym_case, - ACTIONS(301), 1, + ACTIONS(499), 1, anon_sym_let, - ACTIONS(303), 1, + ACTIONS(501), 1, anon_sym_assert, - ACTIONS(305), 1, + ACTIONS(503), 1, anon_sym_BANG, - ACTIONS(307), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(319), 1, - sym__upname, - ACTIONS(709), 1, + ACTIONS(513), 1, sym__name, + ACTIONS(515), 1, + sym__upname, ACTIONS(968), 1, sym_float, - STATE(375), 1, + STATE(141), 1, sym_identifier, - STATE(388), 1, + STATE(174), 1, sym_anonymous_function, - STATE(397), 1, + STATE(175), 1, sym_tuple, - STATE(1128), 1, + STATE(1118), 1, sym__maybe_function_expression, - STATE(1195), 1, + STATE(1232), 1, sym__maybe_record_expression, - STATE(1247), 1, + STATE(1292), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(357), 2, + STATE(123), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(398), 2, + STATE(178), 2, sym_record, sym_record_update, - ACTIONS(311), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, + STATE(140), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(597), 11, + STATE(280), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -25162,56 +25110,52 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [24046] = 31, + [23942] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(479), 1, anon_sym_LBRACE, - ACTIONS(451), 1, + ACTIONS(483), 1, anon_sym_POUND, - ACTIONS(453), 1, + ACTIONS(485), 1, anon_sym_LBRACK, - ACTIONS(455), 1, + ACTIONS(487), 1, anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(459), 1, + ACTIONS(491), 1, anon_sym_fn, - ACTIONS(463), 1, + ACTIONS(495), 1, anon_sym_todo, - ACTIONS(465), 1, + ACTIONS(497), 1, anon_sym_case, - ACTIONS(473), 1, + ACTIONS(499), 1, + anon_sym_let, + ACTIONS(501), 1, + anon_sym_assert, + ACTIONS(503), 1, + anon_sym_BANG, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(481), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(515), 1, sym__upname, - ACTIONS(799), 1, - anon_sym_let, - ACTIONS(801), 1, - anon_sym_assert, - ACTIONS(803), 1, - anon_sym_BANG, - ACTIONS(805), 1, - sym_float, ACTIONS(970), 1, - anon_sym_GT_GT, - STATE(142), 1, + sym_float, + STATE(141), 1, sym_identifier, - STATE(170), 1, - sym_tuple, - STATE(171), 1, + STATE(174), 1, sym_anonymous_function, - STATE(955), 1, - sym_expression_bit_string_segment, - STATE(1101), 1, + STATE(175), 1, + sym_tuple, + STATE(1118), 1, sym__maybe_function_expression, - STATE(1211), 1, + STATE(1232), 1, sym__maybe_record_expression, - STATE(1263), 1, + STATE(1292), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -25219,20 +25163,22 @@ static const uint16_t ts_small_parse_table[] = { STATE(123), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(178), 2, sym_record, sym_record_update, - ACTIONS(477), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(140), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(940), 9, + STATE(282), 11, + sym__expression, + sym_binary_expression, sym__expression_unit, sym_todo, sym_list, @@ -25242,7 +25188,7 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [24157] = 29, + [24049] = 29, ACTIONS(3), 1, sym_module_comment, ACTIONS(11), 1, @@ -25277,17 +25223,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, ACTIONS(972), 1, sym_float, - STATE(25), 1, + STATE(27), 1, sym_identifier, + STATE(29), 1, + sym_tuple, STATE(31), 1, sym_anonymous_function, - STATE(40), 1, - sym_tuple, - STATE(1131), 1, + STATE(1145), 1, sym__maybe_function_expression, - STATE(1241), 1, + STATE(1265), 1, sym__maybe_record_expression, - STATE(1242), 1, + STATE(1267), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -25295,7 +25241,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(6), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(33), 2, + STATE(34), 2, sym_record, sym_record_update, ACTIONS(51), 3, @@ -25308,7 +25254,7 @@ static const uint16_t ts_small_parse_table[] = { sym_tuple_access, sym_field_access, sym_function_call, - STATE(88), 11, + STATE(62), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -25320,73 +25266,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [24264] = 29, + [24156] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(281), 1, + ACTIONS(479), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(483), 1, anon_sym_POUND, - ACTIONS(287), 1, + ACTIONS(485), 1, anon_sym_LBRACK, - ACTIONS(289), 1, + ACTIONS(487), 1, anon_sym_LT_LT, - ACTIONS(291), 1, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(491), 1, anon_sym_fn, - ACTIONS(295), 1, + ACTIONS(495), 1, anon_sym_todo, - ACTIONS(299), 1, + ACTIONS(497), 1, anon_sym_case, - ACTIONS(301), 1, + ACTIONS(499), 1, anon_sym_let, - ACTIONS(303), 1, + ACTIONS(501), 1, anon_sym_assert, - ACTIONS(305), 1, + ACTIONS(503), 1, anon_sym_BANG, - ACTIONS(307), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(319), 1, - sym__upname, - ACTIONS(709), 1, + ACTIONS(513), 1, sym__name, + ACTIONS(515), 1, + sym__upname, ACTIONS(974), 1, sym_float, - STATE(375), 1, + STATE(141), 1, sym_identifier, - STATE(388), 1, + STATE(174), 1, sym_anonymous_function, - STATE(397), 1, + STATE(175), 1, sym_tuple, - STATE(1128), 1, + STATE(1118), 1, sym__maybe_function_expression, - STATE(1195), 1, + STATE(1232), 1, sym__maybe_record_expression, - STATE(1247), 1, + STATE(1292), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(357), 2, + STATE(123), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(398), 2, + STATE(178), 2, sym_record, sym_record_update, - ACTIONS(311), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, + STATE(140), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(428), 11, + STATE(291), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -25398,56 +25344,130 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [24371] = 31, + [24263] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(479), 1, anon_sym_LBRACE, - ACTIONS(451), 1, + ACTIONS(483), 1, anon_sym_POUND, - ACTIONS(453), 1, + ACTIONS(485), 1, anon_sym_LBRACK, - ACTIONS(455), 1, + ACTIONS(487), 1, anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(459), 1, + ACTIONS(491), 1, anon_sym_fn, - ACTIONS(463), 1, + ACTIONS(495), 1, anon_sym_todo, - ACTIONS(465), 1, + ACTIONS(497), 1, anon_sym_case, - ACTIONS(473), 1, + ACTIONS(499), 1, + anon_sym_let, + ACTIONS(501), 1, + anon_sym_assert, + ACTIONS(503), 1, + anon_sym_BANG, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(481), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(515), 1, sym__upname, - ACTIONS(799), 1, - anon_sym_let, - ACTIONS(801), 1, - anon_sym_assert, - ACTIONS(803), 1, - anon_sym_BANG, - ACTIONS(805), 1, - sym_float, ACTIONS(976), 1, - anon_sym_GT_GT, - STATE(142), 1, + sym_float, + STATE(141), 1, sym_identifier, - STATE(170), 1, + STATE(174), 1, + sym_anonymous_function, + STATE(175), 1, sym_tuple, - STATE(171), 1, + STATE(1118), 1, + sym__maybe_function_expression, + STATE(1232), 1, + sym__maybe_record_expression, + STATE(1292), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(123), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(178), 2, + sym_record, + sym_record_update, + ACTIONS(509), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(140), 5, + sym_expression_group, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(290), 11, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_list, + sym__expression_bit_string, + sym_let, + sym_assert, + sym_negation, + sym_string, + sym_integer, + [24370] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(479), 1, + anon_sym_LBRACE, + ACTIONS(483), 1, + anon_sym_POUND, + ACTIONS(485), 1, + anon_sym_LBRACK, + ACTIONS(487), 1, + anon_sym_LT_LT, + ACTIONS(489), 1, + anon_sym_DASH, + ACTIONS(491), 1, + anon_sym_fn, + ACTIONS(495), 1, + anon_sym_todo, + ACTIONS(497), 1, + anon_sym_case, + ACTIONS(499), 1, + anon_sym_let, + ACTIONS(501), 1, + anon_sym_assert, + ACTIONS(503), 1, + anon_sym_BANG, + ACTIONS(505), 1, + anon_sym_DQUOTE, + ACTIONS(511), 1, + sym__decimal, + ACTIONS(513), 1, + sym__name, + ACTIONS(515), 1, + sym__upname, + ACTIONS(978), 1, + sym_float, + STATE(141), 1, + sym_identifier, + STATE(174), 1, sym_anonymous_function, - STATE(1101), 1, + STATE(175), 1, + sym_tuple, + STATE(1118), 1, sym__maybe_function_expression, - STATE(1183), 1, - sym_expression_bit_string_segment, - STATE(1211), 1, + STATE(1232), 1, sym__maybe_record_expression, - STATE(1263), 1, + STATE(1292), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -25455,20 +25475,22 @@ static const uint16_t ts_small_parse_table[] = { STATE(123), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(178), 2, sym_record, sym_record_update, - ACTIONS(477), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(140), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(940), 9, + STATE(283), 11, + sym__expression, + sym_binary_expression, sym__expression_unit, sym_todo, sym_list, @@ -25478,73 +25500,151 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [24482] = 29, + [24477] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(281), 1, + ACTIONS(260), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(262), 1, anon_sym_POUND, - ACTIONS(287), 1, + ACTIONS(266), 1, anon_sym_LBRACK, - ACTIONS(289), 1, + ACTIONS(268), 1, anon_sym_LT_LT, - ACTIONS(291), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(272), 1, anon_sym_fn, - ACTIONS(295), 1, + ACTIONS(274), 1, anon_sym_todo, - ACTIONS(299), 1, + ACTIONS(278), 1, anon_sym_case, - ACTIONS(301), 1, + ACTIONS(280), 1, anon_sym_let, - ACTIONS(303), 1, + ACTIONS(282), 1, anon_sym_assert, - ACTIONS(305), 1, + ACTIONS(284), 1, anon_sym_BANG, - ACTIONS(307), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(319), 1, + ACTIONS(298), 1, sym__upname, ACTIONS(709), 1, sym__name, - ACTIONS(978), 1, + ACTIONS(980), 1, sym_float, - STATE(375), 1, + STATE(366), 1, sym_identifier, + STATE(387), 1, + sym_tuple, STATE(388), 1, sym_anonymous_function, - STATE(397), 1, - sym_tuple, - STATE(1128), 1, + STATE(1149), 1, sym__maybe_function_expression, - STATE(1195), 1, + STATE(1259), 1, + sym__maybe_tuple_expression, + STATE(1262), 1, sym__maybe_record_expression, - STATE(1247), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(360), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(386), 2, + sym_record, + sym_record_update, + ACTIONS(290), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(368), 5, + sym_expression_group, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(618), 11, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_list, + sym__expression_bit_string, + sym_let, + sym_assert, + sym_negation, + sym_string, + sym_integer, + [24584] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(819), 1, + anon_sym_LBRACE, + ACTIONS(821), 1, + anon_sym_POUND, + ACTIONS(823), 1, + anon_sym_LBRACK, + ACTIONS(825), 1, + anon_sym_LT_LT, + ACTIONS(827), 1, + anon_sym_DASH, + ACTIONS(829), 1, + anon_sym_fn, + ACTIONS(831), 1, + anon_sym_todo, + ACTIONS(833), 1, + anon_sym_case, + ACTIONS(835), 1, + anon_sym_let, + ACTIONS(837), 1, + anon_sym_assert, + ACTIONS(839), 1, + anon_sym_BANG, + ACTIONS(841), 1, + anon_sym_DQUOTE, + ACTIONS(847), 1, + sym__decimal, + ACTIONS(849), 1, + sym__name, + ACTIONS(851), 1, + sym__upname, + ACTIONS(982), 1, + sym_float, + STATE(305), 1, + sym_identifier, + STATE(321), 1, + sym_tuple, + STATE(327), 1, + sym_anonymous_function, + STATE(1189), 1, + sym__maybe_function_expression, + STATE(1218), 1, sym__maybe_tuple_expression, + STATE(1273), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(357), 2, + STATE(300), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(398), 2, + STATE(320), 2, sym_record, sym_record_update, - ACTIONS(311), 3, + ACTIONS(845), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, + STATE(303), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(434), 11, + STATE(351), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -25556,13 +25656,13 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [24589] = 4, + [24691] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(525), 17, + ACTIONS(589), 17, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -25580,7 +25680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(523), 28, + ACTIONS(587), 28, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -25609,73 +25709,73 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [24646] = 29, + [24748] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(809), 1, - anon_sym_LBRACE, - ACTIONS(811), 1, + ACTIONS(262), 1, anon_sym_POUND, - ACTIONS(813), 1, + ACTIONS(266), 1, anon_sym_LBRACK, - ACTIONS(815), 1, + ACTIONS(268), 1, anon_sym_LT_LT, - ACTIONS(817), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(819), 1, + ACTIONS(272), 1, anon_sym_fn, - ACTIONS(821), 1, + ACTIONS(274), 1, anon_sym_todo, - ACTIONS(823), 1, + ACTIONS(278), 1, anon_sym_case, - ACTIONS(825), 1, + ACTIONS(280), 1, anon_sym_let, - ACTIONS(827), 1, + ACTIONS(282), 1, anon_sym_assert, - ACTIONS(829), 1, + ACTIONS(284), 1, anon_sym_BANG, - ACTIONS(831), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(837), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(839), 1, - sym__name, - ACTIONS(841), 1, + ACTIONS(298), 1, sym__upname, - ACTIONS(980), 1, + ACTIONS(707), 1, sym_float, - STATE(303), 1, + ACTIONS(709), 1, + sym__name, + ACTIONS(984), 1, + anon_sym_LBRACE, + STATE(366), 1, sym_identifier, - STATE(319), 1, - sym_anonymous_function, - STATE(327), 1, + STATE(387), 1, sym_tuple, - STATE(1168), 1, + STATE(388), 1, + sym_anonymous_function, + STATE(1149), 1, sym__maybe_function_expression, - STATE(1196), 1, + STATE(1259), 1, sym__maybe_tuple_expression, - STATE(1252), 1, + STATE(1262), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(299), 2, + STATE(360), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(324), 2, + STATE(386), 2, sym_record, sym_record_update, - ACTIONS(835), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(301), 5, + STATE(368), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(337), 11, + STATE(523), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -25687,7 +25787,113 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [24753] = 29, + [24855] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(585), 17, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_fn, + anon_sym_try, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(583), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [24912] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(581), 17, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_fn, + anon_sym_try, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(579), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [24969] = 29, ACTIONS(3), 1, sym_module_comment, ACTIONS(11), 1, @@ -25720,19 +25926,19 @@ static const uint16_t ts_small_parse_table[] = { sym__upname, ACTIONS(853), 1, anon_sym_fn, - ACTIONS(982), 1, + ACTIONS(987), 1, sym_float, - STATE(25), 1, + STATE(27), 1, sym_identifier, + STATE(29), 1, + sym_tuple, STATE(31), 1, sym_anonymous_function, - STATE(40), 1, - sym_tuple, - STATE(1131), 1, + STATE(1145), 1, sym__maybe_function_expression, - STATE(1241), 1, + STATE(1265), 1, sym__maybe_record_expression, - STATE(1242), 1, + STATE(1267), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -25740,7 +25946,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(6), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(33), 2, + STATE(34), 2, sym_record, sym_record_update, ACTIONS(51), 3, @@ -25753,7 +25959,7 @@ static const uint16_t ts_small_parse_table[] = { sym_tuple_access, sym_field_access, sym_function_call, - STATE(109), 11, + STATE(104), 11, sym__expression, sym_binary_expression, sym__expression_unit, @@ -25765,75 +25971,75 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [24860] = 29, + [25076] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(281), 1, + ACTIONS(479), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(483), 1, anon_sym_POUND, - ACTIONS(287), 1, + ACTIONS(485), 1, anon_sym_LBRACK, - ACTIONS(289), 1, + ACTIONS(487), 1, anon_sym_LT_LT, - ACTIONS(291), 1, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(491), 1, anon_sym_fn, - ACTIONS(295), 1, + ACTIONS(495), 1, anon_sym_todo, - ACTIONS(299), 1, + ACTIONS(497), 1, anon_sym_case, - ACTIONS(301), 1, - anon_sym_let, - ACTIONS(303), 1, - anon_sym_assert, - ACTIONS(305), 1, - anon_sym_BANG, - ACTIONS(307), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(319), 1, - sym__upname, - ACTIONS(709), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(984), 1, + ACTIONS(515), 1, + sym__upname, + ACTIONS(801), 1, + anon_sym_let, + ACTIONS(803), 1, + anon_sym_assert, + ACTIONS(805), 1, + anon_sym_BANG, + ACTIONS(807), 1, sym_float, - STATE(375), 1, + STATE(141), 1, sym_identifier, - STATE(388), 1, + STATE(174), 1, sym_anonymous_function, - STATE(397), 1, + STATE(175), 1, sym_tuple, - STATE(1128), 1, + STATE(1118), 1, sym__maybe_function_expression, - STATE(1195), 1, + STATE(1132), 1, + sym_expression_bit_string_segment, + STATE(1232), 1, sym__maybe_record_expression, - STATE(1247), 1, + STATE(1292), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(357), 2, + STATE(123), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(398), 2, + STATE(178), 2, sym_record, sym_record_update, - ACTIONS(311), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, + STATE(140), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(437), 11, - sym__expression, - sym_binary_expression, + STATE(952), 9, sym__expression_unit, sym_todo, sym_list, @@ -25843,75 +26049,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [24967] = 29, + [25184] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(283), 1, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(17), 1, anon_sym_POUND, - ACTIONS(287), 1, + ACTIONS(19), 1, anon_sym_LBRACK, - ACTIONS(289), 1, + ACTIONS(21), 1, anon_sym_LT_LT, - ACTIONS(291), 1, + ACTIONS(23), 1, anon_sym_DASH, - ACTIONS(293), 1, - anon_sym_fn, - ACTIONS(295), 1, + ACTIONS(33), 1, anon_sym_todo, - ACTIONS(299), 1, + ACTIONS(35), 1, anon_sym_case, - ACTIONS(301), 1, + ACTIONS(37), 1, anon_sym_let, - ACTIONS(303), 1, + ACTIONS(39), 1, anon_sym_assert, - ACTIONS(305), 1, + ACTIONS(41), 1, anon_sym_BANG, - ACTIONS(307), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(53), 1, sym__decimal, - ACTIONS(319), 1, + ACTIONS(55), 1, + sym__name, + ACTIONS(57), 1, sym__upname, - ACTIONS(707), 1, + ACTIONS(853), 1, + anon_sym_fn, + ACTIONS(989), 1, sym_float, - ACTIONS(709), 1, - sym__name, - ACTIONS(986), 1, - anon_sym_LBRACE, - STATE(375), 1, + STATE(27), 1, sym_identifier, - STATE(388), 1, - sym_anonymous_function, - STATE(397), 1, + STATE(29), 1, sym_tuple, - STATE(1128), 1, + STATE(31), 1, + sym_anonymous_function, + STATE(1145), 1, sym__maybe_function_expression, - STATE(1195), 1, + STATE(1265), 1, sym__maybe_record_expression, - STATE(1247), 1, + STATE(1267), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(357), 2, + STATE(6), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(398), 2, + STATE(34), 2, sym_record, sym_record_update, - ACTIONS(311), 3, + ACTIONS(51), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, + STATE(8), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(522), 11, - sym__expression, - sym_binary_expression, + STATE(90), 9, sym__expression_unit, sym_todo, sym_list, @@ -25921,75 +26125,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [25074] = 30, + [25289] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(819), 1, anon_sym_LBRACE, - ACTIONS(451), 1, + ACTIONS(821), 1, anon_sym_POUND, - ACTIONS(453), 1, + ACTIONS(823), 1, anon_sym_LBRACK, - ACTIONS(455), 1, + ACTIONS(825), 1, anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(827), 1, anon_sym_DASH, - ACTIONS(459), 1, + ACTIONS(829), 1, anon_sym_fn, - ACTIONS(463), 1, + ACTIONS(831), 1, anon_sym_todo, - ACTIONS(465), 1, + ACTIONS(833), 1, anon_sym_case, - ACTIONS(473), 1, + ACTIONS(835), 1, + anon_sym_let, + ACTIONS(837), 1, + anon_sym_assert, + ACTIONS(839), 1, + anon_sym_BANG, + ACTIONS(841), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(847), 1, sym__decimal, - ACTIONS(481), 1, + ACTIONS(849), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(851), 1, sym__upname, - ACTIONS(799), 1, - anon_sym_let, - ACTIONS(801), 1, - anon_sym_assert, - ACTIONS(803), 1, - anon_sym_BANG, - ACTIONS(805), 1, + ACTIONS(991), 1, sym_float, - STATE(142), 1, + STATE(305), 1, sym_identifier, - STATE(170), 1, + STATE(321), 1, sym_tuple, - STATE(171), 1, + STATE(327), 1, sym_anonymous_function, - STATE(1101), 1, + STATE(1189), 1, sym__maybe_function_expression, - STATE(1183), 1, - sym_expression_bit_string_segment, - STATE(1211), 1, - sym__maybe_record_expression, - STATE(1263), 1, + STATE(1218), 1, sym__maybe_tuple_expression, + STATE(1273), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(123), 2, + STATE(300), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(320), 2, sym_record, sym_record_update, - ACTIONS(477), 3, + ACTIONS(845), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(303), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(940), 9, + STATE(344), 9, sym__expression_unit, sym_todo, sym_list, @@ -25999,73 +26201,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [25182] = 29, + [25394] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(809), 1, + ACTIONS(260), 1, anon_sym_LBRACE, - ACTIONS(811), 1, + ACTIONS(262), 1, anon_sym_POUND, - ACTIONS(813), 1, + ACTIONS(266), 1, anon_sym_LBRACK, - ACTIONS(815), 1, + ACTIONS(268), 1, anon_sym_LT_LT, - ACTIONS(817), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(819), 1, + ACTIONS(272), 1, anon_sym_fn, - ACTIONS(821), 1, + ACTIONS(274), 1, anon_sym_todo, - ACTIONS(823), 1, + ACTIONS(278), 1, anon_sym_case, - ACTIONS(825), 1, + ACTIONS(280), 1, anon_sym_let, - ACTIONS(827), 1, + ACTIONS(282), 1, anon_sym_assert, - ACTIONS(829), 1, + ACTIONS(284), 1, anon_sym_BANG, - ACTIONS(831), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(837), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(839), 1, - sym__name, - ACTIONS(841), 1, + ACTIONS(298), 1, sym__upname, - ACTIONS(989), 1, + ACTIONS(709), 1, + sym__name, + ACTIONS(993), 1, sym_float, - STATE(303), 1, + STATE(366), 1, sym_identifier, - STATE(319), 1, - sym_anonymous_function, - STATE(327), 1, + STATE(387), 1, sym_tuple, - STATE(1168), 1, + STATE(388), 1, + sym_anonymous_function, + STATE(1149), 1, sym__maybe_function_expression, - STATE(1196), 1, + STATE(1259), 1, sym__maybe_tuple_expression, - STATE(1252), 1, + STATE(1262), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(299), 2, + STATE(360), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(324), 2, + STATE(386), 2, sym_record, sym_record_update, - ACTIONS(835), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(301), 5, + STATE(368), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(339), 9, + STATE(439), 9, sym__expression_unit, sym_todo, sym_list, @@ -26075,52 +26277,52 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [25287] = 29, + [25499] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(479), 1, anon_sym_LBRACE, - ACTIONS(451), 1, + ACTIONS(483), 1, anon_sym_POUND, - ACTIONS(453), 1, + ACTIONS(485), 1, anon_sym_LBRACK, - ACTIONS(455), 1, + ACTIONS(487), 1, anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(459), 1, + ACTIONS(491), 1, anon_sym_fn, - ACTIONS(463), 1, + ACTIONS(495), 1, anon_sym_todo, - ACTIONS(465), 1, + ACTIONS(497), 1, anon_sym_case, - ACTIONS(473), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(481), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(515), 1, sym__upname, - ACTIONS(799), 1, - anon_sym_let, ACTIONS(801), 1, - anon_sym_assert, + anon_sym_let, ACTIONS(803), 1, + anon_sym_assert, + ACTIONS(805), 1, anon_sym_BANG, - ACTIONS(991), 1, + ACTIONS(995), 1, sym_float, - STATE(142), 1, + STATE(141), 1, sym_identifier, - STATE(170), 1, - sym_tuple, - STATE(171), 1, + STATE(174), 1, sym_anonymous_function, - STATE(1101), 1, + STATE(175), 1, + sym_tuple, + STATE(1118), 1, sym__maybe_function_expression, - STATE(1211), 1, + STATE(1232), 1, sym__maybe_record_expression, - STATE(1263), 1, + STATE(1292), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, @@ -26128,20 +26330,20 @@ static const uint16_t ts_small_parse_table[] = { STATE(123), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(169), 2, + STATE(178), 2, sym_record, sym_record_update, - ACTIONS(477), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(145), 5, + STATE(140), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(238), 9, + STATE(269), 9, sym__expression_unit, sym_todo, sym_list, @@ -26151,73 +26353,73 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [25392] = 29, + [25604] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(281), 1, + ACTIONS(479), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(483), 1, anon_sym_POUND, - ACTIONS(287), 1, + ACTIONS(485), 1, anon_sym_LBRACK, - ACTIONS(289), 1, + ACTIONS(487), 1, anon_sym_LT_LT, - ACTIONS(291), 1, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(293), 1, + ACTIONS(491), 1, anon_sym_fn, - ACTIONS(295), 1, + ACTIONS(495), 1, anon_sym_todo, - ACTIONS(299), 1, + ACTIONS(497), 1, anon_sym_case, - ACTIONS(301), 1, + ACTIONS(499), 1, anon_sym_let, - ACTIONS(303), 1, + ACTIONS(501), 1, anon_sym_assert, - ACTIONS(305), 1, + ACTIONS(503), 1, anon_sym_BANG, - ACTIONS(307), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(319), 1, - sym__upname, - ACTIONS(709), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(993), 1, + ACTIONS(515), 1, + sym__upname, + ACTIONS(995), 1, sym_float, - STATE(375), 1, + STATE(141), 1, sym_identifier, - STATE(388), 1, + STATE(174), 1, sym_anonymous_function, - STATE(397), 1, + STATE(175), 1, sym_tuple, - STATE(1128), 1, + STATE(1118), 1, sym__maybe_function_expression, - STATE(1195), 1, + STATE(1232), 1, sym__maybe_record_expression, - STATE(1247), 1, + STATE(1292), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(357), 2, + STATE(123), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(398), 2, + STATE(178), 2, sym_record, sym_record_update, - ACTIONS(311), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, + STATE(140), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(435), 9, + STATE(269), 9, sym__expression_unit, sym_todo, sym_list, @@ -26227,175 +26429,104 @@ static const uint16_t ts_small_parse_table[] = { sym_negation, sym_string, sym_integer, - [25497] = 29, + [25709] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, - anon_sym_LBRACE, - ACTIONS(451), 1, - anon_sym_POUND, - ACTIONS(453), 1, - anon_sym_LBRACK, - ACTIONS(455), 1, - anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(1005), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(997), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(999), 2, anon_sym_DASH, - ACTIONS(459), 1, + anon_sym_PLUS, + ACTIONS(1007), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1009), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(1001), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1003), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(445), 9, anon_sym_fn, - ACTIONS(463), 1, + anon_sym_try, anon_sym_todo, - ACTIONS(465), 1, anon_sym_case, - ACTIONS(467), 1, anon_sym_let, - ACTIONS(469), 1, anon_sym_assert, - ACTIONS(471), 1, anon_sym_BANG, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, sym__decimal, - ACTIONS(481), 1, sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(991), 1, - sym_float, - STATE(142), 1, - sym_identifier, - STATE(170), 1, - sym_tuple, - STATE(171), 1, - sym_anonymous_function, - STATE(1101), 1, - sym__maybe_function_expression, - STATE(1211), 1, - sym__maybe_record_expression, - STATE(1263), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(123), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(169), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(145), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(238), 9, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [25602] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(11), 1, + ACTIONS(443), 15, anon_sym_LBRACE, - ACTIONS(17), 1, + anon_sym_RBRACE, anon_sym_POUND, - ACTIONS(19), 1, anon_sym_LBRACK, - ACTIONS(21), 1, anon_sym_LT_LT, - ACTIONS(23), 1, - anon_sym_DASH, - ACTIONS(33), 1, - anon_sym_todo, - ACTIONS(35), 1, - anon_sym_case, - ACTIONS(37), 1, - anon_sym_let, - ACTIONS(39), 1, - anon_sym_assert, - ACTIONS(41), 1, - anon_sym_BANG, - ACTIONS(47), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_DQUOTE, - ACTIONS(53), 1, - sym__decimal, - ACTIONS(55), 1, - sym__name, - ACTIONS(57), 1, - sym__upname, - ACTIONS(853), 1, - anon_sym_fn, - ACTIONS(995), 1, sym_float, - STATE(25), 1, - sym_identifier, - STATE(31), 1, - sym_anonymous_function, - STATE(40), 1, - sym_tuple, - STATE(1131), 1, - sym__maybe_function_expression, - STATE(1241), 1, - sym__maybe_record_expression, - STATE(1242), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(6), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(33), 2, - sym_record, - sym_record_update, - ACTIONS(51), 3, sym__hex, sym__octal, sym__binary, - STATE(8), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(53), 9, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [25707] = 4, + sym__upname, + [25777] = 14, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1005), 1, + anon_sym_PIPE_GT, + ACTIONS(1011), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1013), 1, + anon_sym_AMP_AMP, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(487), 17, + ACTIONS(997), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(999), 2, anon_sym_DASH, - anon_sym_fn, - anon_sym_try, + anon_sym_PLUS, + ACTIONS(1007), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1015), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1009), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(1001), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(1003), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(461), 9, + anon_sym_fn, + anon_sym_try, anon_sym_todo, anon_sym_case, anon_sym_let, @@ -26403,40 +26534,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(485), 25, + ACTIONS(459), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [25761] = 14, + [25851] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1001), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1003), 1, - anon_sym_AMP_AMP, - ACTIONS(1011), 1, + ACTIONS(1005), 1, anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, @@ -26447,27 +26560,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(999), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1005), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1013), 2, + ACTIONS(1007), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1015), 3, + ACTIONS(1015), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1009), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(1007), 4, + ACTIONS(1001), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1009), 4, + ACTIONS(1003), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(655), 9, + ACTIONS(445), 9, anon_sym_fn, anon_sym_try, anon_sym_todo, @@ -26477,32 +26590,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(653), 11, + ACTIONS(443), 13, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [25835] = 6, + [25921] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(997), 2, + ACTIONS(445), 17, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1015), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(487), 15, anon_sym_DASH, anon_sym_fn, anon_sym_try, @@ -26511,6 +26620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_GT_EQ, anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, anon_sym_case, anon_sym_let, @@ -26518,7 +26628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(485), 22, + ACTIONS(443), 25, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, @@ -26535,18 +26645,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_GT, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [25893] = 13, + [25975] = 9, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1003), 1, - anon_sym_AMP_AMP, - ACTIONS(1011), 1, + ACTIONS(1005), 1, anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, @@ -26557,29 +26668,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(999), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1005), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1013), 2, + ACTIONS(1007), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1015), 3, + ACTIONS(1009), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(1007), 4, + ACTIONS(445), 13, + anon_sym_fn, + anon_sym_try, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1009), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(487), 9, - anon_sym_fn, - anon_sym_try, anon_sym_todo, anon_sym_case, anon_sym_let, @@ -26587,24 +26689,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(485), 12, + ACTIONS(443), 19, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [25965] = 12, + [26039] = 8, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1011), 1, - anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, @@ -26614,29 +26721,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(999), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1005), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1013), 2, + ACTIONS(1007), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1015), 3, + ACTIONS(1009), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(1007), 4, + ACTIONS(445), 13, + anon_sym_fn, + anon_sym_try, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1009), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(487), 9, - anon_sym_fn, - anon_sym_try, anon_sym_todo, anon_sym_case, anon_sym_let, @@ -26644,7 +26742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(485), 13, + ACTIONS(443), 20, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, @@ -26652,17 +26750,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [26035] = 11, + [26101] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1011), 1, + ACTIONS(1005), 1, anon_sym_PIPE_GT, + ACTIONS(1011), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1013), 1, + anon_sym_AMP_AMP, ACTIONS(5), 2, sym_statement_comment, sym_comment, @@ -26672,24 +26781,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(999), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1013), 2, + ACTIONS(1007), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1015), 3, + ACTIONS(1015), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1009), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(1007), 4, + ACTIONS(1001), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1009), 4, + ACTIONS(1003), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(487), 9, + ACTIONS(617), 9, anon_sym_fn, anon_sym_try, anon_sym_todo, @@ -26699,27 +26811,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(485), 15, + ACTIONS(615), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [26103] = 9, + [26175] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1011), 1, + ACTIONS(1005), 1, anon_sym_PIPE_GT, + ACTIONS(1011), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1013), 1, + anon_sym_AMP_AMP, ACTIONS(5), 2, sym_statement_comment, sym_comment, @@ -26729,73 +26841,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(999), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1013), 2, + ACTIONS(1007), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1015), 3, + ACTIONS(1015), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1009), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(487), 13, - anon_sym_fn, - anon_sym_try, + ACTIONS(1001), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(485), 19, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(1003), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [26167] = 8, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(997), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(999), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1013), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1015), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(487), 13, + ACTIONS(531), 9, anon_sym_fn, anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, anon_sym_todo, anon_sym_case, anon_sym_let, @@ -26803,36 +26871,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(485), 20, + ACTIONS(529), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [26229] = 14, + [26249] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1001), 1, + ACTIONS(1005), 1, + anon_sym_PIPE_GT, + ACTIONS(1011), 1, anon_sym_PIPE_PIPE, - ACTIONS(1003), 1, + ACTIONS(1013), 1, anon_sym_AMP_AMP, - ACTIONS(1011), 1, - anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, @@ -26842,27 +26901,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(999), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1005), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1013), 2, + ACTIONS(1007), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1015), 3, + ACTIONS(1015), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1009), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(1007), 4, + ACTIONS(1001), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1009), 4, + ACTIONS(1003), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(531), 9, + ACTIONS(525), 9, anon_sym_fn, anon_sym_try, anon_sym_todo, @@ -26872,7 +26931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(529), 11, + ACTIONS(523), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, @@ -26884,15 +26943,15 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [26303] = 14, + [26323] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1001), 1, + ACTIONS(1005), 1, + anon_sym_PIPE_GT, + ACTIONS(1011), 1, anon_sym_PIPE_PIPE, - ACTIONS(1003), 1, + ACTIONS(1013), 1, anon_sym_AMP_AMP, - ACTIONS(1011), 1, - anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, @@ -26902,27 +26961,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(999), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1005), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1013), 2, + ACTIONS(1007), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1015), 3, + ACTIONS(1015), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1009), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(1007), 4, + ACTIONS(1001), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1009), 4, + ACTIONS(1003), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(681), 9, + ACTIONS(593), 9, anon_sym_fn, anon_sym_try, anon_sym_todo, @@ -26932,7 +26991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(679), 11, + ACTIONS(591), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, @@ -26944,47 +27003,28 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [26377] = 14, + [26397] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1001), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1003), 1, - anon_sym_AMP_AMP, - ACTIONS(1011), 1, - anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, ACTIONS(997), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(999), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1005), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1013), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1015), 3, + ACTIONS(1009), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(1007), 4, + ACTIONS(445), 15, + anon_sym_DASH, + anon_sym_fn, + anon_sym_try, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1009), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(575), 9, - anon_sym_fn, - anon_sym_try, + anon_sym_PLUS, anon_sym_todo, anon_sym_case, anon_sym_let, @@ -26992,27 +27032,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(573), 11, + ACTIONS(443), 22, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [26451] = 14, + [26455] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1001), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1003), 1, - anon_sym_AMP_AMP, - ACTIONS(1011), 1, + ACTIONS(1005), 1, anon_sym_PIPE_GT, + ACTIONS(1013), 1, + anon_sym_AMP_AMP, ACTIONS(5), 2, sym_statement_comment, sym_comment, @@ -27022,27 +27071,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(999), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1005), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1013), 2, + ACTIONS(1007), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1015), 3, + ACTIONS(1015), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1009), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(1007), 4, + ACTIONS(1001), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1009), 4, + ACTIONS(1003), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(673), 9, + ACTIONS(445), 9, anon_sym_fn, anon_sym_try, anon_sym_todo, @@ -27052,25 +27101,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(671), 11, + ACTIONS(443), 12, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, + anon_sym_PIPE_PIPE, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [26525] = 4, + [26527] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(339), 10, + ACTIONS(363), 10, anon_sym_DOT, anon_sym_SLASH, anon_sym_EQ, @@ -27081,7 +27131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(337), 31, + ACTIONS(361), 31, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -27093,9 +27143,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT_GT, anon_sym_COLON, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -27113,13 +27163,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, sym_visibility_modifier, sym_opacity_modifier, - [26578] = 4, + [26580] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(363), 10, + ACTIONS(323), 10, anon_sym_DOT, anon_sym_SLASH, anon_sym_EQ, @@ -27130,7 +27180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(361), 31, + ACTIONS(321), 31, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -27142,9 +27192,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT_GT, anon_sym_COLON, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -27162,13 +27212,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, sym_visibility_modifier, sym_opacity_modifier, - [26631] = 4, + [26633] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(351), 10, + ACTIONS(367), 10, anon_sym_DOT, anon_sym_SLASH, anon_sym_EQ, @@ -27179,7 +27229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(349), 31, + ACTIONS(365), 31, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -27191,9 +27241,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT_GT, anon_sym_COLON, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -27211,13 +27261,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, sym_visibility_modifier, sym_opacity_modifier, - [26684] = 4, + [26686] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(279), 10, + ACTIONS(315), 10, anon_sym_DOT, anon_sym_SLASH, anon_sym_EQ, @@ -27228,7 +27278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(277), 31, + ACTIONS(313), 31, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -27240,9 +27290,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT_GT, anon_sym_COLON, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -27260,13 +27310,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, sym_visibility_modifier, sym_opacity_modifier, - [26737] = 4, + [26739] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(367), 10, + ACTIONS(343), 10, anon_sym_DOT, anon_sym_SLASH, anon_sym_EQ, @@ -27277,7 +27327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(365), 31, + ACTIONS(341), 31, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -27289,9 +27339,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT_GT, anon_sym_COLON, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -27309,13 +27359,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, sym_visibility_modifier, sym_opacity_modifier, - [26790] = 4, + [26792] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(559), 9, + ACTIONS(599), 9, anon_sym_SLASH, anon_sym_EQ, anon_sym_DASH, @@ -27325,7 +27375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(557), 30, + ACTIONS(597), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -27336,9 +27386,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT_GT, anon_sym_COLON, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -27356,13 +27406,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, sym_visibility_modifier, sym_opacity_modifier, - [26841] = 4, + [26843] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(565), 9, + ACTIONS(453), 9, anon_sym_SLASH, anon_sym_EQ, anon_sym_DASH, @@ -27372,7 +27422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(563), 30, + ACTIONS(451), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -27383,9 +27433,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT_GT, anon_sym_COLON, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -27403,61 +27453,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, sym_visibility_modifier, sym_opacity_modifier, - [26892] = 6, + [26894] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1017), 1, - anon_sym_LPAREN, - STATE(328), 1, - sym_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(256), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(254), 25, - anon_sym_RBRACE, + ACTIONS(355), 9, anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [26946] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(275), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -27466,16 +27469,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(273), 26, + ACTIONS(353), 30, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_POUND, + anon_sym_import, + anon_sym_COMMA, + anon_sym_const, 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_fn, + anon_sym_external, + anon_sym_type, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -27490,66 +27497,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [26995] = 6, + anon_sym_DOT_DOT, + sym_visibility_modifier, + sym_opacity_modifier, + [26945] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(268), 1, - anon_sym_DOT, - ACTIONS(271), 1, + ACTIONS(1017), 1, anon_sym_LPAREN, + STATE(324), 1, + sym_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(266), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(264), 24, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [27048] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(351), 11, + ACTIONS(256), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -27561,58 +27522,10 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(349), 26, + ACTIONS(254), 25, anon_sym_RBRACE, anon_sym_DOT, anon_sym_POUND, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [27097] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(271), 1, - anon_sym_LPAREN, - ACTIONS(1019), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(266), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(264), 24, - anon_sym_RBRACE, - anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, @@ -27635,13 +27548,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [27150] = 4, + [26999] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(279), 11, + ACTIONS(359), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -27653,7 +27566,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(277), 26, + ACTIONS(357), 26, anon_sym_RBRACE, anon_sym_DOT, anon_sym_POUND, @@ -27680,13 +27593,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [27199] = 4, + [27048] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(367), 11, + ACTIONS(383), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -27698,7 +27611,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(365), 26, + ACTIONS(381), 26, anon_sym_RBRACE, anon_sym_DOT, anon_sym_POUND, @@ -27725,58 +27638,17 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [27248] = 4, + [27097] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(339), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(337), 26, - anon_sym_RBRACE, + ACTIONS(304), 1, anon_sym_DOT, - anon_sym_POUND, + ACTIONS(307), 1, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [27297] = 4, - ACTIONS(3), 1, - sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(363), 11, + ACTIONS(302), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -27788,11 +27660,9 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(361), 26, + ACTIONS(300), 24, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, @@ -27815,13 +27685,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [27346] = 4, + [27150] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(355), 11, + ACTIONS(311), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -27833,7 +27703,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(353), 26, + ACTIONS(309), 26, anon_sym_RBRACE, anon_sym_DOT, anon_sym_POUND, @@ -27860,13 +27730,17 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [27395] = 4, + [27199] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(307), 1, + anon_sym_LPAREN, + ACTIONS(1019), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(379), 11, + ACTIONS(302), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -27878,11 +27752,9 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(377), 26, + ACTIONS(300), 24, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, @@ -27905,13 +27777,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [27444] = 4, + [27252] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(323), 11, + ACTIONS(327), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -27923,7 +27795,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(321), 26, + ACTIONS(325), 26, anon_sym_RBRACE, anon_sym_DOT, anon_sym_POUND, @@ -27950,13 +27822,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [27493] = 4, + [27301] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(359), 11, + ACTIONS(331), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -27968,7 +27840,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(357), 26, + ACTIONS(329), 26, anon_sym_RBRACE, anon_sym_DOT, anon_sym_POUND, @@ -27995,13 +27867,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [27542] = 4, + [27350] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(262), 11, + ACTIONS(363), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -28013,7 +27885,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(260), 26, + ACTIONS(361), 26, anon_sym_RBRACE, anon_sym_DOT, anon_sym_POUND, @@ -28040,13 +27912,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [27591] = 4, + [27399] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(335), 11, + ACTIONS(375), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -28058,7 +27930,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(333), 26, + ACTIONS(373), 26, anon_sym_RBRACE, anon_sym_DOT, anon_sym_POUND, @@ -28085,13 +27957,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [27640] = 4, + [27448] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(343), 11, + ACTIONS(323), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -28103,7 +27975,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(341), 26, + ACTIONS(321), 26, anon_sym_RBRACE, anon_sym_DOT, anon_sym_POUND, @@ -28130,13 +28002,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [27689] = 4, + [27497] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(347), 11, + ACTIONS(367), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -28148,7 +28020,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(345), 26, + ACTIONS(365), 26, anon_sym_RBRACE, anon_sym_DOT, anon_sym_POUND, @@ -28175,13 +28047,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [27738] = 4, + [27546] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(375), 11, + ACTIONS(315), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -28193,7 +28065,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(373), 26, + ACTIONS(313), 26, anon_sym_RBRACE, anon_sym_DOT, anon_sym_POUND, @@ -28220,13 +28092,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [27787] = 4, + [27595] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(435), 11, + ACTIONS(347), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -28238,10 +28110,11 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(433), 25, + ACTIONS(345), 26, anon_sym_RBRACE, anon_sym_DOT, anon_sym_POUND, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, @@ -28264,13 +28137,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [27835] = 4, + [27644] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(427), 11, + ACTIONS(355), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -28282,8 +28155,9 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(425), 25, + ACTIONS(353), 26, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_POUND, anon_sym_LPAREN, anon_sym_LBRACK, @@ -28308,15 +28182,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [27883] = 5, + [27693] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(271), 1, - anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(266), 11, + ACTIONS(343), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -28328,9 +28200,11 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(264), 24, + ACTIONS(341), 26, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_POUND, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, @@ -28353,13 +28227,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [27933] = 4, + [27742] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(441), 11, + ACTIONS(351), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -28371,10 +28245,11 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(439), 25, + ACTIONS(349), 26, anon_sym_RBRACE, anon_sym_DOT, anon_sym_POUND, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, @@ -28397,13 +28272,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [27981] = 4, + [27791] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(417), 11, + ACTIONS(339), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -28415,10 +28290,11 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(415), 25, + ACTIONS(337), 26, anon_sym_RBRACE, anon_sym_DOT, anon_sym_POUND, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, @@ -28441,15 +28317,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [28029] = 5, + [27840] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1023), 1, - anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(421), 11, + ACTIONS(415), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -28461,8 +28335,9 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(419), 24, + ACTIONS(413), 25, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -28486,13 +28361,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [28079] = 4, + [27888] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(407), 11, + ACTIONS(433), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -28504,10 +28379,10 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(405), 25, + ACTIONS(431), 25, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, @@ -28530,7 +28405,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [28127] = 5, + [27936] = 5, ACTIONS(3), 1, sym_module_comment, ACTIONS(393), 1, @@ -28538,7 +28413,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(266), 11, + ACTIONS(302), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -28550,7 +28425,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(264), 24, + ACTIONS(300), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -28575,13 +28450,15 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [28177] = 4, + [27986] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(385), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(389), 11, + ACTIONS(302), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -28593,9 +28470,8 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(387), 25, + ACTIONS(300), 24, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -28619,13 +28495,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [28225] = 4, + [28036] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(397), 11, + ACTIONS(419), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -28637,7 +28513,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(395), 25, + ACTIONS(417), 25, anon_sym_RBRACE, anon_sym_DOT, anon_sym_POUND, @@ -28663,15 +28539,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [28273] = 5, + [28084] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(411), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(266), 11, + ACTIONS(405), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -28683,9 +28557,10 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(264), 24, + ACTIONS(403), 25, anon_sym_RBRACE, anon_sym_POUND, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, @@ -28708,7 +28583,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [28323] = 4, + [28132] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, @@ -28752,13 +28627,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [28371] = 4, + [28180] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(487), 11, + ACTIONS(411), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -28770,8 +28645,9 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(485), 24, + ACTIONS(409), 25, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -28795,66 +28671,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [28418] = 14, + [28228] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1029), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1031), 1, - anon_sym_AMP_AMP, - ACTIONS(1039), 1, - anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1025), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1027), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1033), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1041), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(681), 3, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(1043), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(1035), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1037), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(679), 10, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [28485] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(545), 11, + ACTIONS(441), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -28866,8 +28689,9 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(543), 24, + ACTIONS(439), 25, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -28891,34 +28715,27 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [28532] = 8, + [28276] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(307), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1025), 2, + ACTIONS(302), 11, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1027), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1041), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1043), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(487), 7, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, sym__decimal, sym__discard_name, sym__name, - ACTIONS(485), 19, + ACTIONS(300), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -28932,19 +28749,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [28587] = 4, + [28326] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(685), 11, + ACTIONS(389), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -28956,9 +28778,10 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(683), 24, + ACTIONS(387), 25, anon_sym_RBRACE, anon_sym_POUND, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, @@ -28981,36 +28804,27 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [28634] = 9, + [28374] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1039), 1, - anon_sym_PIPE_GT, + ACTIONS(1023), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1025), 2, + ACTIONS(425), 11, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1027), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1041), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1043), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(487), 7, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, sym__decimal, sym__discard_name, sym__name, - ACTIONS(485), 18, + ACTIONS(423), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -29023,19 +28837,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [28691] = 4, + [28424] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(551), 11, + ACTIONS(541), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -29047,7 +28867,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(549), 24, + ACTIONS(539), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -29072,42 +28892,25 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [28738] = 11, + [28471] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1039), 1, - anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1025), 2, + ACTIONS(551), 11, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1027), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1041), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(487), 3, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(1043), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(1035), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1037), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(485), 14, + anon_sym_PLUS, + anon_sym_STAR, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(549), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -29116,37 +28919,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [28799] = 14, + [28518] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1029), 1, - anon_sym_PIPE_PIPE, ACTIONS(1031), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1033), 1, anon_sym_AMP_AMP, - ACTIONS(1039), 1, + ACTIONS(1041), 1, anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1025), 2, + ACTIONS(1027), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1027), 2, + ACTIONS(1029), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1033), 2, + ACTIONS(1035), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1041), 2, + ACTIONS(1043), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1043), 3, + ACTIONS(1045), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, @@ -29154,17 +28967,17 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(1035), 4, + ACTIONS(1037), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1037), 4, + ACTIONS(1039), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1045), 10, + ACTIONS(1025), 10, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -29175,13 +28988,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [28866] = 4, + [28585] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(695), 11, + ACTIONS(567), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -29193,7 +29006,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(693), 24, + ACTIONS(565), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -29218,25 +29031,42 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [28913] = 4, + [28632] = 11, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1041), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(445), 11, + ACTIONS(1027), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1029), 2, anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(1043), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(445), 3, sym__decimal, sym__discard_name, sym__name, - ACTIONS(443), 24, + ACTIONS(1045), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(1037), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1039), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(443), 14, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -29245,41 +29075,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [28960] = 4, + [28693] = 6, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(649), 11, + ACTIONS(1027), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1045), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(445), 9, anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_PLUS, - anon_sym_STAR, sym__decimal, sym__discard_name, sym__name, - ACTIONS(647), 24, + ACTIONS(443), 21, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -29295,22 +29120,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_GT, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [29007] = 4, + [28744] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(665), 11, + ACTIONS(695), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -29322,7 +29144,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(663), 24, + ACTIONS(693), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -29347,74 +29169,82 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [29054] = 4, + [28791] = 12, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1041), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(579), 11, + ACTIONS(1027), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1029), 2, anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(1035), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1043), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(445), 3, sym__decimal, sym__discard_name, sym__name, - ACTIONS(577), 24, + ACTIONS(1045), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(1037), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1039), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(443), 12, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [29101] = 14, + [28854] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1029), 1, - anon_sym_PIPE_PIPE, ACTIONS(1031), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1033), 1, anon_sym_AMP_AMP, - ACTIONS(1039), 1, + ACTIONS(1041), 1, anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1025), 2, + ACTIONS(1027), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1027), 2, + ACTIONS(1029), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1033), 2, + ACTIONS(1035), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1041), 2, + ACTIONS(1043), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1043), 3, + ACTIONS(1045), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, @@ -29422,12 +29252,12 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(1035), 4, + ACTIONS(1037), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1037), 4, + ACTIONS(1039), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, @@ -29443,13 +29273,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [29168] = 4, + [28921] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(555), 11, + ACTIONS(445), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -29461,7 +29291,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(553), 24, + ACTIONS(443), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -29486,25 +29316,36 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [29215] = 4, + [28968] = 9, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1041), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(559), 11, + ACTIONS(1027), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1029), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1043), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1045), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(445), 7, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, sym__decimal, sym__discard_name, sym__name, - ACTIONS(557), 24, + ACTIONS(443), 18, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -29517,76 +29358,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [29025] = 8, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1027), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1029), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1043), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, + ACTIONS(1045), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + ACTIONS(445), 7, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(443), 19, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [29262] = 12, + [29080] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1039), 1, - anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1025), 2, + ACTIONS(453), 11, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1027), 2, anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, anon_sym_PLUS, - ACTIONS(1033), 2, + anon_sym_STAR, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(451), 24, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1041), 2, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(487), 3, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(1043), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(1035), 4, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [29127] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(599), 11, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1037), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(485), 12, + anon_sym_PLUS, + anon_sym_STAR, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(597), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [29325] = 4, + [29174] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(565), 11, + ACTIONS(589), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -29598,7 +29515,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(563), 24, + ACTIONS(587), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -29623,66 +29540,65 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [29372] = 14, + [29221] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1029), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1031), 1, + ACTIONS(1033), 1, anon_sym_AMP_AMP, - ACTIONS(1039), 1, + ACTIONS(1041), 1, anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1025), 2, + ACTIONS(1027), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1027), 2, + ACTIONS(1029), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1033), 2, + ACTIONS(1035), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1041), 2, + ACTIONS(1043), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(673), 3, + ACTIONS(445), 3, sym__decimal, sym__discard_name, sym__name, - ACTIONS(1043), 3, + ACTIONS(1045), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(1035), 4, + ACTIONS(1037), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1037), 4, + ACTIONS(1039), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(671), 10, + ACTIONS(443), 11, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, + anon_sym_PIPE_PIPE, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [29439] = 4, + [29286] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(509), 11, + ACTIONS(585), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -29694,7 +29610,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(507), 24, + ACTIONS(583), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -29719,82 +29635,111 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [29486] = 13, + [29333] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1031), 1, - anon_sym_AMP_AMP, - ACTIONS(1039), 1, - anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1025), 2, + ACTIONS(699), 11, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1027), 2, anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, anon_sym_PLUS, - ACTIONS(1033), 2, + anon_sym_STAR, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(697), 24, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1041), 2, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(487), 3, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(1043), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(1035), 4, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [29380] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(563), 11, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1037), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(485), 11, + anon_sym_PLUS, + anon_sym_STAR, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(561), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [29551] = 6, + [29427] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1025), 2, + ACTIONS(607), 11, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1043), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(487), 9, anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_PLUS, + anon_sym_STAR, sym__decimal, sym__discard_name, sym__name, - ACTIONS(485), 21, + ACTIONS(605), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -29810,19 +29755,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_GT, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [29602] = 4, + [29474] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(643), 11, + ACTIONS(581), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -29834,7 +29782,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(641), 24, + ACTIONS(579), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -29859,13 +29807,66 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [29649] = 4, + [29521] = 14, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1031), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1033), 1, + anon_sym_AMP_AMP, + ACTIONS(1041), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1027), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1029), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1035), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1043), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(593), 3, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(1045), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(1037), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1039), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(591), 10, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [29588] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(525), 11, + ACTIONS(691), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -29877,7 +29878,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(523), 24, + ACTIONS(689), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -29902,13 +29903,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [29696] = 4, + [29635] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(639), 11, + ACTIONS(545), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -29920,7 +29921,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(637), 24, + ACTIONS(543), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -29945,13 +29946,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [29743] = 4, + [29682] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(515), 11, + ACTIONS(457), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -29963,7 +29964,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(513), 24, + ACTIONS(455), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -29988,13 +29989,66 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [29790] = 4, + [29729] = 14, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1031), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1033), 1, + anon_sym_AMP_AMP, + ACTIONS(1041), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(691), 11, + ACTIONS(1027), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1029), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1035), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1043), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(531), 3, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(1045), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(1037), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1039), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(529), 10, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [29796] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(535), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -30006,7 +30060,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(689), 24, + ACTIONS(533), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -30031,18 +30085,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [29837] = 6, + [29843] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1053), 1, - anon_sym_LPAREN, - STATE(383), 1, - sym_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(256), 9, - anon_sym_DOT, + ACTIONS(559), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -30051,13 +30100,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(254), 21, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(557), 24, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -30072,18 +30122,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - anon_sym_DOT_DOT, - [29885] = 6, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [29890] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1059), 1, + ACTIONS(1057), 1, anon_sym_SLASH, - STATE(358), 1, + STATE(359), 1, aux_sym_module_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1055), 13, + ACTIONS(1053), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_DOT, @@ -30097,15 +30152,15 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1057), 17, + ACTIONS(1055), 17, anon_sym_if, anon_sym_import, anon_sym_as, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_todo, anon_sym_case, @@ -30115,17 +30170,17 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [29933] = 6, + [29938] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1066), 1, + ACTIONS(1057), 1, anon_sym_SLASH, - STATE(358), 1, + STATE(361), 1, aux_sym_module_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1062), 13, + ACTIONS(1059), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_DOT, @@ -30139,15 +30194,15 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1064), 17, + ACTIONS(1061), 17, anon_sym_if, anon_sym_import, anon_sym_as, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_todo, anon_sym_case, @@ -30157,17 +30212,59 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [29981] = 6, + [29986] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1066), 1, + ACTIONS(1063), 1, + anon_sym_LPAREN, + STATE(397), 1, + sym_arguments, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(256), 9, + anon_sym_DOT, anon_sym_SLASH, - STATE(359), 1, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(254), 21, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DOT_DOT, + [30034] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1069), 1, + anon_sym_SLASH, + STATE(361), 1, aux_sym_module_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1068), 13, + ACTIONS(1065), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_DOT, @@ -30181,15 +30278,15 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1070), 17, + ACTIONS(1067), 17, anon_sym_if, anon_sym_import, anon_sym_as, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_todo, anon_sym_case, @@ -30199,105 +30296,52 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [30029] = 11, + [30082] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(313), 1, - sym__decimal, - ACTIONS(1074), 1, - anon_sym_DASH, - ACTIONS(1076), 1, - anon_sym_size, - ACTIONS(1082), 1, - anon_sym_unit, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1072), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - ACTIONS(311), 3, + ACTIONS(1065), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, sym__hex, sym__octal, sym__binary, - ACTIONS(1080), 3, - anon_sym_utf8, - anon_sym_utf16, - anon_sym_utf32, - STATE(1011), 5, - sym__pattern_bit_string_segment_option, - sym__pattern_bit_string_named_segment_option, - sym__pattern_bit_string_segment_option_size, - sym_integer, - sym__bit_string_segment_option, - ACTIONS(1078), 14, - anon_sym_binary, - anon_sym_bytes, - anon_sym_int, - anon_sym_float, - anon_sym_bit_string, - anon_sym_bits, - anon_sym_utf8_codepoint, - anon_sym_utf16_codepoint, - anon_sym_utf32_codepoint, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_big, - anon_sym_little, - anon_sym_native, - [30086] = 11, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(313), 1, - sym__decimal, - ACTIONS(1074), 1, + sym__upname, + ACTIONS(1067), 18, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_SLASH, + anon_sym_const, anon_sym_DASH, - ACTIONS(1082), 1, - anon_sym_unit, - ACTIONS(1086), 1, - anon_sym_size, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1084), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - ACTIONS(311), 3, - sym__hex, - sym__octal, - sym__binary, - ACTIONS(1080), 3, - anon_sym_utf8, - anon_sym_utf16, - anon_sym_utf32, - STATE(974), 5, - sym__constant_bit_string_segment_option, - sym__constant_bit_string_named_segment_option, - sym__constant_bit_string_segment_option_size, - sym_integer, - sym__bit_string_segment_option, - ACTIONS(1078), 14, - anon_sym_binary, - anon_sym_bytes, - anon_sym_int, - anon_sym_float, - anon_sym_bit_string, - anon_sym_bits, - anon_sym_utf8_codepoint, - anon_sym_utf16_codepoint, - anon_sym_utf32_codepoint, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_big, - anon_sym_little, - anon_sym_native, - [30143] = 4, + anon_sym_fn, + anon_sym_external, + anon_sym_type, + anon_sym_try, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [30125] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(343), 9, + ACTIONS(331), 9, anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, @@ -30307,7 +30351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(341), 22, + ACTIONS(329), 22, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -30330,7 +30374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [30186] = 4, + [30168] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, @@ -30369,13 +30413,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [30229] = 4, + [30211] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(359), 9, + ACTIONS(351), 9, anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, @@ -30385,7 +30429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(357), 22, + ACTIONS(349), 22, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -30408,14 +30452,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [30272] = 4, + [30254] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(307), 1, + anon_sym_LPAREN, + ACTIONS(1072), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(323), 9, - anon_sym_DOT, + ACTIONS(302), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -30424,10 +30471,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(321), 22, + ACTIONS(300), 21, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_GT_GT, @@ -30447,13 +30493,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [30315] = 4, + [30301] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(375), 9, + ACTIONS(327), 9, anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, @@ -30463,7 +30509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(373), 22, + ACTIONS(325), 22, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -30486,14 +30532,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [30358] = 4, + [30344] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(307), 1, + anon_sym_LPAREN, + ACTIONS(1076), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(379), 9, - anon_sym_DOT, + ACTIONS(302), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -30502,10 +30551,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(377), 22, + ACTIONS(300), 21, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_GT_GT, @@ -30525,52 +30573,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [30401] = 4, + [30391] = 11, ACTIONS(3), 1, sym_module_comment, + ACTIONS(292), 1, + sym__decimal, + ACTIONS(1081), 1, + anon_sym_DASH, + ACTIONS(1083), 1, + anon_sym_size, + ACTIONS(1089), 1, + anon_sym_unit, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(355), 9, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(353), 22, - anon_sym_LBRACE, + ACTIONS(1079), 2, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DOT_DOT, - [30444] = 4, + ACTIONS(290), 3, + sym__hex, + sym__octal, + sym__binary, + ACTIONS(1087), 3, + anon_sym_utf8, + anon_sym_utf16, + anon_sym_utf32, + STATE(993), 5, + sym__constant_bit_string_segment_option, + sym__constant_bit_string_named_segment_option, + sym__constant_bit_string_segment_option_size, + sym_integer, + sym__bit_string_segment_option, + ACTIONS(1085), 14, + anon_sym_binary, + anon_sym_bytes, + anon_sym_int, + anon_sym_float, + anon_sym_bit_string, + anon_sym_bits, + anon_sym_utf8_codepoint, + anon_sym_utf16_codepoint, + anon_sym_utf32_codepoint, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_big, + anon_sym_little, + anon_sym_native, + [30448] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(262), 9, + ACTIONS(359), 9, anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, @@ -30580,7 +30635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(260), 22, + ACTIONS(357), 22, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -30603,13 +30658,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [30487] = 4, + [30491] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(335), 9, + ACTIONS(339), 9, anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, @@ -30619,7 +30674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(333), 22, + ACTIONS(337), 22, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -30642,13 +30697,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [30530] = 4, + [30534] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(275), 9, + ACTIONS(375), 9, anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, @@ -30658,7 +30713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(273), 22, + ACTIONS(373), 22, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -30681,38 +30736,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [30573] = 11, + [30577] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(313), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(1074), 1, + ACTIONS(1081), 1, anon_sym_DASH, - ACTIONS(1082), 1, + ACTIONS(1089), 1, anon_sym_unit, - ACTIONS(1090), 1, + ACTIONS(1093), 1, anon_sym_size, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1088), 2, + ACTIONS(1091), 2, anon_sym_COMMA, anon_sym_GT_GT, - ACTIONS(311), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - ACTIONS(1080), 3, + ACTIONS(1087), 3, anon_sym_utf8, anon_sym_utf16, anon_sym_utf32, - STATE(967), 5, + STATE(977), 5, sym__expression_bit_string_segment_option, sym__expression_bit_string_named_segment_option, sym__expression_bit_string_segment_option_size, sym_integer, sym__bit_string_segment_option, - ACTIONS(1078), 14, + ACTIONS(1085), 14, anon_sym_binary, anon_sym_bytes, anon_sym_int, @@ -30727,17 +30782,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_big, anon_sym_little, anon_sym_native, - [30630] = 6, + [30634] = 11, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(292), 1, + sym__decimal, + ACTIONS(1081), 1, + anon_sym_DASH, + ACTIONS(1089), 1, + anon_sym_unit, + ACTIONS(1097), 1, + anon_sym_size, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1095), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + ACTIONS(290), 3, + sym__hex, + sym__octal, + sym__binary, + ACTIONS(1087), 3, + anon_sym_utf8, + anon_sym_utf16, + anon_sym_utf32, + STATE(1063), 5, + sym__pattern_bit_string_segment_option, + sym__pattern_bit_string_named_segment_option, + sym__pattern_bit_string_segment_option_size, + sym_integer, + sym__bit_string_segment_option, + ACTIONS(1085), 14, + anon_sym_binary, + anon_sym_bytes, + anon_sym_int, + anon_sym_float, + anon_sym_bit_string, + anon_sym_bits, + anon_sym_utf8_codepoint, + anon_sym_utf16_codepoint, + anon_sym_utf32_codepoint, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_big, + anon_sym_little, + anon_sym_native, + [30691] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(271), 1, - anon_sym_LPAREN, - ACTIONS(1092), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(266), 8, + ACTIONS(383), 9, + anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -30746,9 +30844,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(264), 21, + ACTIONS(381), 22, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_GT_GT, @@ -30768,17 +30867,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [30677] = 6, + [30734] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(271), 1, - anon_sym_LPAREN, - ACTIONS(1095), 1, - anon_sym_DOT, + ACTIONS(292), 1, + sym__decimal, + ACTIONS(1081), 1, + anon_sym_DASH, + ACTIONS(1089), 1, + anon_sym_unit, + ACTIONS(1097), 1, + anon_sym_size, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(266), 8, + ACTIONS(1099), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + ACTIONS(290), 3, + sym__hex, + sym__octal, + sym__binary, + ACTIONS(1087), 3, + anon_sym_utf8, + anon_sym_utf16, + anon_sym_utf32, + STATE(1063), 5, + sym__pattern_bit_string_segment_option, + sym__pattern_bit_string_named_segment_option, + sym__pattern_bit_string_segment_option_size, + sym_integer, + sym__bit_string_segment_option, + ACTIONS(1085), 14, + anon_sym_binary, + anon_sym_bytes, + anon_sym_int, + anon_sym_float, + anon_sym_bit_string, + anon_sym_bits, + anon_sym_utf8_codepoint, + anon_sym_utf16_codepoint, + anon_sym_utf32_codepoint, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_big, + anon_sym_little, + anon_sym_native, + [30791] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(311), 9, + anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -30787,9 +30929,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(264), 21, + ACTIONS(309), 22, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_GT_GT, @@ -30809,38 +30952,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [30724] = 11, + [30834] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(313), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(1074), 1, + ACTIONS(1081), 1, anon_sym_DASH, - ACTIONS(1082), 1, - anon_sym_unit, - ACTIONS(1090), 1, + ACTIONS(1083), 1, anon_sym_size, + ACTIONS(1089), 1, + anon_sym_unit, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1099), 2, + ACTIONS(1101), 2, anon_sym_COMMA, anon_sym_GT_GT, - ACTIONS(311), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - ACTIONS(1080), 3, + ACTIONS(1087), 3, anon_sym_utf8, anon_sym_utf16, anon_sym_utf32, - STATE(967), 5, - sym__expression_bit_string_segment_option, - sym__expression_bit_string_named_segment_option, - sym__expression_bit_string_segment_option_size, + STATE(993), 5, + sym__constant_bit_string_segment_option, + sym__constant_bit_string_named_segment_option, + sym__constant_bit_string_segment_option_size, sym_integer, sym__bit_string_segment_option, - ACTIONS(1078), 14, + ACTIONS(1085), 14, anon_sym_binary, anon_sym_bytes, anon_sym_int, @@ -30855,38 +30998,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_big, anon_sym_little, anon_sym_native, - [30781] = 11, + [30891] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(313), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(1074), 1, + ACTIONS(1081), 1, anon_sym_DASH, - ACTIONS(1076), 1, - anon_sym_size, - ACTIONS(1082), 1, + ACTIONS(1089), 1, anon_sym_unit, + ACTIONS(1093), 1, + anon_sym_size, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1101), 2, + ACTIONS(1103), 2, anon_sym_COMMA, anon_sym_GT_GT, - ACTIONS(311), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - ACTIONS(1080), 3, + ACTIONS(1087), 3, anon_sym_utf8, anon_sym_utf16, anon_sym_utf32, - STATE(1011), 5, - sym__pattern_bit_string_segment_option, - sym__pattern_bit_string_named_segment_option, - sym__pattern_bit_string_segment_option_size, + STATE(977), 5, + sym__expression_bit_string_segment_option, + sym__expression_bit_string_named_segment_option, + sym__expression_bit_string_segment_option_size, sym_integer, sym__bit_string_segment_option, - ACTIONS(1078), 14, + ACTIONS(1085), 14, anon_sym_binary, anon_sym_bytes, anon_sym_int, @@ -30901,38 +31044,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_big, anon_sym_little, anon_sym_native, - [30838] = 11, + [30948] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(313), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(1074), 1, + ACTIONS(1081), 1, anon_sym_DASH, - ACTIONS(1082), 1, - anon_sym_unit, - ACTIONS(1086), 1, + ACTIONS(1083), 1, anon_sym_size, + ACTIONS(1089), 1, + anon_sym_unit, + STATE(1123), 1, + sym_constant_bit_string_segment_options, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1103), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - ACTIONS(311), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - ACTIONS(1080), 3, + ACTIONS(1087), 3, anon_sym_utf8, anon_sym_utf16, anon_sym_utf32, - STATE(974), 5, + STATE(905), 5, sym__constant_bit_string_segment_option, sym__constant_bit_string_named_segment_option, sym__constant_bit_string_segment_option_size, sym_integer, sym__bit_string_segment_option, - ACTIONS(1078), 14, + ACTIONS(1085), 14, anon_sym_binary, anon_sym_bytes, anon_sym_int, @@ -30947,16 +31089,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_big, anon_sym_little, anon_sym_native, - [30895] = 4, + [31004] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1109), 1, + anon_sym_LPAREN, + STATE(463), 1, + sym_constant_record_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1055), 13, + ACTIONS(1105), 12, ts_builtin_sym_end, anon_sym_LBRACE, - anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -30967,16 +31112,14 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1057), 18, + ACTIONS(1107), 16, anon_sym_if, anon_sym_import, - anon_sym_as, - anon_sym_SLASH, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_todo, anon_sym_case, @@ -30986,37 +31129,82 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [30938] = 11, + [31050] = 11, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(292), 1, + sym__decimal, + ACTIONS(1081), 1, + anon_sym_DASH, + ACTIONS(1089), 1, + anon_sym_unit, + ACTIONS(1097), 1, + anon_sym_size, + STATE(1147), 1, + sym_pattern_bit_string_segment_options, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(290), 3, + sym__hex, + sym__octal, + sym__binary, + ACTIONS(1087), 3, + anon_sym_utf8, + anon_sym_utf16, + anon_sym_utf32, + STATE(913), 5, + sym__pattern_bit_string_segment_option, + sym__pattern_bit_string_named_segment_option, + sym__pattern_bit_string_segment_option_size, + sym_integer, + sym__bit_string_segment_option, + ACTIONS(1085), 14, + anon_sym_binary, + anon_sym_bytes, + anon_sym_int, + anon_sym_float, + anon_sym_bit_string, + anon_sym_bits, + anon_sym_utf8_codepoint, + anon_sym_utf16_codepoint, + anon_sym_utf32_codepoint, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_big, + anon_sym_little, + anon_sym_native, + [31106] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(313), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(1074), 1, + ACTIONS(1081), 1, anon_sym_DASH, - ACTIONS(1082), 1, + ACTIONS(1089), 1, anon_sym_unit, - ACTIONS(1090), 1, + ACTIONS(1093), 1, anon_sym_size, - STATE(1174), 1, + STATE(1134), 1, sym_expression_bit_string_segment_options, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(311), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - ACTIONS(1080), 3, + ACTIONS(1087), 3, anon_sym_utf8, anon_sym_utf16, anon_sym_utf32, - STATE(882), 5, + STATE(924), 5, sym__expression_bit_string_segment_option, sym__expression_bit_string_named_segment_option, sym__expression_bit_string_segment_option_size, sym_integer, sym__bit_string_segment_option, - ACTIONS(1078), 14, + ACTIONS(1085), 14, anon_sym_binary, anon_sym_bytes, anon_sym_int, @@ -31031,15 +31219,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_big, anon_sym_little, anon_sym_native, - [30994] = 5, + [31162] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1115), 1, + anon_sym_LPAREN, + STATE(460), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1111), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1113), 16, + anon_sym_if, + anon_sym_import, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_type, + anon_sym_try, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [31208] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1105), 1, + ACTIONS(1117), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(421), 8, + ACTIONS(425), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -31048,7 +31276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(419), 21, + ACTIONS(423), 21, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -31070,14 +31298,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [31038] = 4, + [31252] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1119), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(435), 9, - anon_sym_DOT, + ACTIONS(302), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -31086,7 +31315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(433), 21, + ACTIONS(300), 21, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -31108,14 +31337,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [31080] = 4, + [31296] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1121), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(401), 9, - anon_sym_DOT, + ACTIONS(302), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -31124,7 +31354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(399), 21, + ACTIONS(300), 21, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -31146,14 +31376,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [31122] = 4, + [31340] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(307), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(441), 9, - anon_sym_DOT, + ACTIONS(302), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -31162,7 +31393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(439), 21, + ACTIONS(300), 21, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -31184,13 +31415,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [31164] = 4, + [31384] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(407), 8, + ACTIONS(411), 9, + anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -31199,10 +31431,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(405), 22, + ACTIONS(409), 21, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_GT_GT, @@ -31222,17 +31453,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [31206] = 6, + [31426] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1111), 1, + ACTIONS(1127), 1, anon_sym_LPAREN, - STATE(500), 1, + STATE(451), 1, sym_type_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1107), 12, + ACTIONS(1123), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -31245,54 +31476,14 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1109), 16, + ACTIONS(1125), 16, anon_sym_if, anon_sym_import, anon_sym_const, anon_sym_DASH, - anon_sym_external, - anon_sym_type, anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [31252] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1117), 1, - anon_sym_LPAREN, - STATE(494), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1113), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1115), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, - anon_sym_DASH, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_todo, anon_sym_case, @@ -31302,15 +31493,14 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [31298] = 5, + [31472] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(271), 1, - anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(266), 8, + ACTIONS(415), 9, + anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -31319,7 +31509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(264), 21, + ACTIONS(413), 21, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -31341,58 +31531,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [31342] = 11, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(313), 1, - sym__decimal, - ACTIONS(1074), 1, - anon_sym_DASH, - ACTIONS(1082), 1, - anon_sym_unit, - ACTIONS(1086), 1, - anon_sym_size, - STATE(1077), 1, - sym_constant_bit_string_segment_options, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(311), 3, - sym__hex, - sym__octal, - sym__binary, - ACTIONS(1080), 3, - anon_sym_utf8, - anon_sym_utf16, - anon_sym_utf32, - STATE(898), 5, - sym__constant_bit_string_segment_option, - sym__constant_bit_string_named_segment_option, - sym__constant_bit_string_segment_option_size, - sym_integer, - sym__bit_string_segment_option, - ACTIONS(1078), 14, - anon_sym_binary, - anon_sym_bytes, - anon_sym_int, - anon_sym_float, - anon_sym_bit_string, - anon_sym_bits, - anon_sym_utf8_codepoint, - anon_sym_utf16_codepoint, - anon_sym_utf32_codepoint, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_big, - anon_sym_little, - anon_sym_native, - [31398] = 4, + [31514] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(427), 8, + ACTIONS(389), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -31401,7 +31546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(425), 22, + ACTIONS(387), 22, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -31424,53 +31569,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [31440] = 6, + [31556] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1123), 1, - anon_sym_DOT, - ACTIONS(1125), 1, - anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1119), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1121), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, + ACTIONS(405), 8, + anon_sym_SLASH, anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [31486] = 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(403), 22, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DOT_DOT, + [31598] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(389), 9, + ACTIONS(433), 9, anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, @@ -31480,7 +31623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(387), 21, + ACTIONS(431), 21, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -31502,62 +31645,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [31528] = 11, + [31640] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(313), 1, - sym__decimal, - ACTIONS(1074), 1, - anon_sym_DASH, - ACTIONS(1076), 1, - anon_sym_size, - ACTIONS(1082), 1, - anon_sym_unit, - STATE(1154), 1, - sym_pattern_bit_string_segment_options, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(311), 3, - sym__hex, - sym__octal, - sym__binary, - ACTIONS(1080), 3, - anon_sym_utf8, - anon_sym_utf16, - anon_sym_utf32, - STATE(892), 5, - sym__pattern_bit_string_segment_option, - sym__pattern_bit_string_named_segment_option, - sym__pattern_bit_string_segment_option_size, - sym_integer, - sym__bit_string_segment_option, - ACTIONS(1078), 14, - anon_sym_binary, - anon_sym_bytes, - anon_sym_int, - anon_sym_float, - anon_sym_bit_string, - anon_sym_bits, - anon_sym_utf8_codepoint, - anon_sym_utf16_codepoint, - anon_sym_utf32_codepoint, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_big, - anon_sym_little, - anon_sym_native, - [31584] = 6, + ACTIONS(419), 9, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(417), 21, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DOT_DOT, + [31682] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1131), 1, - anon_sym_LPAREN, - STATE(446), 1, - sym_constant_record_arguments, + ACTIONS(1133), 1, + anon_sym_DOT, + ACTIONS(1135), 1, + anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1127), 12, + ACTIONS(1129), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -31570,14 +31706,14 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1129), 16, + ACTIONS(1131), 16, anon_sym_if, anon_sym_import, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_todo, anon_sym_case, @@ -31587,13 +31723,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [31630] = 4, + [31728] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(417), 9, + ACTIONS(401), 9, anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, @@ -31603,7 +31739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(415), 21, + ACTIONS(399), 21, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -31625,13 +31761,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [31672] = 4, + [31770] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(397), 9, + ACTIONS(441), 9, anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, @@ -31641,7 +31777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(395), 21, + ACTIONS(439), 21, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -31663,15 +31799,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [31714] = 5, + [31812] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1133), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(266), 8, + ACTIONS(545), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -31680,7 +31814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(264), 21, + ACTIONS(543), 21, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -31702,126 +31836,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [31758] = 5, + [31853] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1135), 1, - anon_sym_DOT, + ACTIONS(1141), 1, + anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(266), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(264), 21, + ACTIONS(1137), 12, + ts_builtin_sym_end, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DOT_DOT, - [31802] = 13, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1139), 16, + anon_sym_if, + anon_sym_import, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_type, + anon_sym_try, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [31896] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1141), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1143), 1, + ACTIONS(1147), 1, anon_sym_AMP_AMP, - ACTIONS(1151), 1, + ACTIONS(1155), 1, anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1137), 2, + ACTIONS(1143), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1139), 2, + ACTIONS(1145), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1145), 2, + ACTIONS(1149), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1153), 2, + ACTIONS(1157), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1155), 3, + ACTIONS(1159), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(1147), 4, + ACTIONS(1151), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1149), 4, + ACTIONS(1153), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(671), 7, + ACTIONS(443), 8, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_GT_GT, anon_sym_COLON, + anon_sym_PIPE_PIPE, anon_sym_DOT_DOT, - [31861] = 11, + [31953] = 22, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(270), 1, + anon_sym_DASH, + ACTIONS(286), 1, + anon_sym_DQUOTE, + ACTIONS(292), 1, + sym__decimal, + ACTIONS(296), 1, + sym__name, + ACTIONS(298), 1, + sym__upname, + ACTIONS(1161), 1, + anon_sym_POUND, + ACTIONS(1163), 1, + anon_sym_RPAREN, + ACTIONS(1165), 1, + anon_sym_LBRACK, + ACTIONS(1167), 1, + anon_sym_LT_LT, + ACTIONS(1169), 1, + anon_sym_DOT_DOT, + ACTIONS(1171), 1, + sym_float, + ACTIONS(1173), 1, + sym__discard_name, + STATE(787), 1, + sym_identifier, + STATE(970), 1, + sym__pattern, + STATE(1006), 1, + sym_record_pattern_argument, + STATE(1223), 1, + sym_label, + STATE(1271), 1, + sym_pattern_spread, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(717), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(290), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(821), 7, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_string, + sym_integer, + sym_discard, + [32030] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1151), 1, - anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1137), 2, + ACTIONS(1143), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1139), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1145), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1153), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1155), 3, + ACTIONS(1159), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(1147), 4, + ACTIONS(445), 6, + anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1149), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(485), 9, + anon_sym_PLUS, + ACTIONS(443), 18, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -31830,14 +32003,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_DOT_DOT, - [31916] = 4, + [32075] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(695), 8, + ACTIONS(445), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -31846,7 +32028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(693), 21, + ACTIONS(443), 21, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -31868,52 +32050,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [31957] = 4, + [32116] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(691), 8, + ACTIONS(1175), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1177), 17, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_type, + anon_sym_try, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [32157] = 13, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1147), 1, + anon_sym_AMP_AMP, + ACTIONS(1155), 1, + anon_sym_PIPE_GT, + ACTIONS(1179), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1143), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1145), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1149), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1157), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1159), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(1151), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(689), 21, + ACTIONS(1153), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(529), 7, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_GT_GT, anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, anon_sym_DOT_DOT, - [31998] = 5, + [32216] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1161), 1, - anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1157), 12, + ACTIONS(1181), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -31926,14 +32152,15 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1159), 16, + ACTIONS(1183), 17, anon_sym_if, anon_sym_import, + anon_sym_as, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_todo, anon_sym_case, @@ -31943,35 +32170,35 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [32041] = 10, + [32257] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(313), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(1074), 1, + ACTIONS(1081), 1, anon_sym_DASH, - ACTIONS(1082), 1, + ACTIONS(1089), 1, anon_sym_unit, - ACTIONS(1090), 1, + ACTIONS(1093), 1, anon_sym_size, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(311), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - ACTIONS(1080), 3, + ACTIONS(1087), 3, anon_sym_utf8, anon_sym_utf16, anon_sym_utf32, - STATE(967), 5, + STATE(977), 5, sym__expression_bit_string_segment_option, sym__expression_bit_string_named_segment_option, sym__expression_bit_string_segment_option_size, sym_integer, sym__bit_string_segment_option, - ACTIONS(1078), 14, + ACTIONS(1085), 14, anon_sym_binary, anon_sym_bytes, anon_sym_int, @@ -31986,53 +32213,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_big, anon_sym_little, anon_sym_native, - [32094] = 21, + [32310] = 22, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1163), 1, - anon_sym_RBRACE, - ACTIONS(1165), 1, - anon_sym_POUND, - ACTIONS(1168), 1, - anon_sym_LBRACK, - ACTIONS(1171), 1, - anon_sym_LT_LT, - ACTIONS(1174), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(1177), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(1180), 1, - sym_float, - ACTIONS(1186), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(1189), 1, - sym__discard_name, - ACTIONS(1192), 1, + ACTIONS(296), 1, sym__name, - ACTIONS(1195), 1, + ACTIONS(298), 1, sym__upname, - STATE(835), 1, + ACTIONS(1161), 1, + anon_sym_POUND, + ACTIONS(1165), 1, + anon_sym_LBRACK, + ACTIONS(1167), 1, + anon_sym_LT_LT, + ACTIONS(1169), 1, + anon_sym_DOT_DOT, + ACTIONS(1171), 1, + sym_float, + ACTIONS(1173), 1, + sym__discard_name, + ACTIONS(1185), 1, + anon_sym_RPAREN, + STATE(787), 1, sym_identifier, - STATE(840), 1, + STATE(970), 1, sym__pattern, - STATE(870), 1, - sym_case_clause_pattern, - STATE(997), 1, - sym_case_clause_patterns, + STATE(1006), 1, + sym_record_pattern_argument, + STATE(1223), 1, + sym_label, + STATE(1316), 1, + sym_pattern_spread, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(405), 2, - sym_case_clause, - aux_sym_case_clauses_repeat1, - STATE(712), 2, + STATE(717), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1183), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(855), 7, + STATE(821), 7, sym_record_pattern, sym_tuple_pattern, sym__pattern_bit_string, @@ -32040,29 +32268,37 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [32169] = 5, + [32387] = 8, ACTIONS(3), 1, sym_module_comment, - ACTIONS(341), 1, - anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(339), 9, - anon_sym_DOT, + ACTIONS(1143), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1145), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1157), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1159), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(445), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(337), 19, - anon_sym_as, + ACTIONS(443), 16, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_COLON, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -32072,176 +32308,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, anon_sym_DOT_DOT, - [32212] = 13, + [32436] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1141), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1143), 1, - anon_sym_AMP_AMP, - ACTIONS(1151), 1, - anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1137), 2, + ACTIONS(567), 8, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1139), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1145), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1153), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1155), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(1147), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1149), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(679), 7, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(565), 21, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_GT_GT, anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, anon_sym_DOT_DOT, - [32271] = 4, + [32477] = 21, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1198), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1187), 1, + anon_sym_RBRACE, + ACTIONS(1189), 1, anon_sym_POUND, - anon_sym_LPAREN, + ACTIONS(1192), 1, anon_sym_LBRACK, + ACTIONS(1195), 1, anon_sym_LT_LT, - anon_sym_BANG, + ACTIONS(1198), 1, + anon_sym_DASH, + ACTIONS(1201), 1, anon_sym_DQUOTE, + ACTIONS(1204), 1, sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1200), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, - anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, + ACTIONS(1210), 1, sym__decimal, + ACTIONS(1213), 1, + sym__discard_name, + ACTIONS(1216), 1, sym__name, - [32312] = 4, - ACTIONS(3), 1, - sym_module_comment, + ACTIONS(1219), 1, + sym__upname, + STATE(847), 1, + sym_identifier, + STATE(852), 1, + sym__pattern, + STATE(902), 1, + sym_case_clause_pattern, + STATE(936), 1, + sym_case_clause_patterns, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1202), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, + STATE(412), 2, + sym_case_clause, + aux_sym_case_clauses_repeat1, + STATE(717), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(1207), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - ACTIONS(1204), 17, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_const, - anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [32353] = 4, + STATE(865), 7, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_string, + sym_integer, + sym_discard, + [32552] = 13, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1147), 1, + anon_sym_AMP_AMP, + ACTIONS(1155), 1, + anon_sym_PIPE_GT, + ACTIONS(1179), 1, + anon_sym_PIPE_PIPE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1206), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1208), 17, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_const, + ACTIONS(1143), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1145), 2, anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [32394] = 4, + anon_sym_PLUS, + ACTIONS(1149), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1157), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1159), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(1151), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1153), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(591), 7, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_DOT_DOT, + [32611] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(665), 8, + ACTIONS(691), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -32250,7 +32461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(663), 21, + ACTIONS(689), 21, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -32272,122 +32483,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [32435] = 22, + [32652] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(307), 1, - anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(317), 1, - sym__name, - ACTIONS(319), 1, - sym__upname, - ACTIONS(1210), 1, - anon_sym_POUND, - ACTIONS(1212), 1, - anon_sym_RPAREN, - ACTIONS(1214), 1, - anon_sym_LBRACK, - ACTIONS(1216), 1, - anon_sym_LT_LT, - ACTIONS(1218), 1, - anon_sym_DOT_DOT, - ACTIONS(1220), 1, - sym_float, - ACTIONS(1222), 1, - sym__discard_name, - STATE(776), 1, - sym_identifier, - STATE(1000), 1, - sym_record_pattern_argument, - STATE(1008), 1, - sym__pattern, - STATE(1259), 1, - sym_label, - STATE(1269), 1, - sym_pattern_spread, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(712), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(311), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(792), 7, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_string, - sym_integer, - sym_discard, - [32512] = 21, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1210), 1, - anon_sym_POUND, - ACTIONS(1214), 1, - anon_sym_LBRACK, - ACTIONS(1216), 1, - anon_sym_LT_LT, - ACTIONS(1222), 1, - sym__discard_name, - ACTIONS(1224), 1, + ACTIONS(1081), 1, anon_sym_DASH, - ACTIONS(1226), 1, - anon_sym_DQUOTE, - ACTIONS(1228), 1, - sym_float, - ACTIONS(1232), 1, - sym__decimal, - ACTIONS(1234), 1, - sym__name, - ACTIONS(1236), 1, - sym__upname, - STATE(835), 1, - sym_identifier, - STATE(840), 1, - sym__pattern, - STATE(870), 1, - sym_case_clause_pattern, - STATE(997), 1, - sym_case_clause_patterns, - STATE(1192), 1, - sym_case_clauses, + ACTIONS(1083), 1, + anon_sym_size, + ACTIONS(1089), 1, + anon_sym_unit, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(415), 2, - sym_case_clause, - aux_sym_case_clauses_repeat1, - STATE(712), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1230), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(855), 7, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_string, + ACTIONS(1087), 3, + anon_sym_utf8, + anon_sym_utf16, + anon_sym_utf32, + STATE(993), 5, + sym__constant_bit_string_segment_option, + sym__constant_bit_string_named_segment_option, + sym__constant_bit_string_segment_option_size, sym_integer, - sym_discard, - [32587] = 4, + sym__bit_string_segment_option, + ACTIONS(1085), 14, + anon_sym_binary, + anon_sym_bytes, + anon_sym_int, + anon_sym_float, + anon_sym_bit_string, + anon_sym_bits, + anon_sym_utf8_codepoint, + anon_sym_utf16_codepoint, + anon_sym_utf32_codepoint, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_big, + anon_sym_little, + anon_sym_native, + [32705] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(685), 8, + ACTIONS(695), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -32396,7 +32541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(683), 21, + ACTIONS(693), 21, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -32418,53 +32563,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [32628] = 21, + [32746] = 21, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1210), 1, + ACTIONS(1161), 1, anon_sym_POUND, - ACTIONS(1214), 1, + ACTIONS(1165), 1, anon_sym_LBRACK, - ACTIONS(1216), 1, + ACTIONS(1167), 1, anon_sym_LT_LT, - ACTIONS(1222), 1, + ACTIONS(1173), 1, sym__discard_name, - ACTIONS(1224), 1, + ACTIONS(1222), 1, anon_sym_DASH, - ACTIONS(1226), 1, + ACTIONS(1224), 1, anon_sym_DQUOTE, - ACTIONS(1228), 1, + ACTIONS(1226), 1, sym_float, - ACTIONS(1232), 1, + ACTIONS(1230), 1, sym__decimal, - ACTIONS(1234), 1, + ACTIONS(1232), 1, sym__name, - ACTIONS(1236), 1, + ACTIONS(1234), 1, sym__upname, - ACTIONS(1238), 1, - anon_sym_RBRACE, - STATE(835), 1, + STATE(847), 1, sym_identifier, - STATE(840), 1, + STATE(852), 1, sym__pattern, - STATE(870), 1, + STATE(902), 1, sym_case_clause_pattern, - STATE(997), 1, + STATE(936), 1, sym_case_clause_patterns, + STATE(1321), 1, + sym_case_clauses, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(405), 2, + STATE(434), 2, sym_case_clause, aux_sym_case_clauses_repeat1, - STATE(712), 2, + STATE(717), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1230), 3, + ACTIONS(1228), 3, sym__hex, sym__octal, sym__binary, - STATE(855), 7, + STATE(865), 7, sym_record_pattern, sym_tuple_pattern, sym__pattern_bit_string, @@ -32472,13 +32617,13 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [32703] = 4, + [32821] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(579), 8, + ACTIONS(563), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -32487,7 +32632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(577), 21, + ACTIONS(561), 21, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -32509,13 +32654,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [32744] = 4, + [32862] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1236), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_POUND, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1238), 16, + anon_sym_if, + anon_sym_import, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_type, + anon_sym_try, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [32903] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(649), 8, + ACTIONS(457), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -32524,7 +32706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(647), 21, + ACTIONS(455), 21, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -32546,7 +32728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [32785] = 4, + [32944] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, @@ -32571,9 +32753,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_todo, anon_sym_case, @@ -32583,56 +32765,51 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [32826] = 10, + [32985] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(313), 1, - sym__decimal, - ACTIONS(1074), 1, - anon_sym_DASH, - ACTIONS(1082), 1, - anon_sym_unit, - ACTIONS(1086), 1, - anon_sym_size, + ACTIONS(1248), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(311), 3, + ACTIONS(1244), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, sym__hex, sym__octal, sym__binary, - ACTIONS(1080), 3, - anon_sym_utf8, - anon_sym_utf16, - anon_sym_utf32, - STATE(974), 5, - sym__constant_bit_string_segment_option, - sym__constant_bit_string_named_segment_option, - sym__constant_bit_string_segment_option_size, - sym_integer, - sym__bit_string_segment_option, - ACTIONS(1078), 14, - anon_sym_binary, - anon_sym_bytes, - anon_sym_int, - anon_sym_float, - anon_sym_bit_string, - anon_sym_bits, - anon_sym_utf8_codepoint, - anon_sym_utf16_codepoint, - anon_sym_utf32_codepoint, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_big, - anon_sym_little, - anon_sym_native, - [32879] = 4, + sym__upname, + ACTIONS(1246), 16, + anon_sym_if, + anon_sym_import, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_type, + anon_sym_try, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [33028] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(639), 8, + ACTIONS(699), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -32641,7 +32818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(637), 21, + ACTIONS(697), 21, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -32663,53 +32840,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [32920] = 21, + [33069] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1210), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(535), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(533), 21, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DOT_DOT, + [33110] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(321), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1250), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, anon_sym_POUND, - ACTIONS(1214), 1, anon_sym_LBRACK, - ACTIONS(1216), 1, anon_sym_LT_LT, - ACTIONS(1222), 1, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1252), 16, + anon_sym_if, + anon_sym_import, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_type, + anon_sym_try, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [33153] = 21, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1161), 1, + anon_sym_POUND, + ACTIONS(1165), 1, + anon_sym_LBRACK, + ACTIONS(1167), 1, + anon_sym_LT_LT, + ACTIONS(1173), 1, sym__discard_name, - ACTIONS(1224), 1, + ACTIONS(1222), 1, anon_sym_DASH, - ACTIONS(1226), 1, + ACTIONS(1224), 1, anon_sym_DQUOTE, - ACTIONS(1228), 1, + ACTIONS(1226), 1, sym_float, - ACTIONS(1232), 1, + ACTIONS(1230), 1, sym__decimal, - ACTIONS(1234), 1, + ACTIONS(1232), 1, sym__name, - ACTIONS(1236), 1, + ACTIONS(1234), 1, sym__upname, - STATE(835), 1, + STATE(847), 1, sym_identifier, - STATE(840), 1, + STATE(852), 1, sym__pattern, - STATE(870), 1, + STATE(902), 1, sym_case_clause_pattern, - STATE(997), 1, + STATE(936), 1, sym_case_clause_patterns, - STATE(1250), 1, + STATE(1231), 1, sym_case_clauses, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(415), 2, + STATE(434), 2, sym_case_clause, aux_sym_case_clauses_repeat1, - STATE(712), 2, + STATE(717), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1230), 3, + ACTIONS(1228), 3, sym__hex, sym__octal, sym__binary, - STATE(855), 7, + STATE(865), 7, sym_record_pattern, sym_tuple_pattern, sym__pattern_bit_string, @@ -32717,13 +32969,13 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [32995] = 4, + [33228] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1244), 12, + ACTIONS(1254), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -32736,15 +32988,15 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1246), 17, + ACTIONS(1256), 17, anon_sym_if, anon_sym_import, anon_sym_as, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_todo, anon_sym_case, @@ -32754,53 +33006,53 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [33036] = 21, + [33269] = 21, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1210), 1, + ACTIONS(1161), 1, anon_sym_POUND, - ACTIONS(1214), 1, + ACTIONS(1165), 1, anon_sym_LBRACK, - ACTIONS(1216), 1, + ACTIONS(1167), 1, anon_sym_LT_LT, - ACTIONS(1222), 1, + ACTIONS(1173), 1, sym__discard_name, - ACTIONS(1224), 1, + ACTIONS(1222), 1, anon_sym_DASH, - ACTIONS(1226), 1, + ACTIONS(1224), 1, anon_sym_DQUOTE, - ACTIONS(1228), 1, + ACTIONS(1226), 1, sym_float, - ACTIONS(1232), 1, + ACTIONS(1230), 1, sym__decimal, - ACTIONS(1234), 1, + ACTIONS(1232), 1, sym__name, - ACTIONS(1236), 1, + ACTIONS(1234), 1, sym__upname, - STATE(835), 1, + STATE(847), 1, sym_identifier, - STATE(840), 1, + STATE(852), 1, sym__pattern, - STATE(870), 1, + STATE(902), 1, sym_case_clause_pattern, - STATE(997), 1, + STATE(936), 1, sym_case_clause_patterns, - STATE(1219), 1, + STATE(1226), 1, sym_case_clauses, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(415), 2, + STATE(434), 2, sym_case_clause, aux_sym_case_clauses_repeat1, - STATE(712), 2, + STATE(717), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1230), 3, + ACTIONS(1228), 3, sym__hex, sym__octal, sym__binary, - STATE(855), 7, + STATE(865), 7, sym_record_pattern, sym_tuple_pattern, sym__pattern_bit_string, @@ -32808,51 +33060,55 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [33111] = 5, + [33344] = 9, ACTIONS(3), 1, sym_module_comment, - ACTIONS(337), 1, - anon_sym_DOT, + ACTIONS(1155), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1248), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1250), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, + ACTIONS(1143), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1145), 2, anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [33154] = 4, + anon_sym_PLUS, + ACTIONS(1157), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1159), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(445), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(443), 15, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_DOT_DOT, + [33395] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(643), 8, + ACTIONS(559), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -32861,7 +33117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(641), 21, + ACTIONS(557), 21, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -32883,38 +33139,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [33195] = 10, + [33436] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1151), 1, + ACTIONS(1155), 1, anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1137), 2, + ACTIONS(1143), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1139), 2, + ACTIONS(1145), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1153), 2, + ACTIONS(1157), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1155), 3, + ACTIONS(1159), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(1147), 4, + ACTIONS(1151), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1149), 4, + ACTIONS(1153), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(485), 11, + ACTIONS(443), 11, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -32926,68 +33182,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_DOT_DOT, - [33248] = 22, + [33489] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(307), 1, - anon_sym_DQUOTE, - ACTIONS(313), 1, - sym__decimal, - ACTIONS(317), 1, - sym__name, - ACTIONS(319), 1, - sym__upname, - ACTIONS(1210), 1, - anon_sym_POUND, - ACTIONS(1214), 1, - anon_sym_LBRACK, - ACTIONS(1216), 1, - anon_sym_LT_LT, - ACTIONS(1218), 1, - anon_sym_DOT_DOT, - ACTIONS(1220), 1, - sym_float, - ACTIONS(1222), 1, - sym__discard_name, - ACTIONS(1252), 1, - anon_sym_RPAREN, - STATE(776), 1, - sym_identifier, - STATE(1000), 1, - sym_record_pattern_argument, - STATE(1008), 1, - sym__pattern, - STATE(1257), 1, - sym_pattern_spread, - STATE(1259), 1, - sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(712), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(311), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(792), 7, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_string, - sym_integer, - sym_discard, - [33325] = 4, + ACTIONS(541), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(539), 21, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DOT_DOT, + [33530] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(487), 8, + ACTIONS(581), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -32996,7 +33234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(485), 21, + ACTIONS(579), 21, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -33018,53 +33256,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [33366] = 21, + [33571] = 21, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1210), 1, + ACTIONS(1161), 1, anon_sym_POUND, - ACTIONS(1214), 1, + ACTIONS(1165), 1, anon_sym_LBRACK, - ACTIONS(1216), 1, + ACTIONS(1167), 1, anon_sym_LT_LT, - ACTIONS(1222), 1, + ACTIONS(1173), 1, sym__discard_name, - ACTIONS(1224), 1, + ACTIONS(1222), 1, anon_sym_DASH, - ACTIONS(1226), 1, + ACTIONS(1224), 1, anon_sym_DQUOTE, - ACTIONS(1228), 1, + ACTIONS(1226), 1, sym_float, - ACTIONS(1232), 1, + ACTIONS(1230), 1, sym__decimal, - ACTIONS(1234), 1, + ACTIONS(1232), 1, sym__name, - ACTIONS(1236), 1, + ACTIONS(1234), 1, sym__upname, - STATE(835), 1, + ACTIONS(1258), 1, + anon_sym_RBRACE, + STATE(847), 1, sym_identifier, - STATE(840), 1, + STATE(852), 1, sym__pattern, - STATE(870), 1, + STATE(902), 1, sym_case_clause_pattern, - STATE(997), 1, + STATE(936), 1, sym_case_clause_patterns, - STATE(1298), 1, - sym_case_clauses, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(415), 2, + STATE(412), 2, sym_case_clause, aux_sym_case_clauses_repeat1, - STATE(712), 2, + STATE(717), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1230), 3, + ACTIONS(1228), 3, sym__hex, sym__octal, sym__binary, - STATE(855), 7, + STATE(865), 7, sym_record_pattern, sym_tuple_pattern, sym__pattern_bit_string, @@ -33072,129 +33310,150 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [33441] = 9, + [33646] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1151), 1, - anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1137), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1139), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1153), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1155), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(487), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(485), 15, + ACTIONS(1260), 13, + ts_builtin_sym_end, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_DOT_DOT, - [33492] = 4, + anon_sym_POUND, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1262), 16, + anon_sym_if, + anon_sym_import, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_type, + anon_sym_try, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [33687] = 10, ACTIONS(3), 1, sym_module_comment, + ACTIONS(292), 1, + sym__decimal, + ACTIONS(1081), 1, + anon_sym_DASH, + ACTIONS(1089), 1, + anon_sym_unit, + ACTIONS(1097), 1, + anon_sym_size, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(515), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(513), 21, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DOT_DOT, - [33533] = 4, + ACTIONS(290), 3, + sym__hex, + sym__octal, + sym__binary, + ACTIONS(1087), 3, + anon_sym_utf8, + anon_sym_utf16, + anon_sym_utf32, + STATE(1063), 5, + sym__pattern_bit_string_segment_option, + sym__pattern_bit_string_named_segment_option, + sym__pattern_bit_string_segment_option_size, + sym_integer, + sym__bit_string_segment_option, + ACTIONS(1085), 14, + anon_sym_binary, + anon_sym_bytes, + anon_sym_int, + anon_sym_float, + anon_sym_bit_string, + anon_sym_bits, + anon_sym_utf8_codepoint, + anon_sym_utf16_codepoint, + anon_sym_utf32_codepoint, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_big, + anon_sym_little, + anon_sym_native, + [33740] = 21, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1161), 1, + anon_sym_POUND, + ACTIONS(1165), 1, + anon_sym_LBRACK, + ACTIONS(1167), 1, + anon_sym_LT_LT, + ACTIONS(1173), 1, + sym__discard_name, + ACTIONS(1222), 1, + anon_sym_DASH, + ACTIONS(1224), 1, + anon_sym_DQUOTE, + ACTIONS(1226), 1, + sym_float, + ACTIONS(1230), 1, + sym__decimal, + ACTIONS(1232), 1, + sym__name, + ACTIONS(1234), 1, + sym__upname, + STATE(847), 1, + sym_identifier, + STATE(852), 1, + sym__pattern, + STATE(902), 1, + sym_case_clause_pattern, + STATE(936), 1, + sym_case_clause_patterns, + STATE(1213), 1, + sym_case_clauses, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(525), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(523), 21, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DOT_DOT, - [33574] = 4, + STATE(434), 2, + sym_case_clause, + aux_sym_case_clauses_repeat1, + STATE(717), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(1228), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(865), 7, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_string, + sym_integer, + sym_discard, + [33815] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(353), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(509), 8, + ACTIONS(323), 9, + anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -33203,13 +33462,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(507), 21, - anon_sym_LBRACE, + ACTIONS(321), 19, + anon_sym_as, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -33225,52 +33482,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [33615] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1137), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1155), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(487), 6, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - ACTIONS(485), 18, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_DOT_DOT, - [33660] = 4, + [33858] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(445), 8, + ACTIONS(589), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -33279,7 +33497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(443), 21, + ACTIONS(587), 21, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -33301,86 +33519,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [33701] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(313), 1, - sym__decimal, - ACTIONS(1074), 1, - anon_sym_DASH, - ACTIONS(1076), 1, - anon_sym_size, - ACTIONS(1082), 1, - anon_sym_unit, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(311), 3, - sym__hex, - sym__octal, - sym__binary, - ACTIONS(1080), 3, - anon_sym_utf8, - anon_sym_utf16, - anon_sym_utf32, - STATE(1011), 5, - sym__pattern_bit_string_segment_option, - sym__pattern_bit_string_named_segment_option, - sym__pattern_bit_string_segment_option_size, - sym_integer, - sym__bit_string_segment_option, - ACTIONS(1078), 14, - anon_sym_binary, - anon_sym_bytes, - anon_sym_int, - anon_sym_float, - anon_sym_bit_string, - anon_sym_bits, - anon_sym_utf8_codepoint, - anon_sym_utf16_codepoint, - anon_sym_utf32_codepoint, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_big, - anon_sym_little, - anon_sym_native, - [33754] = 12, + [33899] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1143), 1, - anon_sym_AMP_AMP, - ACTIONS(1151), 1, + ACTIONS(1155), 1, anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1137), 2, + ACTIONS(1143), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1139), 2, + ACTIONS(1145), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1145), 2, + ACTIONS(1149), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1153), 2, + ACTIONS(1157), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1155), 3, + ACTIONS(1159), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(1147), 4, + ACTIONS(1151), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1149), 4, + ACTIONS(1153), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(485), 8, + ACTIONS(443), 9, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -33388,8 +33561,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_COLON, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_DOT_DOT, - [33811] = 4, + [33954] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, @@ -33426,13 +33600,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [33852] = 4, + [33995] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(545), 8, + ACTIONS(585), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -33441,7 +33615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(543), 21, + ACTIONS(583), 21, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -33463,13 +33637,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [33893] = 4, + [34036] = 22, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(270), 1, + anon_sym_DASH, + ACTIONS(286), 1, + anon_sym_DQUOTE, + ACTIONS(292), 1, + sym__decimal, + ACTIONS(296), 1, + sym__name, + ACTIONS(298), 1, + sym__upname, + ACTIONS(1161), 1, + anon_sym_POUND, + ACTIONS(1165), 1, + anon_sym_LBRACK, + ACTIONS(1167), 1, + anon_sym_LT_LT, + ACTIONS(1169), 1, + anon_sym_DOT_DOT, + ACTIONS(1171), 1, + sym_float, + ACTIONS(1173), 1, + sym__discard_name, + ACTIONS(1264), 1, + anon_sym_RPAREN, + STATE(787), 1, + sym_identifier, + STATE(862), 1, + sym_record_pattern_argument, + STATE(970), 1, + sym__pattern, + STATE(1216), 1, + sym_pattern_spread, + STATE(1223), 1, + sym_label, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(717), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(290), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(821), 7, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_string, + sym_integer, + sym_discard, + [34113] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(555), 8, + ACTIONS(607), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -33478,7 +33707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(553), 21, + ACTIONS(605), 21, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -33500,58 +33729,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [33934] = 8, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1137), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1139), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1153), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1155), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(487), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(485), 16, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_DOT_DOT, - [33983] = 4, + [34154] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1254), 13, + ACTIONS(1266), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_BANG, @@ -33561,14 +33748,14 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1256), 16, + ACTIONS(1268), 16, anon_sym_if, anon_sym_import, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_todo, anon_sym_case, @@ -33578,68 +33765,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [34024] = 22, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(307), 1, - anon_sym_DQUOTE, - ACTIONS(313), 1, - sym__decimal, - ACTIONS(317), 1, - sym__name, - ACTIONS(319), 1, - sym__upname, - ACTIONS(1210), 1, - anon_sym_POUND, - ACTIONS(1214), 1, - anon_sym_LBRACK, - ACTIONS(1216), 1, - anon_sym_LT_LT, - ACTIONS(1218), 1, - anon_sym_DOT_DOT, - ACTIONS(1220), 1, - sym_float, - ACTIONS(1222), 1, - sym__discard_name, - ACTIONS(1258), 1, - anon_sym_RPAREN, - STATE(776), 1, - sym_identifier, - STATE(854), 1, - sym_record_pattern_argument, - STATE(1008), 1, - sym__pattern, - STATE(1259), 1, - sym_label, - STATE(1260), 1, - sym_pattern_spread, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(712), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(311), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(792), 7, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_string, - sym_integer, - sym_discard, - [34101] = 4, + [34194] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1260), 12, + ACTIONS(1270), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -33652,14 +33784,14 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1262), 16, + ACTIONS(1272), 16, anon_sym_if, anon_sym_import, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_todo, anon_sym_case, @@ -33669,13 +33801,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [34141] = 4, + [34234] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1264), 12, + ACTIONS(1274), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -33688,14 +33820,14 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1266), 16, + ACTIONS(1276), 16, anon_sym_if, anon_sym_import, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_todo, anon_sym_case, @@ -33705,13 +33837,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [34181] = 4, + [34274] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1268), 12, + ACTIONS(1278), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -33724,14 +33856,14 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1270), 16, + ACTIONS(1280), 16, anon_sym_if, anon_sym_import, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_todo, anon_sym_case, @@ -33741,13 +33873,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [34221] = 4, + [34314] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1272), 12, + ACTIONS(1282), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -33760,14 +33892,14 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1274), 16, + ACTIONS(1284), 16, anon_sym_if, anon_sym_import, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_todo, anon_sym_case, @@ -33777,13 +33909,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [34261] = 4, + [34354] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1276), 12, + ACTIONS(1286), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -33796,14 +33928,14 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1278), 16, + ACTIONS(1288), 16, anon_sym_if, anon_sym_import, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_todo, anon_sym_case, @@ -33813,13 +33945,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [34301] = 4, + [34394] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1280), 12, + ACTIONS(1290), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -33832,14 +33964,14 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1282), 16, + ACTIONS(1292), 16, anon_sym_if, anon_sym_import, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_todo, anon_sym_case, @@ -33849,13 +33981,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [34341] = 4, + [34434] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1284), 12, + ACTIONS(1294), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -33868,14 +34000,14 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1286), 16, + ACTIONS(1296), 16, anon_sym_if, anon_sym_import, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_todo, anon_sym_case, @@ -33885,13 +34017,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [34381] = 4, + [34474] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1288), 12, + ACTIONS(1298), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -33904,14 +34036,14 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1290), 16, + ACTIONS(1300), 16, anon_sym_if, anon_sym_import, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_todo, anon_sym_case, @@ -33921,13 +34053,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [34421] = 4, + [34514] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1292), 12, + ACTIONS(1302), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -33940,14 +34072,14 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1294), 16, + ACTIONS(1304), 16, anon_sym_if, anon_sym_import, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_todo, anon_sym_case, @@ -33957,13 +34089,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [34461] = 4, + [34554] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1296), 12, + ACTIONS(1306), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -33976,14 +34108,14 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1298), 16, + ACTIONS(1308), 16, anon_sym_if, anon_sym_import, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_todo, anon_sym_case, @@ -33993,187 +34125,57 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [34501] = 4, + [34594] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1300), 12, - ts_builtin_sym_end, + ACTIONS(1222), 1, + anon_sym_DASH, + ACTIONS(1224), 1, + anon_sym_DQUOTE, + ACTIONS(1230), 1, + sym__decimal, + ACTIONS(1232), 1, + sym__name, + ACTIONS(1234), 1, + sym__upname, + ACTIONS(1310), 1, anon_sym_LBRACE, + ACTIONS(1312), 1, anon_sym_POUND, + ACTIONS(1314), 1, anon_sym_LBRACK, + ACTIONS(1316), 1, anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, + ACTIONS(1318), 1, sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1302), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, - anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [34541] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1304), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1306), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, - anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [34581] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1308), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1310), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, - anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [34621] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1312), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1314), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, - anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [34661] = 4, - ACTIONS(3), 1, - sym_module_comment, + STATE(690), 1, + sym_identifier, + STATE(691), 1, + sym__case_clause_tuple_access, + STATE(700), 1, + sym__case_clause_guard_binary_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1316), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, + STATE(466), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(1228), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - ACTIONS(1318), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, - anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [34701] = 4, + STATE(718), 10, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym__case_clause_guard_expression, + sym__case_clause_guard_unit, + sym_string, + sym_integer, + [34662] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, @@ -34197,9 +34199,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_import, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_todo, anon_sym_case, @@ -34209,7 +34211,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [34741] = 4, + [34702] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, @@ -34233,9 +34235,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_import, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_todo, anon_sym_case, @@ -34245,7 +34247,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [34781] = 4, + [34742] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, @@ -34269,9 +34271,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_import, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_todo, anon_sym_case, @@ -34281,7 +34283,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [34821] = 4, + [34782] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, @@ -34305,9 +34307,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_import, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_todo, anon_sym_case, @@ -34317,7 +34319,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [34861] = 4, + [34822] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, @@ -34341,9 +34343,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_import, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_todo, anon_sym_case, @@ -34353,7 +34355,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [34901] = 4, + [34862] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, @@ -34377,9 +34379,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_import, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_todo, anon_sym_case, @@ -34389,7 +34391,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [34941] = 4, + [34902] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, @@ -34413,9 +34415,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_import, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_todo, anon_sym_case, @@ -34425,7 +34427,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [34981] = 4, + [34942] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, @@ -34449,9 +34451,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_import, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_todo, anon_sym_case, @@ -34461,7 +34463,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [35021] = 4, + [34982] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, @@ -34485,45 +34487,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_import, anon_sym_const, anon_sym_DASH, - anon_sym_external, - anon_sym_type, anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [35061] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1356), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1358), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, - anon_sym_DASH, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_todo, anon_sym_case, @@ -34533,49 +34499,51 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [35101] = 4, + [35022] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1356), 1, + anon_sym_LPAREN, + STATE(528), 1, + sym_constant_record_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1360), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1362), 16, - anon_sym_if, + ACTIONS(1107), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1105), 22, + anon_sym_RBRACE, anon_sym_import, + anon_sym_COMMA, anon_sym_const, - anon_sym_DASH, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_fn, + anon_sym_DASH_GT, anon_sym_external, anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, sym_visibility_modifier, sym_opacity_modifier, - sym__decimal, - sym__name, - [35141] = 4, + [35066] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1364), 12, + ACTIONS(1358), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -34588,14 +34556,14 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1366), 16, + ACTIONS(1360), 16, anon_sym_if, anon_sym_import, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_todo, anon_sym_case, @@ -34605,13 +34573,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [35181] = 4, + [35106] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1368), 12, + ACTIONS(1362), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -34624,14 +34592,14 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1370), 16, + ACTIONS(1364), 16, anon_sym_if, anon_sym_import, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_todo, anon_sym_case, @@ -34641,13 +34609,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [35221] = 4, + [35146] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1372), 12, + ACTIONS(1366), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -34660,14 +34628,14 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1374), 16, + ACTIONS(1368), 16, anon_sym_if, anon_sym_import, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_todo, anon_sym_case, @@ -34677,13 +34645,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [35261] = 4, + [35186] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1376), 12, + ACTIONS(1370), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -34696,14 +34664,14 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1378), 16, + ACTIONS(1372), 16, anon_sym_if, anon_sym_import, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_todo, anon_sym_case, @@ -34713,13 +34681,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [35301] = 4, + [35226] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1380), 12, + ACTIONS(1374), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -34732,14 +34700,14 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1382), 16, + ACTIONS(1376), 16, anon_sym_if, anon_sym_import, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_todo, anon_sym_case, @@ -34749,13 +34717,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [35341] = 4, + [35266] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1384), 12, + ACTIONS(1378), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -34768,14 +34736,14 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1386), 16, + ACTIONS(1380), 16, anon_sym_if, anon_sym_import, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_todo, anon_sym_case, @@ -34785,13 +34753,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [35381] = 4, + [35306] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1388), 12, + ACTIONS(1382), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -34804,14 +34772,14 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1390), 16, + ACTIONS(1384), 16, anon_sym_if, anon_sym_import, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_todo, anon_sym_case, @@ -34821,13 +34789,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [35421] = 4, + [35346] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1392), 12, + ACTIONS(1386), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -34840,14 +34808,14 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1394), 16, + ACTIONS(1388), 16, anon_sym_if, anon_sym_import, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_todo, anon_sym_case, @@ -34857,13 +34825,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [35461] = 4, + [35386] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1396), 12, + ACTIONS(1390), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -34876,14 +34844,14 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1398), 16, + ACTIONS(1392), 16, anon_sym_if, anon_sym_import, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_todo, anon_sym_case, @@ -34893,13 +34861,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [35501] = 4, + [35426] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1400), 12, + ACTIONS(1394), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -34912,14 +34880,14 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1402), 16, + ACTIONS(1396), 16, anon_sym_if, anon_sym_import, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_todo, anon_sym_case, @@ -34929,13 +34897,63 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [35541] = 4, + [35466] = 18, ACTIONS(3), 1, sym_module_comment, + ACTIONS(270), 1, + anon_sym_DASH, + ACTIONS(286), 1, + anon_sym_DQUOTE, + ACTIONS(292), 1, + sym__decimal, + ACTIONS(298), 1, + sym__upname, + ACTIONS(709), 1, + sym__name, + ACTIONS(1310), 1, + anon_sym_LBRACE, + ACTIONS(1312), 1, + anon_sym_POUND, + ACTIONS(1314), 1, + anon_sym_LBRACK, + ACTIONS(1316), 1, + anon_sym_LT_LT, + ACTIONS(1398), 1, + sym_float, + STATE(684), 1, + sym_identifier, + STATE(691), 1, + sym__case_clause_tuple_access, + STATE(700), 1, + sym__case_clause_guard_binary_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1404), 12, + STATE(466), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(290), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(723), 10, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym__case_clause_guard_expression, + sym__case_clause_guard_unit, + sym_string, + sym_integer, + [35534] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1400), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -34948,14 +34966,14 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1406), 16, + ACTIONS(1402), 16, anon_sym_if, anon_sym_import, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_todo, anon_sym_case, @@ -34965,51 +34983,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [35581] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1408), 1, - anon_sym_LPAREN, - STATE(541), 1, - sym_constant_record_arguments, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1129), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1127), 22, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_COMMA, - anon_sym_const, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [35625] = 4, + [35574] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1410), 12, + ACTIONS(1404), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -35022,14 +35002,14 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1412), 16, + ACTIONS(1406), 16, anon_sym_if, anon_sym_import, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_todo, anon_sym_case, @@ -35039,13 +35019,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [35665] = 4, + [35614] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1414), 12, + ACTIONS(1408), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -35058,14 +35038,14 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1416), 16, + ACTIONS(1410), 16, anon_sym_if, anon_sym_import, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_todo, anon_sym_case, @@ -35075,13 +35055,63 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [35705] = 4, + [35654] = 18, ACTIONS(3), 1, sym_module_comment, + ACTIONS(270), 1, + anon_sym_DASH, + ACTIONS(286), 1, + anon_sym_DQUOTE, + ACTIONS(292), 1, + sym__decimal, + ACTIONS(298), 1, + sym__upname, + ACTIONS(709), 1, + sym__name, + ACTIONS(1310), 1, + anon_sym_LBRACE, + ACTIONS(1312), 1, + anon_sym_POUND, + ACTIONS(1314), 1, + anon_sym_LBRACK, + ACTIONS(1316), 1, + anon_sym_LT_LT, + ACTIONS(1412), 1, + sym_float, + STATE(684), 1, + sym_identifier, + STATE(691), 1, + sym__case_clause_tuple_access, + STATE(700), 1, + sym__case_clause_guard_binary_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1418), 12, + STATE(466), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(290), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(685), 10, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym__case_clause_guard_expression, + sym__case_clause_guard_unit, + sym_string, + sym_integer, + [35722] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1414), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -35094,14 +35124,14 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1420), 16, + ACTIONS(1416), 16, anon_sym_if, anon_sym_import, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_todo, anon_sym_case, @@ -35111,13 +35141,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [35745] = 4, + [35762] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(653), 12, + ACTIONS(1418), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -35130,14 +35160,14 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(655), 16, + ACTIONS(1420), 16, anon_sym_if, anon_sym_import, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_todo, anon_sym_case, @@ -35147,7 +35177,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [35785] = 4, + [35802] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, @@ -35171,9 +35201,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_import, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_todo, anon_sym_case, @@ -35183,7 +35213,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [35825] = 4, + [35842] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, @@ -35207,9 +35237,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_import, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_todo, anon_sym_case, @@ -35219,7 +35249,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [35865] = 4, + [35882] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, @@ -35243,9 +35273,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_import, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_todo, anon_sym_case, @@ -35255,13 +35285,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [35905] = 4, + [35922] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1434), 12, + ACTIONS(459), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -35274,14 +35304,14 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1436), 16, + ACTIONS(461), 16, anon_sym_if, anon_sym_import, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_todo, anon_sym_case, @@ -35291,13 +35321,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [35945] = 4, + [35962] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1438), 12, + ACTIONS(1434), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -35310,14 +35340,14 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1440), 16, + ACTIONS(1436), 16, anon_sym_if, anon_sym_import, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_todo, anon_sym_case, @@ -35327,13 +35357,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [35985] = 4, + [36002] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1442), 12, + ACTIONS(1438), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -35346,14 +35376,14 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1444), 16, + ACTIONS(1440), 16, anon_sym_if, anon_sym_import, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_todo, anon_sym_case, @@ -35363,49 +35393,213 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [36025] = 4, + [36042] = 18, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1222), 1, + anon_sym_DASH, + ACTIONS(1224), 1, + anon_sym_DQUOTE, + ACTIONS(1230), 1, + sym__decimal, + ACTIONS(1232), 1, + sym__name, + ACTIONS(1234), 1, + sym__upname, + ACTIONS(1310), 1, + anon_sym_LBRACE, + ACTIONS(1312), 1, + anon_sym_POUND, + ACTIONS(1314), 1, + anon_sym_LBRACK, + ACTIONS(1316), 1, + anon_sym_LT_LT, + ACTIONS(1412), 1, + sym_float, + STATE(690), 1, + sym_identifier, + STATE(691), 1, + sym__case_clause_tuple_access, + STATE(700), 1, + sym__case_clause_guard_binary_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1446), 12, - ts_builtin_sym_end, + STATE(466), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(1228), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(685), 10, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym__case_clause_guard_expression, + sym__case_clause_guard_unit, + sym_string, + sym_integer, + [36110] = 18, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1222), 1, + anon_sym_DASH, + ACTIONS(1224), 1, + anon_sym_DQUOTE, + ACTIONS(1230), 1, + sym__decimal, + ACTIONS(1232), 1, + sym__name, + ACTIONS(1234), 1, + sym__upname, + ACTIONS(1310), 1, anon_sym_LBRACE, + ACTIONS(1312), 1, anon_sym_POUND, + ACTIONS(1314), 1, anon_sym_LBRACK, + ACTIONS(1316), 1, anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, + ACTIONS(1442), 1, sym_float, + STATE(690), 1, + sym_identifier, + STATE(691), 1, + sym__case_clause_tuple_access, + STATE(700), 1, + sym__case_clause_guard_binary_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(466), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(1228), 3, sym__hex, sym__octal, sym__binary, + STATE(724), 10, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym__case_clause_guard_expression, + sym__case_clause_guard_unit, + sym_string, + sym_integer, + [36178] = 18, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1222), 1, + anon_sym_DASH, + ACTIONS(1224), 1, + anon_sym_DQUOTE, + ACTIONS(1230), 1, + sym__decimal, + ACTIONS(1232), 1, + sym__name, + ACTIONS(1234), 1, sym__upname, - ACTIONS(1448), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, + ACTIONS(1310), 1, + anon_sym_LBRACE, + ACTIONS(1312), 1, + anon_sym_POUND, + ACTIONS(1314), 1, + anon_sym_LBRACK, + ACTIONS(1316), 1, + anon_sym_LT_LT, + ACTIONS(1444), 1, + sym_float, + STATE(690), 1, + sym_identifier, + STATE(691), 1, + sym__case_clause_tuple_access, + STATE(700), 1, + sym__case_clause_guard_binary_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(466), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(1228), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(725), 10, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym__case_clause_guard_expression, + sym__case_clause_guard_unit, + sym_string, + sym_integer, + [36246] = 18, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1222), 1, anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, + ACTIONS(1224), 1, + anon_sym_DQUOTE, + ACTIONS(1230), 1, sym__decimal, + ACTIONS(1232), 1, sym__name, - [36065] = 4, + ACTIONS(1234), 1, + sym__upname, + ACTIONS(1310), 1, + anon_sym_LBRACE, + ACTIONS(1312), 1, + anon_sym_POUND, + ACTIONS(1314), 1, + anon_sym_LBRACK, + ACTIONS(1316), 1, + anon_sym_LT_LT, + ACTIONS(1446), 1, + sym_float, + STATE(690), 1, + sym_identifier, + STATE(691), 1, + sym__case_clause_tuple_access, + STATE(700), 1, + sym__case_clause_guard_binary_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(466), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(1228), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(727), 10, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym__case_clause_guard_expression, + sym__case_clause_guard_unit, + sym_string, + sym_integer, + [36314] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1450), 12, + ACTIONS(1448), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -35418,14 +35612,14 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1452), 16, + ACTIONS(1450), 16, anon_sym_if, anon_sym_import, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_todo, anon_sym_case, @@ -35435,13 +35629,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [36105] = 4, + [36354] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1454), 12, + ACTIONS(1452), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -35454,14 +35648,14 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1456), 16, + ACTIONS(1454), 16, anon_sym_if, anon_sym_import, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_todo, anon_sym_case, @@ -35471,13 +35665,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [36145] = 4, + [36394] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1458), 12, + ACTIONS(1456), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -35490,14 +35684,14 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1460), 16, + ACTIONS(1458), 16, anon_sym_if, anon_sym_import, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_todo, anon_sym_case, @@ -35507,13 +35701,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [36185] = 4, + [36434] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1462), 12, + ACTIONS(1460), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -35526,14 +35720,14 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1464), 16, + ACTIONS(1462), 16, anon_sym_if, anon_sym_import, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_todo, anon_sym_case, @@ -35543,13 +35737,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [36225] = 4, + [36474] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1466), 12, + ACTIONS(1464), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -35562,14 +35756,14 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1468), 16, + ACTIONS(1466), 16, anon_sym_if, anon_sym_import, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_todo, anon_sym_case, @@ -35579,13 +35773,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [36265] = 4, + [36514] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1470), 12, + ACTIONS(1468), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -35598,14 +35792,14 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1472), 16, + ACTIONS(1470), 16, anon_sym_if, anon_sym_import, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_todo, anon_sym_case, @@ -35615,13 +35809,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [36305] = 4, + [36554] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1474), 12, + ACTIONS(1472), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -35634,14 +35828,14 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1476), 16, + ACTIONS(1474), 16, anon_sym_if, anon_sym_import, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_todo, anon_sym_case, @@ -35651,13 +35845,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [36345] = 4, + [36594] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1478), 12, + ACTIONS(1476), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -35670,14 +35864,14 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1480), 16, + ACTIONS(1478), 16, anon_sym_if, anon_sym_import, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_todo, anon_sym_case, @@ -35687,13 +35881,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [36385] = 4, + [36634] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1482), 12, + ACTIONS(1480), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -35706,14 +35900,14 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1484), 16, + ACTIONS(1482), 16, anon_sym_if, anon_sym_import, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_todo, anon_sym_case, @@ -35723,13 +35917,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [36425] = 4, + [36674] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1486), 12, + ACTIONS(1484), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -35742,14 +35936,14 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1488), 16, + ACTIONS(1486), 16, anon_sym_if, anon_sym_import, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_todo, anon_sym_case, @@ -35759,13 +35953,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [36465] = 4, + [36714] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1490), 12, + ACTIONS(1488), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -35778,14 +35972,14 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1492), 16, + ACTIONS(1490), 16, anon_sym_if, anon_sym_import, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_todo, anon_sym_case, @@ -35795,13 +35989,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [36505] = 4, + [36754] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1494), 12, + ACTIONS(1492), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -35814,14 +36008,14 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1496), 16, + ACTIONS(1494), 16, anon_sym_if, anon_sym_import, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_todo, anon_sym_case, @@ -35831,7 +36025,57 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [36545] = 4, + [36794] = 18, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(270), 1, + anon_sym_DASH, + ACTIONS(286), 1, + anon_sym_DQUOTE, + ACTIONS(292), 1, + sym__decimal, + ACTIONS(298), 1, + sym__upname, + ACTIONS(709), 1, + sym__name, + ACTIONS(1310), 1, + anon_sym_LBRACE, + ACTIONS(1312), 1, + anon_sym_POUND, + ACTIONS(1314), 1, + anon_sym_LBRACK, + ACTIONS(1316), 1, + anon_sym_LT_LT, + ACTIONS(1496), 1, + sym_float, + STATE(684), 1, + sym_identifier, + STATE(691), 1, + sym__case_clause_tuple_access, + STATE(700), 1, + sym__case_clause_guard_binary_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(466), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(290), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(729), 10, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym__case_clause_guard_expression, + sym__case_clause_guard_unit, + sym_string, + sym_integer, + [36862] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, @@ -35855,9 +36099,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_import, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, anon_sym_try, anon_sym_todo, anon_sym_case, @@ -35867,7 +36111,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [36585] = 4, + [36902] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, @@ -35891,9 +36135,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_import, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, anon_sym_type, + anon_sym_try, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [36942] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1506), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1508), 16, + anon_sym_if, + anon_sym_import, + anon_sym_const, + anon_sym_DASH, anon_sym_fn, + anon_sym_external, + anon_sym_type, anon_sym_try, anon_sym_todo, anon_sym_case, @@ -35903,249 +36183,401 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [36625] = 18, + [36982] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(291), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1510), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1512), 16, + anon_sym_if, + anon_sym_import, + anon_sym_const, anon_sym_DASH, - ACTIONS(307), 1, + anon_sym_fn, + anon_sym_external, + anon_sym_type, + anon_sym_try, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [37022] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1514), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1516), 16, + anon_sym_if, + anon_sym_import, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_type, + anon_sym_try, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [37062] = 18, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(270), 1, + anon_sym_DASH, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(319), 1, + ACTIONS(298), 1, sym__upname, ACTIONS(709), 1, sym__name, - ACTIONS(1506), 1, + ACTIONS(1310), 1, anon_sym_LBRACE, - ACTIONS(1508), 1, + ACTIONS(1312), 1, anon_sym_POUND, - ACTIONS(1510), 1, + ACTIONS(1314), 1, anon_sym_LBRACK, - ACTIONS(1512), 1, + ACTIONS(1316), 1, anon_sym_LT_LT, - ACTIONS(1514), 1, + ACTIONS(1518), 1, sym_float, - STATE(675), 1, + STATE(684), 1, sym_identifier, - STATE(687), 1, + STATE(691), 1, sym__case_clause_tuple_access, - STATE(697), 1, + STATE(700), 1, sym__case_clause_guard_binary_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(481), 2, + STATE(466), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(311), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(703), 9, + STATE(720), 10, sym__constant_value, sym_constant_tuple, sym_constant_list, sym__constant_bit_string, sym_constant_record, + sym_constant_field_access, sym__case_clause_guard_expression, sym__case_clause_guard_unit, sym_string, sym_integer, - [36692] = 20, + [37130] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(307), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1520), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, anon_sym_DQUOTE, - ACTIONS(313), 1, - sym__decimal, - ACTIONS(319), 1, + sym_float, + sym__hex, + sym__octal, + sym__binary, sym__upname, - ACTIONS(709), 1, + ACTIONS(1522), 16, + anon_sym_if, + anon_sym_import, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_type, + anon_sym_try, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, sym__name, - ACTIONS(1210), 1, + [37170] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1524), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, anon_sym_POUND, - ACTIONS(1214), 1, anon_sym_LBRACK, - ACTIONS(1216), 1, anon_sym_LT_LT, - ACTIONS(1220), 1, + anon_sym_BANG, + anon_sym_DQUOTE, sym_float, - ACTIONS(1222), 1, - sym__discard_name, - ACTIONS(1516), 1, - anon_sym_RBRACK, - ACTIONS(1518), 1, - anon_sym_DOT_DOT, - STATE(776), 1, - sym_identifier, - STATE(814), 1, - sym__pattern, - STATE(1221), 1, - sym_list_pattern_tail, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1526), 16, + anon_sym_if, + anon_sym_import, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_type, + anon_sym_try, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [37210] = 4, + ACTIONS(3), 1, + sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(712), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(311), 3, + ACTIONS(1528), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, sym__hex, sym__octal, sym__binary, - STATE(792), 7, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_string, - sym_integer, - sym_discard, - [36763] = 18, + sym__upname, + ACTIONS(1530), 16, + anon_sym_if, + anon_sym_import, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_type, + anon_sym_try, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [37250] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(291), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(307), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(319), 1, + ACTIONS(298), 1, sym__upname, ACTIONS(709), 1, sym__name, - ACTIONS(1506), 1, + ACTIONS(1310), 1, anon_sym_LBRACE, - ACTIONS(1508), 1, + ACTIONS(1312), 1, anon_sym_POUND, - ACTIONS(1510), 1, + ACTIONS(1314), 1, anon_sym_LBRACK, - ACTIONS(1512), 1, + ACTIONS(1316), 1, anon_sym_LT_LT, - ACTIONS(1520), 1, + ACTIONS(1532), 1, sym_float, - STATE(675), 1, + STATE(684), 1, sym_identifier, - STATE(687), 1, + STATE(691), 1, sym__case_clause_tuple_access, - STATE(697), 1, + STATE(700), 1, sym__case_clause_guard_binary_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(481), 2, + STATE(466), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(311), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(710), 9, + STATE(728), 10, sym__constant_value, sym_constant_tuple, sym_constant_list, sym__constant_bit_string, sym_constant_record, + sym_constant_field_access, sym__case_clause_guard_expression, sym__case_clause_guard_unit, sym_string, sym_integer, - [36830] = 20, + [37318] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1210), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1534), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, anon_sym_POUND, - ACTIONS(1214), 1, anon_sym_LBRACK, - ACTIONS(1216), 1, anon_sym_LT_LT, - ACTIONS(1222), 1, - sym__discard_name, - ACTIONS(1224), 1, - anon_sym_DASH, - ACTIONS(1226), 1, + anon_sym_BANG, anon_sym_DQUOTE, - ACTIONS(1228), 1, sym_float, - ACTIONS(1232), 1, - sym__decimal, - ACTIONS(1234), 1, - sym__name, - ACTIONS(1236), 1, + sym__hex, + sym__octal, + sym__binary, sym__upname, - ACTIONS(1522), 1, + ACTIONS(1536), 16, anon_sym_if, - ACTIONS(1524), 1, - anon_sym_DASH_GT, - STATE(835), 1, - sym_identifier, - STATE(840), 1, - sym__pattern, - STATE(1003), 1, - sym_case_clause_pattern, + anon_sym_import, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_type, + anon_sym_try, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [37358] = 4, + ACTIONS(3), 1, + sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(712), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1230), 3, + ACTIONS(1538), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, sym__hex, sym__octal, sym__binary, - STATE(855), 7, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_string, - sym_integer, - sym_discard, - [36901] = 19, + sym__upname, + ACTIONS(1540), 16, + anon_sym_if, + anon_sym_import, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_type, + anon_sym_try, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [37398] = 19, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1210), 1, + ACTIONS(1161), 1, anon_sym_POUND, - ACTIONS(1214), 1, + ACTIONS(1165), 1, anon_sym_LBRACK, - ACTIONS(1216), 1, + ACTIONS(1167), 1, anon_sym_LT_LT, - ACTIONS(1222), 1, + ACTIONS(1173), 1, sym__discard_name, - ACTIONS(1224), 1, + ACTIONS(1222), 1, anon_sym_DASH, - ACTIONS(1226), 1, + ACTIONS(1224), 1, anon_sym_DQUOTE, - ACTIONS(1228), 1, + ACTIONS(1226), 1, sym_float, - ACTIONS(1232), 1, + ACTIONS(1230), 1, sym__decimal, - ACTIONS(1234), 1, + ACTIONS(1232), 1, sym__name, - ACTIONS(1236), 1, + ACTIONS(1234), 1, sym__upname, - ACTIONS(1526), 1, + ACTIONS(1542), 1, anon_sym_if, - STATE(814), 1, + STATE(824), 1, sym__pattern, - STATE(835), 1, + STATE(847), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1528), 2, + ACTIONS(1544), 2, anon_sym_DASH_GT, anon_sym_PIPE, - STATE(712), 2, + STATE(717), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1230), 3, + ACTIONS(1228), 3, sym__hex, sym__octal, sym__binary, - STATE(855), 7, + STATE(865), 7, sym_record_pattern, sym_tuple_pattern, sym__pattern_bit_string, @@ -36153,49 +36585,50 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [36970] = 19, + [37467] = 20, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1210), 1, + ACTIONS(1161), 1, anon_sym_POUND, - ACTIONS(1214), 1, + ACTIONS(1165), 1, anon_sym_LBRACK, - ACTIONS(1216), 1, + ACTIONS(1167), 1, anon_sym_LT_LT, - ACTIONS(1222), 1, + ACTIONS(1173), 1, sym__discard_name, - ACTIONS(1224), 1, + ACTIONS(1222), 1, anon_sym_DASH, - ACTIONS(1226), 1, + ACTIONS(1224), 1, anon_sym_DQUOTE, - ACTIONS(1228), 1, + ACTIONS(1226), 1, sym_float, - ACTIONS(1232), 1, + ACTIONS(1230), 1, sym__decimal, - ACTIONS(1234), 1, + ACTIONS(1232), 1, sym__name, - ACTIONS(1236), 1, + ACTIONS(1234), 1, sym__upname, - ACTIONS(1530), 1, + ACTIONS(1546), 1, anon_sym_if, - STATE(814), 1, - sym__pattern, - STATE(835), 1, + ACTIONS(1548), 1, + anon_sym_DASH_GT, + STATE(847), 1, sym_identifier, + STATE(852), 1, + sym__pattern, + STATE(1008), 1, + sym_case_clause_pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1532), 2, - anon_sym_DASH_GT, - anon_sym_PIPE, - STATE(712), 2, + STATE(717), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1230), 3, + ACTIONS(1228), 3, sym__hex, sym__octal, sym__binary, - STATE(855), 7, + STATE(865), 7, sym_record_pattern, sym_tuple_pattern, sym__pattern_bit_string, @@ -36203,101 +36636,50 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [37039] = 20, + [37538] = 20, ACTIONS(3), 1, sym_module_comment, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(307), 1, - anon_sym_DQUOTE, - ACTIONS(313), 1, - sym__decimal, - ACTIONS(319), 1, - sym__upname, - ACTIONS(709), 1, - sym__name, - ACTIONS(1210), 1, + ACTIONS(1161), 1, anon_sym_POUND, - ACTIONS(1214), 1, + ACTIONS(1165), 1, anon_sym_LBRACK, - ACTIONS(1216), 1, + ACTIONS(1167), 1, anon_sym_LT_LT, - ACTIONS(1220), 1, - sym_float, - ACTIONS(1222), 1, + ACTIONS(1173), 1, sym__discard_name, - ACTIONS(1518), 1, - anon_sym_DOT_DOT, - ACTIONS(1534), 1, - anon_sym_RBRACK, - STATE(776), 1, - sym_identifier, - STATE(861), 1, - sym__pattern, - STATE(1197), 1, - sym_list_pattern_tail, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(712), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(311), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(792), 7, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_string, - sym_integer, - sym_discard, - [37110] = 20, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(291), 1, + ACTIONS(1222), 1, anon_sym_DASH, - ACTIONS(307), 1, + ACTIONS(1224), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(1226), 1, + sym_float, + ACTIONS(1230), 1, sym__decimal, - ACTIONS(319), 1, - sym__upname, - ACTIONS(709), 1, + ACTIONS(1232), 1, sym__name, - ACTIONS(1210), 1, - anon_sym_POUND, - ACTIONS(1214), 1, - anon_sym_LBRACK, - ACTIONS(1216), 1, - anon_sym_LT_LT, - ACTIONS(1220), 1, - sym_float, - ACTIONS(1222), 1, - sym__discard_name, - ACTIONS(1518), 1, - anon_sym_DOT_DOT, - ACTIONS(1536), 1, - anon_sym_RBRACK, - STATE(776), 1, + ACTIONS(1234), 1, + sym__upname, + ACTIONS(1550), 1, + anon_sym_if, + ACTIONS(1552), 1, + anon_sym_DASH_GT, + STATE(847), 1, sym_identifier, - STATE(814), 1, + STATE(852), 1, sym__pattern, - STATE(1253), 1, - sym_list_pattern_tail, + STATE(1008), 1, + sym_case_clause_pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(712), 2, + STATE(717), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(311), 3, + ACTIONS(1228), 3, sym__hex, sym__octal, sym__binary, - STATE(792), 7, + STATE(865), 7, sym_record_pattern, sym_tuple_pattern, sym__pattern_bit_string, @@ -36305,99 +36687,49 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [37181] = 18, + [37609] = 19, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1224), 1, - anon_sym_DASH, - ACTIONS(1226), 1, - anon_sym_DQUOTE, - ACTIONS(1232), 1, - sym__decimal, - ACTIONS(1234), 1, - sym__name, - ACTIONS(1236), 1, - sym__upname, - ACTIONS(1506), 1, - anon_sym_LBRACE, - ACTIONS(1508), 1, - anon_sym_POUND, - ACTIONS(1510), 1, - anon_sym_LBRACK, - ACTIONS(1512), 1, - anon_sym_LT_LT, - ACTIONS(1538), 1, - sym_float, - STATE(685), 1, - sym_identifier, - STATE(687), 1, - sym__case_clause_tuple_access, - STATE(697), 1, - sym__case_clause_guard_binary_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(481), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1230), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(704), 9, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym__case_clause_guard_expression, - sym__case_clause_guard_unit, - sym_string, - sym_integer, - [37248] = 20, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1210), 1, + ACTIONS(1161), 1, anon_sym_POUND, - ACTIONS(1214), 1, + ACTIONS(1165), 1, anon_sym_LBRACK, - ACTIONS(1216), 1, + ACTIONS(1167), 1, anon_sym_LT_LT, - ACTIONS(1222), 1, + ACTIONS(1173), 1, sym__discard_name, - ACTIONS(1224), 1, + ACTIONS(1222), 1, anon_sym_DASH, - ACTIONS(1226), 1, + ACTIONS(1224), 1, anon_sym_DQUOTE, - ACTIONS(1228), 1, + ACTIONS(1226), 1, sym_float, - ACTIONS(1232), 1, + ACTIONS(1230), 1, sym__decimal, - ACTIONS(1234), 1, + ACTIONS(1232), 1, sym__name, - ACTIONS(1236), 1, + ACTIONS(1234), 1, sym__upname, - ACTIONS(1540), 1, + ACTIONS(1554), 1, anon_sym_if, - ACTIONS(1542), 1, - anon_sym_DASH_GT, - STATE(835), 1, - sym_identifier, - STATE(840), 1, + STATE(824), 1, sym__pattern, - STATE(1003), 1, - sym_case_clause_pattern, + STATE(847), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(712), 2, + ACTIONS(1556), 2, + anon_sym_DASH_GT, + anon_sym_PIPE, + STATE(717), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1230), 3, + ACTIONS(1228), 3, sym__hex, sym__octal, sym__binary, - STATE(855), 7, + STATE(865), 7, sym_record_pattern, sym_tuple_pattern, sym__pattern_bit_string, @@ -36405,439 +36737,389 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [37319] = 18, + [37678] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1224), 1, - anon_sym_DASH, - ACTIONS(1226), 1, - anon_sym_DQUOTE, - ACTIONS(1232), 1, - sym__decimal, - ACTIONS(1234), 1, - sym__name, - ACTIONS(1236), 1, - sym__upname, - ACTIONS(1506), 1, - anon_sym_LBRACE, - ACTIONS(1508), 1, - anon_sym_POUND, - ACTIONS(1510), 1, - anon_sym_LBRACK, - ACTIONS(1512), 1, - anon_sym_LT_LT, - ACTIONS(1544), 1, - sym_float, - STATE(685), 1, - sym_identifier, - STATE(687), 1, - sym__case_clause_tuple_access, - STATE(697), 1, - sym__case_clause_guard_binary_expression, + ACTIONS(1147), 1, + anon_sym_AMP_AMP, + ACTIONS(1155), 1, + anon_sym_PIPE_GT, + ACTIONS(1179), 1, + anon_sym_PIPE_PIPE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(481), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1230), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(707), 9, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym__case_clause_guard_expression, - sym__case_clause_guard_unit, - sym_string, - sym_integer, - [37386] = 18, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(291), 1, + ACTIONS(1143), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1145), 2, anon_sym_DASH, - ACTIONS(307), 1, - anon_sym_DQUOTE, - ACTIONS(313), 1, - sym__decimal, - ACTIONS(319), 1, - sym__upname, - ACTIONS(709), 1, - sym__name, - ACTIONS(1506), 1, + anon_sym_PLUS, + ACTIONS(1149), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1157), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1159), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(1151), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1153), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(1558), 5, anon_sym_LBRACE, - ACTIONS(1508), 1, - anon_sym_POUND, - ACTIONS(1510), 1, - anon_sym_LBRACK, - ACTIONS(1512), 1, - anon_sym_LT_LT, - ACTIONS(1546), 1, - sym_float, - STATE(675), 1, - sym_identifier, - STATE(687), 1, - sym__case_clause_tuple_access, - STATE(697), 1, - sym__case_clause_guard_binary_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(481), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(311), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(705), 9, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym__case_clause_guard_expression, - sym__case_clause_guard_unit, - sym_string, - sym_integer, - [37453] = 18, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [37735] = 20, ACTIONS(3), 1, sym_module_comment, - ACTIONS(291), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(307), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(319), 1, + ACTIONS(298), 1, sym__upname, ACTIONS(709), 1, sym__name, - ACTIONS(1506), 1, - anon_sym_LBRACE, - ACTIONS(1508), 1, + ACTIONS(1161), 1, anon_sym_POUND, - ACTIONS(1510), 1, + ACTIONS(1165), 1, anon_sym_LBRACK, - ACTIONS(1512), 1, + ACTIONS(1167), 1, anon_sym_LT_LT, - ACTIONS(1548), 1, + ACTIONS(1171), 1, sym_float, - STATE(675), 1, + ACTIONS(1173), 1, + sym__discard_name, + ACTIONS(1560), 1, + anon_sym_RBRACK, + ACTIONS(1562), 1, + anon_sym_DOT_DOT, + STATE(787), 1, sym_identifier, - STATE(687), 1, - sym__case_clause_tuple_access, - STATE(697), 1, - sym__case_clause_guard_binary_expression, + STATE(824), 1, + sym__pattern, + STATE(1263), 1, + sym_list_pattern_tail, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(481), 2, + STATE(717), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(311), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(702), 9, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym__case_clause_guard_expression, - sym__case_clause_guard_unit, + STATE(821), 7, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, sym_string, sym_integer, - [37520] = 18, + sym_discard, + [37806] = 20, ACTIONS(3), 1, sym_module_comment, - ACTIONS(291), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(307), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(319), 1, + ACTIONS(298), 1, sym__upname, ACTIONS(709), 1, sym__name, - ACTIONS(1506), 1, - anon_sym_LBRACE, - ACTIONS(1508), 1, + ACTIONS(1161), 1, anon_sym_POUND, - ACTIONS(1510), 1, + ACTIONS(1165), 1, anon_sym_LBRACK, - ACTIONS(1512), 1, + ACTIONS(1167), 1, anon_sym_LT_LT, - ACTIONS(1550), 1, + ACTIONS(1171), 1, sym_float, - STATE(675), 1, + ACTIONS(1173), 1, + sym__discard_name, + ACTIONS(1562), 1, + anon_sym_DOT_DOT, + ACTIONS(1564), 1, + anon_sym_RBRACK, + STATE(787), 1, sym_identifier, - STATE(687), 1, - sym__case_clause_tuple_access, - STATE(697), 1, - sym__case_clause_guard_binary_expression, + STATE(871), 1, + sym__pattern, + STATE(1264), 1, + sym_list_pattern_tail, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(481), 2, + STATE(717), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(311), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(681), 9, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym__case_clause_guard_expression, - sym__case_clause_guard_unit, + STATE(821), 7, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, sym_string, sym_integer, - [37587] = 18, + sym_discard, + [37877] = 20, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1224), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(1226), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(1232), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(1234), 1, - sym__name, - ACTIONS(1236), 1, + ACTIONS(298), 1, sym__upname, - ACTIONS(1506), 1, - anon_sym_LBRACE, - ACTIONS(1508), 1, + ACTIONS(709), 1, + sym__name, + ACTIONS(1161), 1, anon_sym_POUND, - ACTIONS(1510), 1, + ACTIONS(1165), 1, anon_sym_LBRACK, - ACTIONS(1512), 1, + ACTIONS(1167), 1, anon_sym_LT_LT, - ACTIONS(1552), 1, + ACTIONS(1171), 1, sym_float, - STATE(685), 1, + ACTIONS(1173), 1, + sym__discard_name, + ACTIONS(1562), 1, + anon_sym_DOT_DOT, + ACTIONS(1566), 1, + anon_sym_RBRACK, + STATE(787), 1, sym_identifier, - STATE(687), 1, - sym__case_clause_tuple_access, - STATE(697), 1, - sym__case_clause_guard_binary_expression, + STATE(824), 1, + sym__pattern, + STATE(1270), 1, + sym_list_pattern_tail, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(481), 2, + STATE(717), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1230), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(709), 9, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym__case_clause_guard_expression, - sym__case_clause_guard_unit, + STATE(821), 7, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, sym_string, sym_integer, - [37654] = 13, + sym_discard, + [37948] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1141), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1143), 1, + ACTIONS(1147), 1, anon_sym_AMP_AMP, - ACTIONS(1151), 1, + ACTIONS(1155), 1, anon_sym_PIPE_GT, + ACTIONS(1179), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1568), 1, + anon_sym_COMMA, + ACTIONS(1570), 1, + anon_sym_RBRACK, + ACTIONS(1572), 1, + anon_sym_DOT_DOT, + STATE(889), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1137), 2, + ACTIONS(1143), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1139), 2, + ACTIONS(1145), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1145), 2, + ACTIONS(1149), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1153), 2, + ACTIONS(1157), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1155), 3, + ACTIONS(1159), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(1147), 4, + ACTIONS(1151), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1149), 4, + ACTIONS(1153), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1554), 5, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [37711] = 18, + [38010] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1224), 1, - anon_sym_DASH, - ACTIONS(1226), 1, - anon_sym_DQUOTE, - ACTIONS(1232), 1, - sym__decimal, - ACTIONS(1234), 1, - sym__name, - ACTIONS(1236), 1, - sym__upname, - ACTIONS(1506), 1, - anon_sym_LBRACE, - ACTIONS(1508), 1, - anon_sym_POUND, - ACTIONS(1510), 1, - anon_sym_LBRACK, - ACTIONS(1512), 1, - anon_sym_LT_LT, - ACTIONS(1556), 1, - sym_float, - STATE(685), 1, - sym_identifier, - STATE(687), 1, - sym__case_clause_tuple_access, - STATE(697), 1, - sym__case_clause_guard_binary_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(481), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1230), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(711), 9, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym__case_clause_guard_expression, - sym__case_clause_guard_unit, - sym_string, - sym_integer, - [37778] = 18, + ACTIONS(1346), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1344), 22, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_COMMA, + anon_sym_const, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_fn, + anon_sym_DASH_GT, + anon_sym_external, + anon_sym_type, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + sym_visibility_modifier, + sym_opacity_modifier, + [38048] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1224), 1, + ACTIONS(296), 1, + sym__name, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(1226), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(1232), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(1234), 1, - sym__name, - ACTIONS(1236), 1, + ACTIONS(515), 1, sym__upname, - ACTIONS(1506), 1, - anon_sym_LBRACE, - ACTIONS(1508), 1, + ACTIONS(1312), 1, anon_sym_POUND, - ACTIONS(1510), 1, + ACTIONS(1314), 1, anon_sym_LBRACK, - ACTIONS(1512), 1, + ACTIONS(1316), 1, anon_sym_LT_LT, - ACTIONS(1550), 1, + ACTIONS(1574), 1, + anon_sym_RPAREN, + ACTIONS(1576), 1, sym_float, - STATE(685), 1, + STATE(849), 1, sym_identifier, - STATE(687), 1, - sym__case_clause_tuple_access, - STATE(697), 1, - sym__case_clause_guard_binary_expression, + STATE(1104), 1, + sym_constant_record_argument, + STATE(1219), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(481), 2, + STATE(466), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1230), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(681), 9, + STATE(1185), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, sym__constant_bit_string, sym_constant_record, - sym__case_clause_guard_expression, - sym__case_clause_guard_unit, + sym_constant_field_access, sym_string, sym_integer, - [37845] = 4, + [38114] = 16, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1147), 1, + anon_sym_AMP_AMP, + ACTIONS(1155), 1, + anon_sym_PIPE_GT, + ACTIONS(1179), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1578), 1, + anon_sym_COMMA, + ACTIONS(1580), 1, + anon_sym_RBRACK, + ACTIONS(1582), 1, + anon_sym_DOT_DOT, + STATE(906), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1406), 4, + ACTIONS(1143), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1145), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1149), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1157), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1159), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(1151), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1404), 22, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_COMMA, - anon_sym_const, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(1153), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [37883] = 4, + [38176] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1374), 4, + ACTIONS(1490), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1372), 22, + ACTIONS(1488), 22, anon_sym_RBRACE, anon_sym_import, anon_sym_COMMA, @@ -36846,10 +37128,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT_GT, anon_sym_COLON, - anon_sym_external, - anon_sym_type, anon_sym_fn, anon_sym_DASH_GT, + anon_sym_external, + anon_sym_type, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -36860,18 +37142,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ_DOT, sym_visibility_modifier, sym_opacity_modifier, - [37921] = 4, + [38214] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1326), 4, + ACTIONS(1284), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1324), 22, + ACTIONS(1282), 22, anon_sym_RBRACE, anon_sym_import, anon_sym_COMMA, @@ -36880,10 +37162,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT_GT, anon_sym_COLON, - anon_sym_external, - anon_sym_type, anon_sym_fn, anon_sym_DASH_GT, + anon_sym_external, + anon_sym_type, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -36894,18 +37176,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ_DOT, sym_visibility_modifier, sym_opacity_modifier, - [37959] = 4, + [38252] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1412), 4, + ACTIONS(1372), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1410), 22, + ACTIONS(1370), 22, anon_sym_RBRACE, anon_sym_import, anon_sym_COMMA, @@ -36914,10 +37196,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT_GT, anon_sym_COLON, - anon_sym_external, - anon_sym_type, anon_sym_fn, anon_sym_DASH_GT, + anon_sym_external, + anon_sym_type, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -36928,113 +37210,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ_DOT, sym_visibility_modifier, sym_opacity_modifier, - [37997] = 16, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1141), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1143), 1, - anon_sym_AMP_AMP, - ACTIONS(1151), 1, - anon_sym_PIPE_GT, - ACTIONS(1558), 1, - anon_sym_COMMA, - ACTIONS(1560), 1, - anon_sym_RBRACK, - ACTIONS(1562), 1, - anon_sym_DOT_DOT, - STATE(876), 1, - aux_sym_tuple_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1137), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1139), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1145), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1153), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1155), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(1147), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1149), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [38059] = 19, + [38290] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(291), 1, + ACTIONS(296), 1, + sym__name, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(307), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(317), 1, - sym__name, - ACTIONS(319), 1, + ACTIONS(515), 1, sym__upname, - ACTIONS(1210), 1, + ACTIONS(1312), 1, anon_sym_POUND, - ACTIONS(1214), 1, + ACTIONS(1314), 1, anon_sym_LBRACK, - ACTIONS(1216), 1, + ACTIONS(1316), 1, anon_sym_LT_LT, - ACTIONS(1220), 1, + ACTIONS(1576), 1, sym_float, - ACTIONS(1222), 1, - sym__discard_name, - STATE(776), 1, + ACTIONS(1584), 1, + anon_sym_RPAREN, + STATE(849), 1, sym_identifier, - STATE(1000), 1, - sym_record_pattern_argument, - STATE(1008), 1, - sym__pattern, - STATE(1259), 1, + STATE(1046), 1, + sym_constant_record_argument, + STATE(1219), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(712), 2, + STATE(466), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(311), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(792), 7, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, + STATE(1185), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, sym_string, sym_integer, - sym_discard, - [38127] = 4, + [38356] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1350), 4, + ACTIONS(1276), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1348), 22, + ACTIONS(1274), 22, anon_sym_RBRACE, anon_sym_import, anon_sym_COMMA, @@ -37043,10 +37278,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT_GT, anon_sym_COLON, - anon_sym_external, - anon_sym_type, anon_sym_fn, anon_sym_DASH_GT, + anon_sym_external, + anon_sym_type, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -37057,86 +37292,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ_DOT, sym_visibility_modifier, sym_opacity_modifier, - [38165] = 4, + [38394] = 19, ACTIONS(3), 1, sym_module_comment, + ACTIONS(270), 1, + anon_sym_DASH, + ACTIONS(286), 1, + anon_sym_DQUOTE, + ACTIONS(292), 1, + sym__decimal, + ACTIONS(298), 1, + sym__upname, + ACTIONS(709), 1, + sym__name, + ACTIONS(1161), 1, + anon_sym_POUND, + ACTIONS(1165), 1, + anon_sym_LBRACK, + ACTIONS(1167), 1, + anon_sym_LT_LT, + ACTIONS(1171), 1, + sym_float, + ACTIONS(1173), 1, + sym__discard_name, + ACTIONS(1586), 1, + anon_sym_GT_GT, + STATE(787), 1, + sym_identifier, + STATE(1003), 1, + sym__pattern, + STATE(1148), 1, + sym_pattern_bit_string_segment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1464), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1462), 22, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_COMMA, - anon_sym_const, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [38203] = 4, + STATE(717), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(290), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(821), 7, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_string, + sym_integer, + sym_discard, + [38462] = 19, ACTIONS(3), 1, sym_module_comment, + ACTIONS(270), 1, + anon_sym_DASH, + ACTIONS(286), 1, + anon_sym_DQUOTE, + ACTIONS(292), 1, + sym__decimal, + ACTIONS(296), 1, + sym__name, + ACTIONS(298), 1, + sym__upname, + ACTIONS(1161), 1, + anon_sym_POUND, + ACTIONS(1165), 1, + anon_sym_LBRACK, + ACTIONS(1167), 1, + anon_sym_LT_LT, + ACTIONS(1171), 1, + sym_float, + ACTIONS(1173), 1, + sym__discard_name, + STATE(787), 1, + sym_identifier, + STATE(970), 1, + sym__pattern, + STATE(1006), 1, + sym_record_pattern_argument, + STATE(1223), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1468), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1466), 22, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_COMMA, - anon_sym_const, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [38241] = 4, + STATE(717), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(290), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(821), 7, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_string, + sym_integer, + sym_discard, + [38530] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1472), 4, + ACTIONS(1428), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1470), 22, + ACTIONS(1426), 22, anon_sym_RBRACE, anon_sym_import, anon_sym_COMMA, @@ -37145,10 +37410,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT_GT, anon_sym_COLON, - anon_sym_external, - anon_sym_type, anon_sym_fn, anon_sym_DASH_GT, + anon_sym_external, + anon_sym_type, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -37159,18 +37424,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ_DOT, sym_visibility_modifier, sym_opacity_modifier, - [38279] = 4, + [38568] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1330), 4, + ACTIONS(1402), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1328), 22, + ACTIONS(1400), 22, anon_sym_RBRACE, anon_sym_import, anon_sym_COMMA, @@ -37179,10 +37444,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT_GT, anon_sym_COLON, - anon_sym_external, - anon_sym_type, anon_sym_fn, anon_sym_DASH_GT, + anon_sym_external, + anon_sym_type, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -37193,64 +37458,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ_DOT, sym_visibility_modifier, sym_opacity_modifier, - [38317] = 16, + [38606] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1141), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1143), 1, - anon_sym_AMP_AMP, - ACTIONS(1151), 1, - anon_sym_PIPE_GT, - ACTIONS(1564), 1, - anon_sym_COMMA, - ACTIONS(1566), 1, - anon_sym_RBRACK, - ACTIONS(1568), 1, - anon_sym_DOT_DOT, - STATE(902), 1, - aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1137), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1139), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1145), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1153), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1155), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(1147), 4, + ACTIONS(1296), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1149), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [38379] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1436), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1434), 22, + ACTIONS(1294), 22, anon_sym_RBRACE, anon_sym_import, anon_sym_COMMA, @@ -37259,10 +37478,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT_GT, anon_sym_COLON, - anon_sym_external, - anon_sym_type, anon_sym_fn, anon_sym_DASH_GT, + anon_sym_external, + anon_sym_type, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -37273,18 +37492,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ_DOT, sym_visibility_modifier, sym_opacity_modifier, - [38417] = 4, + [38644] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1318), 4, + ACTIONS(1432), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1316), 22, + ACTIONS(1430), 22, anon_sym_RBRACE, anon_sym_import, anon_sym_COMMA, @@ -37293,10 +37512,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT_GT, anon_sym_COLON, - anon_sym_external, - anon_sym_type, anon_sym_fn, anon_sym_DASH_GT, + anon_sym_external, + anon_sym_type, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -37307,18 +37526,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ_DOT, sym_visibility_modifier, sym_opacity_modifier, - [38455] = 4, + [38682] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1504), 4, + ACTIONS(1392), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1502), 22, + ACTIONS(1390), 22, anon_sym_RBRACE, anon_sym_import, anon_sym_COMMA, @@ -37327,10 +37546,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT_GT, anon_sym_COLON, - anon_sym_external, - anon_sym_type, anon_sym_fn, anon_sym_DASH_GT, + anon_sym_external, + anon_sym_type, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -37341,18 +37560,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ_DOT, sym_visibility_modifier, sym_opacity_modifier, - [38493] = 4, + [38720] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1420), 4, + ACTIONS(1280), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1418), 22, + ACTIONS(1278), 22, anon_sym_RBRACE, anon_sym_import, anon_sym_COMMA, @@ -37361,10 +37580,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT_GT, anon_sym_COLON, - anon_sym_external, - anon_sym_type, anon_sym_fn, anon_sym_DASH_GT, + anon_sym_external, + anon_sym_type, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -37375,18 +37594,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ_DOT, sym_visibility_modifier, sym_opacity_modifier, - [38531] = 4, + [38758] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1270), 4, + ACTIONS(1380), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1268), 22, + ACTIONS(1378), 22, anon_sym_RBRACE, anon_sym_import, anon_sym_COMMA, @@ -37395,10 +37614,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT_GT, anon_sym_COLON, - anon_sym_external, - anon_sym_type, anon_sym_fn, anon_sym_DASH_GT, + anon_sym_external, + anon_sym_type, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -37409,276 +37628,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ_DOT, sym_visibility_modifier, sym_opacity_modifier, - [38569] = 16, + [38796] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1141), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1143), 1, + ACTIONS(1147), 1, anon_sym_AMP_AMP, - ACTIONS(1151), 1, + ACTIONS(1155), 1, anon_sym_PIPE_GT, - ACTIONS(1570), 1, - anon_sym_COMMA, - ACTIONS(1572), 1, - anon_sym_RBRACK, - ACTIONS(1574), 1, - anon_sym_DOT_DOT, - STATE(868), 1, - aux_sym_tuple_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1137), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1139), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1145), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1153), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1155), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(1147), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1149), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [38631] = 19, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(307), 1, - anon_sym_DQUOTE, - ACTIONS(313), 1, - sym__decimal, - ACTIONS(319), 1, - sym__upname, - ACTIONS(709), 1, - sym__name, - ACTIONS(1210), 1, - anon_sym_POUND, - ACTIONS(1214), 1, - anon_sym_LBRACK, - ACTIONS(1216), 1, - anon_sym_LT_LT, - ACTIONS(1220), 1, - sym_float, - ACTIONS(1222), 1, - sym__discard_name, - ACTIONS(1576), 1, - anon_sym_GT_GT, - STATE(776), 1, - sym_identifier, - STATE(933), 1, - sym__pattern, - STATE(1155), 1, - sym_pattern_bit_string_segment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(712), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(311), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(792), 7, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_string, - sym_integer, - sym_discard, - [38699] = 19, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(307), 1, - anon_sym_DQUOTE, - ACTIONS(313), 1, - sym__decimal, - ACTIONS(319), 1, - sym__upname, - ACTIONS(709), 1, - sym__name, - ACTIONS(1210), 1, - anon_sym_POUND, - ACTIONS(1214), 1, - anon_sym_LBRACK, - ACTIONS(1216), 1, - anon_sym_LT_LT, - ACTIONS(1220), 1, - sym_float, - ACTIONS(1222), 1, - sym__discard_name, - ACTIONS(1578), 1, - anon_sym_GT_GT, - STATE(776), 1, - sym_identifier, - STATE(932), 1, - sym_pattern_bit_string_segment, - STATE(933), 1, - sym__pattern, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(712), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(311), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(792), 7, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_string, - sym_integer, - sym_discard, - [38767] = 16, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1141), 1, + ACTIONS(1179), 1, anon_sym_PIPE_PIPE, - ACTIONS(1143), 1, - anon_sym_AMP_AMP, - ACTIONS(1151), 1, - anon_sym_PIPE_GT, - ACTIONS(1580), 1, + ACTIONS(1588), 1, anon_sym_COMMA, - ACTIONS(1582), 1, + ACTIONS(1590), 1, anon_sym_RBRACK, - ACTIONS(1584), 1, + ACTIONS(1592), 1, anon_sym_DOT_DOT, - STATE(899), 1, + STATE(910), 1, aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1137), 2, + ACTIONS(1143), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1139), 2, + ACTIONS(1145), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1145), 2, + ACTIONS(1149), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1153), 2, + ACTIONS(1157), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1155), 3, + ACTIONS(1159), 3, anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(1147), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1149), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [38829] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1274), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1272), 22, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_COMMA, - anon_sym_const, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [38867] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1488), 4, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(1151), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1486), 22, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_COMMA, - anon_sym_const, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(1153), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [38905] = 4, + [38858] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1282), 4, + ACTIONS(1526), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1280), 22, + ACTIONS(1524), 22, anon_sym_RBRACE, anon_sym_import, anon_sym_COMMA, @@ -37687,10 +37694,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT_GT, anon_sym_COLON, - anon_sym_external, - anon_sym_type, anon_sym_fn, anon_sym_DASH_GT, + anon_sym_external, + anon_sym_type, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -37701,48 +37708,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ_DOT, sym_visibility_modifier, sym_opacity_modifier, - [38943] = 19, + [38896] = 19, ACTIONS(3), 1, sym_module_comment, - ACTIONS(291), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(307), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(319), 1, + ACTIONS(298), 1, sym__upname, ACTIONS(709), 1, sym__name, - ACTIONS(1210), 1, + ACTIONS(1161), 1, anon_sym_POUND, - ACTIONS(1214), 1, + ACTIONS(1165), 1, anon_sym_LBRACK, - ACTIONS(1216), 1, + ACTIONS(1167), 1, anon_sym_LT_LT, - ACTIONS(1220), 1, + ACTIONS(1171), 1, sym_float, - ACTIONS(1222), 1, + ACTIONS(1173), 1, sym__discard_name, - ACTIONS(1586), 1, + ACTIONS(1594), 1, anon_sym_GT_GT, - STATE(776), 1, + STATE(787), 1, sym_identifier, - STATE(933), 1, + STATE(1003), 1, sym__pattern, - STATE(1155), 1, + STATE(1148), 1, sym_pattern_bit_string_segment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(712), 2, + STATE(717), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(311), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(792), 7, + STATE(821), 7, sym_record_pattern, sym_tuple_pattern, sym__pattern_bit_string, @@ -37750,278 +37757,388 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [39011] = 15, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1141), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1143), 1, - anon_sym_AMP_AMP, - ACTIONS(1151), 1, - anon_sym_PIPE_GT, - ACTIONS(1588), 1, - anon_sym_COMMA, - ACTIONS(1590), 1, - anon_sym_RPAREN, - STATE(947), 1, - aux_sym_tuple_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1137), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1139), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1145), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1153), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1155), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(1147), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1149), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [39070] = 18, + [38964] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(317), 1, + ACTIONS(296), 1, sym__name, - ACTIONS(457), 1, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(473), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(483), 1, + ACTIONS(515), 1, sym__upname, - ACTIONS(1508), 1, + ACTIONS(1312), 1, anon_sym_POUND, - ACTIONS(1510), 1, + ACTIONS(1314), 1, anon_sym_LBRACK, - ACTIONS(1512), 1, + ACTIONS(1316), 1, anon_sym_LT_LT, - ACTIONS(1592), 1, - anon_sym_RPAREN, - ACTIONS(1594), 1, + ACTIONS(1576), 1, sym_float, - STATE(1106), 1, - sym_constant_record_argument, - STATE(1212), 1, + ACTIONS(1596), 1, + anon_sym_RPAREN, + STATE(849), 1, sym_identifier, - STATE(1295), 1, + STATE(1104), 1, + sym_constant_record_argument, + STATE(1219), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(481), 2, + STATE(466), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(477), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(1171), 7, + STATE(1185), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, sym__constant_bit_string, sym_constant_record, + sym_constant_field_access, sym_string, sym_integer, - [39135] = 18, + [39030] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(291), 1, + ACTIONS(296), 1, + sym__name, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(307), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(319), 1, + ACTIONS(515), 1, sym__upname, - ACTIONS(709), 1, - sym__name, - ACTIONS(1210), 1, + ACTIONS(1312), 1, anon_sym_POUND, - ACTIONS(1214), 1, + ACTIONS(1314), 1, anon_sym_LBRACK, - ACTIONS(1216), 1, + ACTIONS(1316), 1, anon_sym_LT_LT, - ACTIONS(1220), 1, + ACTIONS(1576), 1, sym_float, - ACTIONS(1222), 1, - sym__discard_name, - STATE(240), 1, - sym__assignment, - STATE(776), 1, + ACTIONS(1598), 1, + anon_sym_RPAREN, + STATE(849), 1, sym_identifier, - STATE(986), 1, - sym__pattern, + STATE(1104), 1, + sym_constant_record_argument, + STATE(1219), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(712), 2, + STATE(466), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(311), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(792), 7, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, + STATE(1185), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, sym_string, sym_integer, - sym_discard, - [39200] = 18, + [39096] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(317), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1300), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1298), 22, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_COMMA, + anon_sym_const, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_fn, + anon_sym_DASH_GT, + anon_sym_external, + anon_sym_type, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + sym_visibility_modifier, + sym_opacity_modifier, + [39134] = 16, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1147), 1, + anon_sym_AMP_AMP, + ACTIONS(1155), 1, + anon_sym_PIPE_GT, + ACTIONS(1179), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1600), 1, + anon_sym_COMMA, + ACTIONS(1602), 1, + anon_sym_RBRACK, + ACTIONS(1604), 1, + anon_sym_DOT_DOT, + STATE(881), 1, + aux_sym_tuple_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1143), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1145), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1149), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1157), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1159), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(1151), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1153), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [39196] = 18, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(296), 1, sym__name, - ACTIONS(457), 1, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(473), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(483), 1, + ACTIONS(515), 1, sym__upname, - ACTIONS(1508), 1, + ACTIONS(1312), 1, anon_sym_POUND, - ACTIONS(1510), 1, + ACTIONS(1314), 1, anon_sym_LBRACK, - ACTIONS(1512), 1, + ACTIONS(1316), 1, anon_sym_LT_LT, - ACTIONS(1594), 1, + ACTIONS(1576), 1, sym_float, - ACTIONS(1596), 1, + ACTIONS(1606), 1, anon_sym_RPAREN, - STATE(1025), 1, - sym_constant_record_argument, - STATE(1212), 1, + STATE(849), 1, sym_identifier, - STATE(1295), 1, + STATE(1104), 1, + sym_constant_record_argument, + STATE(1219), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(481), 2, + STATE(466), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(477), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(1171), 7, + STATE(1185), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, sym__constant_bit_string, sym_constant_record, + sym_constant_field_access, sym_string, sym_integer, - [39265] = 18, + [39262] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1522), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1520), 22, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_COMMA, + anon_sym_const, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_fn, + anon_sym_DASH_GT, + anon_sym_external, + anon_sym_type, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + sym_visibility_modifier, + sym_opacity_modifier, + [39300] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(291), 1, + ACTIONS(296), 1, + sym__name, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(307), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(319), 1, + ACTIONS(515), 1, sym__upname, - ACTIONS(709), 1, - sym__name, - ACTIONS(1210), 1, + ACTIONS(1312), 1, anon_sym_POUND, - ACTIONS(1214), 1, + ACTIONS(1314), 1, anon_sym_LBRACK, - ACTIONS(1216), 1, + ACTIONS(1316), 1, anon_sym_LT_LT, - ACTIONS(1220), 1, + ACTIONS(1576), 1, sym_float, - ACTIONS(1222), 1, - sym__discard_name, - STATE(335), 1, - sym__assignment, - STATE(776), 1, + ACTIONS(1608), 1, + anon_sym_RPAREN, + STATE(849), 1, sym_identifier, - STATE(954), 1, - sym__pattern, + STATE(927), 1, + sym_constant_record_argument, + STATE(1219), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(712), 2, + STATE(466), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(311), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(792), 7, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, + STATE(1185), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, sym_string, sym_integer, - sym_discard, - [39330] = 18, + [39366] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1508), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1506), 22, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_COMMA, + anon_sym_const, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_fn, + anon_sym_DASH_GT, + anon_sym_external, + anon_sym_type, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + sym_visibility_modifier, + sym_opacity_modifier, + [39404] = 19, ACTIONS(3), 1, sym_module_comment, - ACTIONS(291), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(307), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(319), 1, + ACTIONS(298), 1, sym__upname, ACTIONS(709), 1, sym__name, - ACTIONS(1210), 1, + ACTIONS(1161), 1, anon_sym_POUND, - ACTIONS(1214), 1, + ACTIONS(1165), 1, anon_sym_LBRACK, - ACTIONS(1216), 1, + ACTIONS(1167), 1, anon_sym_LT_LT, - ACTIONS(1220), 1, + ACTIONS(1171), 1, sym_float, - ACTIONS(1222), 1, + ACTIONS(1173), 1, sym__discard_name, - STATE(438), 1, - sym__assignment, - STATE(776), 1, + ACTIONS(1610), 1, + anon_sym_GT_GT, + STATE(787), 1, sym_identifier, - STATE(986), 1, + STATE(1001), 1, + sym_pattern_bit_string_segment, + STATE(1003), 1, sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(712), 2, + STATE(717), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(311), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(792), 7, + STATE(821), 7, sym_record_pattern, sym_tuple_pattern, sym__pattern_bit_string, @@ -38029,369 +38146,386 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [39395] = 18, + [39472] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(317), 1, - sym__name, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(483), 1, - sym__upname, - ACTIONS(1508), 1, - anon_sym_POUND, - ACTIONS(1510), 1, - anon_sym_LBRACK, - ACTIONS(1512), 1, - anon_sym_LT_LT, - ACTIONS(1594), 1, - sym_float, - ACTIONS(1598), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1388), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1386), 22, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_COMMA, + anon_sym_const, anon_sym_RPAREN, - STATE(1106), 1, - sym_constant_record_argument, - STATE(1212), 1, - sym_identifier, - STATE(1295), 1, - sym_label, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_fn, + anon_sym_DASH_GT, + anon_sym_external, + anon_sym_type, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + sym_visibility_modifier, + sym_opacity_modifier, + [39510] = 4, + ACTIONS(3), 1, + sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(481), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1171), 7, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_string, - sym_integer, - [39460] = 15, + ACTIONS(1504), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1502), 22, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_COMMA, + anon_sym_const, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_fn, + anon_sym_DASH_GT, + anon_sym_external, + anon_sym_type, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + sym_visibility_modifier, + sym_opacity_modifier, + [39548] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1141), 1, + ACTIONS(1147), 1, + anon_sym_AMP_AMP, + ACTIONS(1155), 1, + anon_sym_PIPE_GT, + ACTIONS(1179), 1, anon_sym_PIPE_PIPE, - ACTIONS(1143), 1, + ACTIONS(1612), 1, + anon_sym_LBRACE, + ACTIONS(1614), 1, + anon_sym_COMMA, + STATE(987), 1, + aux_sym_tuple_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1143), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1145), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1149), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1157), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1159), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(1151), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1153), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [39607] = 15, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1147), 1, anon_sym_AMP_AMP, - ACTIONS(1151), 1, + ACTIONS(1155), 1, anon_sym_PIPE_GT, - ACTIONS(1600), 1, + ACTIONS(1179), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1616), 1, anon_sym_COMMA, - ACTIONS(1602), 1, + ACTIONS(1618), 1, anon_sym_RPAREN, - STATE(975), 1, + STATE(988), 1, aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1137), 2, + ACTIONS(1143), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1139), 2, + ACTIONS(1145), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1145), 2, + ACTIONS(1149), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1153), 2, + ACTIONS(1157), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1155), 3, + ACTIONS(1159), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(1147), 4, + ACTIONS(1151), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1149), 4, + ACTIONS(1153), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [39519] = 18, + [39666] = 17, ACTIONS(3), 1, sym_module_comment, - ACTIONS(291), 1, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(307), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(319), 1, - sym__upname, - ACTIONS(709), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(1210), 1, + ACTIONS(515), 1, + sym__upname, + ACTIONS(1312), 1, anon_sym_POUND, - ACTIONS(1214), 1, + ACTIONS(1314), 1, anon_sym_LBRACK, - ACTIONS(1216), 1, + ACTIONS(1316), 1, anon_sym_LT_LT, - ACTIONS(1220), 1, + ACTIONS(1620), 1, + anon_sym_GT_GT, + ACTIONS(1622), 1, sym_float, - ACTIONS(1222), 1, - sym__discard_name, - STATE(439), 1, - sym__assignment, - STATE(776), 1, + STATE(849), 1, sym_identifier, - STATE(986), 1, - sym__pattern, + STATE(1121), 1, + sym_constant_bit_string_segment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(712), 2, + STATE(466), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(311), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(792), 7, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, + STATE(1012), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, sym_string, sym_integer, - sym_discard, - [39584] = 18, + [39729] = 17, ACTIONS(3), 1, sym_module_comment, - ACTIONS(291), 1, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(307), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(319), 1, - sym__upname, - ACTIONS(709), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(1210), 1, + ACTIONS(515), 1, + sym__upname, + ACTIONS(1312), 1, anon_sym_POUND, - ACTIONS(1214), 1, + ACTIONS(1314), 1, anon_sym_LBRACK, - ACTIONS(1216), 1, + ACTIONS(1316), 1, anon_sym_LT_LT, - ACTIONS(1220), 1, + ACTIONS(1622), 1, sym_float, - ACTIONS(1222), 1, - sym__discard_name, - ACTIONS(1604), 1, - anon_sym_RPAREN, - STATE(776), 1, + ACTIONS(1624), 1, + anon_sym_GT_GT, + STATE(849), 1, sym_identifier, - STATE(814), 1, - sym__pattern, + STATE(1121), 1, + sym_constant_bit_string_segment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(712), 2, + STATE(466), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(311), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(792), 7, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, + STATE(1012), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, sym_string, sym_integer, - sym_discard, - [39649] = 18, + [39792] = 17, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1210), 1, - anon_sym_POUND, - ACTIONS(1214), 1, - anon_sym_LBRACK, - ACTIONS(1216), 1, - anon_sym_LT_LT, - ACTIONS(1222), 1, - sym__discard_name, - ACTIONS(1224), 1, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(1226), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(1228), 1, - sym_float, - ACTIONS(1232), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(1234), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(1236), 1, + ACTIONS(515), 1, sym__upname, - STATE(835), 1, + ACTIONS(1312), 1, + anon_sym_POUND, + ACTIONS(1314), 1, + anon_sym_LBRACK, + ACTIONS(1316), 1, + anon_sym_LT_LT, + ACTIONS(1622), 1, + sym_float, + ACTIONS(1626), 1, + anon_sym_GT_GT, + STATE(849), 1, sym_identifier, - STATE(840), 1, - sym__pattern, - STATE(1003), 1, - sym_case_clause_pattern, + STATE(1121), 1, + sym_constant_bit_string_segment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(712), 2, + STATE(466), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1230), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(855), 7, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, + STATE(1012), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, sym_string, sym_integer, - sym_discard, - [39714] = 15, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1141), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1143), 1, - anon_sym_AMP_AMP, - ACTIONS(1151), 1, - anon_sym_PIPE_GT, - ACTIONS(1606), 1, - anon_sym_LBRACE, - ACTIONS(1608), 1, - anon_sym_COMMA, - STATE(919), 1, - aux_sym_tuple_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1137), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1139), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1145), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1153), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1155), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(1147), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1149), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [39773] = 18, + [39855] = 17, ACTIONS(3), 1, sym_module_comment, - ACTIONS(291), 1, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(307), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(319), 1, - sym__upname, - ACTIONS(709), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(1210), 1, + ACTIONS(515), 1, + sym__upname, + ACTIONS(1312), 1, anon_sym_POUND, - ACTIONS(1214), 1, + ACTIONS(1314), 1, anon_sym_LBRACK, - ACTIONS(1216), 1, + ACTIONS(1316), 1, anon_sym_LT_LT, - ACTIONS(1220), 1, + ACTIONS(1622), 1, sym_float, - ACTIONS(1222), 1, - sym__discard_name, - STATE(75), 1, - sym__assignment, - STATE(776), 1, + ACTIONS(1628), 1, + anon_sym_GT_GT, + STATE(849), 1, sym_identifier, - STATE(971), 1, - sym__pattern, + STATE(1010), 1, + sym_constant_bit_string_segment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(712), 2, + STATE(466), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(311), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(792), 7, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, + STATE(1012), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, sym_string, sym_integer, - sym_discard, - [39838] = 18, + [39918] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(291), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(307), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(319), 1, + ACTIONS(298), 1, sym__upname, ACTIONS(709), 1, sym__name, - ACTIONS(1210), 1, + ACTIONS(1161), 1, anon_sym_POUND, - ACTIONS(1214), 1, + ACTIONS(1165), 1, anon_sym_LBRACK, - ACTIONS(1216), 1, + ACTIONS(1167), 1, anon_sym_LT_LT, - ACTIONS(1220), 1, + ACTIONS(1171), 1, sym_float, - ACTIONS(1222), 1, + ACTIONS(1173), 1, sym__discard_name, - STATE(241), 1, + STATE(271), 1, sym__assignment, - STATE(776), 1, + STATE(787), 1, sym_identifier, - STATE(986), 1, + STATE(1038), 1, sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(712), 2, + STATE(717), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(311), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(792), 7, + STATE(821), 7, sym_record_pattern, sym_tuple_pattern, sym__pattern_bit_string, @@ -38399,46 +38533,46 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [39903] = 18, + [39983] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(291), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(307), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(319), 1, + ACTIONS(298), 1, sym__upname, ACTIONS(709), 1, sym__name, - ACTIONS(1210), 1, + ACTIONS(1161), 1, anon_sym_POUND, - ACTIONS(1214), 1, + ACTIONS(1165), 1, anon_sym_LBRACK, - ACTIONS(1216), 1, + ACTIONS(1167), 1, anon_sym_LT_LT, - ACTIONS(1220), 1, + ACTIONS(1171), 1, sym_float, - ACTIONS(1222), 1, + ACTIONS(1173), 1, sym__discard_name, - STATE(331), 1, + STATE(272), 1, sym__assignment, - STATE(776), 1, + STATE(787), 1, sym_identifier, - STATE(954), 1, + STATE(1038), 1, sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(712), 2, + STATE(717), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(311), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(792), 7, + STATE(821), 7, sym_record_pattern, sym_tuple_pattern, sym__pattern_bit_string, @@ -38446,46 +38580,90 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [39968] = 18, + [40048] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(291), 1, + ACTIONS(1147), 1, + anon_sym_AMP_AMP, + ACTIONS(1155), 1, + anon_sym_PIPE_GT, + ACTIONS(1179), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1630), 1, + anon_sym_COMMA, + ACTIONS(1632), 1, + anon_sym_RPAREN, + STATE(1064), 1, + aux_sym_tuple_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1143), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1145), 2, anon_sym_DASH, - ACTIONS(307), 1, + anon_sym_PLUS, + ACTIONS(1149), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1157), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1159), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(1151), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1153), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [40107] = 18, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(270), 1, + anon_sym_DASH, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(319), 1, + ACTIONS(298), 1, sym__upname, ACTIONS(709), 1, sym__name, - ACTIONS(1210), 1, + ACTIONS(1161), 1, anon_sym_POUND, - ACTIONS(1214), 1, + ACTIONS(1165), 1, anon_sym_LBRACK, - ACTIONS(1216), 1, + ACTIONS(1167), 1, anon_sym_LT_LT, - ACTIONS(1220), 1, + ACTIONS(1171), 1, sym_float, - ACTIONS(1222), 1, + ACTIONS(1173), 1, sym__discard_name, - STATE(776), 1, + ACTIONS(1634), 1, + anon_sym_RPAREN, + STATE(787), 1, sym_identifier, - STATE(933), 1, + STATE(824), 1, sym__pattern, - STATE(1155), 1, - sym_pattern_bit_string_segment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(712), 2, + STATE(717), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(311), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(792), 7, + STATE(821), 7, sym_record_pattern, sym_tuple_pattern, sym__pattern_bit_string, @@ -38493,46 +38671,46 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [40033] = 18, + [40172] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(291), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(307), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(319), 1, + ACTIONS(298), 1, sym__upname, ACTIONS(709), 1, sym__name, - ACTIONS(1210), 1, + ACTIONS(1161), 1, anon_sym_POUND, - ACTIONS(1214), 1, + ACTIONS(1165), 1, anon_sym_LBRACK, - ACTIONS(1216), 1, + ACTIONS(1167), 1, anon_sym_LT_LT, - ACTIONS(1220), 1, + ACTIONS(1171), 1, sym_float, - ACTIONS(1222), 1, + ACTIONS(1173), 1, sym__discard_name, - STATE(240), 1, + STATE(272), 1, sym__assignment, - STATE(776), 1, + STATE(787), 1, sym_identifier, - STATE(1018), 1, + STATE(995), 1, sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(712), 2, + STATE(717), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(311), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(792), 7, + STATE(821), 7, sym_record_pattern, sym_tuple_pattern, sym__pattern_bit_string, @@ -38540,46 +38718,46 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [40098] = 18, + [40237] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(307), 1, - anon_sym_DQUOTE, - ACTIONS(313), 1, - sym__decimal, - ACTIONS(319), 1, - sym__upname, - ACTIONS(709), 1, - sym__name, - ACTIONS(1210), 1, + ACTIONS(1161), 1, anon_sym_POUND, - ACTIONS(1214), 1, + ACTIONS(1165), 1, anon_sym_LBRACK, - ACTIONS(1216), 1, + ACTIONS(1167), 1, anon_sym_LT_LT, - ACTIONS(1220), 1, - sym_float, - ACTIONS(1222), 1, + ACTIONS(1173), 1, sym__discard_name, - ACTIONS(1610), 1, - anon_sym_RPAREN, - STATE(776), 1, + ACTIONS(1222), 1, + anon_sym_DASH, + ACTIONS(1224), 1, + anon_sym_DQUOTE, + ACTIONS(1226), 1, + sym_float, + ACTIONS(1230), 1, + sym__decimal, + ACTIONS(1232), 1, + sym__name, + ACTIONS(1234), 1, + sym__upname, + STATE(847), 1, sym_identifier, - STATE(965), 1, + STATE(852), 1, sym__pattern, + STATE(1008), 1, + sym_case_clause_pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(712), 2, + STATE(717), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(311), 3, + ACTIONS(1228), 3, sym__hex, sym__octal, sym__binary, - STATE(792), 7, + STATE(865), 7, sym_record_pattern, sym_tuple_pattern, sym__pattern_bit_string, @@ -38587,90 +38765,90 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [40163] = 15, + [40302] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1141), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1143), 1, + ACTIONS(1147), 1, anon_sym_AMP_AMP, - ACTIONS(1151), 1, + ACTIONS(1155), 1, anon_sym_PIPE_GT, - ACTIONS(1612), 1, + ACTIONS(1179), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1636), 1, anon_sym_COMMA, - ACTIONS(1614), 1, + ACTIONS(1638), 1, anon_sym_RPAREN, - STATE(1044), 1, + STATE(951), 1, aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1137), 2, + ACTIONS(1143), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1139), 2, + ACTIONS(1145), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1145), 2, + ACTIONS(1149), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1153), 2, + ACTIONS(1157), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1155), 3, + ACTIONS(1159), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(1147), 4, + ACTIONS(1151), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1149), 4, + ACTIONS(1153), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [40222] = 18, + [40361] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(291), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(307), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(319), 1, + ACTIONS(298), 1, sym__upname, ACTIONS(709), 1, sym__name, - ACTIONS(1210), 1, + ACTIONS(1161), 1, anon_sym_POUND, - ACTIONS(1214), 1, + ACTIONS(1165), 1, anon_sym_LBRACK, - ACTIONS(1216), 1, + ACTIONS(1167), 1, anon_sym_LT_LT, - ACTIONS(1220), 1, + ACTIONS(1171), 1, sym_float, - ACTIONS(1222), 1, + ACTIONS(1173), 1, sym__discard_name, - STATE(73), 1, + STATE(271), 1, sym__assignment, - STATE(776), 1, + STATE(787), 1, sym_identifier, - STATE(971), 1, + STATE(995), 1, sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(712), 2, + STATE(717), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(311), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(792), 7, + STATE(821), 7, sym_record_pattern, sym_tuple_pattern, sym__pattern_bit_string, @@ -38678,93 +38856,139 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [40287] = 18, + [40426] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(317), 1, - sym__name, - ACTIONS(457), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(473), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(483), 1, + ACTIONS(298), 1, sym__upname, - ACTIONS(1508), 1, + ACTIONS(709), 1, + sym__name, + ACTIONS(1161), 1, anon_sym_POUND, - ACTIONS(1510), 1, + ACTIONS(1165), 1, anon_sym_LBRACK, - ACTIONS(1512), 1, + ACTIONS(1167), 1, anon_sym_LT_LT, - ACTIONS(1594), 1, + ACTIONS(1171), 1, sym_float, - ACTIONS(1616), 1, + ACTIONS(1173), 1, + sym__discard_name, + ACTIONS(1640), 1, anon_sym_RPAREN, - STATE(958), 1, - sym_constant_record_argument, - STATE(1212), 1, + STATE(787), 1, sym_identifier, - STATE(1295), 1, - sym_label, + STATE(955), 1, + sym__pattern, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(717), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(290), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(821), 7, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_string, + sym_integer, + sym_discard, + [40491] = 17, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(489), 1, + anon_sym_DASH, + ACTIONS(505), 1, + anon_sym_DQUOTE, + ACTIONS(511), 1, + sym__decimal, + ACTIONS(513), 1, + sym__name, + ACTIONS(515), 1, + sym__upname, + ACTIONS(1312), 1, + anon_sym_POUND, + ACTIONS(1314), 1, + anon_sym_LBRACK, + ACTIONS(1316), 1, + anon_sym_LT_LT, + ACTIONS(1622), 1, + sym_float, + ACTIONS(1642), 1, + anon_sym_GT_GT, + STATE(849), 1, + sym_identifier, + STATE(1121), 1, + sym_constant_bit_string_segment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(481), 2, + STATE(466), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(477), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(1171), 7, + STATE(1012), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, sym__constant_bit_string, sym_constant_record, + sym_constant_field_access, sym_string, sym_integer, - [40352] = 18, + [40554] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(291), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(307), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(319), 1, + ACTIONS(298), 1, sym__upname, ACTIONS(709), 1, sym__name, - ACTIONS(1210), 1, + ACTIONS(1161), 1, anon_sym_POUND, - ACTIONS(1214), 1, + ACTIONS(1165), 1, anon_sym_LBRACK, - ACTIONS(1216), 1, + ACTIONS(1167), 1, anon_sym_LT_LT, - ACTIONS(1220), 1, + ACTIONS(1171), 1, sym_float, - ACTIONS(1222), 1, + ACTIONS(1173), 1, sym__discard_name, - STATE(241), 1, + STATE(442), 1, sym__assignment, - STATE(776), 1, + STATE(787), 1, sym_identifier, - STATE(1018), 1, + STATE(995), 1, sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(712), 2, + STATE(717), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(311), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(792), 7, + STATE(821), 7, sym_record_pattern, sym_tuple_pattern, sym__pattern_bit_string, @@ -38772,46 +38996,46 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [40417] = 18, + [40619] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(291), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(307), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(319), 1, + ACTIONS(298), 1, sym__upname, ACTIONS(709), 1, sym__name, - ACTIONS(1210), 1, + ACTIONS(1161), 1, anon_sym_POUND, - ACTIONS(1214), 1, + ACTIONS(1165), 1, anon_sym_LBRACK, - ACTIONS(1216), 1, + ACTIONS(1167), 1, anon_sym_LT_LT, - ACTIONS(1220), 1, + ACTIONS(1171), 1, sym_float, - ACTIONS(1222), 1, + ACTIONS(1173), 1, sym__discard_name, - ACTIONS(1618), 1, - anon_sym_RPAREN, - STATE(776), 1, + STATE(350), 1, + sym__assignment, + STATE(787), 1, sym_identifier, - STATE(814), 1, + STATE(971), 1, sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(712), 2, + STATE(717), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(311), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(792), 7, + STATE(821), 7, sym_record_pattern, sym_tuple_pattern, sym__pattern_bit_string, @@ -38819,182 +39043,185 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [40482] = 15, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1141), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1143), 1, - anon_sym_AMP_AMP, - ACTIONS(1151), 1, - anon_sym_PIPE_GT, - ACTIONS(1620), 1, - anon_sym_COMMA, - ACTIONS(1622), 1, - anon_sym_RPAREN, - STATE(939), 1, - aux_sym_tuple_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1137), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1139), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1145), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1153), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1155), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(1147), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1149), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [40541] = 18, + [40684] = 17, ACTIONS(3), 1, sym_module_comment, - ACTIONS(317), 1, + ACTIONS(296), 1, sym__name, - ACTIONS(457), 1, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(473), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(483), 1, + ACTIONS(515), 1, sym__upname, - ACTIONS(1508), 1, + ACTIONS(1312), 1, anon_sym_POUND, - ACTIONS(1510), 1, + ACTIONS(1314), 1, anon_sym_LBRACK, - ACTIONS(1512), 1, + ACTIONS(1316), 1, anon_sym_LT_LT, - ACTIONS(1594), 1, + ACTIONS(1576), 1, sym_float, - ACTIONS(1624), 1, - anon_sym_RPAREN, - STATE(1106), 1, - sym_constant_record_argument, - STATE(1212), 1, + STATE(849), 1, sym_identifier, - STATE(1295), 1, + STATE(1104), 1, + sym_constant_record_argument, + STATE(1219), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(481), 2, + STATE(466), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(477), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(1171), 7, + STATE(1185), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, sym__constant_bit_string, sym_constant_record, + sym_constant_field_access, sym_string, sym_integer, - [40606] = 18, + [40747] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(317), 1, + ACTIONS(270), 1, + anon_sym_DASH, + ACTIONS(286), 1, + anon_sym_DQUOTE, + ACTIONS(292), 1, + sym__decimal, + ACTIONS(298), 1, + sym__upname, + ACTIONS(709), 1, sym__name, - ACTIONS(457), 1, + ACTIONS(1161), 1, + anon_sym_POUND, + ACTIONS(1165), 1, + anon_sym_LBRACK, + ACTIONS(1167), 1, + anon_sym_LT_LT, + ACTIONS(1171), 1, + sym_float, + ACTIONS(1173), 1, + sym__discard_name, + STATE(433), 1, + sym__assignment, + STATE(787), 1, + sym_identifier, + STATE(995), 1, + sym__pattern, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(717), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(290), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(821), 7, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_string, + sym_integer, + sym_discard, + [40812] = 17, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(473), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(483), 1, + ACTIONS(513), 1, + sym__name, + ACTIONS(515), 1, sym__upname, - ACTIONS(1508), 1, + ACTIONS(1312), 1, anon_sym_POUND, - ACTIONS(1510), 1, + ACTIONS(1314), 1, anon_sym_LBRACK, - ACTIONS(1512), 1, + ACTIONS(1316), 1, anon_sym_LT_LT, - ACTIONS(1594), 1, + ACTIONS(1622), 1, sym_float, - ACTIONS(1626), 1, - anon_sym_RPAREN, - STATE(1106), 1, - sym_constant_record_argument, - STATE(1212), 1, + ACTIONS(1644), 1, + anon_sym_GT_GT, + STATE(849), 1, sym_identifier, - STATE(1295), 1, - sym_label, + STATE(1071), 1, + sym_constant_bit_string_segment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(481), 2, + STATE(466), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(477), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(1171), 7, + STATE(1012), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, sym__constant_bit_string, sym_constant_record, + sym_constant_field_access, sym_string, sym_integer, - [40671] = 17, + [40875] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(291), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(307), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(319), 1, + ACTIONS(298), 1, sym__upname, ACTIONS(709), 1, sym__name, - ACTIONS(1210), 1, + ACTIONS(1161), 1, anon_sym_POUND, - ACTIONS(1214), 1, + ACTIONS(1165), 1, anon_sym_LBRACK, - ACTIONS(1216), 1, + ACTIONS(1167), 1, anon_sym_LT_LT, - ACTIONS(1220), 1, + ACTIONS(1171), 1, sym_float, - ACTIONS(1222), 1, + ACTIONS(1173), 1, sym__discard_name, - STATE(776), 1, + STATE(346), 1, + sym__assignment, + STATE(787), 1, sym_identifier, - STATE(966), 1, + STATE(971), 1, sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(712), 2, + STATE(717), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(311), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(792), 7, + STATE(821), 7, sym_record_pattern, sym_tuple_pattern, sym__pattern_bit_string, @@ -39002,44 +39229,46 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [40733] = 17, + [40940] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(291), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(307), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(319), 1, + ACTIONS(298), 1, sym__upname, ACTIONS(709), 1, sym__name, - ACTIONS(1210), 1, + ACTIONS(1161), 1, anon_sym_POUND, - ACTIONS(1214), 1, + ACTIONS(1165), 1, anon_sym_LBRACK, - ACTIONS(1216), 1, + ACTIONS(1167), 1, anon_sym_LT_LT, - ACTIONS(1220), 1, + ACTIONS(1171), 1, sym_float, - ACTIONS(1222), 1, + ACTIONS(1173), 1, sym__discard_name, - STATE(776), 1, + STATE(87), 1, + sym__assignment, + STATE(787), 1, sym_identifier, - STATE(1016), 1, + STATE(986), 1, sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(712), 2, + STATE(717), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(311), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(792), 7, + STATE(821), 7, sym_record_pattern, sym_tuple_pattern, sym__pattern_bit_string, @@ -39047,85 +39276,46 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [40795] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1141), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1143), 1, - anon_sym_AMP_AMP, - ACTIONS(1151), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1137), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1139), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1145), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1153), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1628), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1155), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(1147), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1149), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [40849] = 17, + [41005] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(291), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(307), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(319), 1, + ACTIONS(298), 1, sym__upname, ACTIONS(709), 1, sym__name, - ACTIONS(1210), 1, + ACTIONS(1161), 1, anon_sym_POUND, - ACTIONS(1214), 1, + ACTIONS(1165), 1, anon_sym_LBRACK, - ACTIONS(1216), 1, + ACTIONS(1167), 1, anon_sym_LT_LT, - ACTIONS(1220), 1, + ACTIONS(1171), 1, sym_float, - ACTIONS(1222), 1, + ACTIONS(1173), 1, sym__discard_name, - STATE(776), 1, + STATE(787), 1, sym_identifier, - STATE(913), 1, + STATE(1003), 1, sym__pattern, + STATE(1148), 1, + sym_pattern_bit_string_segment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(712), 2, + STATE(717), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(311), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(792), 7, + STATE(821), 7, sym_record_pattern, sym_tuple_pattern, sym__pattern_bit_string, @@ -39133,306 +39323,270 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [40911] = 17, + [41070] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(457), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(473), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, + ACTIONS(298), 1, sym__upname, - ACTIONS(1508), 1, + ACTIONS(709), 1, + sym__name, + ACTIONS(1161), 1, anon_sym_POUND, - ACTIONS(1510), 1, + ACTIONS(1165), 1, anon_sym_LBRACK, - ACTIONS(1512), 1, + ACTIONS(1167), 1, anon_sym_LT_LT, - ACTIONS(1630), 1, - anon_sym_GT_GT, - ACTIONS(1632), 1, + ACTIONS(1171), 1, sym_float, - STATE(1074), 1, - sym_constant_bit_string_segment, - STATE(1212), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(481), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(920), 7, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_string, - sym_integer, - [40973] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1141), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1143), 1, - anon_sym_AMP_AMP, - ACTIONS(1151), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1137), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1139), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1145), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1153), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1634), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1155), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(1147), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1149), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [41027] = 17, + ACTIONS(1173), 1, + sym__discard_name, + STATE(89), 1, + sym__assignment, + STATE(787), 1, + sym_identifier, + STATE(986), 1, + sym__pattern, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(717), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(290), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(821), 7, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_string, + sym_integer, + sym_discard, + [41135] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(457), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(473), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, + ACTIONS(298), 1, sym__upname, - ACTIONS(1508), 1, + ACTIONS(709), 1, + sym__name, + ACTIONS(1161), 1, anon_sym_POUND, - ACTIONS(1510), 1, + ACTIONS(1165), 1, anon_sym_LBRACK, - ACTIONS(1512), 1, + ACTIONS(1167), 1, anon_sym_LT_LT, - ACTIONS(1632), 1, + ACTIONS(1171), 1, sym_float, - ACTIONS(1636), 1, - anon_sym_GT_GT, - STATE(1074), 1, - sym_constant_bit_string_segment, - STATE(1212), 1, + ACTIONS(1173), 1, + sym__discard_name, + ACTIONS(1646), 1, + anon_sym_RPAREN, + STATE(787), 1, sym_identifier, + STATE(824), 1, + sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(481), 2, + STATE(717), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(477), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(920), 7, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, + STATE(821), 7, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, sym_string, sym_integer, - [41089] = 13, + sym_discard, + [41200] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1141), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1143), 1, + ACTIONS(1147), 1, anon_sym_AMP_AMP, - ACTIONS(1151), 1, + ACTIONS(1155), 1, anon_sym_PIPE_GT, + ACTIONS(1179), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1648), 1, + anon_sym_COMMA, + ACTIONS(1650), 1, + anon_sym_RPAREN, + STATE(960), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1137), 2, + ACTIONS(1143), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1139), 2, + ACTIONS(1145), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1145), 2, + ACTIONS(1149), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1153), 2, + ACTIONS(1157), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1638), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1155), 3, + ACTIONS(1159), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(1147), 4, + ACTIONS(1151), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1149), 4, + ACTIONS(1153), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [41143] = 17, + [41259] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(457), 1, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(473), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(481), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(515), 1, sym__upname, - ACTIONS(1508), 1, + ACTIONS(1312), 1, anon_sym_POUND, - ACTIONS(1510), 1, + ACTIONS(1314), 1, anon_sym_LBRACK, - ACTIONS(1512), 1, + ACTIONS(1316), 1, anon_sym_LT_LT, - ACTIONS(1632), 1, + ACTIONS(1652), 1, + anon_sym_RBRACK, + ACTIONS(1654), 1, sym_float, - ACTIONS(1640), 1, - anon_sym_GT_GT, - STATE(1074), 1, - sym_constant_bit_string_segment, - STATE(1212), 1, + STATE(849), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(481), 2, + STATE(466), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(477), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(920), 7, + STATE(1018), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, sym__constant_bit_string, sym_constant_record, + sym_constant_field_access, sym_string, sym_integer, - [41205] = 17, + [41319] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(457), 1, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(473), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(481), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(515), 1, sym__upname, - ACTIONS(1508), 1, + ACTIONS(1312), 1, anon_sym_POUND, - ACTIONS(1510), 1, + ACTIONS(1314), 1, anon_sym_LBRACK, - ACTIONS(1512), 1, + ACTIONS(1316), 1, anon_sym_LT_LT, - ACTIONS(1632), 1, + ACTIONS(1654), 1, sym_float, - ACTIONS(1642), 1, - anon_sym_GT_GT, - STATE(1074), 1, - sym_constant_bit_string_segment, - STATE(1212), 1, + ACTIONS(1656), 1, + anon_sym_RPAREN, + STATE(849), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(481), 2, + STATE(466), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(477), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(920), 7, + STATE(1018), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, sym__constant_bit_string, sym_constant_record, + sym_constant_field_access, sym_string, sym_integer, - [41267] = 17, + [41379] = 17, ACTIONS(3), 1, sym_module_comment, - ACTIONS(291), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(307), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(319), 1, + ACTIONS(298), 1, sym__upname, ACTIONS(709), 1, sym__name, - ACTIONS(1210), 1, + ACTIONS(1161), 1, anon_sym_POUND, - ACTIONS(1214), 1, + ACTIONS(1165), 1, anon_sym_LBRACK, - ACTIONS(1216), 1, + ACTIONS(1167), 1, anon_sym_LT_LT, - ACTIONS(1220), 1, + ACTIONS(1171), 1, sym_float, - ACTIONS(1222), 1, + ACTIONS(1173), 1, sym__discard_name, - STATE(776), 1, + STATE(787), 1, sym_identifier, - STATE(814), 1, + STATE(979), 1, sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(712), 2, + STATE(717), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(311), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(792), 7, + STATE(821), 7, sym_record_pattern, sym_tuple_pattern, sym__pattern_bit_string, @@ -39440,1508 +39594,1362 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [41329] = 17, + [41441] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1210), 1, - anon_sym_POUND, - ACTIONS(1214), 1, - anon_sym_LBRACK, - ACTIONS(1216), 1, - anon_sym_LT_LT, - ACTIONS(1222), 1, - sym__discard_name, - ACTIONS(1224), 1, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(1226), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(1228), 1, - sym_float, - ACTIONS(1232), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(1234), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(1236), 1, + ACTIONS(515), 1, sym__upname, - STATE(814), 1, - sym__pattern, - STATE(835), 1, + ACTIONS(1312), 1, + anon_sym_POUND, + ACTIONS(1314), 1, + anon_sym_LBRACK, + ACTIONS(1316), 1, + anon_sym_LT_LT, + ACTIONS(1658), 1, + anon_sym_RPAREN, + ACTIONS(1660), 1, + sym_float, + STATE(849), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(712), 2, + STATE(466), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1230), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(855), 7, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, + STATE(947), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, sym_string, sym_integer, - sym_discard, - [41391] = 17, + [41501] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(317), 1, - sym__name, - ACTIONS(457), 1, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(473), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(483), 1, + ACTIONS(513), 1, + sym__name, + ACTIONS(515), 1, sym__upname, - ACTIONS(1508), 1, + ACTIONS(1312), 1, anon_sym_POUND, - ACTIONS(1510), 1, + ACTIONS(1314), 1, anon_sym_LBRACK, - ACTIONS(1512), 1, + ACTIONS(1316), 1, anon_sym_LT_LT, - ACTIONS(1594), 1, + ACTIONS(1654), 1, sym_float, - STATE(1106), 1, - sym_constant_record_argument, - STATE(1212), 1, + ACTIONS(1662), 1, + anon_sym_RBRACK, + STATE(849), 1, sym_identifier, - STATE(1295), 1, - sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(481), 2, + STATE(466), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(477), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(1171), 7, + STATE(1018), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, sym__constant_bit_string, sym_constant_record, + sym_constant_field_access, sym_string, sym_integer, - [41453] = 17, + [41561] = 17, ACTIONS(3), 1, sym_module_comment, - ACTIONS(457), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(473), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(481), 1, + ACTIONS(298), 1, + sym__upname, + ACTIONS(709), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(1161), 1, + anon_sym_POUND, + ACTIONS(1165), 1, + anon_sym_LBRACK, + ACTIONS(1167), 1, + anon_sym_LT_LT, + ACTIONS(1171), 1, + sym_float, + ACTIONS(1173), 1, + sym__discard_name, + STATE(787), 1, + sym_identifier, + STATE(1007), 1, + sym__pattern, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(717), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(290), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(821), 7, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_string, + sym_integer, + sym_discard, + [41623] = 16, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(489), 1, + anon_sym_DASH, + ACTIONS(505), 1, + anon_sym_DQUOTE, + ACTIONS(511), 1, + sym__decimal, + ACTIONS(513), 1, + sym__name, + ACTIONS(515), 1, sym__upname, - ACTIONS(1508), 1, + ACTIONS(1312), 1, anon_sym_POUND, - ACTIONS(1510), 1, + ACTIONS(1314), 1, anon_sym_LBRACK, - ACTIONS(1512), 1, + ACTIONS(1316), 1, anon_sym_LT_LT, - ACTIONS(1632), 1, + ACTIONS(1654), 1, sym_float, - ACTIONS(1644), 1, - anon_sym_GT_GT, - STATE(1054), 1, - sym_constant_bit_string_segment, - STATE(1212), 1, + ACTIONS(1664), 1, + anon_sym_RBRACK, + STATE(849), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(481), 2, + STATE(466), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(477), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(920), 7, + STATE(1018), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, sym__constant_bit_string, sym_constant_record, + sym_constant_field_access, sym_string, sym_integer, - [41515] = 17, + [41683] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(457), 1, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(473), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(481), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(515), 1, sym__upname, - ACTIONS(1508), 1, + ACTIONS(1312), 1, anon_sym_POUND, - ACTIONS(1510), 1, + ACTIONS(1314), 1, anon_sym_LBRACK, - ACTIONS(1512), 1, + ACTIONS(1316), 1, anon_sym_LT_LT, - ACTIONS(1632), 1, + ACTIONS(1666), 1, + anon_sym_RPAREN, + ACTIONS(1668), 1, sym_float, - ACTIONS(1646), 1, - anon_sym_GT_GT, - STATE(922), 1, - sym_constant_bit_string_segment, - STATE(1212), 1, + STATE(849), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(481), 2, + STATE(466), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(477), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(920), 7, + STATE(1058), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, sym__constant_bit_string, sym_constant_record, + sym_constant_field_access, sym_string, sym_integer, - [41577] = 13, + [41743] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1141), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1143), 1, + ACTIONS(1147), 1, anon_sym_AMP_AMP, - ACTIONS(1151), 1, + ACTIONS(1155), 1, anon_sym_PIPE_GT, - ACTIONS(1648), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1137), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1139), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1145), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1153), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1155), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(1147), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1149), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [41630] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1141), 1, + ACTIONS(1179), 1, anon_sym_PIPE_PIPE, - ACTIONS(1143), 1, - anon_sym_AMP_AMP, - ACTIONS(1151), 1, - anon_sym_PIPE_GT, - ACTIONS(1650), 1, - anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1137), 2, + ACTIONS(1143), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1139), 2, - anon_sym_DASH, - anon_sym_PLUS, ACTIONS(1145), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1153), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1155), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(1147), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1149), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [41683] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1141), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1143), 1, - anon_sym_AMP_AMP, - ACTIONS(1151), 1, - anon_sym_PIPE_GT, - ACTIONS(1652), 1, - anon_sym_COMMA, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1137), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1139), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1145), 2, + ACTIONS(1149), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1153), 2, + ACTIONS(1157), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1155), 3, + ACTIONS(1670), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1159), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(1147), 4, + ACTIONS(1151), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1149), 4, + ACTIONS(1153), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [41736] = 16, + [41797] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(457), 1, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(473), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(481), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(515), 1, sym__upname, - ACTIONS(1508), 1, + ACTIONS(1312), 1, anon_sym_POUND, - ACTIONS(1510), 1, + ACTIONS(1314), 1, anon_sym_LBRACK, - ACTIONS(1512), 1, + ACTIONS(1316), 1, anon_sym_LT_LT, ACTIONS(1654), 1, - anon_sym_RBRACK, - ACTIONS(1656), 1, sym_float, - STATE(1212), 1, + ACTIONS(1672), 1, + anon_sym_RPAREN, + STATE(849), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(481), 2, + STATE(466), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(477), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(1024), 7, + STATE(1018), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, sym__constant_bit_string, sym_constant_record, + sym_constant_field_access, sym_string, sym_integer, - [41795] = 13, + [41857] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1141), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1143), 1, - anon_sym_AMP_AMP, - ACTIONS(1151), 1, - anon_sym_PIPE_GT, - ACTIONS(1658), 1, - anon_sym_RBRACK, + ACTIONS(489), 1, + anon_sym_DASH, + ACTIONS(505), 1, + anon_sym_DQUOTE, + ACTIONS(511), 1, + sym__decimal, + ACTIONS(513), 1, + sym__name, + ACTIONS(515), 1, + sym__upname, + ACTIONS(1312), 1, + anon_sym_POUND, + ACTIONS(1314), 1, + anon_sym_LBRACK, + ACTIONS(1316), 1, + anon_sym_LT_LT, + ACTIONS(1622), 1, + sym_float, + STATE(849), 1, + sym_identifier, + STATE(1121), 1, + sym_constant_bit_string_segment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1137), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1139), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1145), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1153), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1155), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(1147), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1149), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [41848] = 16, + STATE(466), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(509), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1012), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, + sym_integer, + [41917] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(457), 1, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(473), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(481), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(515), 1, sym__upname, - ACTIONS(1508), 1, + ACTIONS(1312), 1, anon_sym_POUND, - ACTIONS(1510), 1, + ACTIONS(1314), 1, anon_sym_LBRACK, - ACTIONS(1512), 1, + ACTIONS(1316), 1, anon_sym_LT_LT, - ACTIONS(1656), 1, + ACTIONS(1674), 1, + anon_sym_RBRACK, + ACTIONS(1676), 1, sym_float, - ACTIONS(1660), 1, - anon_sym_RPAREN, - STATE(1212), 1, + STATE(849), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(481), 2, + STATE(466), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(477), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(1024), 7, + STATE(969), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, sym__constant_bit_string, sym_constant_record, + sym_constant_field_access, sym_string, sym_integer, - [41907] = 13, + [41977] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1141), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1143), 1, + ACTIONS(1147), 1, anon_sym_AMP_AMP, - ACTIONS(1151), 1, + ACTIONS(1155), 1, anon_sym_PIPE_GT, - ACTIONS(1662), 1, - anon_sym_RBRACK, + ACTIONS(1179), 1, + anon_sym_PIPE_PIPE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1137), 2, + ACTIONS(1143), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1139), 2, + ACTIONS(1145), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1145), 2, + ACTIONS(1149), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1153), 2, + ACTIONS(1157), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1155), 3, + ACTIONS(1678), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1159), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(1147), 4, + ACTIONS(1151), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1149), 4, + ACTIONS(1153), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [41960] = 16, + [42031] = 17, ACTIONS(3), 1, sym_module_comment, - ACTIONS(457), 1, + ACTIONS(1161), 1, + anon_sym_POUND, + ACTIONS(1165), 1, + anon_sym_LBRACK, + ACTIONS(1167), 1, + anon_sym_LT_LT, + ACTIONS(1173), 1, + sym__discard_name, + ACTIONS(1222), 1, anon_sym_DASH, - ACTIONS(473), 1, + ACTIONS(1224), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(1226), 1, + sym_float, + ACTIONS(1230), 1, sym__decimal, - ACTIONS(481), 1, + ACTIONS(1232), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(1234), 1, sym__upname, - ACTIONS(1508), 1, - anon_sym_POUND, - ACTIONS(1510), 1, - anon_sym_LBRACK, - ACTIONS(1512), 1, - anon_sym_LT_LT, - ACTIONS(1656), 1, - sym_float, - ACTIONS(1664), 1, - anon_sym_RPAREN, - STATE(1212), 1, + STATE(824), 1, + sym__pattern, + STATE(847), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(481), 2, + STATE(717), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(477), 3, + ACTIONS(1228), 3, sym__hex, sym__octal, sym__binary, - STATE(1024), 7, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, + STATE(865), 7, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, sym_string, sym_integer, - [42019] = 16, + sym_discard, + [42093] = 17, ACTIONS(3), 1, sym_module_comment, - ACTIONS(457), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(473), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, + ACTIONS(298), 1, sym__upname, - ACTIONS(1508), 1, + ACTIONS(709), 1, + sym__name, + ACTIONS(1161), 1, anon_sym_POUND, - ACTIONS(1510), 1, + ACTIONS(1165), 1, anon_sym_LBRACK, - ACTIONS(1512), 1, + ACTIONS(1167), 1, anon_sym_LT_LT, - ACTIONS(1666), 1, - anon_sym_RPAREN, - ACTIONS(1668), 1, + ACTIONS(1171), 1, sym_float, - STATE(1212), 1, + ACTIONS(1173), 1, + sym__discard_name, + STATE(787), 1, sym_identifier, + STATE(1036), 1, + sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(481), 2, + STATE(717), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(477), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(1033), 7, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, + STATE(821), 7, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, sym_string, sym_integer, - [42078] = 16, + sym_discard, + [42155] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(457), 1, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(473), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(481), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(515), 1, sym__upname, - ACTIONS(1508), 1, + ACTIONS(1312), 1, anon_sym_POUND, - ACTIONS(1510), 1, + ACTIONS(1314), 1, anon_sym_LBRACK, - ACTIONS(1512), 1, + ACTIONS(1316), 1, anon_sym_LT_LT, - ACTIONS(1656), 1, - sym_float, - ACTIONS(1670), 1, + ACTIONS(1680), 1, anon_sym_RBRACK, - STATE(1212), 1, + ACTIONS(1682), 1, + sym_float, + STATE(849), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(481), 2, + STATE(466), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(477), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(1024), 7, + STATE(1073), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, sym__constant_bit_string, sym_constant_record, + sym_constant_field_access, sym_string, sym_integer, - [42137] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1141), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1143), 1, - anon_sym_AMP_AMP, - ACTIONS(1151), 1, - anon_sym_PIPE_GT, - ACTIONS(1672), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1137), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1139), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1145), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1153), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1155), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(1147), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1149), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [42190] = 16, + [42215] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(457), 1, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(473), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(481), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(515), 1, sym__upname, - ACTIONS(1508), 1, + ACTIONS(1312), 1, anon_sym_POUND, - ACTIONS(1510), 1, + ACTIONS(1314), 1, anon_sym_LBRACK, - ACTIONS(1512), 1, + ACTIONS(1316), 1, anon_sym_LT_LT, - ACTIONS(1674), 1, - anon_sym_RBRACK, - ACTIONS(1676), 1, + ACTIONS(1654), 1, sym_float, - STATE(1212), 1, + ACTIONS(1684), 1, + anon_sym_RPAREN, + STATE(849), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(481), 2, + STATE(466), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(477), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(1055), 7, + STATE(1018), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, sym__constant_bit_string, sym_constant_record, + sym_constant_field_access, sym_string, sym_integer, - [42249] = 13, + [42275] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1141), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1143), 1, + ACTIONS(1147), 1, anon_sym_AMP_AMP, - ACTIONS(1151), 1, + ACTIONS(1155), 1, anon_sym_PIPE_GT, - ACTIONS(1678), 1, - anon_sym_COMMA, + ACTIONS(1179), 1, + anon_sym_PIPE_PIPE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1137), 2, + ACTIONS(1143), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1139), 2, + ACTIONS(1145), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1145), 2, + ACTIONS(1149), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1153), 2, + ACTIONS(1157), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1155), 3, + ACTIONS(1686), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1159), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(1147), 4, + ACTIONS(1151), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1149), 4, + ACTIONS(1153), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [42302] = 13, + [42329] = 17, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1141), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1143), 1, - anon_sym_AMP_AMP, - ACTIONS(1151), 1, - anon_sym_PIPE_GT, - ACTIONS(1680), 1, - anon_sym_RBRACK, + ACTIONS(270), 1, + anon_sym_DASH, + ACTIONS(286), 1, + anon_sym_DQUOTE, + ACTIONS(292), 1, + sym__decimal, + ACTIONS(298), 1, + sym__upname, + ACTIONS(709), 1, + sym__name, + ACTIONS(1161), 1, + anon_sym_POUND, + ACTIONS(1165), 1, + anon_sym_LBRACK, + ACTIONS(1167), 1, + anon_sym_LT_LT, + ACTIONS(1171), 1, + sym_float, + ACTIONS(1173), 1, + sym__discard_name, + STATE(787), 1, + sym_identifier, + STATE(824), 1, + sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1137), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1139), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1145), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1153), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1155), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(1147), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1149), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [42355] = 16, + STATE(717), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(290), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(821), 7, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_string, + sym_integer, + sym_discard, + [42391] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(457), 1, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(473), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(481), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(515), 1, sym__upname, - ACTIONS(1508), 1, + ACTIONS(1312), 1, anon_sym_POUND, - ACTIONS(1510), 1, + ACTIONS(1314), 1, anon_sym_LBRACK, - ACTIONS(1512), 1, + ACTIONS(1316), 1, anon_sym_LT_LT, - ACTIONS(1656), 1, + ACTIONS(1654), 1, sym_float, - ACTIONS(1682), 1, - anon_sym_RPAREN, - STATE(1212), 1, + ACTIONS(1688), 1, + anon_sym_RBRACK, + STATE(849), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(481), 2, + STATE(466), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(477), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(1024), 7, + STATE(1018), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, sym__constant_bit_string, sym_constant_record, + sym_constant_field_access, sym_string, sym_integer, - [42414] = 16, + [42451] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(457), 1, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(473), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(481), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(515), 1, sym__upname, - ACTIONS(1508), 1, + ACTIONS(1312), 1, anon_sym_POUND, - ACTIONS(1510), 1, + ACTIONS(1314), 1, anon_sym_LBRACK, - ACTIONS(1512), 1, + ACTIONS(1316), 1, anon_sym_LT_LT, - ACTIONS(1656), 1, + ACTIONS(1654), 1, sym_float, - ACTIONS(1684), 1, - anon_sym_RBRACK, - STATE(1212), 1, + ACTIONS(1690), 1, + anon_sym_RPAREN, + STATE(849), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(481), 2, + STATE(466), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(477), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(1024), 7, + STATE(1018), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, sym__constant_bit_string, sym_constant_record, + sym_constant_field_access, sym_string, sym_integer, - [42473] = 13, + [42511] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1141), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1143), 1, - anon_sym_AMP_AMP, - ACTIONS(1151), 1, - anon_sym_PIPE_GT, - ACTIONS(1686), 1, - anon_sym_RBRACK, + ACTIONS(270), 1, + anon_sym_DASH, + ACTIONS(286), 1, + anon_sym_DQUOTE, + ACTIONS(292), 1, + sym__decimal, + ACTIONS(298), 1, + sym__upname, + ACTIONS(709), 1, + sym__name, + ACTIONS(1312), 1, + anon_sym_POUND, + ACTIONS(1314), 1, + anon_sym_LBRACK, + ACTIONS(1316), 1, + anon_sym_LT_LT, + ACTIONS(1692), 1, + sym_float, + STATE(789), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1137), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1139), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1145), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1153), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1155), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(1147), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1149), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [42526] = 16, + STATE(466), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(290), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(816), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, + sym_integer, + [42568] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(457), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(473), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, + ACTIONS(298), 1, sym__upname, - ACTIONS(1508), 1, + ACTIONS(709), 1, + sym__name, + ACTIONS(1312), 1, anon_sym_POUND, - ACTIONS(1510), 1, + ACTIONS(1314), 1, anon_sym_LBRACK, - ACTIONS(1512), 1, + ACTIONS(1316), 1, anon_sym_LT_LT, - ACTIONS(1656), 1, + ACTIONS(1694), 1, sym_float, - ACTIONS(1688), 1, - anon_sym_RPAREN, - STATE(1212), 1, + STATE(789), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(481), 2, + STATE(466), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(477), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(1024), 7, + STATE(813), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, sym__constant_bit_string, sym_constant_record, + sym_constant_field_access, sym_string, sym_integer, - [42585] = 13, + [42625] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1141), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1143), 1, + ACTIONS(1147), 1, anon_sym_AMP_AMP, - ACTIONS(1151), 1, + ACTIONS(1155), 1, anon_sym_PIPE_GT, - ACTIONS(1690), 1, - anon_sym_RBRACK, + ACTIONS(1179), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1696), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1137), 2, + ACTIONS(1143), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1139), 2, + ACTIONS(1145), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1145), 2, + ACTIONS(1149), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1153), 2, + ACTIONS(1157), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1155), 3, + ACTIONS(1159), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(1147), 4, + ACTIONS(1151), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1149), 4, + ACTIONS(1153), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [42638] = 13, + [42678] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1141), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1143), 1, + ACTIONS(1147), 1, anon_sym_AMP_AMP, - ACTIONS(1151), 1, + ACTIONS(1155), 1, anon_sym_PIPE_GT, - ACTIONS(1692), 1, - anon_sym_COMMA, + ACTIONS(1179), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1698), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1137), 2, + ACTIONS(1143), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1139), 2, + ACTIONS(1145), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1145), 2, + ACTIONS(1149), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1153), 2, + ACTIONS(1157), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1155), 3, + ACTIONS(1159), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(1147), 4, + ACTIONS(1151), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1149), 4, + ACTIONS(1153), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [42691] = 13, + [42731] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1141), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1143), 1, + ACTIONS(1147), 1, anon_sym_AMP_AMP, - ACTIONS(1151), 1, + ACTIONS(1155), 1, anon_sym_PIPE_GT, - ACTIONS(1694), 1, - anon_sym_RBRACK, + ACTIONS(1179), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1700), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1137), 2, + ACTIONS(1143), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1139), 2, + ACTIONS(1145), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1145), 2, + ACTIONS(1149), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1153), 2, + ACTIONS(1157), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1155), 3, + ACTIONS(1159), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(1147), 4, + ACTIONS(1151), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1149), 4, + ACTIONS(1153), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [42744] = 13, + [42784] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1141), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1143), 1, + ACTIONS(1147), 1, anon_sym_AMP_AMP, - ACTIONS(1151), 1, + ACTIONS(1155), 1, anon_sym_PIPE_GT, - ACTIONS(1696), 1, - anon_sym_COMMA, + ACTIONS(1179), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1702), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1137), 2, + ACTIONS(1143), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1139), 2, + ACTIONS(1145), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1145), 2, + ACTIONS(1149), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1153), 2, + ACTIONS(1157), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1155), 3, + ACTIONS(1159), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(1147), 4, + ACTIONS(1151), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1149), 4, + ACTIONS(1153), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [42797] = 13, + [42837] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1141), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1143), 1, + ACTIONS(1147), 1, anon_sym_AMP_AMP, - ACTIONS(1151), 1, + ACTIONS(1155), 1, anon_sym_PIPE_GT, - ACTIONS(1698), 1, - anon_sym_RBRACK, + ACTIONS(1179), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1704), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1137), 2, + ACTIONS(1143), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1139), 2, + ACTIONS(1145), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1145), 2, + ACTIONS(1149), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1153), 2, + ACTIONS(1157), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1155), 3, + ACTIONS(1159), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(1147), 4, + ACTIONS(1151), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1149), 4, + ACTIONS(1153), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [42850] = 13, + [42890] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1141), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1143), 1, + ACTIONS(1147), 1, anon_sym_AMP_AMP, - ACTIONS(1151), 1, + ACTIONS(1155), 1, anon_sym_PIPE_GT, - ACTIONS(1700), 1, + ACTIONS(1179), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1706), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1137), 2, + ACTIONS(1143), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1139), 2, + ACTIONS(1145), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1145), 2, + ACTIONS(1149), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1153), 2, + ACTIONS(1157), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1155), 3, + ACTIONS(1159), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(1147), 4, + ACTIONS(1151), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1149), 4, + ACTIONS(1153), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [42903] = 16, + [42943] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(1508), 1, - anon_sym_POUND, - ACTIONS(1510), 1, - anon_sym_LBRACK, - ACTIONS(1512), 1, - anon_sym_LT_LT, - ACTIONS(1632), 1, - sym_float, - STATE(1074), 1, - sym_constant_bit_string_segment, - STATE(1212), 1, - sym_identifier, + ACTIONS(1147), 1, + anon_sym_AMP_AMP, + ACTIONS(1155), 1, + anon_sym_PIPE_GT, + ACTIONS(1179), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1708), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(481), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(920), 7, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_string, - sym_integer, - [42962] = 13, + ACTIONS(1143), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1145), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1149), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1157), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1159), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(1151), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1153), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [42996] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1141), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1143), 1, + ACTIONS(1147), 1, anon_sym_AMP_AMP, - ACTIONS(1151), 1, + ACTIONS(1155), 1, anon_sym_PIPE_GT, - ACTIONS(1702), 1, + ACTIONS(1179), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1710), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1137), 2, + ACTIONS(1143), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1139), 2, + ACTIONS(1145), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1145), 2, + ACTIONS(1149), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1153), 2, + ACTIONS(1157), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1155), 3, + ACTIONS(1159), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(1147), 4, + ACTIONS(1151), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1149), 4, + ACTIONS(1153), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [43015] = 16, + [43049] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(457), 1, + ACTIONS(270), 1, anon_sym_DASH, - ACTIONS(473), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, + ACTIONS(298), 1, sym__upname, - ACTIONS(1508), 1, - anon_sym_POUND, - ACTIONS(1510), 1, - anon_sym_LBRACK, - ACTIONS(1512), 1, - anon_sym_LT_LT, - ACTIONS(1704), 1, - anon_sym_RPAREN, - ACTIONS(1706), 1, - sym_float, - STATE(1212), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(481), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(950), 7, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_string, - sym_integer, - [43074] = 16, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(481), 1, + ACTIONS(709), 1, sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(1508), 1, + ACTIONS(1312), 1, anon_sym_POUND, - ACTIONS(1510), 1, + ACTIONS(1314), 1, anon_sym_LBRACK, - ACTIONS(1512), 1, + ACTIONS(1316), 1, anon_sym_LT_LT, - ACTIONS(1656), 1, + ACTIONS(1712), 1, sym_float, - ACTIONS(1708), 1, - anon_sym_RBRACK, - STATE(1212), 1, + STATE(789), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(481), 2, + STATE(466), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(477), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(1024), 7, + STATE(802), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, sym__constant_bit_string, sym_constant_record, + sym_constant_field_access, sym_string, sym_integer, - [43133] = 13, + [43106] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1141), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1143), 1, + ACTIONS(1147), 1, anon_sym_AMP_AMP, - ACTIONS(1151), 1, + ACTIONS(1155), 1, anon_sym_PIPE_GT, - ACTIONS(1710), 1, + ACTIONS(1179), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1714), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1137), 2, + ACTIONS(1143), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1139), 2, + ACTIONS(1145), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1145), 2, + ACTIONS(1149), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1153), 2, + ACTIONS(1157), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1155), 3, + ACTIONS(1159), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(1147), 4, + ACTIONS(1151), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1149), 4, + ACTIONS(1153), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [43186] = 16, + [43159] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(457), 1, + ACTIONS(23), 1, anon_sym_DASH, - ACTIONS(473), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(53), 1, sym__decimal, - ACTIONS(481), 1, + ACTIONS(55), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(57), 1, sym__upname, - ACTIONS(1508), 1, + ACTIONS(1716), 1, anon_sym_POUND, - ACTIONS(1510), 1, + ACTIONS(1718), 1, anon_sym_LBRACK, - ACTIONS(1512), 1, + ACTIONS(1720), 1, anon_sym_LT_LT, - ACTIONS(1712), 1, - anon_sym_RBRACK, - ACTIONS(1714), 1, + ACTIONS(1722), 1, sym_float, - STATE(1212), 1, + STATE(422), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(481), 2, + STATE(381), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(477), 3, + ACTIONS(51), 3, sym__hex, sym__octal, sym__binary, - STATE(918), 7, + STATE(517), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, sym__constant_bit_string, sym_constant_record, + sym_constant_field_access, sym_string, sym_integer, - [43245] = 15, + [43216] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(307), 1, - anon_sym_DQUOTE, - ACTIONS(313), 1, - sym__decimal, - ACTIONS(319), 1, - sym__upname, - ACTIONS(481), 1, - sym__name, - ACTIONS(1508), 1, - anon_sym_POUND, - ACTIONS(1510), 1, - anon_sym_LBRACK, - ACTIONS(1512), 1, - anon_sym_LT_LT, - ACTIONS(1716), 1, - sym_float, - STATE(1289), 1, - sym_identifier, + ACTIONS(1147), 1, + anon_sym_AMP_AMP, + ACTIONS(1155), 1, + anon_sym_PIPE_GT, + ACTIONS(1179), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1724), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(481), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(311), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(784), 7, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_string, - sym_integer, - [43301] = 15, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(457), 1, + ACTIONS(1143), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1145), 2, anon_sym_DASH, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(1508), 1, - anon_sym_POUND, - ACTIONS(1510), 1, - anon_sym_LBRACK, - ACTIONS(1512), 1, - anon_sym_LT_LT, - ACTIONS(1656), 1, - sym_float, - STATE(1212), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(481), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1024), 7, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_string, - sym_integer, - [43357] = 15, + anon_sym_PLUS, + ACTIONS(1149), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1157), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1159), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(1151), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1153), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [43269] = 15, ACTIONS(3), 1, sym_module_comment, ACTIONS(23), 1, @@ -40950,162 +40958,202 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(53), 1, sym__decimal, + ACTIONS(55), 1, + sym__name, ACTIONS(57), 1, sym__upname, - ACTIONS(481), 1, - sym__name, - ACTIONS(1718), 1, + ACTIONS(1716), 1, anon_sym_POUND, - ACTIONS(1720), 1, + ACTIONS(1718), 1, anon_sym_LBRACK, - ACTIONS(1722), 1, + ACTIONS(1720), 1, anon_sym_LT_LT, - ACTIONS(1724), 1, + ACTIONS(1726), 1, sym_float, - STATE(1230), 1, + STATE(422), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(394), 2, + STATE(381), 2, sym_constructor_name, sym_remote_constructor_name, ACTIONS(51), 3, sym__hex, sym__octal, sym__binary, - STATE(488), 7, + STATE(500), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, sym__constant_bit_string, sym_constant_record, + sym_constant_field_access, sym_string, sym_integer, - [43413] = 15, + [43326] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(457), 1, + ACTIONS(1147), 1, + anon_sym_AMP_AMP, + ACTIONS(1155), 1, + anon_sym_PIPE_GT, + ACTIONS(1179), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1728), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1143), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1145), 2, anon_sym_DASH, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(1508), 1, - anon_sym_POUND, - ACTIONS(1510), 1, - anon_sym_LBRACK, - ACTIONS(1512), 1, - anon_sym_LT_LT, - ACTIONS(1726), 1, - sym_float, - STATE(1212), 1, - sym_identifier, + anon_sym_PLUS, + ACTIONS(1149), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1157), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1159), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(1151), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1153), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [43379] = 13, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1147), 1, + anon_sym_AMP_AMP, + ACTIONS(1155), 1, + anon_sym_PIPE_GT, + ACTIONS(1179), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1730), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(481), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1111), 7, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_string, - sym_integer, - [43469] = 15, + ACTIONS(1143), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1145), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1149), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1157), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1159), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(1151), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1153), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [43432] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(291), 1, + ACTIONS(489), 1, anon_sym_DASH, - ACTIONS(307), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(319), 1, - sym__upname, - ACTIONS(481), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(1508), 1, + ACTIONS(515), 1, + sym__upname, + ACTIONS(1312), 1, anon_sym_POUND, - ACTIONS(1510), 1, + ACTIONS(1314), 1, anon_sym_LBRACK, - ACTIONS(1512), 1, + ACTIONS(1316), 1, anon_sym_LT_LT, - ACTIONS(1728), 1, + ACTIONS(1654), 1, sym_float, - STATE(1289), 1, + STATE(849), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(481), 2, + STATE(466), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(311), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(798), 7, + STATE(1018), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, sym__constant_bit_string, sym_constant_record, + sym_constant_field_access, sym_string, sym_integer, - [43525] = 15, + [43489] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(291), 1, - anon_sym_DASH, - ACTIONS(307), 1, - anon_sym_DQUOTE, - ACTIONS(313), 1, - sym__decimal, - ACTIONS(319), 1, - sym__upname, - ACTIONS(481), 1, - sym__name, - ACTIONS(1508), 1, - anon_sym_POUND, - ACTIONS(1510), 1, - anon_sym_LBRACK, - ACTIONS(1512), 1, - anon_sym_LT_LT, - ACTIONS(1730), 1, - sym_float, - STATE(1289), 1, - sym_identifier, + ACTIONS(1147), 1, + anon_sym_AMP_AMP, + ACTIONS(1155), 1, + anon_sym_PIPE_GT, + ACTIONS(1179), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1732), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(481), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(311), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(788), 7, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_string, - sym_integer, - [43581] = 15, + ACTIONS(1143), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1145), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1149), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1157), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1159), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(1151), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1153), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [43542] = 15, ACTIONS(3), 1, sym_module_comment, ACTIONS(23), 1, @@ -41114,168 +41162,332 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(53), 1, sym__decimal, + ACTIONS(55), 1, + sym__name, ACTIONS(57), 1, sym__upname, - ACTIONS(481), 1, - sym__name, - ACTIONS(1718), 1, + ACTIONS(1716), 1, anon_sym_POUND, - ACTIONS(1720), 1, + ACTIONS(1718), 1, anon_sym_LBRACK, - ACTIONS(1722), 1, + ACTIONS(1720), 1, anon_sym_LT_LT, - ACTIONS(1732), 1, + ACTIONS(1734), 1, sym_float, - STATE(1230), 1, + STATE(422), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(394), 2, + STATE(381), 2, sym_constructor_name, sym_remote_constructor_name, ACTIONS(51), 3, sym__hex, sym__octal, sym__binary, - STATE(459), 7, + STATE(505), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, sym__constant_bit_string, sym_constant_record, + sym_constant_field_access, sym_string, sym_integer, - [43637] = 15, + [43599] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(291), 1, + ACTIONS(23), 1, anon_sym_DASH, - ACTIONS(307), 1, + ACTIONS(47), 1, anon_sym_DQUOTE, - ACTIONS(313), 1, + ACTIONS(53), 1, sym__decimal, - ACTIONS(319), 1, - sym__upname, - ACTIONS(481), 1, + ACTIONS(55), 1, sym__name, - ACTIONS(1508), 1, + ACTIONS(57), 1, + sym__upname, + ACTIONS(1716), 1, anon_sym_POUND, - ACTIONS(1510), 1, + ACTIONS(1718), 1, anon_sym_LBRACK, - ACTIONS(1512), 1, + ACTIONS(1720), 1, anon_sym_LT_LT, - ACTIONS(1734), 1, + ACTIONS(1736), 1, sym_float, - STATE(1289), 1, + STATE(422), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(481), 2, + STATE(381), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(311), 3, + ACTIONS(51), 3, sym__hex, sym__octal, sym__binary, - STATE(807), 7, + STATE(511), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, sym__constant_bit_string, sym_constant_record, + sym_constant_field_access, sym_string, sym_integer, - [43693] = 15, + [43656] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(23), 1, + ACTIONS(1147), 1, + anon_sym_AMP_AMP, + ACTIONS(1155), 1, + anon_sym_PIPE_GT, + ACTIONS(1179), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1738), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1143), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1145), 2, anon_sym_DASH, - ACTIONS(47), 1, + anon_sym_PLUS, + ACTIONS(1149), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1157), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1159), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(1151), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1153), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [43709] = 15, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(270), 1, + anon_sym_DASH, + ACTIONS(286), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(57), 1, + ACTIONS(298), 1, sym__upname, - ACTIONS(481), 1, + ACTIONS(709), 1, sym__name, - ACTIONS(1718), 1, + ACTIONS(1312), 1, anon_sym_POUND, - ACTIONS(1720), 1, + ACTIONS(1314), 1, anon_sym_LBRACK, - ACTIONS(1722), 1, + ACTIONS(1316), 1, anon_sym_LT_LT, - ACTIONS(1736), 1, + ACTIONS(1740), 1, sym_float, - STATE(1230), 1, + STATE(789), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(394), 2, + STATE(466), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(51), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(457), 7, + STATE(794), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, sym__constant_bit_string, sym_constant_record, + sym_constant_field_access, sym_string, sym_integer, - [43749] = 15, + [43766] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(23), 1, + ACTIONS(1147), 1, + anon_sym_AMP_AMP, + ACTIONS(1155), 1, + anon_sym_PIPE_GT, + ACTIONS(1179), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1742), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1143), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1145), 2, anon_sym_DASH, - ACTIONS(47), 1, + anon_sym_PLUS, + ACTIONS(1149), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1157), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1159), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(1151), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1153), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [43819] = 13, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1147), 1, + anon_sym_AMP_AMP, + ACTIONS(1155), 1, + anon_sym_PIPE_GT, + ACTIONS(1179), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1744), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1143), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1145), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1149), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1157), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1159), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(1151), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1153), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [43872] = 15, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(489), 1, + anon_sym_DASH, + ACTIONS(505), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(57), 1, - sym__upname, - ACTIONS(481), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(1718), 1, + ACTIONS(515), 1, + sym__upname, + ACTIONS(1312), 1, anon_sym_POUND, - ACTIONS(1720), 1, + ACTIONS(1314), 1, anon_sym_LBRACK, - ACTIONS(1722), 1, + ACTIONS(1316), 1, anon_sym_LT_LT, - ACTIONS(1738), 1, + ACTIONS(1746), 1, sym_float, - STATE(1230), 1, + STATE(849), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(394), 2, + STATE(466), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(51), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - STATE(501), 7, + STATE(1108), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, sym__constant_bit_string, sym_constant_record, + sym_constant_field_access, sym_string, sym_integer, - [43805] = 4, + [43929] = 13, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1147), 1, + anon_sym_AMP_AMP, + ACTIONS(1155), 1, + anon_sym_PIPE_GT, + ACTIONS(1179), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1748), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1143), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1145), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1149), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1157), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1159), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(1151), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1153), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [43982] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(655), 9, + ACTIONS(461), 9, anon_sym_DASH, anon_sym_fn, anon_sym_try, @@ -41285,7 +41497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_assert, sym__decimal, sym__name, - ACTIONS(653), 12, + ACTIONS(459), 12, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, @@ -41298,23 +41510,23 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [43838] = 4, + [44015] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(367), 5, + ACTIONS(323), 5, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_PIPE, - ACTIONS(365), 13, + ACTIONS(321), 13, anon_sym_if, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -41324,19 +41536,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [43868] = 4, + [44045] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(351), 5, + ACTIONS(367), 5, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_PIPE, - ACTIONS(349), 13, + ACTIONS(365), 13, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -41350,23 +41562,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [43898] = 4, + [44075] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(339), 5, + ACTIONS(343), 5, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_PIPE, - ACTIONS(337), 13, + ACTIONS(341), 13, anon_sym_if, - anon_sym_DOT, anon_sym_as, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -41376,19 +41588,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [43928] = 4, + [44105] = 11, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1750), 1, + anon_sym_RBRACE, + ACTIONS(1752), 1, + anon_sym_import, + ACTIONS(1754), 1, + anon_sym_const, + ACTIONS(1756), 1, + anon_sym_fn, + ACTIONS(1758), 1, + anon_sym_external, + ACTIONS(1760), 1, + anon_sym_type, + ACTIONS(1762), 1, + sym_visibility_modifier, + ACTIONS(1764), 1, + sym_opacity_modifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(645), 9, + sym__statement, + sym_import, + sym_constant, + sym_external_type, + sym_external_function, + sym_function, + sym_type_definition, + sym_type_alias, + aux_sym_target_group_repeat1, + [44148] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(559), 5, + ACTIONS(315), 5, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_PIPE, - ACTIONS(557), 12, + ACTIONS(313), 12, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -41401,87 +41645,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [43957] = 13, + [44177] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1740), 1, + ACTIONS(1766), 1, anon_sym_POUND, - ACTIONS(1742), 1, + ACTIONS(1768), 1, anon_sym_RPAREN, - ACTIONS(1744), 1, + ACTIONS(1770), 1, anon_sym_fn, - ACTIONS(1746), 1, + ACTIONS(1772), 1, sym__discard_name, - ACTIONS(1748), 1, + ACTIONS(1774), 1, sym__name, - ACTIONS(1750), 1, + ACTIONS(1776), 1, sym__upname, - STATE(983), 1, + STATE(1144), 1, sym_data_constructor_argument, - STATE(1189), 1, + STATE(1206), 1, sym_identifier, - STATE(1238), 1, + STATE(1255), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(678), 2, + STATE(686), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1139), 6, + STATE(1158), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [44004] = 13, + [44224] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1740), 1, + ACTIONS(1766), 1, anon_sym_POUND, - ACTIONS(1744), 1, + ACTIONS(1770), 1, anon_sym_fn, - ACTIONS(1746), 1, + ACTIONS(1772), 1, sym__discard_name, - ACTIONS(1748), 1, + ACTIONS(1774), 1, sym__name, - ACTIONS(1750), 1, + ACTIONS(1776), 1, sym__upname, - ACTIONS(1752), 1, + ACTIONS(1778), 1, anon_sym_RPAREN, - STATE(1132), 1, + STATE(994), 1, sym_data_constructor_argument, - STATE(1189), 1, + STATE(1206), 1, sym_identifier, - STATE(1238), 1, + STATE(1255), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(678), 2, + STATE(686), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1139), 6, + STATE(1158), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [44051] = 4, + [44271] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(565), 5, + ACTIONS(599), 5, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_PIPE, - ACTIONS(563), 12, + ACTIONS(597), 12, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -41494,29 +41738,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [44080] = 11, + [44300] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1754), 1, - anon_sym_RBRACE, - ACTIONS(1756), 1, + ACTIONS(1752), 1, anon_sym_import, - ACTIONS(1759), 1, + ACTIONS(1754), 1, anon_sym_const, - ACTIONS(1762), 1, + ACTIONS(1756), 1, + anon_sym_fn, + ACTIONS(1758), 1, anon_sym_external, - ACTIONS(1765), 1, + ACTIONS(1760), 1, anon_sym_type, - ACTIONS(1768), 1, - anon_sym_fn, - ACTIONS(1771), 1, + ACTIONS(1762), 1, sym_visibility_modifier, - ACTIONS(1774), 1, + ACTIONS(1764), 1, sym_opacity_modifier, + ACTIONS(1780), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(639), 9, + STATE(638), 9, sym__statement, sym_import, sym_constant, @@ -41526,29 +41770,63 @@ static const uint16_t ts_small_parse_table[] = { sym_type_definition, sym_type_alias, aux_sym_target_group_repeat1, - [44123] = 11, + [44343] = 13, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1766), 1, + anon_sym_POUND, + ACTIONS(1770), 1, + anon_sym_fn, + ACTIONS(1772), 1, + sym__discard_name, + ACTIONS(1774), 1, + sym__name, + ACTIONS(1776), 1, + sym__upname, + ACTIONS(1782), 1, + anon_sym_RPAREN, + STATE(1144), 1, + sym_data_constructor_argument, + STATE(1206), 1, + sym_identifier, + STATE(1255), 1, + sym_label, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(686), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1158), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [44390] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1777), 1, + ACTIONS(1784), 1, anon_sym_RBRACE, - ACTIONS(1779), 1, + ACTIONS(1786), 1, anon_sym_import, - ACTIONS(1781), 1, + ACTIONS(1789), 1, anon_sym_const, - ACTIONS(1783), 1, + ACTIONS(1792), 1, + anon_sym_fn, + ACTIONS(1795), 1, anon_sym_external, - ACTIONS(1785), 1, + ACTIONS(1798), 1, anon_sym_type, - ACTIONS(1787), 1, - anon_sym_fn, - ACTIONS(1789), 1, + ACTIONS(1801), 1, sym_visibility_modifier, - ACTIONS(1791), 1, + ACTIONS(1804), 1, sym_opacity_modifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(639), 9, + STATE(645), 9, sym__statement, sym_import, sym_constant, @@ -41558,1039 +41836,1555 @@ static const uint16_t ts_small_parse_table[] = { sym_type_definition, sym_type_alias, aux_sym_target_group_repeat1, - [44166] = 13, + [44433] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1740), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(453), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PIPE, + ACTIONS(451), 12, + anon_sym_if, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [44462] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(363), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PIPE, + ACTIONS(361), 12, + anon_sym_if, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [44491] = 12, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1766), 1, anon_sym_POUND, - ACTIONS(1744), 1, + ACTIONS(1770), 1, anon_sym_fn, - ACTIONS(1746), 1, + ACTIONS(1772), 1, sym__discard_name, - ACTIONS(1748), 1, + ACTIONS(1776), 1, + sym__upname, + ACTIONS(1807), 1, + anon_sym_RPAREN, + ACTIONS(1809), 1, sym__name, - ACTIONS(1750), 1, + STATE(1041), 1, + sym_type_argument, + STATE(1206), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(686), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1088), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [44535] = 12, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1766), 1, + anon_sym_POUND, + ACTIONS(1770), 1, + anon_sym_fn, + ACTIONS(1772), 1, + sym__discard_name, + ACTIONS(1776), 1, + sym__upname, + ACTIONS(1809), 1, + sym__name, + ACTIONS(1811), 1, + anon_sym_RPAREN, + STATE(933), 1, + sym_external_function_parameter, + STATE(1139), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(686), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1130), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [44579] = 12, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1766), 1, + anon_sym_POUND, + ACTIONS(1770), 1, + anon_sym_fn, + ACTIONS(1772), 1, + sym__discard_name, + ACTIONS(1776), 1, + sym__upname, + ACTIONS(1809), 1, + sym__name, + ACTIONS(1813), 1, + anon_sym_RPAREN, + STATE(1084), 1, + sym_external_function_parameter, + STATE(1139), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(686), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1130), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [44623] = 12, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1766), 1, + anon_sym_POUND, + ACTIONS(1770), 1, + anon_sym_fn, + ACTIONS(1772), 1, + sym__discard_name, + ACTIONS(1776), 1, + sym__upname, + ACTIONS(1809), 1, + sym__name, + ACTIONS(1815), 1, + anon_sym_RPAREN, + STATE(1136), 1, + sym_type_argument, + STATE(1206), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(686), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1088), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [44667] = 12, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1766), 1, + anon_sym_POUND, + ACTIONS(1770), 1, + anon_sym_fn, + ACTIONS(1772), 1, + sym__discard_name, + ACTIONS(1776), 1, + sym__upname, + ACTIONS(1809), 1, + sym__name, + ACTIONS(1817), 1, + anon_sym_RPAREN, + STATE(1136), 1, + sym_type_argument, + STATE(1206), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(686), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1088), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [44711] = 12, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1766), 1, + anon_sym_POUND, + ACTIONS(1770), 1, + anon_sym_fn, + ACTIONS(1772), 1, + sym__discard_name, + ACTIONS(1776), 1, + sym__upname, + ACTIONS(1809), 1, + sym__name, + ACTIONS(1819), 1, + anon_sym_RPAREN, + STATE(1136), 1, + sym_type_argument, + STATE(1206), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(686), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1088), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [44755] = 12, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1766), 1, + anon_sym_POUND, + ACTIONS(1770), 1, + anon_sym_fn, + ACTIONS(1772), 1, + sym__discard_name, + ACTIONS(1774), 1, + sym__name, + ACTIONS(1776), 1, + sym__upname, + STATE(1144), 1, + sym_data_constructor_argument, + STATE(1206), 1, + sym_identifier, + STATE(1255), 1, + sym_label, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(686), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1158), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [44799] = 12, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1766), 1, + anon_sym_POUND, + ACTIONS(1770), 1, + anon_sym_fn, + ACTIONS(1772), 1, + sym__discard_name, + ACTIONS(1776), 1, + sym__upname, + ACTIONS(1809), 1, + sym__name, + ACTIONS(1821), 1, + anon_sym_RPAREN, + STATE(1136), 1, + sym_type_argument, + STATE(1206), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(686), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1088), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [44843] = 12, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1766), 1, + anon_sym_POUND, + ACTIONS(1770), 1, + anon_sym_fn, + ACTIONS(1772), 1, + sym__discard_name, + ACTIONS(1776), 1, + sym__upname, + ACTIONS(1809), 1, + sym__name, + ACTIONS(1823), 1, + anon_sym_RPAREN, + STATE(978), 1, + sym_type_argument, + STATE(1206), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(686), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1088), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [44887] = 12, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1766), 1, + anon_sym_POUND, + ACTIONS(1770), 1, + anon_sym_fn, + ACTIONS(1772), 1, + sym__discard_name, + ACTIONS(1776), 1, sym__upname, - ACTIONS(1793), 1, + ACTIONS(1809), 1, + sym__name, + ACTIONS(1825), 1, anon_sym_RPAREN, - STATE(1132), 1, - sym_data_constructor_argument, - STATE(1189), 1, + STATE(1084), 1, + sym_external_function_parameter, + STATE(1139), 1, sym_identifier, - STATE(1238), 1, - sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(678), 2, + STATE(686), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1139), 6, + STATE(1130), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [44213] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(363), 5, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PIPE, - ACTIONS(361), 12, - anon_sym_if, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [44242] = 11, + [44931] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1779), 1, - anon_sym_import, - ACTIONS(1781), 1, - anon_sym_const, - ACTIONS(1783), 1, - anon_sym_external, - ACTIONS(1785), 1, - anon_sym_type, - ACTIONS(1787), 1, + ACTIONS(1766), 1, + anon_sym_POUND, + ACTIONS(1770), 1, anon_sym_fn, - ACTIONS(1789), 1, - sym_visibility_modifier, - ACTIONS(1791), 1, - sym_opacity_modifier, - ACTIONS(1795), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(640), 9, - sym__statement, - sym_import, - sym_constant, - sym_external_type, - sym_external_function, - sym_function, - sym_type_definition, - sym_type_alias, - aux_sym_target_group_repeat1, - [44285] = 4, - ACTIONS(3), 1, - sym_module_comment, + ACTIONS(1772), 1, + sym__discard_name, + ACTIONS(1776), 1, + sym__upname, + ACTIONS(1809), 1, + sym__name, + ACTIONS(1827), 1, + anon_sym_RPAREN, + STATE(1206), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(279), 5, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PIPE, - ACTIONS(277), 12, - anon_sym_if, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [44314] = 12, + STATE(686), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1126), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [44972] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1740), 1, + ACTIONS(1766), 1, anon_sym_POUND, - ACTIONS(1744), 1, + ACTIONS(1770), 1, anon_sym_fn, - ACTIONS(1746), 1, + ACTIONS(1772), 1, sym__discard_name, - ACTIONS(1750), 1, + ACTIONS(1776), 1, sym__upname, - ACTIONS(1797), 1, - anon_sym_RPAREN, - ACTIONS(1799), 1, + ACTIONS(1809), 1, sym__name, - STATE(1142), 1, - sym_type_argument, - STATE(1189), 1, + STATE(1084), 1, + sym_external_function_parameter, + STATE(1139), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(678), 2, + STATE(686), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1129), 6, + STATE(1130), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [44358] = 12, + [45013] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1740), 1, + ACTIONS(1766), 1, anon_sym_POUND, - ACTIONS(1744), 1, + ACTIONS(1770), 1, anon_sym_fn, - ACTIONS(1746), 1, + ACTIONS(1772), 1, sym__discard_name, - ACTIONS(1750), 1, + ACTIONS(1776), 1, sym__upname, - ACTIONS(1799), 1, + ACTIONS(1809), 1, sym__name, - ACTIONS(1801), 1, - anon_sym_RPAREN, - STATE(990), 1, + STATE(1136), 1, sym_type_argument, - STATE(1189), 1, + STATE(1206), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(678), 2, + STATE(686), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1129), 6, + STATE(1088), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [44402] = 12, + [45054] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1740), 1, + ACTIONS(1766), 1, anon_sym_POUND, - ACTIONS(1744), 1, + ACTIONS(1770), 1, anon_sym_fn, - ACTIONS(1746), 1, + ACTIONS(1772), 1, sym__discard_name, - ACTIONS(1750), 1, + ACTIONS(1776), 1, sym__upname, - ACTIONS(1799), 1, + ACTIONS(1809), 1, sym__name, - ACTIONS(1803), 1, + ACTIONS(1829), 1, anon_sym_RPAREN, - STATE(1142), 1, - sym_type_argument, - STATE(1189), 1, + STATE(1206), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(678), 2, + STATE(686), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1129), 6, + STATE(1126), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [44446] = 12, + [45095] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1740), 1, + ACTIONS(1766), 1, anon_sym_POUND, - ACTIONS(1744), 1, + ACTIONS(1770), 1, anon_sym_fn, - ACTIONS(1746), 1, + ACTIONS(1772), 1, sym__discard_name, - ACTIONS(1750), 1, + ACTIONS(1776), 1, sym__upname, - ACTIONS(1799), 1, + ACTIONS(1809), 1, sym__name, - ACTIONS(1805), 1, + ACTIONS(1831), 1, anon_sym_RPAREN, - STATE(1142), 1, - sym_type_argument, - STATE(1189), 1, + STATE(1206), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(678), 2, + STATE(686), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1129), 6, + STATE(1126), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [44490] = 12, + [45136] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1740), 1, + ACTIONS(1766), 1, anon_sym_POUND, - ACTIONS(1744), 1, + ACTIONS(1770), 1, anon_sym_fn, - ACTIONS(1746), 1, + ACTIONS(1772), 1, sym__discard_name, - ACTIONS(1750), 1, + ACTIONS(1776), 1, sym__upname, - ACTIONS(1799), 1, + ACTIONS(1809), 1, sym__name, - ACTIONS(1807), 1, + ACTIONS(1833), 1, anon_sym_RPAREN, - STATE(925), 1, - sym_external_function_parameter, - STATE(1105), 1, + STATE(1206), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(678), 2, + STATE(686), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1100), 6, + STATE(1126), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [44534] = 12, + [45177] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1740), 1, + ACTIONS(1766), 1, anon_sym_POUND, - ACTIONS(1744), 1, + ACTIONS(1770), 1, anon_sym_fn, - ACTIONS(1746), 1, + ACTIONS(1772), 1, sym__discard_name, - ACTIONS(1750), 1, + ACTIONS(1776), 1, sym__upname, - ACTIONS(1799), 1, - sym__name, ACTIONS(1809), 1, + sym__name, + ACTIONS(1835), 1, anon_sym_RPAREN, - STATE(1022), 1, - sym_type_argument, - STATE(1189), 1, + STATE(1206), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(678), 2, + STATE(686), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1129), 6, + STATE(1044), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [44578] = 12, + [45218] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1740), 1, + ACTIONS(1766), 1, anon_sym_POUND, - ACTIONS(1744), 1, + ACTIONS(1770), 1, anon_sym_fn, - ACTIONS(1746), 1, + ACTIONS(1772), 1, sym__discard_name, - ACTIONS(1750), 1, + ACTIONS(1776), 1, sym__upname, - ACTIONS(1799), 1, + ACTIONS(1809), 1, sym__name, - ACTIONS(1811), 1, + ACTIONS(1837), 1, anon_sym_RPAREN, - STATE(1142), 1, - sym_type_argument, - STATE(1189), 1, + STATE(1206), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(678), 2, + STATE(686), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1129), 6, + STATE(1126), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [44622] = 12, + [45259] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1740), 1, + ACTIONS(1766), 1, anon_sym_POUND, - ACTIONS(1744), 1, + ACTIONS(1770), 1, anon_sym_fn, - ACTIONS(1746), 1, + ACTIONS(1772), 1, sym__discard_name, - ACTIONS(1750), 1, + ACTIONS(1776), 1, sym__upname, - ACTIONS(1799), 1, + ACTIONS(1809), 1, sym__name, - ACTIONS(1813), 1, + ACTIONS(1839), 1, anon_sym_RPAREN, - STATE(1094), 1, - sym_external_function_parameter, - STATE(1105), 1, + STATE(1206), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(678), 2, + STATE(686), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1100), 6, + STATE(1126), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [44666] = 12, + [45300] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1740), 1, + ACTIONS(513), 1, + sym__name, + ACTIONS(1772), 1, + sym__discard_name, + ACTIONS(1776), 1, + sym__upname, + ACTIONS(1841), 1, anon_sym_POUND, - ACTIONS(1744), 1, + ACTIONS(1843), 1, + anon_sym_RPAREN, + ACTIONS(1845), 1, anon_sym_fn, - ACTIONS(1746), 1, + STATE(1122), 1, + sym_constant_type_argument, + STATE(1206), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(870), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1199), 5, + sym__constant_type, + sym_constant_tuple_type, + sym_constant_function_type, + sym_constant_type, + sym_type_hole, + [45343] = 12, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(513), 1, + sym__name, + ACTIONS(1772), 1, sym__discard_name, - ACTIONS(1750), 1, + ACTIONS(1776), 1, sym__upname, - ACTIONS(1799), 1, + ACTIONS(1841), 1, + anon_sym_POUND, + ACTIONS(1845), 1, + anon_sym_fn, + ACTIONS(1847), 1, + anon_sym_RPAREN, + STATE(1122), 1, + sym_constant_type_argument, + STATE(1206), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(870), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1199), 5, + sym__constant_type, + sym_constant_tuple_type, + sym_constant_function_type, + sym_constant_type, + sym_type_hole, + [45386] = 12, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(513), 1, sym__name, - ACTIONS(1815), 1, + ACTIONS(1772), 1, + sym__discard_name, + ACTIONS(1776), 1, + sym__upname, + ACTIONS(1841), 1, + anon_sym_POUND, + ACTIONS(1845), 1, + anon_sym_fn, + ACTIONS(1849), 1, anon_sym_RPAREN, - STATE(1094), 1, - sym_external_function_parameter, - STATE(1105), 1, + STATE(968), 1, + sym_constant_type_argument, + STATE(1206), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(678), 2, + STATE(870), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1100), 6, - sym__type, + STATE(1199), 5, + sym__constant_type, + sym_constant_tuple_type, + sym_constant_function_type, + sym_constant_type, sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [44710] = 12, + [45429] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1740), 1, + ACTIONS(1766), 1, anon_sym_POUND, - ACTIONS(1744), 1, + ACTIONS(1770), 1, anon_sym_fn, - ACTIONS(1746), 1, + ACTIONS(1772), 1, sym__discard_name, - ACTIONS(1748), 1, - sym__name, - ACTIONS(1750), 1, + ACTIONS(1776), 1, sym__upname, - STATE(1132), 1, - sym_data_constructor_argument, - STATE(1189), 1, + ACTIONS(1809), 1, + sym__name, + ACTIONS(1851), 1, + anon_sym_RPAREN, + STATE(1206), 1, sym_identifier, - STATE(1238), 1, - sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(678), 2, + STATE(686), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1139), 6, + STATE(976), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [44754] = 11, + [45470] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1740), 1, + ACTIONS(1766), 1, anon_sym_POUND, - ACTIONS(1744), 1, + ACTIONS(1770), 1, anon_sym_fn, - ACTIONS(1746), 1, + ACTIONS(1772), 1, sym__discard_name, - ACTIONS(1750), 1, + ACTIONS(1776), 1, sym__upname, - ACTIONS(1799), 1, + ACTIONS(1809), 1, sym__name, - ACTIONS(1817), 1, + ACTIONS(1853), 1, anon_sym_RPAREN, - STATE(1189), 1, + STATE(1206), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(678), 2, + STATE(686), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1134), 6, + STATE(974), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [44795] = 11, + [45511] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1740), 1, + ACTIONS(1766), 1, anon_sym_POUND, - ACTIONS(1744), 1, + ACTIONS(1770), 1, anon_sym_fn, - ACTIONS(1746), 1, + ACTIONS(1772), 1, sym__discard_name, - ACTIONS(1750), 1, + ACTIONS(1776), 1, sym__upname, - ACTIONS(1799), 1, + ACTIONS(1809), 1, sym__name, - ACTIONS(1819), 1, - anon_sym_RPAREN, - STATE(1189), 1, + STATE(1206), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(678), 2, + STATE(686), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1134), 6, + STATE(744), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [44836] = 11, + [45549] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1740), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1857), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1855), 10, + anon_sym_RBRACE, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [45575] = 10, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1766), 1, anon_sym_POUND, - ACTIONS(1744), 1, + ACTIONS(1770), 1, anon_sym_fn, - ACTIONS(1746), 1, + ACTIONS(1772), 1, sym__discard_name, - ACTIONS(1750), 1, + ACTIONS(1776), 1, sym__upname, - ACTIONS(1799), 1, + ACTIONS(1809), 1, sym__name, - ACTIONS(1821), 1, - anon_sym_RPAREN, - STATE(1189), 1, + STATE(1206), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(678), 2, + STATE(686), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(989), 6, + STATE(801), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [44877] = 11, + [45613] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1740), 1, + ACTIONS(513), 1, + sym__name, + ACTIONS(1772), 1, + sym__discard_name, + ACTIONS(1776), 1, + sym__upname, + ACTIONS(1841), 1, anon_sym_POUND, - ACTIONS(1744), 1, + ACTIONS(1845), 1, anon_sym_fn, - ACTIONS(1746), 1, + ACTIONS(1859), 1, + anon_sym_RPAREN, + STATE(1206), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(870), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(957), 5, + sym__constant_type, + sym_constant_tuple_type, + sym_constant_function_type, + sym_constant_type, + sym_type_hole, + [45653] = 10, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1766), 1, + anon_sym_POUND, + ACTIONS(1770), 1, + anon_sym_fn, + ACTIONS(1772), 1, sym__discard_name, - ACTIONS(1750), 1, + ACTIONS(1776), 1, sym__upname, - ACTIONS(1799), 1, + ACTIONS(1809), 1, sym__name, - ACTIONS(1823), 1, - anon_sym_RPAREN, - STATE(1189), 1, + STATE(1206), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(678), 2, + STATE(686), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(985), 6, + STATE(818), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [44918] = 11, + [45691] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1740), 1, + ACTIONS(1766), 1, anon_sym_POUND, - ACTIONS(1744), 1, + ACTIONS(1770), 1, anon_sym_fn, - ACTIONS(1746), 1, + ACTIONS(1772), 1, sym__discard_name, - ACTIONS(1750), 1, + ACTIONS(1776), 1, sym__upname, - ACTIONS(1799), 1, + ACTIONS(1809), 1, sym__name, - ACTIONS(1825), 1, - anon_sym_RPAREN, - STATE(1189), 1, + STATE(1206), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(678), 2, + STATE(686), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1134), 6, + STATE(966), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [44959] = 11, + [45729] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1740), 1, + ACTIONS(1766), 1, anon_sym_POUND, - ACTIONS(1744), 1, + ACTIONS(1770), 1, anon_sym_fn, - ACTIONS(1746), 1, + ACTIONS(1772), 1, sym__discard_name, - ACTIONS(1750), 1, + ACTIONS(1776), 1, sym__upname, - ACTIONS(1799), 1, + ACTIONS(1809), 1, sym__name, - STATE(1142), 1, - sym_type_argument, - STATE(1189), 1, + STATE(1206), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(678), 2, + STATE(686), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1129), 6, + STATE(1297), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [45000] = 11, + [45767] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1740), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1863), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1861), 10, + anon_sym_RBRACE, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [45793] = 10, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1766), 1, anon_sym_POUND, - ACTIONS(1744), 1, + ACTIONS(1770), 1, anon_sym_fn, - ACTIONS(1746), 1, + ACTIONS(1772), 1, sym__discard_name, - ACTIONS(1750), 1, + ACTIONS(1776), 1, sym__upname, - ACTIONS(1799), 1, + ACTIONS(1809), 1, sym__name, - STATE(1094), 1, - sym_external_function_parameter, - STATE(1105), 1, + STATE(1206), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(678), 2, + STATE(686), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1100), 6, + STATE(1235), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [45041] = 11, + [45831] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1740), 1, + ACTIONS(1766), 1, anon_sym_POUND, - ACTIONS(1744), 1, + ACTIONS(1770), 1, anon_sym_fn, - ACTIONS(1746), 1, + ACTIONS(1772), 1, sym__discard_name, - ACTIONS(1750), 1, + ACTIONS(1776), 1, sym__upname, - ACTIONS(1799), 1, + ACTIONS(1809), 1, sym__name, - ACTIONS(1827), 1, - anon_sym_RPAREN, - STATE(1189), 1, + STATE(1206), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(678), 2, + STATE(686), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1134), 6, + STATE(1237), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [45082] = 11, + [45869] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1740), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1260), 14, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_as, + anon_sym_COMMA, + anon_sym_const, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_fn, + anon_sym_external, + anon_sym_type, + sym_visibility_modifier, + sym_opacity_modifier, + [45893] = 10, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1766), 1, anon_sym_POUND, - ACTIONS(1744), 1, + ACTIONS(1770), 1, anon_sym_fn, - ACTIONS(1746), 1, + ACTIONS(1772), 1, sym__discard_name, - ACTIONS(1750), 1, + ACTIONS(1776), 1, sym__upname, - ACTIONS(1799), 1, + ACTIONS(1809), 1, sym__name, - ACTIONS(1829), 1, - anon_sym_RPAREN, - STATE(1189), 1, + STATE(1206), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(678), 2, + STATE(686), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1023), 6, + STATE(1150), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [45123] = 11, + [45931] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1740), 1, + ACTIONS(1868), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1870), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1865), 9, + anon_sym_RBRACE, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [45959] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1875), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1873), 10, + anon_sym_RBRACE, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [45985] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1877), 1, + anon_sym_LPAREN, + STATE(740), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1111), 12, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_COMMA, + anon_sym_const, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_fn, + anon_sym_external, + anon_sym_type, + sym_visibility_modifier, + sym_opacity_modifier, + [46013] = 10, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1766), 1, anon_sym_POUND, - ACTIONS(1744), 1, + ACTIONS(1770), 1, anon_sym_fn, - ACTIONS(1746), 1, + ACTIONS(1772), 1, sym__discard_name, - ACTIONS(1750), 1, + ACTIONS(1776), 1, sym__upname, - ACTIONS(1799), 1, + ACTIONS(1809), 1, sym__name, - ACTIONS(1831), 1, - anon_sym_RPAREN, - STATE(1189), 1, + STATE(1206), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(678), 2, + STATE(686), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1134), 6, + STATE(1301), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [45164] = 11, + [46051] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1740), 1, + ACTIONS(1766), 1, anon_sym_POUND, - ACTIONS(1744), 1, + ACTIONS(1770), 1, anon_sym_fn, - ACTIONS(1746), 1, + ACTIONS(1772), 1, sym__discard_name, - ACTIONS(1750), 1, + ACTIONS(1776), 1, sym__upname, - ACTIONS(1799), 1, + ACTIONS(1809), 1, sym__name, - ACTIONS(1833), 1, - anon_sym_RPAREN, - STATE(1189), 1, + STATE(1206), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(678), 2, + STATE(686), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1134), 6, + STATE(1250), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [45205] = 10, + [46089] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1740), 1, + ACTIONS(1766), 1, anon_sym_POUND, - ACTIONS(1744), 1, + ACTIONS(1770), 1, anon_sym_fn, - ACTIONS(1746), 1, + ACTIONS(1772), 1, sym__discard_name, - ACTIONS(1750), 1, + ACTIONS(1776), 1, sym__upname, - ACTIONS(1799), 1, + ACTIONS(1809), 1, sym__name, - STATE(1189), 1, + STATE(1206), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(678), 2, + STATE(686), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1235), 6, + STATE(1082), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [45243] = 10, + [46127] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1740), 1, - anon_sym_POUND, - ACTIONS(1744), 1, - anon_sym_fn, - ACTIONS(1746), 1, + ACTIONS(1879), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1870), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1865), 9, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [46155] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1883), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1881), 10, + anon_sym_RBRACE, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [46181] = 11, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(513), 1, + sym__name, + ACTIONS(1772), 1, sym__discard_name, - ACTIONS(1750), 1, + ACTIONS(1776), 1, sym__upname, - ACTIONS(1799), 1, - sym__name, - STATE(1189), 1, + ACTIONS(1841), 1, + anon_sym_POUND, + ACTIONS(1845), 1, + anon_sym_fn, + STATE(1122), 1, + sym_constant_type_argument, + STATE(1206), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(678), 2, + STATE(870), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1226), 6, - sym__type, + STATE(1199), 5, + sym__constant_type, + sym_constant_tuple_type, + sym_constant_function_type, + sym_constant_type, sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [45281] = 10, + [46221] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1835), 1, - anon_sym_POUND, - ACTIONS(1837), 1, - anon_sym_fn, - ACTIONS(1839), 1, - sym__discard_name, - ACTIONS(1841), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(1843), 1, + ACTIONS(1772), 1, + sym__discard_name, + ACTIONS(1776), 1, sym__upname, - STATE(1191), 1, + ACTIONS(1841), 1, + anon_sym_POUND, + ACTIONS(1845), 1, + anon_sym_fn, + ACTIONS(1885), 1, + anon_sym_RPAREN, + STATE(1206), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(387), 2, + STATE(870), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(463), 6, - sym__type, + STATE(1115), 5, + sym__constant_type, + sym_constant_tuple_type, + sym_constant_function_type, + sym_constant_type, sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [45319] = 10, + [46261] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1740), 1, + ACTIONS(1766), 1, anon_sym_POUND, - ACTIONS(1744), 1, + ACTIONS(1770), 1, anon_sym_fn, - ACTIONS(1746), 1, + ACTIONS(1772), 1, sym__discard_name, - ACTIONS(1750), 1, + ACTIONS(1776), 1, sym__upname, - ACTIONS(1799), 1, + ACTIONS(1809), 1, sym__name, - STATE(1189), 1, + STATE(1206), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(678), 2, + STATE(686), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(715), 6, + STATE(1126), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [45357] = 10, + [46299] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1740), 1, + ACTIONS(1766), 1, anon_sym_POUND, - ACTIONS(1744), 1, + ACTIONS(1770), 1, anon_sym_fn, - ACTIONS(1746), 1, + ACTIONS(1772), 1, sym__discard_name, - ACTIONS(1750), 1, + ACTIONS(1776), 1, sym__upname, - ACTIONS(1799), 1, + ACTIONS(1809), 1, sym__name, - STATE(1189), 1, + STATE(1206), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(678), 2, + STATE(686), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1198), 6, + STATE(737), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [45395] = 10, + [46337] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1740), 1, - anon_sym_POUND, - ACTIONS(1744), 1, - anon_sym_fn, - ACTIONS(1746), 1, + ACTIONS(513), 1, + sym__name, + ACTIONS(1772), 1, sym__discard_name, - ACTIONS(1750), 1, + ACTIONS(1776), 1, sym__upname, - ACTIONS(1799), 1, - sym__name, - STATE(1189), 1, + ACTIONS(1841), 1, + anon_sym_POUND, + ACTIONS(1845), 1, + anon_sym_fn, + ACTIONS(1887), 1, + anon_sym_RPAREN, + STATE(1206), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(678), 2, + STATE(870), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1017), 6, - sym__type, + STATE(1115), 5, + sym__constant_type, + sym_constant_tuple_type, + sym_constant_function_type, + sym_constant_type, sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [45433] = 10, + [46377] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1740), 1, + ACTIONS(1766), 1, anon_sym_POUND, - ACTIONS(1744), 1, + ACTIONS(1770), 1, anon_sym_fn, - ACTIONS(1746), 1, + ACTIONS(1772), 1, sym__discard_name, - ACTIONS(1750), 1, + ACTIONS(1776), 1, sym__upname, - ACTIONS(1799), 1, + ACTIONS(1809), 1, sym__name, - STATE(1189), 1, + STATE(1206), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(678), 2, + STATE(686), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1061), 6, + STATE(1307), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [45471] = 10, + [46415] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1740), 1, + ACTIONS(1766), 1, anon_sym_POUND, - ACTIONS(1744), 1, + ACTIONS(1770), 1, anon_sym_fn, - ACTIONS(1746), 1, + ACTIONS(1772), 1, sym__discard_name, - ACTIONS(1750), 1, + ACTIONS(1776), 1, sym__upname, - ACTIONS(1799), 1, + ACTIONS(1809), 1, sym__name, - STATE(1189), 1, + STATE(1206), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(678), 2, + STATE(686), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(800), 6, + STATE(1254), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [45509] = 10, + [46453] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1740), 1, + ACTIONS(1766), 1, anon_sym_POUND, - ACTIONS(1744), 1, + ACTIONS(1770), 1, anon_sym_fn, - ACTIONS(1746), 1, + ACTIONS(1772), 1, sym__discard_name, - ACTIONS(1750), 1, + ACTIONS(1776), 1, sym__upname, - ACTIONS(1799), 1, + ACTIONS(1809), 1, sym__name, - STATE(1189), 1, + STATE(1206), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(678), 2, + STATE(686), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1133), 6, + STATE(1256), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [45547] = 5, + [46491] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1847), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1849), 4, + ACTIONS(1891), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1845), 9, + ACTIONS(1889), 10, anon_sym_RBRACE, + anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -42599,173 +43393,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [45575] = 10, + [46517] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1740), 1, + ACTIONS(1893), 1, anon_sym_POUND, - ACTIONS(1744), 1, + ACTIONS(1895), 1, anon_sym_fn, - ACTIONS(1746), 1, + ACTIONS(1897), 1, sym__discard_name, - ACTIONS(1750), 1, - sym__upname, - ACTIONS(1799), 1, + ACTIONS(1899), 1, sym__name, - STATE(1189), 1, + ACTIONS(1901), 1, + sym__upname, + STATE(1294), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(678), 2, + STATE(384), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1267), 6, + STATE(464), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [45613] = 10, + [46555] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1740), 1, + ACTIONS(1766), 1, anon_sym_POUND, - ACTIONS(1744), 1, + ACTIONS(1770), 1, anon_sym_fn, - ACTIONS(1746), 1, + ACTIONS(1772), 1, sym__discard_name, - ACTIONS(1750), 1, + ACTIONS(1776), 1, sym__upname, - ACTIONS(1799), 1, + ACTIONS(1809), 1, sym__name, - STATE(1189), 1, + STATE(1206), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(678), 2, + STATE(686), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1236), 6, + STATE(820), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [45651] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1851), 1, - anon_sym_LPAREN, - STATE(731), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1113), 12, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_COMMA, - anon_sym_const, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - sym_visibility_modifier, - sym_opacity_modifier, - [45679] = 10, + [46593] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1740), 1, + ACTIONS(1766), 1, anon_sym_POUND, - ACTIONS(1744), 1, + ACTIONS(1770), 1, anon_sym_fn, - ACTIONS(1746), 1, + ACTIONS(1772), 1, sym__discard_name, - ACTIONS(1750), 1, + ACTIONS(1776), 1, sym__upname, - ACTIONS(1799), 1, + ACTIONS(1809), 1, sym__name, - STATE(1189), 1, + STATE(1206), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(678), 2, + STATE(686), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1280), 6, + STATE(1290), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [45717] = 10, + [46631] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1740), 1, + ACTIONS(513), 1, + sym__name, + ACTIONS(1772), 1, + sym__discard_name, + ACTIONS(1776), 1, + sym__upname, + ACTIONS(1841), 1, anon_sym_POUND, - ACTIONS(1744), 1, + ACTIONS(1845), 1, anon_sym_fn, - ACTIONS(1746), 1, + ACTIONS(1903), 1, + anon_sym_RPAREN, + STATE(1206), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(870), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(959), 5, + sym__constant_type, + sym_constant_tuple_type, + sym_constant_function_type, + sym_constant_type, + sym_type_hole, + [46671] = 10, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1893), 1, + anon_sym_POUND, + ACTIONS(1895), 1, + anon_sym_fn, + ACTIONS(1897), 1, sym__discard_name, - ACTIONS(1750), 1, - sym__upname, - ACTIONS(1799), 1, + ACTIONS(1899), 1, sym__name, - STATE(1189), 1, + ACTIONS(1901), 1, + sym__upname, + STATE(1294), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(678), 2, + STATE(384), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1134), 6, + STATE(480), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [45755] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1855), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1853), 10, - anon_sym_RBRACE, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [45781] = 4, + [46709] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(337), 2, + ACTIONS(321), 2, anon_sym_DOT, anon_sym_COLON, - ACTIONS(1248), 12, + ACTIONS(1250), 12, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -42773,847 +43551,643 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_EQ, anon_sym_RPAREN, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [45807] = 10, + [46735] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1740), 1, + ACTIONS(1766), 1, anon_sym_POUND, - ACTIONS(1744), 1, + ACTIONS(1770), 1, anon_sym_fn, - ACTIONS(1746), 1, + ACTIONS(1772), 1, sym__discard_name, - ACTIONS(1750), 1, + ACTIONS(1776), 1, sym__upname, - ACTIONS(1799), 1, + ACTIONS(1809), 1, sym__name, - STATE(1189), 1, + STATE(1206), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(678), 2, + STATE(686), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1268), 6, + STATE(1288), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [45845] = 10, + [46773] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1740), 1, + ACTIONS(1766), 1, anon_sym_POUND, - ACTIONS(1744), 1, + ACTIONS(1770), 1, anon_sym_fn, - ACTIONS(1746), 1, + ACTIONS(1772), 1, sym__discard_name, - ACTIONS(1750), 1, + ACTIONS(1776), 1, sym__upname, - ACTIONS(1799), 1, + ACTIONS(1809), 1, sym__name, - STATE(1189), 1, + STATE(1206), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(678), 2, + STATE(686), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(810), 6, + STATE(1205), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [45883] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1857), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1849), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1845), 9, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [45911] = 10, + [46811] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1835), 1, - anon_sym_POUND, - ACTIONS(1837), 1, - anon_sym_fn, - ACTIONS(1839), 1, - sym__discard_name, - ACTIONS(1841), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(1843), 1, + ACTIONS(1772), 1, + sym__discard_name, + ACTIONS(1776), 1, sym__upname, - STATE(1191), 1, + ACTIONS(1841), 1, + anon_sym_POUND, + ACTIONS(1845), 1, + anon_sym_fn, + ACTIONS(1905), 1, + anon_sym_RPAREN, + STATE(1206), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(387), 2, + STATE(870), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(491), 6, - sym__type, + STATE(1115), 5, + sym__constant_type, + sym_constant_tuple_type, + sym_constant_function_type, + sym_constant_type, sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [45949] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1861), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1859), 10, - anon_sym_RBRACE, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [45975] = 10, + [46851] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1740), 1, + ACTIONS(1893), 1, anon_sym_POUND, - ACTIONS(1744), 1, + ACTIONS(1895), 1, anon_sym_fn, - ACTIONS(1746), 1, + ACTIONS(1897), 1, sym__discard_name, - ACTIONS(1750), 1, - sym__upname, - ACTIONS(1799), 1, + ACTIONS(1899), 1, sym__name, - STATE(1189), 1, + ACTIONS(1901), 1, + sym__upname, + STATE(1294), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(678), 2, + STATE(384), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(786), 6, + STATE(459), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [46013] = 10, + [46889] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1740), 1, + ACTIONS(1893), 1, anon_sym_POUND, - ACTIONS(1744), 1, + ACTIONS(1895), 1, anon_sym_fn, - ACTIONS(1746), 1, + ACTIONS(1897), 1, sym__discard_name, - ACTIONS(1750), 1, - sym__upname, - ACTIONS(1799), 1, + ACTIONS(1899), 1, sym__name, - STATE(1189), 1, + ACTIONS(1901), 1, + sym__upname, + STATE(1294), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(678), 2, + STATE(384), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1233), 6, + STATE(484), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [46051] = 10, + [46927] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1740), 1, + ACTIONS(1766), 1, anon_sym_POUND, - ACTIONS(1744), 1, + ACTIONS(1770), 1, anon_sym_fn, - ACTIONS(1746), 1, + ACTIONS(1772), 1, sym__discard_name, - ACTIONS(1750), 1, + ACTIONS(1776), 1, sym__upname, - ACTIONS(1799), 1, + ACTIONS(1809), 1, sym__name, - STATE(1189), 1, + STATE(1206), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(678), 2, + STATE(686), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1229), 6, + STATE(1257), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [46089] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1865), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1863), 10, - anon_sym_RBRACE, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [46115] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1869), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1867), 10, - anon_sym_RBRACE, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [46141] = 10, + [46965] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1740), 1, + ACTIONS(1893), 1, anon_sym_POUND, - ACTIONS(1744), 1, + ACTIONS(1895), 1, anon_sym_fn, - ACTIONS(1746), 1, + ACTIONS(1897), 1, sym__discard_name, - ACTIONS(1750), 1, - sym__upname, - ACTIONS(1799), 1, + ACTIONS(1899), 1, sym__name, - STATE(1189), 1, + ACTIONS(1901), 1, + sym__upname, + STATE(1294), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(678), 2, + STATE(384), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(717), 6, + STATE(496), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [46179] = 10, + [47003] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1740), 1, - anon_sym_POUND, - ACTIONS(1744), 1, - anon_sym_fn, - ACTIONS(1746), 1, + ACTIONS(513), 1, + sym__name, + ACTIONS(1772), 1, sym__discard_name, - ACTIONS(1750), 1, + ACTIONS(1776), 1, sym__upname, - ACTIONS(1799), 1, - sym__name, - STATE(1189), 1, + ACTIONS(1841), 1, + anon_sym_POUND, + ACTIONS(1845), 1, + anon_sym_fn, + ACTIONS(1907), 1, + anon_sym_RPAREN, + STATE(1206), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(678), 2, + STATE(870), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1276), 6, - sym__type, + STATE(1115), 5, + sym__constant_type, + sym_constant_tuple_type, + sym_constant_function_type, + sym_constant_type, sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [46217] = 10, + [47043] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1740), 1, - anon_sym_POUND, - ACTIONS(1744), 1, - anon_sym_fn, - ACTIONS(1746), 1, + ACTIONS(513), 1, + sym__name, + ACTIONS(1772), 1, sym__discard_name, - ACTIONS(1750), 1, + ACTIONS(1776), 1, sym__upname, - ACTIONS(1799), 1, - sym__name, - STATE(1189), 1, + ACTIONS(1841), 1, + anon_sym_POUND, + ACTIONS(1845), 1, + anon_sym_fn, + STATE(1206), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(678), 2, + STATE(870), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1262), 6, - sym__type, + STATE(1312), 5, + sym__constant_type, + sym_constant_tuple_type, + sym_constant_function_type, + sym_constant_type, sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [46255] = 10, + [47080] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1835), 1, - anon_sym_POUND, - ACTIONS(1837), 1, - anon_sym_fn, - ACTIONS(1839), 1, - sym__discard_name, - ACTIONS(1841), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(1843), 1, + ACTIONS(1772), 1, + sym__discard_name, + ACTIONS(1776), 1, sym__upname, - STATE(1191), 1, + ACTIONS(1841), 1, + anon_sym_POUND, + ACTIONS(1845), 1, + anon_sym_fn, + STATE(1206), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(387), 2, + STATE(870), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(475), 6, - sym__type, + STATE(962), 5, + sym__constant_type, + sym_constant_tuple_type, + sym_constant_function_type, + sym_constant_type, sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [46293] = 4, + [47117] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1911), 1, + anon_sym_LPAREN, + STATE(757), 1, + sym_record_pattern_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1873), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1871), 10, - anon_sym_RBRACE, + ACTIONS(1909), 11, + anon_sym_if, + anon_sym_as, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_COLON, anon_sym_DASH_GT, + anon_sym_DOT_DOT, + anon_sym_PIPE, + [47144] = 8, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1913), 1, + anon_sym_DASH_GT, + ACTIONS(1915), 1, anon_sym_PIPE_PIPE, + ACTIONS(1917), 1, anon_sym_AMP_AMP, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1919), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(1921), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1923), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [46319] = 10, + [47177] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1835), 1, - anon_sym_POUND, - ACTIONS(1837), 1, - anon_sym_fn, - ACTIONS(1839), 1, - sym__discard_name, - ACTIONS(1841), 1, - sym__name, - ACTIONS(1843), 1, - sym__upname, - STATE(1191), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(387), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(464), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [46357] = 10, + ACTIONS(355), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(353), 9, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [47202] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1740), 1, - anon_sym_POUND, - ACTIONS(1744), 1, - anon_sym_fn, - ACTIONS(1746), 1, - sym__discard_name, - ACTIONS(1750), 1, - sym__upname, - ACTIONS(1799), 1, - sym__name, - STATE(1189), 1, - sym_identifier, + ACTIONS(1925), 1, + anon_sym_AMP_AMP, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(678), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1225), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [46395] = 3, + ACTIONS(1873), 2, + anon_sym_RBRACE, + anon_sym_PIPE_PIPE, + ACTIONS(1927), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1929), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1931), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [47233] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1198), 14, + ACTIONS(1236), 13, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, - anon_sym_as, anon_sym_COMMA, anon_sym_const, anon_sym_EQ, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [46419] = 10, + [47256] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1835), 1, - anon_sym_POUND, - ACTIONS(1837), 1, - anon_sym_fn, - ACTIONS(1839), 1, - sym__discard_name, - ACTIONS(1841), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(1843), 1, + ACTIONS(1772), 1, + sym__discard_name, + ACTIONS(1776), 1, sym__upname, - STATE(1191), 1, + ACTIONS(1841), 1, + anon_sym_POUND, + ACTIONS(1845), 1, + anon_sym_fn, + STATE(1206), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(387), 2, + STATE(870), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(479), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [46457] = 6, + STATE(1115), 5, + sym__constant_type, + sym_constant_tuple_type, + sym_constant_function_type, + sym_constant_type, + sym_type_hole, + [47293] = 5, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1875), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1853), 3, - anon_sym_RBRACE, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(1877), 4, + ACTIONS(1929), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1879), 4, + ACTIONS(1931), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [46486] = 8, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1881), 1, + ACTIONS(1873), 5, anon_sym_RBRACE, - ACTIONS(1883), 1, anon_sym_PIPE_PIPE, - ACTIONS(1885), 1, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [47320] = 5, + ACTIONS(3), 1, + sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1875), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1877), 4, + ACTIONS(1921), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1879), 4, + ACTIONS(1923), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [46519] = 8, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1887), 1, + ACTIONS(1873), 5, anon_sym_DASH_GT, - ACTIONS(1889), 1, anon_sym_PIPE_PIPE, - ACTIONS(1891), 1, anon_sym_AMP_AMP, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1893), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1895), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1897), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [46552] = 5, + [47347] = 6, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1877), 4, + ACTIONS(1919), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1873), 3, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(1921), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1879), 4, + ACTIONS(1923), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1853), 5, - anon_sym_RBRACE, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [46579] = 11, + [47376] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(481), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(1746), 1, + ACTIONS(1772), 1, sym__discard_name, - ACTIONS(1750), 1, + ACTIONS(1776), 1, sym__upname, - ACTIONS(1899), 1, + ACTIONS(1841), 1, anon_sym_POUND, - ACTIONS(1901), 1, - anon_sym_RPAREN, - STATE(963), 1, - sym_constant_type_argument, - STATE(1189), 1, + ACTIONS(1845), 1, + anon_sym_fn, + STATE(1206), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(843), 2, + STATE(870), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1162), 4, + STATE(1037), 5, sym__constant_type, sym_constant_tuple_type, + sym_constant_function_type, sym_constant_type, sym_type_hole, - [46618] = 7, + [47413] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1891), 1, + ACTIONS(1917), 1, anon_sym_AMP_AMP, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1853), 2, + ACTIONS(1873), 2, anon_sym_DASH_GT, anon_sym_PIPE_PIPE, - ACTIONS(1893), 2, + ACTIONS(1919), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1895), 4, + ACTIONS(1921), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1897), 4, + ACTIONS(1923), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [46649] = 11, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(481), 1, - sym__name, - ACTIONS(1746), 1, - sym__discard_name, - ACTIONS(1750), 1, - sym__upname, - ACTIONS(1899), 1, - anon_sym_POUND, - ACTIONS(1903), 1, - anon_sym_RPAREN, - STATE(1123), 1, - sym_constant_type_argument, - STATE(1189), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(843), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1162), 4, - sym__constant_type, - sym_constant_tuple_type, - sym_constant_type, - sym_type_hole, - [46688] = 6, + [47444] = 6, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1893), 2, + ACTIONS(1927), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1853), 3, - anon_sym_DASH_GT, + ACTIONS(1873), 3, + anon_sym_RBRACE, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(1895), 4, + ACTIONS(1929), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1897), 4, + ACTIONS(1931), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [46717] = 7, + [47473] = 8, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1885), 1, + ACTIONS(1925), 1, anon_sym_AMP_AMP, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1853), 2, + ACTIONS(1933), 1, anon_sym_RBRACE, + ACTIONS(1935), 1, anon_sym_PIPE_PIPE, - ACTIONS(1875), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1877), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1879), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [46748] = 5, - ACTIONS(3), 1, - sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1895), 4, + ACTIONS(1927), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1929), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1897), 4, + ACTIONS(1931), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1853), 5, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [46775] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1907), 1, - anon_sym_LPAREN, - STATE(744), 1, - sym_record_pattern_arguments, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1905), 11, - anon_sym_if, - anon_sym_as, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - [46802] = 11, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(481), 1, - sym__name, - ACTIONS(1746), 1, - sym__discard_name, - ACTIONS(1750), 1, - sym__upname, - ACTIONS(1899), 1, - anon_sym_POUND, - ACTIONS(1909), 1, - anon_sym_RPAREN, - STATE(1123), 1, - sym_constant_type_argument, - STATE(1189), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(843), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1162), 4, - sym__constant_type, - sym_constant_tuple_type, - sym_constant_type, - sym_type_hole, - [46841] = 3, + [47506] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1254), 13, + ACTIONS(1528), 12, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, anon_sym_COMMA, anon_sym_const, anon_sym_EQ, - anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [46864] = 3, + [47528] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1937), 1, + anon_sym_SLASH, + STATE(743), 1, + aux_sym_module_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1336), 12, - anon_sym_LBRACE, + ACTIONS(1053), 10, anon_sym_RBRACE, anon_sym_import, - anon_sym_COMMA, + anon_sym_DOT, + anon_sym_as, anon_sym_const, - anon_sym_EQ, - anon_sym_RPAREN, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [46886] = 3, + [47554] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1308), 12, + ACTIONS(1362), 12, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -43621,89 +44195,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_EQ, anon_sym_RPAREN, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [46908] = 3, + [47576] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1939), 1, + anon_sym_LPAREN, + STATE(776), 1, + sym_type_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1340), 12, + ACTIONS(1123), 10, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, - anon_sym_COMMA, anon_sym_const, anon_sym_EQ, - anon_sym_RPAREN, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [46930] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(481), 1, - sym__name, - ACTIONS(1746), 1, - sym__discard_name, - ACTIONS(1750), 1, - sym__upname, - ACTIONS(1899), 1, - anon_sym_POUND, - STATE(1123), 1, - sym_constant_type_argument, - STATE(1189), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(843), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1162), 4, - sym__constant_type, - sym_constant_tuple_type, - sym_constant_type, - sym_type_hole, - [46966] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(481), 1, - sym__name, - ACTIONS(1746), 1, - sym__discard_name, - ACTIONS(1750), 1, - sym__upname, - ACTIONS(1899), 1, - anon_sym_POUND, - ACTIONS(1911), 1, - anon_sym_RPAREN, - STATE(1189), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(843), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1179), 4, - sym__constant_type, - sym_constant_tuple_type, - sym_constant_type, - sym_type_hole, - [47002] = 3, + [47602] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1364), 12, + ACTIONS(1340), 12, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -43711,70 +44235,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_EQ, anon_sym_RPAREN, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [47024] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(481), 1, - sym__name, - ACTIONS(1746), 1, - sym__discard_name, - ACTIONS(1750), 1, - sym__upname, - ACTIONS(1899), 1, - anon_sym_POUND, - ACTIONS(1913), 1, - anon_sym_RPAREN, - STATE(1189), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(843), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(960), 4, - sym__constant_type, - sym_constant_tuple_type, - sym_constant_type, - sym_type_hole, - [47060] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(481), 1, - sym__name, - ACTIONS(1746), 1, - sym__discard_name, - ACTIONS(1750), 1, - sym__upname, - ACTIONS(1899), 1, - anon_sym_POUND, - ACTIONS(1915), 1, - anon_sym_RPAREN, - STATE(1189), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(843), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1179), 4, - sym__constant_type, - sym_constant_tuple_type, - sym_constant_type, - sym_type_hole, - [47096] = 3, + [47624] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1356), 12, + ACTIONS(1358), 12, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -43782,39 +44254,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_EQ, anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, anon_sym_fn, - sym_visibility_modifier, - sym_opacity_modifier, - [47118] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1917), 1, - anon_sym_SLASH, - STATE(724), 1, - aux_sym_module_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1055), 10, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_const, anon_sym_external, anon_sym_type, - anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [47144] = 3, + [47646] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1332), 12, + ACTIONS(1480), 12, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -43822,60 +44273,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_EQ, anon_sym_RPAREN, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [47166] = 5, + [47668] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1920), 1, - anon_sym_SLASH, - STATE(724), 1, - aux_sym_module_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1062), 10, + ACTIONS(1348), 12, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, - anon_sym_DOT, - anon_sym_as, + anon_sym_COMMA, anon_sym_const, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [47192] = 5, + [47690] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1922), 1, - anon_sym_LPAREN, - STATE(767), 1, - sym_type_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1107), 10, + ACTIONS(1460), 12, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_COMMA, anon_sym_const, anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [47218] = 3, + [47712] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1376), 12, + ACTIONS(1414), 12, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -43883,18 +44330,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_EQ, anon_sym_RPAREN, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [47240] = 3, + [47734] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1296), 12, + ACTIONS(1332), 12, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -43902,18 +44349,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_EQ, anon_sym_RPAREN, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [47262] = 3, + [47756] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1392), 12, + ACTIONS(1498), 12, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -43921,58 +44368,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_EQ, anon_sym_RPAREN, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [47284] = 3, + [47778] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1941), 1, + anon_sym_SLASH, + STATE(742), 1, + aux_sym_module_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1454), 12, - anon_sym_LBRACE, + ACTIONS(1065), 10, anon_sym_RBRACE, anon_sym_import, - anon_sym_COMMA, + anon_sym_DOT, + anon_sym_as, anon_sym_const, - anon_sym_EQ, - anon_sym_RPAREN, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [47306] = 5, + [47804] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1920), 1, + ACTIONS(1937), 1, anon_sym_SLASH, - STATE(726), 1, + STATE(742), 1, aux_sym_module_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1068), 10, + ACTIONS(1059), 10, anon_sym_RBRACE, anon_sym_import, anon_sym_DOT, anon_sym_as, anon_sym_const, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [47332] = 3, + [47830] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1300), 12, + ACTIONS(1422), 12, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -43980,18 +44429,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_EQ, anon_sym_RPAREN, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [47354] = 3, + [47852] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1344), 12, + ACTIONS(1448), 12, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -43999,18 +44448,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_EQ, anon_sym_RPAREN, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [47376] = 3, + [47874] = 13, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1944), 1, + anon_sym_RPAREN, + ACTIONS(1946), 1, + sym__discard_name, + ACTIONS(1948), 1, + sym__name, + STATE(875), 1, + sym_label, + STATE(884), 1, + sym__name_param, + STATE(890), 1, + sym__discard_param, + STATE(903), 1, + sym__labeled_discard_param, + STATE(915), 1, + sym__labeled_name_param, + STATE(1048), 1, + sym_discard, + STATE(1050), 1, + sym_identifier, + STATE(1178), 1, + sym_function_parameter, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [47915] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1924), 11, + ACTIONS(1950), 11, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -44022,13 +44499,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [47397] = 3, + [47936] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1926), 11, + ACTIONS(1952), 11, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -44040,13 +44517,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [47418] = 3, + [47957] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1928), 11, + ACTIONS(1954), 11, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -44058,13 +44535,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [47439] = 3, + [47978] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1930), 11, + ACTIONS(1956), 11, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -44076,13 +44553,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [47460] = 3, + [47999] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1932), 11, + ACTIONS(1958), 11, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -44094,13 +44571,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [47481] = 3, + [48020] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1934), 11, + ACTIONS(1960), 11, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -44112,37 +44589,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [47502] = 9, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(481), 1, - sym__name, - ACTIONS(1746), 1, - sym__discard_name, - ACTIONS(1750), 1, - sym__upname, - ACTIONS(1899), 1, - anon_sym_POUND, - STATE(1189), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(843), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1216), 4, - sym__constant_type, - sym_constant_tuple_type, - sym_constant_type, - sym_type_hole, - [47535] = 3, + [48041] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1936), 11, + ACTIONS(1962), 11, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -44154,13 +44607,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [47556] = 3, + [48062] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1938), 11, + ACTIONS(1964), 11, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -44172,13 +44625,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [47577] = 3, + [48083] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1940), 11, + ACTIONS(1966), 11, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -44190,13 +44643,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [47598] = 3, + [48104] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1942), 11, + ACTIONS(1968), 11, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -44208,13 +44661,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [47619] = 3, + [48125] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1944), 11, + ACTIONS(1970), 11, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -44226,13 +44679,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [47640] = 3, + [48146] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1946), 11, + ACTIONS(1972), 11, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -44244,41 +44697,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [47661] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1948), 1, - anon_sym_RPAREN, - ACTIONS(1950), 1, - sym__discard_name, - ACTIONS(1952), 1, - sym__name, - STATE(866), 1, - sym__labeled_discard_param, - STATE(893), 1, - sym_label, - STATE(897), 1, - sym__name_param, - STATE(909), 1, - sym__labeled_name_param, - STATE(911), 1, - sym__discard_param, - STATE(924), 1, - sym_identifier, - STATE(964), 1, - sym_function_parameter, - STATE(976), 1, - sym_discard, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [47702] = 3, + [48167] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1954), 11, + ACTIONS(1974), 11, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -44290,41 +44715,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [47723] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1950), 1, - sym__discard_name, - ACTIONS(1952), 1, - sym__name, - ACTIONS(1956), 1, - anon_sym_RPAREN, - STATE(866), 1, - sym__labeled_discard_param, - STATE(893), 1, - sym_label, - STATE(897), 1, - sym__name_param, - STATE(909), 1, - sym__labeled_name_param, - STATE(911), 1, - sym__discard_param, - STATE(924), 1, - sym_identifier, - STATE(976), 1, - sym_discard, - STATE(1116), 1, - sym_function_parameter, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [47764] = 3, + [48188] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1958), 11, + ACTIONS(1976), 11, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -44336,13 +44733,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [47785] = 3, + [48209] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1960), 11, + ACTIONS(1978), 11, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -44354,32 +44751,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [47806] = 4, + [48230] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1057), 1, - anon_sym_SLASH, + ACTIONS(1946), 1, + sym__discard_name, + ACTIONS(1948), 1, + sym__name, + ACTIONS(1980), 1, + anon_sym_RPAREN, + STATE(875), 1, + sym_label, + STATE(884), 1, + sym__name_param, + STATE(890), 1, + sym__discard_param, + STATE(903), 1, + sym__labeled_discard_param, + STATE(915), 1, + sym__labeled_name_param, + STATE(948), 1, + sym_function_parameter, + STATE(1048), 1, + sym_discard, + STATE(1050), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1055), 10, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_const, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - sym_visibility_modifier, - sym_opacity_modifier, - [47829] = 3, + [48271] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1962), 11, + ACTIONS(1982), 11, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -44391,13 +44797,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [47850] = 3, + [48292] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1964), 11, + ACTIONS(1984), 11, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -44409,13 +44815,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [47871] = 3, + [48313] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1966), 11, + ACTIONS(1986), 11, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -44427,13 +44833,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [47892] = 3, + [48334] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1968), 11, + ACTIONS(1988), 11, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -44445,37 +44851,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [47913] = 9, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(481), 1, - sym__name, - ACTIONS(1746), 1, - sym__discard_name, - ACTIONS(1750), 1, - sym__upname, - ACTIONS(1899), 1, - anon_sym_POUND, - STATE(1189), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(843), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1179), 4, - sym__constant_type, - sym_constant_tuple_type, - sym_constant_type, - sym_type_hole, - [47946] = 3, + [48355] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1946), 11, + ACTIONS(1990), 11, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -44487,59 +44869,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [47967] = 3, + [48376] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1970), 11, + ACTIONS(1992), 11, anon_sym_if, - anon_sym_as, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - [47988] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1950), 1, - sym__discard_name, - ACTIONS(1952), 1, - sym__name, - ACTIONS(1972), 1, - anon_sym_RPAREN, - STATE(866), 1, - sym__labeled_discard_param, - STATE(893), 1, - sym_label, - STATE(897), 1, - sym__name_param, - STATE(909), 1, - sym__labeled_name_param, - STATE(911), 1, - sym__discard_param, - STATE(924), 1, - sym_identifier, - STATE(976), 1, - sym_discard, - STATE(1116), 1, - sym_function_parameter, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [48029] = 3, + anon_sym_as, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_DOT_DOT, + anon_sym_PIPE, + [48397] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1974), 11, + ACTIONS(1994), 11, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -44551,13 +44905,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [48050] = 3, + [48418] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1067), 1, + anon_sym_SLASH, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1976), 11, + ACTIONS(1065), 10, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_const, + anon_sym_fn, + anon_sym_external, + anon_sym_type, + sym_visibility_modifier, + sym_opacity_modifier, + [48441] = 3, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1996), 11, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -44569,13 +44942,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [48071] = 3, + [48462] = 13, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1946), 1, + sym__discard_name, + ACTIONS(1948), 1, + sym__name, + ACTIONS(1998), 1, + anon_sym_RPAREN, + STATE(875), 1, + sym_label, + STATE(884), 1, + sym__name_param, + STATE(890), 1, + sym__discard_param, + STATE(903), 1, + sym__labeled_discard_param, + STATE(915), 1, + sym__labeled_name_param, + STATE(1048), 1, + sym_discard, + STATE(1050), 1, + sym_identifier, + STATE(1178), 1, + sym_function_parameter, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [48503] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1978), 11, + ACTIONS(1950), 11, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -44587,13 +44988,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [48092] = 3, + [48524] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1980), 11, + ACTIONS(2000), 11, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -44605,13 +45006,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [48113] = 3, + [48545] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1974), 11, + ACTIONS(1982), 11, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -44623,81 +45024,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [48134] = 3, + [48566] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1478), 10, + ACTIONS(1290), 10, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, anon_sym_const, anon_sym_EQ, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [48154] = 3, + [48586] = 10, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1230), 1, + sym__decimal, + ACTIONS(1234), 1, + sym__upname, + ACTIONS(2002), 1, + anon_sym_DASH, + ACTIONS(2004), 1, + sym__name, + STATE(543), 1, + sym_label, + STATE(637), 1, + sym_constructor_name, + STATE(673), 1, + sym_integer, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1228), 3, + sym__hex, + sym__octal, + sym__binary, + [48620] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1368), 10, + ACTIONS(1302), 10, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, anon_sym_const, anon_sym_EQ, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [48174] = 3, + [48640] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2006), 1, + anon_sym_DOT, + ACTIONS(2008), 1, + anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1388), 10, - anon_sym_LBRACE, + ACTIONS(1129), 8, anon_sym_RBRACE, anon_sym_import, anon_sym_const, - anon_sym_EQ, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [48194] = 3, + [48664] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1498), 10, + ACTIONS(1510), 10, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, anon_sym_const, anon_sym_EQ, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [48214] = 3, + [48684] = 12, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1946), 1, + sym__discard_name, + ACTIONS(1948), 1, + sym__name, + STATE(875), 1, + sym_label, + STATE(884), 1, + sym__name_param, + STATE(890), 1, + sym__discard_param, + STATE(903), 1, + sym__labeled_discard_param, + STATE(915), 1, + sym__labeled_name_param, + STATE(1048), 1, + sym_discard, + STATE(1050), 1, + sym_identifier, + STATE(1178), 1, + sym_function_parameter, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [48722] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1982), 10, + ACTIONS(2010), 10, anon_sym_if, anon_sym_COMMA, anon_sym_EQ, @@ -44708,99 +45161,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [48234] = 12, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1950), 1, - sym__discard_name, - ACTIONS(1952), 1, - sym__name, - STATE(866), 1, - sym__labeled_discard_param, - STATE(893), 1, - sym_label, - STATE(897), 1, - sym__name_param, - STATE(909), 1, - sym__labeled_name_param, - STATE(911), 1, - sym__discard_param, - STATE(924), 1, - sym_identifier, - STATE(976), 1, - sym_discard, - STATE(1116), 1, - sym_function_parameter, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [48272] = 3, + [48742] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1474), 10, + ACTIONS(1366), 10, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, anon_sym_const, anon_sym_EQ, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [48292] = 5, + [48762] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1984), 1, - anon_sym_DOT, - ACTIONS(1986), 1, - anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1119), 8, + ACTIONS(1464), 10, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, anon_sym_const, + anon_sym_EQ, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [48316] = 7, + [48782] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(479), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(1988), 1, + ACTIONS(298), 1, + sym__upname, + ACTIONS(1081), 1, anon_sym_DASH, - ACTIONS(1990), 1, + ACTIONS(2012), 1, sym__name, + STATE(296), 1, + sym_constructor_name, + STATE(543), 1, + sym_label, + STATE(673), 1, + sym_integer, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(477), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - STATE(1271), 3, - sym__pattern_bit_string_segment_argument, - sym_integer, - sym_identifier, - [48343] = 5, + [48816] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1992), 1, + ACTIONS(2014), 1, + anon_sym_as, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1137), 8, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_const, + anon_sym_fn, + anon_sym_external, + anon_sym_type, + sym_visibility_modifier, + sym_opacity_modifier, + [48837] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2016), 1, anon_sym_DOT, - ACTIONS(1994), 1, + ACTIONS(2018), 1, anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1996), 7, + ACTIONS(2020), 7, anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, @@ -44808,611 +45254,591 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_COLON, anon_sym_DOT_DOT, - [48366] = 3, + [48860] = 7, ACTIONS(3), 1, sym_module_comment, + ACTIONS(511), 1, + sym__decimal, + ACTIONS(2022), 1, + anon_sym_DASH, + ACTIONS(2024), 1, + sym__name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1240), 9, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_as, - anon_sym_const, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - sym_visibility_modifier, - sym_opacity_modifier, - [48385] = 3, + ACTIONS(509), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1317), 3, + sym__pattern_bit_string_segment_argument, + sym_integer, + sym_identifier, + [48887] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2026), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1202), 9, + ACTIONS(1244), 8, anon_sym_RBRACE, anon_sym_import, - anon_sym_as, anon_sym_const, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [48404] = 4, + [48908] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1998), 1, - anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1157), 8, + ACTIONS(1240), 9, anon_sym_RBRACE, anon_sym_import, + anon_sym_as, anon_sym_const, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [48425] = 3, + [48927] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1206), 9, + ACTIONS(1175), 9, anon_sym_RBRACE, anon_sym_import, anon_sym_as, anon_sym_const, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [48444] = 3, + [48946] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1244), 9, + ACTIONS(1181), 9, anon_sym_RBRACE, anon_sym_import, anon_sym_as, anon_sym_const, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [48463] = 3, + [48965] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1438), 8, + ACTIONS(1254), 9, anon_sym_RBRACE, anon_sym_import, + anon_sym_as, anon_sym_const, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [48481] = 3, + [48984] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1396), 8, + ACTIONS(1492), 8, anon_sym_RBRACE, anon_sym_import, anon_sym_const, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [48499] = 3, + [49002] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1312), 8, + ACTIONS(1352), 8, anon_sym_RBRACE, anon_sym_import, anon_sym_const, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [48517] = 10, + [49020] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(481), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(1950), 1, + ACTIONS(1946), 1, sym__discard_name, - ACTIONS(2000), 1, + ACTIONS(2028), 1, anon_sym_RPAREN, - STATE(890), 1, - sym__name_param, - STATE(906), 1, + STATE(899), 1, sym__discard_param, - STATE(924), 1, - sym_identifier, - STATE(976), 1, + STATE(908), 1, + sym__name_param, + STATE(1048), 1, sym_discard, - STATE(1114), 1, + STATE(1050), 1, + sym_identifier, + STATE(1089), 1, sym_anonymous_function_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [48549] = 3, + [49052] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1400), 8, + ACTIONS(1382), 8, anon_sym_RBRACE, anon_sym_import, anon_sym_const, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [48567] = 3, + [49070] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1380), 8, + ACTIONS(1418), 8, anon_sym_RBRACE, anon_sym_import, anon_sym_const, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [48585] = 3, + [49088] = 10, ACTIONS(3), 1, sym_module_comment, + ACTIONS(513), 1, + sym__name, + ACTIONS(1946), 1, + sym__discard_name, + ACTIONS(2030), 1, + anon_sym_RPAREN, + STATE(899), 1, + sym__discard_param, + STATE(908), 1, + sym__name_param, + STATE(1021), 1, + sym_anonymous_function_parameter, + STATE(1048), 1, + sym_discard, + STATE(1050), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1430), 8, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_const, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - sym_visibility_modifier, - sym_opacity_modifier, - [48603] = 3, + [49120] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1304), 8, + ACTIONS(1434), 8, anon_sym_RBRACE, anon_sym_import, anon_sym_const, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [48621] = 3, + [49138] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1276), 8, + ACTIONS(1328), 8, anon_sym_RBRACE, anon_sym_import, anon_sym_const, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [48639] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(481), 1, - sym__name, - ACTIONS(1950), 1, - sym__discard_name, - ACTIONS(2002), 1, - anon_sym_RPAREN, - STATE(890), 1, - sym__name_param, - STATE(906), 1, - sym__discard_param, - STATE(924), 1, - sym_identifier, - STATE(976), 1, - sym_discard, - STATE(1001), 1, - sym_anonymous_function_parameter, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [48671] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1994), 1, - anon_sym_as, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1996), 7, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_DOT_DOT, - [48691] = 3, + [49156] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1414), 8, + ACTIONS(1514), 8, anon_sym_RBRACE, anon_sym_import, anon_sym_const, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [48709] = 3, + [49174] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1260), 8, + ACTIONS(1452), 8, anon_sym_RBRACE, anon_sym_import, anon_sym_const, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [48727] = 8, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(313), 1, - sym__decimal, - ACTIONS(319), 1, - sym__upname, - ACTIONS(1074), 1, - anon_sym_DASH, - STATE(294), 1, - sym_constructor_name, - STATE(691), 1, - sym_integer, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(311), 3, - sym__hex, - sym__octal, - sym__binary, - [48755] = 3, + [49192] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1288), 8, + ACTIONS(1438), 8, anon_sym_RBRACE, anon_sym_import, anon_sym_const, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [48773] = 3, + [49210] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1292), 8, + ACTIONS(1404), 8, anon_sym_RBRACE, anon_sym_import, anon_sym_const, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [48791] = 3, + [49228] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1320), 8, + ACTIONS(1306), 8, anon_sym_RBRACE, anon_sym_import, anon_sym_const, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [48809] = 3, + [49246] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1446), 8, + ACTIONS(1394), 8, anon_sym_RBRACE, anon_sym_import, anon_sym_const, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [48827] = 3, + [49264] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1442), 8, + ACTIONS(1266), 8, anon_sym_RBRACE, anon_sym_import, anon_sym_const, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [48845] = 3, + [49282] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1352), 8, + ACTIONS(1374), 8, anon_sym_RBRACE, anon_sym_import, anon_sym_const, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [48863] = 3, + [49300] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1284), 8, + ACTIONS(1320), 8, anon_sym_RBRACE, anon_sym_import, anon_sym_const, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [48881] = 3, + [49318] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1360), 8, + ACTIONS(1286), 8, anon_sym_RBRACE, anon_sym_import, anon_sym_const, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [48899] = 3, + [49336] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1422), 8, + ACTIONS(1476), 8, anon_sym_RBRACE, anon_sym_import, anon_sym_const, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [48917] = 3, + [49354] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1264), 8, + ACTIONS(1534), 8, anon_sym_RBRACE, anon_sym_import, anon_sym_const, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [48935] = 10, + [49372] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(481), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(1950), 1, + ACTIONS(1946), 1, sym__discard_name, - ACTIONS(2004), 1, + ACTIONS(2032), 1, anon_sym_RPAREN, - STATE(890), 1, - sym__name_param, - STATE(906), 1, + STATE(899), 1, sym__discard_param, - STATE(924), 1, - sym_identifier, - STATE(976), 1, + STATE(908), 1, + sym__name_param, + STATE(1048), 1, sym_discard, - STATE(1114), 1, + STATE(1050), 1, + sym_identifier, + STATE(1089), 1, sym_anonymous_function_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [48967] = 3, + [49404] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1482), 8, + ACTIONS(1336), 8, anon_sym_RBRACE, anon_sym_import, anon_sym_const, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [48985] = 3, + [49422] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1490), 8, + ACTIONS(1472), 8, anon_sym_RBRACE, anon_sym_import, anon_sym_const, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [49003] = 3, + [49440] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1494), 8, + ACTIONS(1538), 8, anon_sym_RBRACE, anon_sym_import, anon_sym_const, + anon_sym_fn, anon_sym_external, anon_sym_type, + sym_visibility_modifier, + sym_opacity_modifier, + [49458] = 3, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1456), 8, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_const, anon_sym_fn, + anon_sym_external, + anon_sym_type, sym_visibility_modifier, sym_opacity_modifier, - [49021] = 3, + [49476] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1384), 8, + ACTIONS(1484), 8, anon_sym_RBRACE, anon_sym_import, anon_sym_const, + anon_sym_fn, anon_sym_external, anon_sym_type, + sym_visibility_modifier, + sym_opacity_modifier, + [49494] = 3, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1408), 8, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_const, anon_sym_fn, + anon_sym_external, + anon_sym_type, sym_visibility_modifier, sym_opacity_modifier, - [49039] = 8, + [49512] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1232), 1, - sym__decimal, - ACTIONS(1236), 1, - sym__upname, - ACTIONS(2006), 1, - anon_sym_DASH, - STATE(633), 1, - sym_constructor_name, - STATE(691), 1, - sym_integer, + ACTIONS(2018), 1, + anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1230), 3, - sym__hex, - sym__octal, - sym__binary, - [49067] = 3, + ACTIONS(2020), 7, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_DOT_DOT, + [49532] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1458), 8, + ACTIONS(1270), 8, anon_sym_RBRACE, anon_sym_import, anon_sym_const, + anon_sym_fn, anon_sym_external, anon_sym_type, - anon_sym_fn, sym_visibility_modifier, sym_opacity_modifier, - [49085] = 9, + [49550] = 9, ACTIONS(3), 1, sym_module_comment, - ACTIONS(481), 1, + ACTIONS(513), 1, sym__name, - ACTIONS(1950), 1, + ACTIONS(1946), 1, sym__discard_name, - STATE(890), 1, - sym__name_param, - STATE(906), 1, + STATE(899), 1, sym__discard_param, - STATE(924), 1, - sym_identifier, - STATE(976), 1, + STATE(908), 1, + sym__name_param, + STATE(1048), 1, sym_discard, - STATE(1114), 1, + STATE(1050), 1, + sym_identifier, + STATE(1089), 1, sym_anonymous_function_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [49114] = 3, + [49579] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2008), 7, + ACTIONS(2034), 7, anon_sym_if, anon_sym_COMMA, anon_sym_RPAREN, @@ -45420,5249 +45846,5377 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [49131] = 6, + [49596] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(313), 1, - sym__decimal, - ACTIONS(1074), 1, - anon_sym_DASH, - STATE(365), 1, - sym_integer, + ACTIONS(1901), 1, + sym__upname, + ACTIONS(2024), 1, + sym__name, + STATE(461), 1, + sym_type_name, + STATE(1294), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(311), 3, - sym__hex, - sym__octal, - sym__binary, - [49153] = 6, + STATE(390), 2, + sym_type_identifier, + sym_remote_type_identifier, + [49620] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(837), 1, + ACTIONS(511), 1, sym__decimal, - ACTIONS(2010), 1, + ACTIONS(2022), 1, anon_sym_DASH, - STATE(311), 1, + STATE(1247), 1, sym_integer, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(835), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - [49175] = 7, + [49642] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1750), 1, + ACTIONS(1776), 1, sym__upname, - ACTIONS(1990), 1, + ACTIONS(2024), 1, sym__name, - STATE(1182), 1, + STATE(797), 1, sym_type_name, - STATE(1189), 1, + STATE(1206), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(727), 2, + STATE(733), 2, sym_type_identifier, sym_remote_type_identifier, - [49199] = 6, + [49666] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(479), 1, + ACTIONS(1776), 1, + sym__upname, + ACTIONS(2024), 1, + sym__name, + STATE(1201), 1, + sym_type_name, + STATE(1206), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(733), 2, + sym_type_identifier, + sym_remote_type_identifier, + [49690] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(511), 1, sym__decimal, - ACTIONS(1988), 1, + ACTIONS(2022), 1, anon_sym_DASH, - STATE(1207), 1, + STATE(148), 1, sym_integer, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(477), 3, + ACTIONS(509), 3, sym__hex, sym__octal, sym__binary, - [49221] = 7, + [49712] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1750), 1, + ACTIONS(1776), 1, sym__upname, - ACTIONS(1990), 1, + ACTIONS(2024), 1, sym__name, - STATE(1180), 1, + STATE(1140), 1, sym_type_name, - STATE(1189), 1, + STATE(1206), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(727), 2, + STATE(733), 2, sym_type_identifier, sym_remote_type_identifier, - [49245] = 7, + [49736] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1750), 1, + ACTIONS(1776), 1, sym__upname, - ACTIONS(1990), 1, + ACTIONS(2024), 1, sym__name, - STATE(1063), 1, + STATE(1175), 1, sym_type_name, - STATE(1189), 1, + STATE(1206), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(727), 2, + STATE(733), 2, sym_type_identifier, sym_remote_type_identifier, - [49269] = 7, + [49760] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1750), 1, + ACTIONS(847), 1, + sym__decimal, + ACTIONS(2036), 1, + anon_sym_DASH, + STATE(301), 1, + sym_integer, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(845), 3, + sym__hex, + sym__octal, + sym__binary, + [49782] = 7, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1776), 1, sym__upname, - ACTIONS(1990), 1, + ACTIONS(2024), 1, sym__name, STATE(1096), 1, sym_type_name, - STATE(1189), 1, + STATE(1206), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(727), 2, + STATE(733), 2, sym_type_identifier, sym_remote_type_identifier, - [49293] = 8, + [49806] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1750), 1, + ACTIONS(1901), 1, sym__upname, - ACTIONS(2012), 1, + ACTIONS(2024), 1, + sym__name, + STATE(473), 1, + sym_type_name, + STATE(1294), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(390), 2, + sym_type_identifier, + sym_remote_type_identifier, + [49830] = 8, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1776), 1, + sym__upname, + ACTIONS(2038), 1, anon_sym_RBRACE, - ACTIONS(2014), 1, + ACTIONS(2040), 1, sym__name, - STATE(916), 1, + STATE(1043), 1, sym_identifier, - STATE(917), 1, + STATE(1049), 1, sym_type_identifier, - STATE(1056), 1, + STATE(1131), 1, sym_unqualified_import, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [49319] = 6, + [49856] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(479), 1, + ACTIONS(292), 1, sym__decimal, - ACTIONS(1988), 1, + ACTIONS(1081), 1, anon_sym_DASH, - STATE(144), 1, + STATE(370), 1, sym_integer, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(477), 3, + ACTIONS(290), 3, sym__hex, sym__octal, sym__binary, - [49341] = 7, + [49878] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1843), 1, + ACTIONS(1776), 1, sym__upname, - ACTIONS(1990), 1, + ACTIONS(2024), 1, sym__name, - STATE(450), 1, + STATE(1114), 1, sym_type_name, - STATE(1191), 1, + STATE(1206), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(386), 2, + STATE(733), 2, sym_type_identifier, sym_remote_type_identifier, - [49365] = 5, + [49902] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2016), 1, - anon_sym_COMMA, - STATE(825), 1, - aux_sym_tuple_repeat1, + ACTIONS(511), 1, + sym__decimal, + ACTIONS(2022), 1, + anon_sym_DASH, + STATE(1214), 1, + sym_integer, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1554), 4, - anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [49385] = 8, + ACTIONS(509), 3, + sym__hex, + sym__octal, + sym__binary, + [49924] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1750), 1, + ACTIONS(1776), 1, sym__upname, - ACTIONS(2014), 1, + ACTIONS(2024), 1, sym__name, - ACTIONS(2019), 1, - anon_sym_RBRACE, - STATE(916), 1, + STATE(1198), 1, + sym_type_name, + STATE(1206), 1, sym_identifier, - STATE(917), 1, - sym_type_identifier, - STATE(1093), 1, - sym_unqualified_import, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [49411] = 6, + STATE(733), 2, + sym_type_identifier, + sym_remote_type_identifier, + [49948] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(479), 1, + ACTIONS(53), 1, sym__decimal, - ACTIONS(1988), 1, + ACTIONS(2042), 1, anon_sym_DASH, - STATE(1231), 1, + STATE(21), 1, sym_integer, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(477), 3, + ACTIONS(51), 3, sym__hex, sym__octal, - sym__binary, - [49433] = 7, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1843), 1, - sym__upname, - ACTIONS(1990), 1, - sym__name, - STATE(448), 1, - sym_type_name, - STATE(1191), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(386), 2, - sym_type_identifier, - sym_remote_type_identifier, - [49457] = 8, + sym__binary, + [49970] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1750), 1, - sym__upname, - ACTIONS(2014), 1, - sym__name, - ACTIONS(2021), 1, - anon_sym_RBRACE, - STATE(915), 1, - sym_unqualified_import, - STATE(916), 1, - sym_identifier, - STATE(917), 1, - sym_type_identifier, + ACTIONS(2044), 1, + anon_sym_COMMA, + STATE(841), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [49483] = 7, + ACTIONS(1558), 4, + anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [49990] = 8, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1750), 1, + ACTIONS(1776), 1, sym__upname, - ACTIONS(1990), 1, + ACTIONS(2040), 1, sym__name, - STATE(1098), 1, - sym_type_name, - STATE(1189), 1, + ACTIONS(2047), 1, + anon_sym_RBRACE, + STATE(1043), 1, sym_identifier, + STATE(1049), 1, + sym_type_identifier, + STATE(1131), 1, + sym_unqualified_import, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(727), 2, - sym_type_identifier, - sym_remote_type_identifier, - [49507] = 8, + [50016] = 8, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1750), 1, + ACTIONS(1776), 1, sym__upname, - ACTIONS(2014), 1, + ACTIONS(2040), 1, sym__name, - ACTIONS(2023), 1, + ACTIONS(2049), 1, anon_sym_RBRACE, - STATE(916), 1, + STATE(1043), 1, sym_identifier, - STATE(917), 1, + STATE(1049), 1, sym_type_identifier, - STATE(1093), 1, + STATE(1131), 1, sym_unqualified_import, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [49533] = 8, + [50042] = 8, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1750), 1, + ACTIONS(1776), 1, sym__upname, - ACTIONS(2014), 1, + ACTIONS(2040), 1, sym__name, - ACTIONS(2025), 1, + ACTIONS(2051), 1, anon_sym_RBRACE, - STATE(916), 1, + STATE(1043), 1, sym_identifier, - STATE(917), 1, + STATE(1049), 1, sym_type_identifier, - STATE(1093), 1, + STATE(1131), 1, sym_unqualified_import, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [49559] = 7, + [50068] = 8, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1750), 1, + ACTIONS(1776), 1, sym__upname, - ACTIONS(1990), 1, + ACTIONS(2040), 1, sym__name, - STATE(790), 1, - sym_type_name, - STATE(1189), 1, + ACTIONS(2053), 1, + anon_sym_RBRACE, + STATE(1043), 1, sym_identifier, + STATE(1049), 1, + sym_type_identifier, + STATE(1075), 1, + sym_unqualified_import, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(727), 2, - sym_type_identifier, - sym_remote_type_identifier, - [49583] = 7, + [50094] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1750), 1, + ACTIONS(1776), 1, sym__upname, - ACTIONS(1990), 1, + ACTIONS(2024), 1, sym__name, - STATE(802), 1, + STATE(815), 1, sym_type_name, - STATE(1189), 1, + STATE(1206), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(727), 2, + STATE(733), 2, sym_type_identifier, sym_remote_type_identifier, - [49607] = 5, + [50118] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2027), 1, + ACTIONS(2055), 1, anon_sym_DOT, - ACTIONS(2029), 1, + ACTIONS(2057), 1, anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1996), 4, + ACTIONS(2020), 4, anon_sym_if, anon_sym_COMMA, anon_sym_DASH_GT, anon_sym_PIPE, - [49627] = 8, + [50138] = 8, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1750), 1, + ACTIONS(1776), 1, sym__upname, - ACTIONS(2014), 1, + ACTIONS(2040), 1, sym__name, - ACTIONS(2031), 1, + ACTIONS(2059), 1, anon_sym_RBRACE, - STATE(916), 1, + STATE(999), 1, + sym_unqualified_import, + STATE(1043), 1, sym_identifier, - STATE(917), 1, + STATE(1049), 1, sym_type_identifier, - STATE(1093), 1, - sym_unqualified_import, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [49653] = 6, + [50164] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(53), 1, - sym__decimal, - ACTIONS(2033), 1, - anon_sym_DASH, - STATE(21), 1, - sym_integer, + ACTIONS(2061), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(51), 3, - sym__hex, - sym__octal, - sym__binary, - [49675] = 7, + ACTIONS(1244), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_COLON, + [50182] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1750), 1, + ACTIONS(1776), 1, sym__upname, - ACTIONS(1990), 1, + ACTIONS(2040), 1, sym__name, - STATE(1069), 1, - sym_type_name, - STATE(1189), 1, + STATE(1043), 1, sym_identifier, + STATE(1049), 1, + sym_type_identifier, + STATE(1131), 1, + sym_unqualified_import, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(727), 2, - sym_type_identifier, - sym_remote_type_identifier, - [49699] = 7, + [50205] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1218), 1, - anon_sym_DOT_DOT, - ACTIONS(1252), 1, - anon_sym_RPAREN, - ACTIONS(2035), 1, - anon_sym_COMMA, - STATE(891), 1, - aux_sym_record_pattern_arguments_repeat1, - STATE(1257), 1, - sym_pattern_spread, + ACTIONS(513), 1, + sym__name, + ACTIONS(1946), 1, + sym__discard_name, + ACTIONS(2063), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [49722] = 5, + STATE(1217), 2, + sym_identifier, + sym_discard, + [50226] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2039), 1, + ACTIONS(2067), 1, anon_sym_COMMA, - STATE(858), 1, + STATE(861), 1, aux_sym_case_clause_pattern_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2037), 3, + ACTIONS(2065), 3, anon_sym_if, anon_sym_DASH_GT, anon_sym_PIPE, - [49741] = 6, + [50245] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2041), 1, + ACTIONS(2069), 1, anon_sym_RBRACE, - ACTIONS(2043), 1, + ACTIONS(2071), 1, sym__upname, - STATE(895), 1, + STATE(901), 1, sym_constructor_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(841), 2, + STATE(853), 2, sym_data_constructor, aux_sym_data_constructors_repeat1, - [49762] = 7, + [50266] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2046), 1, + ACTIONS(2074), 1, anon_sym_const, - ACTIONS(2048), 1, + ACTIONS(2076), 1, + anon_sym_fn, + ACTIONS(2078), 1, anon_sym_external, - ACTIONS(2050), 1, + ACTIONS(2080), 1, anon_sym_type, - ACTIONS(2052), 1, - anon_sym_fn, - ACTIONS(2054), 1, + ACTIONS(2082), 1, sym_opacity_modifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [49785] = 5, + [50289] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2058), 1, - anon_sym_LPAREN, - STATE(923), 1, - sym_constant_type_arguments, + ACTIONS(2084), 1, + anon_sym_COMMA, + STATE(855), 1, + aux_sym_case_clause_pattern_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2056), 3, - anon_sym_COMMA, - anon_sym_EQ, + ACTIONS(2087), 3, anon_sym_RPAREN, - [49804] = 6, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [50308] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(483), 1, + ACTIONS(515), 1, sym__upname, - STATE(895), 1, + STATE(901), 1, sym_constructor_name, - STATE(1281), 1, + STATE(1298), 1, sym_data_constructors, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(852), 2, + STATE(857), 2, sym_data_constructor, aux_sym_data_constructors_repeat1, - [49825] = 5, + [50329] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2062), 1, - anon_sym_COMMA, - STATE(845), 1, - aux_sym_case_clause_pattern_repeat1, + ACTIONS(515), 1, + sym__upname, + ACTIONS(2089), 1, + anon_sym_RBRACE, + STATE(901), 1, + sym_constructor_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2060), 3, - anon_sym_if, - anon_sym_DASH_GT, - anon_sym_PIPE, - [49844] = 6, + STATE(853), 2, + sym_data_constructor, + aux_sym_data_constructors_repeat1, + [50350] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(483), 1, - sym__upname, - STATE(895), 1, - sym_constructor_name, - STATE(1190), 1, - sym_data_constructors, + ACTIONS(2091), 1, + anon_sym_COMMA, + STATE(858), 1, + aux_sym_case_clause_pattern_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(852), 2, - sym_data_constructor, - aux_sym_data_constructors_repeat1, - [49865] = 6, + ACTIONS(2087), 3, + anon_sym_if, + anon_sym_DASH_GT, + anon_sym_PIPE, + [50369] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(483), 1, - sym__upname, - STATE(895), 1, - sym_constructor_name, - STATE(1201), 1, - sym_data_constructors, + ACTIONS(1163), 1, + anon_sym_RPAREN, + ACTIONS(1169), 1, + anon_sym_DOT_DOT, + ACTIONS(2094), 1, + anon_sym_COMMA, + STATE(897), 1, + aux_sym_record_pattern_arguments_repeat1, + STATE(1271), 1, + sym_pattern_spread, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(852), 2, - sym_data_constructor, - aux_sym_data_constructors_repeat1, - [49886] = 6, + [50392] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(483), 1, + ACTIONS(515), 1, sym__upname, - STATE(895), 1, + STATE(901), 1, sym_constructor_name, - STATE(1293), 1, + STATE(1314), 1, sym_data_constructors, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(852), 2, + STATE(857), 2, sym_data_constructor, aux_sym_data_constructors_repeat1, - [49907] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(341), 1, - sym__discard_name, - ACTIONS(343), 1, - sym__name, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(337), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [49926] = 5, + [50413] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2065), 1, + ACTIONS(2098), 1, anon_sym_COMMA, - STATE(850), 1, + STATE(858), 1, aux_sym_case_clause_pattern_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2060), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [49945] = 7, + ACTIONS(2096), 3, + anon_sym_if, + anon_sym_DASH_GT, + anon_sym_PIPE, + [50432] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1518), 1, + ACTIONS(1169), 1, anon_sym_DOT_DOT, - ACTIONS(2068), 1, + ACTIONS(2100), 1, anon_sym_COMMA, - ACTIONS(2070), 1, - anon_sym_RBRACK, - STATE(850), 1, - aux_sym_case_clause_pattern_repeat1, - STATE(1220), 1, - sym_list_pattern_tail, + ACTIONS(2102), 1, + anon_sym_RPAREN, + STATE(859), 1, + aux_sym_record_pattern_arguments_repeat1, + STATE(1252), 1, + sym_pattern_spread, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [49968] = 6, + [50455] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(483), 1, + ACTIONS(515), 1, sym__upname, - ACTIONS(2072), 1, - anon_sym_RBRACE, - STATE(895), 1, + STATE(901), 1, sym_constructor_name, + STATE(1276), 1, + sym_data_constructors, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(841), 2, + STATE(857), 2, sym_data_constructor, aux_sym_data_constructors_repeat1, - [49989] = 6, + [50476] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(483), 1, + ACTIONS(515), 1, sym__upname, - STATE(895), 1, + STATE(901), 1, sym_constructor_name, - STATE(1297), 1, + STATE(1320), 1, sym_data_constructors, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(852), 2, + STATE(857), 2, sym_data_constructor, aux_sym_data_constructors_repeat1, - [50010] = 7, + [50497] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1218), 1, - anon_sym_DOT_DOT, - ACTIONS(2074), 1, - anon_sym_COMMA, - ACTIONS(2076), 1, - anon_sym_RPAREN, - STATE(839), 1, - aux_sym_record_pattern_arguments_repeat1, - STATE(1209), 1, - sym_pattern_spread, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [50033] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2029), 1, + ACTIONS(2057), 1, anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1996), 4, + ACTIONS(2020), 4, anon_sym_if, anon_sym_COMMA, anon_sym_DASH_GT, anon_sym_PIPE, - [50050] = 7, + [50514] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2078), 1, - anon_sym_const, - ACTIONS(2080), 1, - anon_sym_external, - ACTIONS(2082), 1, - anon_sym_type, - ACTIONS(2084), 1, - anon_sym_fn, - ACTIONS(2086), 1, - sym_opacity_modifier, + ACTIONS(515), 1, + sym__upname, + STATE(901), 1, + sym_constructor_name, + STATE(1242), 1, + sym_data_constructors, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [50073] = 6, + STATE(857), 2, + sym_data_constructor, + aux_sym_data_constructors_repeat1, + [50535] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(481), 1, - sym__name, - ACTIONS(1950), 1, + ACTIONS(353), 1, sym__discard_name, - ACTIONS(2088), 1, - anon_sym_RBRACK, + ACTIONS(355), 1, + sym__name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1205), 2, - sym_identifier, - sym_discard, - [50094] = 5, + ACTIONS(321), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [50554] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2092), 1, - anon_sym_COMMA, - STATE(845), 1, - aux_sym_case_clause_pattern_repeat1, + ACTIONS(2104), 1, + anon_sym_const, + ACTIONS(2106), 1, + anon_sym_fn, + ACTIONS(2108), 1, + anon_sym_external, + ACTIONS(2110), 1, + anon_sym_type, + ACTIONS(2112), 1, + sym_opacity_modifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2090), 3, - anon_sym_if, - anon_sym_DASH_GT, - anon_sym_PIPE, - [50113] = 6, + [50577] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(483), 1, + ACTIONS(515), 1, sym__upname, - STATE(895), 1, + STATE(901), 1, sym_constructor_name, - STATE(1266), 1, + STATE(1222), 1, sym_data_constructors, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(852), 2, + STATE(857), 2, sym_data_constructor, aux_sym_data_constructors_repeat1, - [50134] = 7, + [50598] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1750), 1, - sym__upname, - ACTIONS(2014), 1, - sym__name, - STATE(916), 1, - sym_identifier, - STATE(917), 1, - sym_type_identifier, - STATE(1093), 1, - sym_unqualified_import, + ACTIONS(2116), 1, + anon_sym_LPAREN, + STATE(941), 1, + sym_constant_type_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [50157] = 7, + ACTIONS(2114), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [50617] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1518), 1, + ACTIONS(1562), 1, anon_sym_DOT_DOT, - ACTIONS(2094), 1, + ACTIONS(2118), 1, anon_sym_COMMA, - ACTIONS(2096), 1, + ACTIONS(2120), 1, anon_sym_RBRACK, - STATE(851), 1, + STATE(872), 1, aux_sym_case_clause_pattern_repeat1, - STATE(1213), 1, + STATE(1215), 1, sym_list_pattern_tail, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [50180] = 5, + [50640] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2098), 1, - anon_sym_DQUOTE2, - STATE(862), 1, - aux_sym_string_repeat1, + ACTIONS(1562), 1, + anon_sym_DOT_DOT, + ACTIONS(2122), 1, + anon_sym_COMMA, + ACTIONS(2124), 1, + anon_sym_RBRACK, + STATE(855), 1, + aux_sym_case_clause_pattern_repeat1, + STATE(1268), 1, + sym_list_pattern_tail, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2100), 2, - sym_quoted_content, - sym_escape_sequence, - [50198] = 5, + [50663] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2103), 1, - anon_sym_DQUOTE2, - STATE(862), 1, - aux_sym_string_repeat1, + ACTIONS(57), 1, + sym__upname, + ACTIONS(2126), 1, + sym__name, + STATE(17), 1, + sym_constructor_name, + STATE(448), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2105), 2, - sym_quoted_content, - sym_escape_sequence, - [50216] = 5, + [50683] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2128), 1, + sym__name, + STATE(1014), 1, + sym_record_update_argument, + STATE(1278), 1, + sym_record_update_arguments, + STATE(1280), 1, + sym_label, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [50703] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(513), 1, + sym__name, + ACTIONS(1946), 1, + sym__discard_name, + STATE(931), 1, + sym_identifier, + STATE(932), 1, + sym_discard, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [50723] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2130), 1, + anon_sym_DASH, + STATE(909), 1, + aux_sym_pattern_bit_string_segment_options_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1099), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [50741] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2107), 1, + ACTIONS(2132), 1, anon_sym_DQUOTE2, - STATE(862), 1, + STATE(879), 1, aux_sym_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2105), 2, + ACTIONS(2134), 2, sym_quoted_content, sym_escape_sequence, - [50234] = 5, + [50759] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2109), 1, + ACTIONS(2136), 1, anon_sym_DQUOTE2, - STATE(862), 1, + STATE(921), 1, aux_sym_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2105), 2, + ACTIONS(2138), 2, sym_quoted_content, sym_escape_sequence, - [50252] = 5, + [50777] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2113), 1, - anon_sym_COLON, - STATE(1138), 1, - sym__type_annotation, + ACTIONS(2140), 1, + anon_sym_DQUOTE2, + STATE(921), 1, + aux_sym_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2111), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [50270] = 5, + ACTIONS(2138), 2, + sym_quoted_content, + sym_escape_sequence, + [50795] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(337), 1, + ACTIONS(321), 1, anon_sym_DOT, - ACTIONS(341), 1, + ACTIONS(353), 1, anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1248), 2, + ACTIONS(1250), 2, anon_sym_COMMA, anon_sym_RPAREN, - [50288] = 6, + [50813] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(725), 1, + ACTIONS(733), 1, anon_sym_RBRACK, - ACTIONS(727), 1, + ACTIONS(735), 1, anon_sym_DOT_DOT, - ACTIONS(2115), 1, + ACTIONS(2142), 1, anon_sym_COMMA, - STATE(825), 1, + STATE(841), 1, aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [50308] = 5, + [50833] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2119), 1, - anon_sym_DASH, - STATE(869), 1, - aux_sym_expression_bit_string_segment_options_repeat1, + ACTIONS(2128), 1, + sym__name, + ACTIONS(2144), 1, + anon_sym_RPAREN, + STATE(1153), 1, + sym_record_update_argument, + STATE(1280), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2117), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [50326] = 5, + [50853] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2124), 1, - anon_sym_PIPE, - STATE(885), 1, - aux_sym_case_clause_patterns_repeat1, + ACTIONS(2148), 1, + sym__decimal, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2122), 2, - anon_sym_if, - anon_sym_DASH_GT, - [50344] = 5, + ACTIONS(2146), 3, + sym__hex, + sym__octal, + sym__binary, + [50869] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2126), 1, - anon_sym_DQUOTE2, - STATE(905), 1, - aux_sym_string_repeat1, + ACTIONS(2152), 1, + anon_sym_COLON, + STATE(1112), 1, + sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2128), 2, - sym_quoted_content, - sym_escape_sequence, - [50362] = 6, + ACTIONS(2150), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [50887] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2130), 1, - anon_sym_RPAREN, - ACTIONS(2132), 1, - sym__name, - STATE(1145), 1, - sym_record_update_argument, - STATE(1274), 1, - sym_label, + ACTIONS(2156), 1, + anon_sym_DASH, + STATE(885), 1, + aux_sym_expression_bit_string_segment_options_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [50382] = 4, + ACTIONS(2154), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [50905] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2136), 1, - sym__decimal, + ACTIONS(298), 1, + sym__upname, + ACTIONS(2012), 1, + sym__name, + STATE(296), 1, + sym_constructor_name, + STATE(543), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2134), 3, - sym__hex, - sym__octal, - sym__binary, - [50398] = 5, + [50925] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2138), 1, + ACTIONS(2159), 1, anon_sym_DQUOTE2, - STATE(875), 1, + STATE(888), 1, aux_sym_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2140), 2, + ACTIONS(2161), 2, sym_quoted_content, sym_escape_sequence, - [50416] = 5, + [50943] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2142), 1, + ACTIONS(2163), 1, anon_sym_DQUOTE2, - STATE(862), 1, + STATE(921), 1, aux_sym_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2105), 2, + ACTIONS(2138), 2, sym_quoted_content, sym_escape_sequence, - [50434] = 6, + [50961] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(733), 1, + ACTIONS(725), 1, anon_sym_RBRACK, - ACTIONS(735), 1, + ACTIONS(727), 1, anon_sym_DOT_DOT, - ACTIONS(2144), 1, + ACTIONS(2165), 1, anon_sym_COMMA, - STATE(825), 1, + STATE(841), 1, aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [50454] = 5, + [50981] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2148), 1, - anon_sym_DASH, - STATE(877), 1, - aux_sym_pattern_bit_string_segment_options_repeat1, + ACTIONS(2152), 1, + anon_sym_COLON, + STATE(1103), 1, + sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2146), 2, + ACTIONS(2150), 2, anon_sym_COMMA, - anon_sym_GT_GT, - [50472] = 4, + anon_sym_RPAREN, + [50999] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2153), 1, + ACTIONS(2169), 1, sym__decimal, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2151), 3, + ACTIONS(2167), 3, sym__hex, sym__octal, sym__binary, - [50488] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2155), 1, - anon_sym_DASH, - STATE(889), 1, - aux_sym_constant_bit_string_segment_options_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1103), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [50506] = 6, + [51015] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2132), 1, + ACTIONS(515), 1, + sym__upname, + ACTIONS(2128), 1, sym__name, - STATE(1014), 1, - sym_record_update_argument, - STATE(1272), 1, - sym_record_update_arguments, - STATE(1274), 1, + STATE(97), 1, + sym_constructor_name, + STATE(543), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [50526] = 4, + [51035] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2159), 1, + ACTIONS(2173), 1, sym__decimal, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2157), 3, + ACTIONS(2171), 3, sym__hex, sym__octal, sym__binary, - [50542] = 5, + [51051] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2163), 1, - anon_sym_DASH, - STATE(908), 1, - aux_sym_expression_bit_string_segment_options_repeat1, + ACTIONS(2175), 1, + anon_sym_DQUOTE2, + STATE(895), 1, + aux_sym_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2161), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [50560] = 4, + ACTIONS(2177), 2, + sym_quoted_content, + sym_escape_sequence, + [51069] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2167), 1, - sym__decimal, + ACTIONS(2179), 1, + anon_sym_DQUOTE2, + STATE(921), 1, + aux_sym_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2165), 3, - sym__hex, - sym__octal, - sym__binary, - [50576] = 5, + ACTIONS(2138), 2, + sym_quoted_content, + sym_escape_sequence, + [51087] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2169), 1, + ACTIONS(2183), 1, anon_sym_DASH, - STATE(877), 1, - aux_sym_pattern_bit_string_segment_options_repeat1, + STATE(896), 1, + aux_sym_constant_bit_string_segment_options_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1072), 2, + ACTIONS(2181), 2, anon_sym_COMMA, anon_sym_GT_GT, - [50594] = 5, + [51105] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2186), 1, + anon_sym_COMMA, + STATE(897), 1, + aux_sym_record_pattern_arguments_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2189), 2, + anon_sym_RPAREN, + anon_sym_DOT_DOT, + [51123] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2171), 1, + ACTIONS(2193), 1, anon_sym_PIPE, - STATE(894), 1, + STATE(898), 1, aux_sym_case_clause_patterns_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1542), 2, + ACTIONS(2191), 2, anon_sym_if, anon_sym_DASH_GT, - [50612] = 5, + [51141] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2173), 1, - anon_sym_DQUOTE2, - STATE(863), 1, - aux_sym_string_repeat1, + ACTIONS(2152), 1, + anon_sym_COLON, + STATE(1154), 1, + sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2175), 2, - sym_quoted_content, - sym_escape_sequence, - [50630] = 5, + ACTIONS(2196), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [51159] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2177), 1, - anon_sym_DQUOTE2, - STATE(865), 1, - aux_sym_string_repeat1, + ACTIONS(2200), 1, + sym__decimal, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2179), 2, - sym_quoted_content, - sym_escape_sequence, - [50648] = 6, + ACTIONS(2198), 3, + sym__hex, + sym__octal, + sym__binary, + [51175] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2132), 1, - sym__name, - ACTIONS(2181), 1, - anon_sym_RPAREN, - STATE(1145), 1, - sym_record_update_argument, - STATE(1274), 1, - sym_label, + ACTIONS(2204), 1, + anon_sym_LPAREN, + STATE(1133), 1, + sym_data_constructor_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [50668] = 5, + ACTIONS(2202), 2, + anon_sym_RBRACE, + sym__upname, + [51193] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2185), 1, - anon_sym_DASH, - STATE(889), 1, - aux_sym_constant_bit_string_segment_options_repeat1, + ACTIONS(2208), 1, + anon_sym_PIPE, + STATE(907), 1, + aux_sym_case_clause_patterns_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2183), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [50686] = 5, + ACTIONS(2206), 2, + anon_sym_if, + anon_sym_DASH_GT, + [51211] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2113), 1, + ACTIONS(2152), 1, anon_sym_COLON, - STATE(1165), 1, + STATE(1099), 1, sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2188), 2, + ACTIONS(2210), 2, anon_sym_COMMA, anon_sym_RPAREN, - [50704] = 5, + [51229] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2190), 1, + ACTIONS(2212), 1, anon_sym_COMMA, - STATE(891), 1, - aux_sym_record_pattern_arguments_repeat1, + STATE(904), 1, + aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2193), 2, + ACTIONS(2215), 2, anon_sym_RPAREN, - anon_sym_DOT_DOT, - [50722] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2197), 1, - anon_sym_DASH, - STATE(884), 1, - aux_sym_pattern_bit_string_segment_options_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2195), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [50740] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(481), 1, - sym__name, - ACTIONS(1950), 1, - sym__discard_name, - STATE(934), 1, - sym_identifier, - STATE(935), 1, - sym_discard, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [50760] = 5, + anon_sym_RBRACK, + [51247] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2201), 1, - anon_sym_PIPE, - STATE(894), 1, - aux_sym_case_clause_patterns_repeat1, + ACTIONS(2219), 1, + anon_sym_DASH, + STATE(914), 1, + aux_sym_constant_bit_string_segment_options_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2199), 2, - anon_sym_if, - anon_sym_DASH_GT, - [50778] = 5, + ACTIONS(2217), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [51265] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2206), 1, - anon_sym_LPAREN, - STATE(1107), 1, - sym_data_constructor_arguments, + ACTIONS(741), 1, + anon_sym_RBRACK, + ACTIONS(743), 1, + anon_sym_DOT_DOT, + ACTIONS(2221), 1, + anon_sym_COMMA, + STATE(841), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2204), 2, - anon_sym_RBRACE, - sym__upname, - [50796] = 5, + [51285] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2208), 1, - anon_sym_COMMA, - STATE(896), 1, - aux_sym_constant_tuple_repeat1, + ACTIONS(2223), 1, + anon_sym_PIPE, + STATE(898), 1, + aux_sym_case_clause_patterns_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2211), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [50814] = 5, + ACTIONS(1552), 2, + anon_sym_if, + anon_sym_DASH_GT, + [51303] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2113), 1, + ACTIONS(2152), 1, anon_sym_COLON, - STATE(1144), 1, + STATE(1157), 1, sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2213), 2, + ACTIONS(2196), 2, anon_sym_COMMA, anon_sym_RPAREN, - [50832] = 5, + [51321] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2217), 1, + ACTIONS(2227), 1, anon_sym_DASH, - STATE(879), 1, - aux_sym_constant_bit_string_segment_options_repeat1, + STATE(909), 1, + aux_sym_pattern_bit_string_segment_options_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2215), 2, + ACTIONS(2225), 2, anon_sym_COMMA, anon_sym_GT_GT, - [50850] = 6, + [51339] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(703), 1, + ACTIONS(711), 1, anon_sym_RBRACK, - ACTIONS(705), 1, + ACTIONS(713), 1, anon_sym_DOT_DOT, - ACTIONS(2219), 1, + ACTIONS(2230), 1, anon_sym_COMMA, - STATE(825), 1, + STATE(841), 1, aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [50870] = 4, + [51359] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2223), 1, - sym__decimal, + ACTIONS(2128), 1, + sym__name, + ACTIONS(2232), 1, + anon_sym_RPAREN, + STATE(1153), 1, + sym_record_update_argument, + STATE(1280), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2221), 3, - sym__hex, - sym__octal, - sym__binary, - [50886] = 6, + [51379] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2132), 1, + ACTIONS(2128), 1, sym__name, STATE(1014), 1, sym_record_update_argument, - STATE(1274), 1, + STATE(1280), 1, sym_label, - STATE(1278), 1, + STATE(1295), 1, sym_record_update_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [50906] = 6, + [51399] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(721), 1, - anon_sym_RBRACK, - ACTIONS(723), 1, - anon_sym_DOT_DOT, - ACTIONS(2225), 1, + ACTIONS(2236), 1, + anon_sym_DASH, + STATE(876), 1, + aux_sym_pattern_bit_string_segment_options_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2234), 2, anon_sym_COMMA, - STATE(825), 1, - aux_sym_tuple_repeat1, + anon_sym_GT_GT, + [51417] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2238), 1, + anon_sym_DASH, + STATE(896), 1, + aux_sym_constant_bit_string_segment_options_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [50926] = 6, + ACTIONS(1079), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [51435] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2132), 1, + ACTIONS(2152), 1, + anon_sym_COLON, + STATE(1111), 1, + sym__type_annotation, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2210), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [51453] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2128), 1, sym__name, STATE(1014), 1, sym_record_update_argument, - STATE(1204), 1, + STATE(1229), 1, sym_record_update_arguments, - STATE(1274), 1, + STATE(1280), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [50946] = 5, + [51473] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2227), 1, + ACTIONS(2240), 1, anon_sym_DQUOTE2, - STATE(864), 1, + STATE(878), 1, aux_sym_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2229), 2, + ACTIONS(2242), 2, sym_quoted_content, sym_escape_sequence, - [50964] = 5, + [51491] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2231), 1, + ACTIONS(2244), 1, anon_sym_DQUOTE2, - STATE(862), 1, + STATE(921), 1, aux_sym_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2105), 2, + ACTIONS(2138), 2, sym_quoted_content, sym_escape_sequence, - [50982] = 5, + [51509] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2113), 1, - anon_sym_COLON, - STATE(1166), 1, - sym__type_annotation, + ACTIONS(2246), 1, + anon_sym_DQUOTE2, + STATE(918), 1, + aux_sym_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2188), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [51000] = 6, + ACTIONS(2248), 2, + sym_quoted_content, + sym_escape_sequence, + [51527] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2132), 1, + ACTIONS(2128), 1, sym__name, STATE(1014), 1, sym_record_update_argument, - STATE(1200), 1, + STATE(1221), 1, sym_record_update_arguments, - STATE(1274), 1, + STATE(1280), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51020] = 5, + [51547] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2233), 1, - anon_sym_DASH, - STATE(869), 1, - aux_sym_expression_bit_string_segment_options_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1088), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [51038] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2113), 1, - anon_sym_COLON, - STATE(1143), 1, - sym__type_annotation, + ACTIONS(2250), 1, + anon_sym_DQUOTE2, + STATE(921), 1, + aux_sym_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2111), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [51056] = 6, + ACTIONS(2252), 2, + sym_quoted_content, + sym_escape_sequence, + [51565] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1990), 1, + ACTIONS(2024), 1, sym__name, - ACTIONS(2235), 1, + ACTIONS(2255), 1, anon_sym_LPAREN, - STATE(1118), 1, + STATE(1190), 1, sym_anonymous_function_parameters, - STATE(1177), 1, + STATE(1192), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51076] = 5, + [51585] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2113), 1, - anon_sym_COLON, - STATE(1140), 1, - sym__type_annotation, + ACTIONS(2259), 1, + sym__decimal, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2213), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [51094] = 3, + ACTIONS(2257), 3, + sym__hex, + sym__octal, + sym__binary, + [51601] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2263), 1, + anon_sym_DASH, + STATE(925), 1, + aux_sym_expression_bit_string_segment_options_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2237), 3, + ACTIONS(2261), 2, anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_DASH, - [51107] = 3, + [51619] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2265), 1, + anon_sym_DASH, + STATE(885), 1, + aux_sym_expression_bit_string_segment_options_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2239), 3, + ACTIONS(1103), 2, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DOT_DOT, - [51120] = 5, + anon_sym_GT_GT, + [51637] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(391), 1, + ACTIONS(1817), 1, anon_sym_RPAREN, - ACTIONS(2241), 1, + ACTIONS(2267), 1, anon_sym_COMMA, - STATE(943), 1, - aux_sym_arguments_repeat1, + STATE(1011), 1, + aux_sym_type_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51137] = 5, + [51654] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2243), 1, - anon_sym_RBRACE, - ACTIONS(2245), 1, + ACTIONS(2269), 1, anon_sym_COMMA, - STATE(945), 1, - aux_sym_unqualified_imports_repeat1, + ACTIONS(2271), 1, + anon_sym_RPAREN, + STATE(1028), 1, + aux_sym_constant_record_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51154] = 4, + [51671] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2249), 1, - anon_sym_as, + ACTIONS(2273), 1, + anon_sym_COMMA, + ACTIONS(2276), 1, + anon_sym_RPAREN, + STATE(928), 1, + aux_sym_anonymous_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2247), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [51169] = 4, + [51688] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2251), 1, - anon_sym_as, + ACTIONS(2278), 1, + anon_sym_LPAREN, + ACTIONS(2280), 1, + anon_sym_DASH_GT, + STATE(1241), 1, + sym_constant_function_parameter_types, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2247), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [51184] = 5, + [51705] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2253), 1, + ACTIONS(1944), 1, + anon_sym_RPAREN, + ACTIONS(2282), 1, anon_sym_COMMA, - ACTIONS(2255), 1, - anon_sym_RBRACK, - STATE(951), 1, - aux_sym_constant_tuple_repeat1, + STATE(980), 1, + aux_sym_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51201] = 5, + [51722] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2257), 1, - anon_sym_LBRACE, - ACTIONS(2259), 1, - anon_sym_COMMA, - STATE(825), 1, - aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51218] = 4, + ACTIONS(2284), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [51735] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2263), 1, - anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2261), 2, + ACTIONS(2286), 3, anon_sym_COMMA, - anon_sym_GT_GT, - [51233] = 5, + anon_sym_RPAREN, + anon_sym_COLON, + [51748] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2265), 1, - anon_sym_EQ, - ACTIONS(2267), 1, - anon_sym_COLON, - STATE(1208), 1, - sym__constant_type_annotation, + ACTIONS(2288), 1, + anon_sym_COMMA, + ACTIONS(2290), 1, + anon_sym_RPAREN, + STATE(984), 1, + aux_sym_external_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51250] = 5, + [51765] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2269), 1, - anon_sym_COMMA, - ACTIONS(2271), 1, - anon_sym_GT_GT, - STATE(952), 1, - aux_sym__constant_bit_string_repeat1, + ACTIONS(2292), 1, + anon_sym_RPAREN, + ACTIONS(2294), 1, + sym__name, + STATE(1152), 1, + sym_type_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51267] = 3, + [51782] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2273), 3, + ACTIONS(2296), 3, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [51280] = 3, + anon_sym_GT_GT, + anon_sym_DASH, + [51795] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2298), 1, + anon_sym_if, + ACTIONS(2300), 1, + anon_sym_DASH_GT, + STATE(1251), 1, + sym_case_clause_guard, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2275), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [51293] = 5, + [51812] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2277), 1, - anon_sym_COMMA, - ACTIONS(2279), 1, + ACTIONS(2292), 1, anon_sym_RPAREN, - STATE(968), 1, - aux_sym_external_function_parameters_repeat1, + ACTIONS(2302), 1, + anon_sym_COMMA, + STATE(1004), 1, + aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51310] = 5, + [51829] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2281), 1, + ACTIONS(2304), 1, + anon_sym_COMMA, + ACTIONS(2306), 1, anon_sym_RPAREN, - ACTIONS(2283), 1, - sym__name, - STATE(1125), 1, - sym_type_parameter, + STATE(855), 1, + aux_sym_case_clause_pattern_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51327] = 5, + [51846] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2285), 1, + ACTIONS(2308), 1, anon_sym_COMMA, - ACTIONS(2287), 1, - anon_sym_RPAREN, - STATE(914), 1, - aux_sym_arguments_repeat1, + ACTIONS(2311), 1, + anon_sym_GT_GT, + STATE(939), 1, + aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51344] = 3, + [51863] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2313), 1, + anon_sym_COMMA, + ACTIONS(2316), 1, + anon_sym_GT_GT, + STATE(940), 1, + aux_sym__pattern_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2289), 3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DASH, - [51357] = 5, + [51880] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2281), 1, - anon_sym_RPAREN, - ACTIONS(2291), 1, - anon_sym_COMMA, - STATE(993), 1, - aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51374] = 5, + ACTIONS(2318), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [51893] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2293), 1, + ACTIONS(2320), 1, anon_sym_COMMA, - ACTIONS(2296), 1, + ACTIONS(2323), 1, anon_sym_RPAREN, - STATE(930), 1, - aux_sym_anonymous_function_parameters_repeat1, + STATE(942), 1, + aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51391] = 5, + [51910] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1956), 1, + ACTIONS(2032), 1, anon_sym_RPAREN, - ACTIONS(2298), 1, + ACTIONS(2325), 1, anon_sym_COMMA, - STATE(999), 1, - aux_sym_function_parameters_repeat1, + STATE(928), 1, + aux_sym_anonymous_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51408] = 5, + [51927] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2300), 1, - anon_sym_COMMA, - ACTIONS(2302), 1, - anon_sym_GT_GT, - STATE(1005), 1, - aux_sym__pattern_bit_string_repeat1, + ACTIONS(2327), 1, + anon_sym_LPAREN, + ACTIONS(2329), 1, + anon_sym_DASH_GT, + STATE(1310), 1, + sym_function_parameter_types, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51425] = 4, + [51944] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2306), 1, + ACTIONS(2331), 1, + anon_sym_EQ, + ACTIONS(2333), 1, anon_sym_COLON, + STATE(1315), 1, + sym__constant_type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2304), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [51440] = 3, + [51961] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2038), 1, + anon_sym_RBRACE, + ACTIONS(2335), 1, + anon_sym_COMMA, + STATE(1015), 1, + aux_sym_unqualified_imports_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2308), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [51453] = 3, + [51978] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2337), 1, + anon_sym_COMMA, + ACTIONS(2339), 1, + anon_sym_RPAREN, + STATE(1017), 1, + aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2310), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [51466] = 5, + [51995] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2312), 1, + ACTIONS(2341), 1, anon_sym_COMMA, - ACTIONS(2314), 1, + ACTIONS(2343), 1, anon_sym_RPAREN, - STATE(850), 1, - aux_sym_case_clause_pattern_repeat1, + STATE(930), 1, + aux_sym_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51483] = 5, + [52012] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2267), 1, - anon_sym_COLON, - ACTIONS(2316), 1, - anon_sym_EQ, - STATE(1291), 1, - sym__constant_type_annotation, + ACTIONS(1688), 1, + anon_sym_RBRACK, + ACTIONS(2345), 1, + anon_sym_COMMA, + STATE(904), 1, + aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51500] = 5, + [52029] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2318), 1, - anon_sym_COMMA, - ACTIONS(2321), 1, + ACTIONS(1642), 1, anon_sym_GT_GT, - STATE(938), 1, - aux_sym__pattern_bit_string_repeat1, + ACTIONS(2347), 1, + anon_sym_COMMA, + STATE(1026), 1, + aux_sym__constant_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51517] = 5, + [52046] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(785), 1, + ACTIONS(771), 1, anon_sym_RPAREN, - ACTIONS(2323), 1, + ACTIONS(2349), 1, anon_sym_COMMA, - STATE(825), 1, + STATE(841), 1, aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51534] = 4, + [52063] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2327), 1, + ACTIONS(2353), 1, anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2325), 2, + ACTIONS(2351), 2, anon_sym_COMMA, anon_sym_GT_GT, - [51549] = 3, + [52078] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2355), 1, + anon_sym_COMMA, + ACTIONS(2357), 1, + anon_sym_GT_GT, + STATE(1070), 1, + aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2329), 3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DASH, - [51562] = 5, + [52095] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2331), 1, + ACTIONS(2359), 1, anon_sym_COMMA, - ACTIONS(2333), 1, - anon_sym_GT_GT, - STATE(1052), 1, - aux_sym__expression_bit_string_repeat1, + ACTIONS(2361), 1, + anon_sym_RPAREN, + STATE(937), 1, + aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51579] = 5, + [52112] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2335), 1, + ACTIONS(2363), 1, anon_sym_COMMA, - ACTIONS(2338), 1, + ACTIONS(2365), 1, anon_sym_RPAREN, - STATE(943), 1, - aux_sym_arguments_repeat1, + STATE(938), 1, + aux_sym_case_clause_pattern_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51596] = 5, + [52129] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(409), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2367), 3, + anon_sym_COMMA, + anon_sym_EQ, anon_sym_RPAREN, - ACTIONS(2340), 1, + [52142] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2369), 1, anon_sym_COMMA, - STATE(943), 1, - aux_sym_arguments_repeat1, + ACTIONS(2371), 1, + anon_sym_RPAREN, + STATE(1031), 1, + aux_sym_constant_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51613] = 5, + [52159] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2019), 1, - anon_sym_RBRACE, - ACTIONS(2342), 1, + ACTIONS(407), 1, + anon_sym_RPAREN, + ACTIONS(2373), 1, anon_sym_COMMA, - STATE(1019), 1, - aux_sym_unqualified_imports_repeat1, + STATE(942), 1, + aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51630] = 5, + [52176] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2344), 1, + ACTIONS(2375), 1, anon_sym_COMMA, - ACTIONS(2347), 1, - anon_sym_GT_GT, - STATE(946), 1, - aux_sym__expression_bit_string_repeat1, + ACTIONS(2377), 1, + anon_sym_RPAREN, + STATE(1035), 1, + aux_sym_constant_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51647] = 5, + [52193] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(759), 1, + ACTIONS(789), 1, anon_sym_RPAREN, - ACTIONS(2349), 1, + ACTIONS(2379), 1, anon_sym_COMMA, - STATE(825), 1, + STATE(841), 1, aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51664] = 5, + [52210] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2351), 1, + ACTIONS(2381), 1, anon_sym_COMMA, - ACTIONS(2353), 1, + ACTIONS(2383), 1, anon_sym_RPAREN, - STATE(944), 1, + STATE(982), 1, aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51681] = 5, + [52227] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(976), 1, - anon_sym_GT_GT, - ACTIONS(2355), 1, - anon_sym_COMMA, - STATE(946), 1, - aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51698] = 5, + ACTIONS(2385), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [52240] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2357), 1, + ACTIONS(2387), 1, anon_sym_COMMA, - ACTIONS(2359), 1, + ACTIONS(2389), 1, anon_sym_RPAREN, - STATE(1020), 1, - aux_sym_constant_tuple_repeat1, + STATE(958), 1, + aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51715] = 5, + [52257] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1684), 1, - anon_sym_RBRACK, - ACTIONS(2361), 1, + ACTIONS(799), 1, + anon_sym_GT_GT, + ACTIONS(2391), 1, anon_sym_COMMA, - STATE(896), 1, - aux_sym_constant_tuple_repeat1, + STATE(939), 1, + aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51732] = 5, + [52274] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1642), 1, + ACTIONS(1586), 1, anon_sym_GT_GT, - ACTIONS(2363), 1, + ACTIONS(2393), 1, anon_sym_COMMA, - STATE(1035), 1, - aux_sym__constant_bit_string_repeat1, + STATE(940), 1, + aux_sym__pattern_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51749] = 5, + [52291] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2365), 1, - anon_sym_LPAREN, - ACTIONS(2367), 1, - anon_sym_DASH_GT, - STATE(1258), 1, - sym_function_parameter_types, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51766] = 5, + ACTIONS(2395), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [52304] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2113), 1, - anon_sym_COLON, - ACTIONS(2369), 1, - anon_sym_EQ, - STATE(1243), 1, - sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51783] = 5, + ACTIONS(2397), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [52317] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2371), 1, + ACTIONS(2399), 1, anon_sym_COMMA, - ACTIONS(2373), 1, - anon_sym_GT_GT, - STATE(949), 1, - aux_sym__expression_bit_string_repeat1, + ACTIONS(2401), 1, + anon_sym_RPAREN, + STATE(1045), 1, + aux_sym_constant_type_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51800] = 4, + [52334] = 5, ACTIONS(3), 1, sym_module_comment, - STATE(1228), 1, - sym_target, + ACTIONS(2403), 1, + anon_sym_COMMA, + ACTIONS(2405), 1, + anon_sym_RBRACK, + STATE(949), 1, + aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2375), 2, - anon_sym_erlang, - anon_sym_javascript, - [51815] = 5, + [52351] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2377), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2407), 3, anon_sym_COMMA, - ACTIONS(2379), 1, anon_sym_RPAREN, - STATE(929), 1, - aux_sym_type_parameters_repeat1, + anon_sym_DOT_DOT, + [52364] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2152), 1, + anon_sym_COLON, + ACTIONS(2409), 1, + anon_sym_EQ, + STATE(1208), 1, + sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51832] = 5, + [52381] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2381), 1, + ACTIONS(2411), 1, anon_sym_COMMA, - ACTIONS(2383), 1, - anon_sym_RPAREN, - STATE(1036), 1, - aux_sym_constant_record_arguments_repeat1, + ACTIONS(2413), 1, + anon_sym_GT_GT, + STATE(964), 1, + aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51849] = 3, + [52398] = 4, ACTIONS(3), 1, sym_module_comment, + STATE(1249), 1, + sym_target, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2385), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [51862] = 5, + ACTIONS(2415), 2, + anon_sym_erlang, + anon_sym_javascript, + [52413] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2387), 1, + ACTIONS(2417), 1, anon_sym_COMMA, - ACTIONS(2389), 1, + ACTIONS(2419), 1, anon_sym_RPAREN, - STATE(1046), 1, - aux_sym_constant_tuple_type_repeat1, + STATE(1061), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51879] = 5, + [52430] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2004), 1, - anon_sym_RPAREN, - ACTIONS(2391), 1, + ACTIONS(2333), 1, + anon_sym_COLON, + ACTIONS(2421), 1, + anon_sym_EQ, + STATE(1228), 1, + sym__constant_type_annotation, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [52447] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2423), 1, anon_sym_COMMA, - STATE(930), 1, - aux_sym_anonymous_function_parameters_repeat1, + ACTIONS(2425), 1, + anon_sym_RPAREN, + STATE(1066), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51896] = 3, + [52464] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2393), 3, + ACTIONS(2154), 3, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [51909] = 5, + anon_sym_GT_GT, + anon_sym_DASH, + [52477] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2395), 1, + ACTIONS(2427), 1, anon_sym_COMMA, - ACTIONS(2397), 1, + ACTIONS(2429), 1, anon_sym_RPAREN, - STATE(1048), 1, - aux_sym_constant_type_arguments_repeat1, + STATE(926), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [52494] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2152), 1, + anon_sym_COLON, + ACTIONS(2431), 1, + anon_sym_EQ, + STATE(1258), 1, + sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51926] = 5, + [52511] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2399), 1, + ACTIONS(2433), 1, anon_sym_COMMA, - ACTIONS(2401), 1, + ACTIONS(2436), 1, anon_sym_RPAREN, - STATE(931), 1, + STATE(980), 1, aux_sym_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51943] = 5, + [52528] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2403), 1, - anon_sym_COMMA, - ACTIONS(2405), 1, + ACTIONS(429), 1, anon_sym_RPAREN, - STATE(936), 1, - aux_sym_case_clause_pattern_repeat1, + ACTIONS(2438), 1, + anon_sym_COMMA, + STATE(942), 1, + aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51960] = 5, + [52545] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2113), 1, - anon_sym_COLON, - ACTIONS(2407), 1, - anon_sym_EQ, - STATE(1285), 1, - sym__type_annotation, + ACTIONS(437), 1, + anon_sym_RPAREN, + ACTIONS(2440), 1, + anon_sym_COMMA, + STATE(942), 1, + aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51977] = 3, + [52562] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2117), 3, + ACTIONS(2442), 3, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_DASH, - [51990] = 5, + [52575] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1813), 1, + ACTIONS(1825), 1, anon_sym_RPAREN, - ACTIONS(2409), 1, + ACTIONS(2444), 1, anon_sym_COMMA, - STATE(1051), 1, + STATE(1068), 1, aux_sym_external_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52007] = 5, + [52592] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2132), 1, + ACTIONS(2128), 1, sym__name, - STATE(1145), 1, + STATE(1153), 1, sym_record_update_argument, - STATE(1274), 1, + STATE(1280), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52024] = 5, + [52609] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(429), 1, + ACTIONS(2152), 1, + anon_sym_COLON, + ACTIONS(2446), 1, + anon_sym_EQ, + STATE(1233), 1, + sym__type_annotation, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [52626] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2448), 1, + anon_sym_LBRACE, + ACTIONS(2450), 1, + anon_sym_COMMA, + STATE(841), 1, + aux_sym_tuple_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [52643] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(769), 1, anon_sym_RPAREN, - ACTIONS(2411), 1, + ACTIONS(2452), 1, anon_sym_COMMA, - STATE(943), 1, - aux_sym_arguments_repeat1, + STATE(841), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52041] = 5, + [52660] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2113), 1, - anon_sym_COLON, - ACTIONS(2413), 1, - anon_sym_EQ, - STATE(1273), 1, - sym__type_annotation, + ACTIONS(2454), 1, + anon_sym_COMMA, + ACTIONS(2456), 1, + anon_sym_RPAREN, + STATE(981), 1, + aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52058] = 3, + [52677] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2415), 3, + ACTIONS(2458), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, - [52071] = 3, + [52690] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(811), 1, + anon_sym_GT_GT, + ACTIONS(2460), 1, + anon_sym_COMMA, + STATE(939), 1, + aux_sym__expression_bit_string_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [52707] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2417), 3, + ACTIONS(2462), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, - [52084] = 3, + [52720] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2183), 3, + ACTIONS(2181), 3, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_DASH, - [52097] = 5, + [52733] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(771), 1, - anon_sym_RPAREN, - ACTIONS(2419), 1, + ACTIONS(2464), 1, anon_sym_COMMA, - STATE(825), 1, - aux_sym_tuple_repeat1, + ACTIONS(2466), 1, + anon_sym_RPAREN, + STATE(1067), 1, + aux_sym_data_constructor_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52114] = 3, + [52750] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2152), 1, + anon_sym_COLON, + ACTIONS(2468), 1, + anon_sym_EQ, + STATE(1239), 1, + sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2421), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [52127] = 5, + [52767] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2423), 1, + ACTIONS(2470), 1, anon_sym_COMMA, - ACTIONS(2426), 1, + ACTIONS(2473), 1, anon_sym_RPAREN, - STATE(977), 1, + STATE(996), 1, aux_sym_record_update_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52144] = 5, + [52784] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2428), 1, + ACTIONS(2475), 1, anon_sym_COMMA, - ACTIONS(2430), 1, - anon_sym_RPAREN, - STATE(970), 1, - aux_sym_arguments_repeat1, + ACTIONS(2477), 1, + anon_sym_GT_GT, + STATE(991), 1, + aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52161] = 5, + [52801] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(473), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - STATE(452), 1, + STATE(495), 1, sym_external_function_body, - STATE(1126), 1, + STATE(1094), 1, sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52178] = 3, + [52818] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2479), 1, + anon_sym_RBRACE, + ACTIONS(2481), 1, + anon_sym_COMMA, + STATE(946), 1, + aux_sym_unqualified_imports_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2432), 3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DASH, - [52191] = 5, + [52835] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2434), 1, - anon_sym_COMMA, - ACTIONS(2437), 1, + ACTIONS(2294), 1, + sym__name, + ACTIONS(2483), 1, anon_sym_RPAREN, - STATE(981), 1, - aux_sym_type_arguments_repeat1, + STATE(1152), 1, + sym_type_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52208] = 5, + [52852] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(958), 1, - anon_sym_GT_GT, - ACTIONS(2439), 1, + ACTIONS(2485), 1, anon_sym_COMMA, - STATE(946), 1, - aux_sym__expression_bit_string_repeat1, + ACTIONS(2487), 1, + anon_sym_GT_GT, + STATE(965), 1, + aux_sym__pattern_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52225] = 5, + [52869] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2441), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2489), 3, anon_sym_COMMA, - ACTIONS(2443), 1, - anon_sym_RPAREN, - STATE(1042), 1, - aux_sym_data_constructor_arguments_repeat1, + anon_sym_GT_GT, + anon_sym_DASH, + [52882] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2493), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52242] = 5, + ACTIONS(2491), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [52897] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2445), 1, + ACTIONS(2495), 1, anon_sym_COMMA, - ACTIONS(2448), 1, + ACTIONS(2498), 1, anon_sym_RPAREN, - STATE(984), 1, - aux_sym_tuple_type_repeat1, + STATE(1004), 1, + aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52259] = 5, + [52914] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2450), 1, + ACTIONS(2500), 1, anon_sym_COMMA, - ACTIONS(2452), 1, + ACTIONS(2503), 1, anon_sym_RPAREN, - STATE(1041), 1, - aux_sym_tuple_type_repeat1, + STATE(1005), 1, + aux_sym_data_constructor_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52276] = 5, + [52931] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2113), 1, - anon_sym_COLON, - ACTIONS(2454), 1, - anon_sym_EQ, - STATE(1232), 1, - sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52293] = 5, + ACTIONS(2189), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DOT_DOT, + [52944] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2456), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2505), 3, anon_sym_COMMA, - ACTIONS(2459), 1, anon_sym_RPAREN, - STATE(987), 1, - aux_sym_data_constructor_arguments_repeat1, + anon_sym_DOT_DOT, + [52957] = 3, + ACTIONS(3), 1, + sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52310] = 5, + ACTIONS(2191), 3, + anon_sym_if, + anon_sym_DASH_GT, + anon_sym_PIPE, + [52970] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2461), 1, - anon_sym_COMMA, - ACTIONS(2463), 1, - anon_sym_GT_GT, - STATE(982), 1, - aux_sym__expression_bit_string_repeat1, + ACTIONS(505), 1, + anon_sym_DQUOTE, + STATE(803), 1, + sym_external_function_body, + STATE(1135), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52327] = 5, + [52987] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2465), 1, + ACTIONS(2507), 1, anon_sym_COMMA, - ACTIONS(2467), 1, - anon_sym_RPAREN, - STATE(1029), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(2509), 1, + anon_sym_GT_GT, + STATE(950), 1, + aux_sym__constant_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52344] = 5, + [53004] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2469), 1, + ACTIONS(2511), 1, anon_sym_COMMA, - ACTIONS(2471), 1, + ACTIONS(2514), 1, anon_sym_RPAREN, - STATE(1027), 1, + STATE(1011), 1, aux_sym_type_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52361] = 5, + [53021] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2283), 1, - sym__name, - ACTIONS(2473), 1, - anon_sym_RPAREN, - STATE(1125), 1, - sym_type_parameter, + ACTIONS(2518), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52378] = 5, + ACTIONS(2516), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [53036] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2475), 1, - anon_sym_COMMA, - ACTIONS(2478), 1, + ACTIONS(2294), 1, + sym__name, + ACTIONS(2520), 1, anon_sym_RPAREN, - STATE(992), 1, - aux_sym_constant_type_arguments_repeat1, + STATE(954), 1, + sym_type_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52395] = 5, + [53053] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2480), 1, + ACTIONS(2522), 1, anon_sym_COMMA, - ACTIONS(2483), 1, + ACTIONS(2524), 1, anon_sym_RPAREN, - STATE(993), 1, - aux_sym_type_parameters_repeat1, + STATE(1047), 1, + aux_sym_record_update_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52412] = 3, + [53070] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2526), 1, + anon_sym_RBRACE, + ACTIONS(2528), 1, + anon_sym_COMMA, + STATE(1015), 1, + aux_sym_unqualified_imports_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2485), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [52425] = 5, + [53087] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2487), 1, + ACTIONS(2531), 1, anon_sym_COMMA, - ACTIONS(2490), 1, + ACTIONS(2534), 1, anon_sym_RPAREN, - STATE(995), 1, - aux_sym_constant_tuple_type_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [52442] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(473), 1, - anon_sym_DQUOTE, - STATE(797), 1, - sym_external_function_body, - STATE(1113), 1, - sym_string, + STATE(1016), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52459] = 5, + [53104] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2492), 1, - anon_sym_if, - ACTIONS(2494), 1, - anon_sym_DASH_GT, - STATE(1203), 1, - sym_case_clause_guard, + ACTIONS(1690), 1, + anon_sym_RPAREN, + ACTIONS(2536), 1, + anon_sym_COMMA, + STATE(904), 1, + aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52476] = 3, + [53121] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2496), 3, + ACTIONS(2215), 3, anon_sym_COMMA, - anon_sym_EQ, anon_sym_RPAREN, - [52489] = 5, + anon_sym_RBRACK, + [53134] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2498), 1, - anon_sym_COMMA, - ACTIONS(2501), 1, - anon_sym_RPAREN, - STATE(999), 1, - aux_sym_function_parameters_repeat1, + ACTIONS(505), 1, + anon_sym_DQUOTE, + STATE(808), 1, + sym_external_function_body, + STATE(1135), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52506] = 3, + [53151] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2538), 1, + anon_sym_COMMA, + ACTIONS(2541), 1, + anon_sym_RPAREN, + STATE(1020), 1, + aux_sym_constant_type_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2193), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DOT_DOT, - [52519] = 5, + [53168] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2503), 1, + ACTIONS(2543), 1, anon_sym_COMMA, - ACTIONS(2505), 1, + ACTIONS(2545), 1, anon_sym_RPAREN, - STATE(961), 1, + STATE(943), 1, aux_sym_anonymous_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52536] = 5, + [53185] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2507), 1, - anon_sym_COMMA, - ACTIONS(2510), 1, + ACTIONS(1821), 1, anon_sym_RPAREN, - STATE(1002), 1, - aux_sym_constant_record_arguments_repeat1, + ACTIONS(2547), 1, + anon_sym_COMMA, + STATE(1011), 1, + aux_sym_type_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52553] = 3, + [53202] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2199), 3, - anon_sym_if, - anon_sym_DASH_GT, - anon_sym_PIPE, - [52566] = 5, + ACTIONS(2549), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [53215] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2130), 1, + ACTIONS(1839), 1, anon_sym_RPAREN, - ACTIONS(2512), 1, + ACTIONS(2551), 1, anon_sym_COMMA, - STATE(977), 1, - aux_sym_record_update_arguments_repeat1, + STATE(1016), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52583] = 5, + [53232] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1586), 1, - anon_sym_GT_GT, - ACTIONS(2514), 1, + ACTIONS(2553), 1, anon_sym_COMMA, - STATE(938), 1, - aux_sym__pattern_bit_string_repeat1, + ACTIONS(2556), 1, + anon_sym_RPAREN, + STATE(1025), 1, + aux_sym_constant_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52600] = 5, + [53249] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1797), 1, - anon_sym_RPAREN, - ACTIONS(2516), 1, + ACTIONS(2558), 1, anon_sym_COMMA, - STATE(981), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(2561), 1, + anon_sym_GT_GT, + STATE(1026), 1, + aux_sym__constant_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52617] = 5, + [53266] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1827), 1, + ACTIONS(1596), 1, anon_sym_RPAREN, - ACTIONS(2518), 1, + ACTIONS(2563), 1, anon_sym_COMMA, - STATE(984), 1, - aux_sym_tuple_type_repeat1, + STATE(1040), 1, + aux_sym_constant_record_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52634] = 3, + [53283] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1598), 1, + anon_sym_RPAREN, + ACTIONS(2565), 1, + anon_sym_COMMA, + STATE(1040), 1, + aux_sym_constant_record_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2520), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DOT_DOT, - [52647] = 5, + [53300] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2267), 1, + ACTIONS(2333), 1, anon_sym_COLON, - ACTIONS(2522), 1, + ACTIONS(2567), 1, anon_sym_EQ, - STATE(1283), 1, + STATE(1302), 1, sym__constant_type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52664] = 5, + [53317] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(473), 1, - anon_sym_DQUOTE, - STATE(793), 1, - sym_external_function_body, - STATE(1113), 1, - sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52681] = 3, + ACTIONS(2569), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [53330] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1885), 1, + anon_sym_RPAREN, + ACTIONS(2571), 1, + anon_sym_COMMA, + STATE(1025), 1, + aux_sym_constant_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2146), 3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DASH, - [52694] = 5, + [53347] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2524), 1, + ACTIONS(2573), 1, anon_sym_COMMA, - ACTIONS(2526), 1, + ACTIONS(2575), 1, anon_sym_GT_GT, - STATE(1031), 1, + STATE(1051), 1, aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52711] = 5, + [53364] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1626), 1, - anon_sym_RPAREN, - ACTIONS(2528), 1, - anon_sym_COMMA, - STATE(1002), 1, - aux_sym_constant_record_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52728] = 5, + ACTIONS(2577), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [53377] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2530), 1, - anon_sym_COMMA, - ACTIONS(2532), 1, + ACTIONS(1672), 1, anon_sym_RPAREN, - STATE(1004), 1, - aux_sym_record_update_arguments_repeat1, + ACTIONS(2579), 1, + anon_sym_COMMA, + STATE(904), 1, + aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52745] = 5, + [53394] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1664), 1, + ACTIONS(1887), 1, anon_sym_RPAREN, - ACTIONS(2534), 1, + ACTIONS(2581), 1, anon_sym_COMMA, - STATE(896), 1, - aux_sym_constant_tuple_repeat1, + STATE(1025), 1, + aux_sym_constant_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52762] = 5, + [53411] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2113), 1, + ACTIONS(2152), 1, anon_sym_COLON, - ACTIONS(2536), 1, + ACTIONS(2583), 1, anon_sym_EQ, - STATE(1286), 1, + STATE(1303), 1, sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52779] = 3, + [53428] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2538), 3, + ACTIONS(2585), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, - [52792] = 5, + [53441] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2113), 1, + ACTIONS(2152), 1, anon_sym_COLON, - ACTIONS(2540), 1, + ACTIONS(2587), 1, anon_sym_EQ, - STATE(1294), 1, + STATE(1305), 1, sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52809] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2542), 1, - anon_sym_RBRACE, - ACTIONS(2544), 1, - anon_sym_COMMA, - STATE(1019), 1, - aux_sym_unqualified_imports_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [52826] = 5, + [53458] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1660), 1, + ACTIONS(2294), 1, + sym__name, + ACTIONS(2589), 1, anon_sym_RPAREN, - ACTIONS(2547), 1, - anon_sym_COMMA, - STATE(896), 1, - aux_sym_constant_tuple_repeat1, + STATE(1152), 1, + sym_type_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52843] = 5, + [53475] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2283), 1, - sym__name, - ACTIONS(2549), 1, + ACTIONS(2591), 1, + anon_sym_COMMA, + ACTIONS(2594), 1, anon_sym_RPAREN, - STATE(1125), 1, - sym_type_parameter, + STATE(1040), 1, + aux_sym_constant_record_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52860] = 5, + [53492] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2551), 1, + ACTIONS(2596), 1, anon_sym_COMMA, - ACTIONS(2553), 1, + ACTIONS(2598), 1, anon_sym_RPAREN, - STATE(1006), 1, + STATE(1022), 1, aux_sym_type_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52877] = 5, + [53509] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2555), 1, - anon_sym_COMMA, - ACTIONS(2557), 1, - anon_sym_RPAREN, - STATE(1007), 1, - aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52894] = 3, + ACTIONS(2600), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [53522] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2604), 1, + anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2211), 3, + ACTIONS(2602), 2, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [52907] = 5, + [53537] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2559), 1, + ACTIONS(2606), 1, anon_sym_COMMA, - ACTIONS(2561), 1, + ACTIONS(2608), 1, anon_sym_RPAREN, - STATE(1013), 1, - aux_sym_constant_record_arguments_repeat1, + STATE(1024), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52924] = 5, + [53554] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1630), 1, - anon_sym_GT_GT, - ACTIONS(2563), 1, + ACTIONS(1847), 1, + anon_sym_RPAREN, + ACTIONS(2610), 1, anon_sym_COMMA, - STATE(1035), 1, - aux_sym__constant_bit_string_repeat1, + STATE(1020), 1, + aux_sym_constant_type_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52941] = 5, + [53571] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1811), 1, - anon_sym_RPAREN, - ACTIONS(2565), 1, + ACTIONS(2612), 1, anon_sym_COMMA, - STATE(981), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(2614), 1, + anon_sym_RPAREN, + STATE(1027), 1, + aux_sym_constant_record_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52958] = 5, + [53588] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2283), 1, - sym__name, - ACTIONS(2567), 1, + ACTIONS(2232), 1, anon_sym_RPAREN, - STATE(957), 1, - sym_type_parameter, + ACTIONS(2616), 1, + anon_sym_COMMA, + STATE(996), 1, + aux_sym_record_update_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52975] = 5, + [53605] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1831), 1, - anon_sym_RPAREN, - ACTIONS(2569), 1, - anon_sym_COMMA, - STATE(984), 1, - aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52992] = 5, + ACTIONS(2618), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [53618] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1708), 1, - anon_sym_RBRACK, - ACTIONS(2571), 1, + ACTIONS(2620), 1, + anon_sym_as, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2602), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(896), 1, - aux_sym_constant_tuple_repeat1, + [53633] = 3, + ACTIONS(3), 1, + sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53009] = 5, + ACTIONS(2622), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [53646] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(889), 1, + ACTIONS(943), 1, anon_sym_GT_GT, - ACTIONS(2573), 1, + ACTIONS(2624), 1, anon_sym_COMMA, - STATE(946), 1, + STATE(939), 1, aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53026] = 5, + [53663] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2283), 1, + ACTIONS(2294), 1, sym__name, - ACTIONS(2575), 1, + ACTIONS(2626), 1, anon_sym_RPAREN, - STATE(1050), 1, + STATE(1072), 1, sym_type_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53043] = 5, + [53680] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2577), 1, + ACTIONS(1624), 1, + anon_sym_GT_GT, + ACTIONS(2628), 1, anon_sym_COMMA, - ACTIONS(2579), 1, - anon_sym_RPAREN, - STATE(1015), 1, - aux_sym_constant_tuple_repeat1, + STATE(1026), 1, + aux_sym__constant_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53060] = 5, + [53697] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2031), 1, - anon_sym_RBRACE, - ACTIONS(2581), 1, - anon_sym_COMMA, - STATE(1019), 1, - aux_sym_unqualified_imports_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53077] = 5, + ACTIONS(2630), 3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DASH, + [53710] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2583), 1, + ACTIONS(1652), 1, + anon_sym_RBRACK, + ACTIONS(2632), 1, anon_sym_COMMA, - ACTIONS(2586), 1, - anon_sym_GT_GT, - STATE(1035), 1, - aux_sym__constant_bit_string_repeat1, + STATE(904), 1, + aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53094] = 5, + [53727] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1624), 1, - anon_sym_RPAREN, - ACTIONS(2588), 1, - anon_sym_COMMA, - STATE(1002), 1, - aux_sym_constant_record_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53111] = 5, + ACTIONS(2634), 3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DASH, + [53740] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2267), 1, + ACTIONS(2333), 1, anon_sym_COLON, - ACTIONS(2590), 1, + ACTIONS(2636), 1, anon_sym_EQ, - STATE(1299), 1, + STATE(1211), 1, sym__constant_type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53128] = 5, + [53757] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2592), 1, + ACTIONS(2638), 1, anon_sym_COMMA, - ACTIONS(2594), 1, + ACTIONS(2640), 1, anon_sym_RPAREN, - STATE(993), 1, - aux_sym_type_parameters_repeat1, + STATE(1034), 1, + aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53145] = 5, + [53774] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2596), 1, + ACTIONS(2642), 1, anon_sym_COMMA, - ACTIONS(2598), 1, + ACTIONS(2644), 1, anon_sym_RPAREN, - STATE(1057), 1, + STATE(1076), 1, aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53162] = 5, + [53791] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2283), 1, - sym__name, - ACTIONS(2594), 1, - anon_sym_RPAREN, - STATE(1125), 1, - sym_type_parameter, + ACTIONS(2049), 1, + anon_sym_RBRACE, + ACTIONS(2646), 1, + anon_sym_COMMA, + STATE(1015), 1, + aux_sym_unqualified_imports_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53179] = 5, + [53808] = 5, ACTIONS(3), 1, sym_module_comment, ACTIONS(1833), 1, anon_sym_RPAREN, - ACTIONS(2600), 1, + ACTIONS(2648), 1, anon_sym_COMMA, - STATE(984), 1, + STATE(1016), 1, aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53196] = 5, + [53825] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1793), 1, - anon_sym_RPAREN, - ACTIONS(2602), 1, + ACTIONS(2650), 1, anon_sym_COMMA, - STATE(987), 1, - aux_sym_data_constructor_arguments_repeat1, + ACTIONS(2652), 1, + anon_sym_RPAREN, + STATE(1004), 1, + aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53213] = 3, + [53842] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2604), 3, + ACTIONS(2225), 3, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [53226] = 5, + anon_sym_GT_GT, + anon_sym_DASH, + [53855] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(787), 1, + ACTIONS(745), 1, anon_sym_RPAREN, - ACTIONS(2606), 1, + ACTIONS(2654), 1, anon_sym_COMMA, - STATE(825), 1, + STATE(841), 1, aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53243] = 5, + [53872] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(473), 1, - anon_sym_DQUOTE, - STATE(483), 1, - sym_external_function_body, - STATE(1126), 1, - sym_string, + ACTIONS(2294), 1, + sym__name, + ACTIONS(2652), 1, + anon_sym_RPAREN, + STATE(1152), 1, + sym_type_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53260] = 5, + [53889] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1911), 1, + ACTIONS(1829), 1, anon_sym_RPAREN, - ACTIONS(2608), 1, + ACTIONS(2656), 1, anon_sym_COMMA, - STATE(995), 1, - aux_sym_constant_tuple_type_repeat1, + STATE(1016), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53277] = 3, + [53906] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1768), 1, + anon_sym_RPAREN, + ACTIONS(2658), 1, + anon_sym_COMMA, + STATE(1005), 1, + aux_sym_data_constructor_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2610), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [53290] = 5, + [53923] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1909), 1, - anon_sym_RPAREN, - ACTIONS(2612), 1, + ACTIONS(2660), 1, anon_sym_COMMA, - STATE(992), 1, - aux_sym_constant_type_arguments_repeat1, + ACTIONS(2663), 1, + anon_sym_RPAREN, + STATE(1068), 1, + aux_sym_external_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53307] = 5, + [53940] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2365), 1, + ACTIONS(2327), 1, anon_sym_LPAREN, - ACTIONS(2614), 1, + ACTIONS(2665), 1, anon_sym_DASH_GT, - STATE(1296), 1, + STATE(1318), 1, sym_function_parameter_types, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53324] = 5, + [53957] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2616), 1, + ACTIONS(925), 1, + anon_sym_GT_GT, + ACTIONS(2667), 1, anon_sym_COMMA, - ACTIONS(2618), 1, - anon_sym_RPAREN, - STATE(1038), 1, - aux_sym_type_parameters_repeat1, + STATE(939), 1, + aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53341] = 5, + [53974] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2620), 1, + ACTIONS(2669), 1, anon_sym_COMMA, - ACTIONS(2623), 1, - anon_sym_RPAREN, - STATE(1051), 1, - aux_sym_external_function_parameters_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [53358] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(904), 1, + ACTIONS(2671), 1, anon_sym_GT_GT, - ACTIONS(2625), 1, - anon_sym_COMMA, - STATE(946), 1, - aux_sym__expression_bit_string_repeat1, + STATE(1053), 1, + aux_sym__constant_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53375] = 3, + [53991] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2673), 1, + anon_sym_COMMA, + ACTIONS(2675), 1, + anon_sym_RPAREN, + STATE(1062), 1, + aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2627), 3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DASH, - [53388] = 5, + [54008] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2629), 1, + ACTIONS(2677), 1, anon_sym_COMMA, - ACTIONS(2631), 1, - anon_sym_GT_GT, - STATE(1026), 1, - aux_sym__constant_bit_string_repeat1, + ACTIONS(2679), 1, + anon_sym_RBRACK, + STATE(1055), 1, + aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53405] = 5, + [54025] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(2635), 1, - anon_sym_RBRACK, - STATE(1030), 1, - aux_sym_constant_tuple_repeat1, + ACTIONS(505), 1, + anon_sym_DQUOTE, + STATE(445), 1, + sym_external_function_body, + STATE(1094), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53422] = 5, + [54042] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2637), 1, + ACTIONS(2681), 1, anon_sym_RBRACE, - ACTIONS(2639), 1, + ACTIONS(2683), 1, anon_sym_COMMA, - STATE(1034), 1, + STATE(1060), 1, aux_sym_unqualified_imports_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53439] = 5, + [54059] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(413), 1, + ACTIONS(395), 1, anon_sym_RPAREN, - ACTIONS(2641), 1, + ACTIONS(2685), 1, anon_sym_COMMA, - STATE(943), 1, + STATE(942), 1, aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53456] = 4, + [54076] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1843), 1, - sym__upname, - STATE(442), 1, - sym_type_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53470] = 4, + ACTIONS(2687), 2, + anon_sym_RBRACE, + sym__upname, + [54088] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2643), 1, - anon_sym_LBRACE, - ACTIONS(2645), 1, - anon_sym_DASH_GT, + ACTIONS(2294), 1, + sym__name, + STATE(1152), 1, + sym_type_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53484] = 4, + [54102] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1246), 1, - sym_external_function_parameters, + ACTIONS(2024), 1, + sym__name, + STATE(1081), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53498] = 3, + [54116] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2024), 1, + sym__name, + STATE(1085), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2649), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [53510] = 3, + [54130] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2689), 1, + anon_sym_LPAREN, + STATE(1309), 1, + sym_external_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2651), 2, - anon_sym_RBRACE, - sym__upname, - [53522] = 4, + [54144] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2653), 1, - anon_sym_LBRACE, - ACTIONS(2655), 1, - anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53536] = 4, + ACTIONS(2691), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [54156] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1990), 1, - sym__name, - STATE(1066), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53550] = 4, + ACTIONS(2693), 2, + anon_sym_LBRACE, + anon_sym_DASH_GT, + [54168] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1990), 1, - sym__name, - STATE(1067), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53564] = 4, + ACTIONS(2663), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [54180] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2647), 1, + ACTIONS(2689), 1, anon_sym_LPAREN, - STATE(1186), 1, + STATE(1308), 1, sym_external_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53578] = 4, + [54194] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1287), 1, - sym_external_function_parameters, + ACTIONS(2695), 1, + sym__name, + STATE(396), 1, + sym_module, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53592] = 4, + [54208] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2657), 1, - sym__name, - STATE(391), 1, - sym_module, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53606] = 4, + ACTIONS(2697), 2, + anon_sym_LBRACE, + anon_sym_DASH_GT, + [54220] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2659), 1, - anon_sym_LBRACE, - ACTIONS(2661), 1, - anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53620] = 4, + ACTIONS(2699), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [54232] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2235), 1, - anon_sym_LPAREN, - STATE(1059), 1, - sym_anonymous_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53634] = 4, + ACTIONS(2276), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [54244] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1990), 1, - sym__name, - STATE(937), 1, - sym_identifier, + ACTIONS(2255), 1, + anon_sym_LPAREN, + STATE(1101), 1, + sym_anonymous_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53648] = 4, + [54258] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1990), 1, + ACTIONS(2024), 1, sym__name, - STATE(771), 1, + STATE(945), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53662] = 4, + [54272] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2235), 1, + ACTIONS(2255), 1, anon_sym_LPAREN, - STATE(1118), 1, + STATE(1190), 1, sym_anonymous_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53676] = 3, + [54286] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2586), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [53688] = 4, + ACTIONS(2701), 2, + anon_sym_LBRACE, + anon_sym_DASH_GT, + [54298] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2663), 1, - anon_sym_type, - ACTIONS(2665), 1, - anon_sym_fn, + ACTIONS(47), 1, + anon_sym_DQUOTE, + STATE(479), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53702] = 4, + [54312] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2667), 1, + ACTIONS(2024), 1, sym__name, - STATE(771), 1, + STATE(1119), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53716] = 3, + [54326] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2703), 1, + anon_sym_LBRACE, + ACTIONS(2705), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2669), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [53728] = 4, + [54340] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1750), 1, - sym__upname, - STATE(714), 1, - sym_type_identifier, + ACTIONS(2255), 1, + anon_sym_LPAREN, + STATE(1110), 1, + sym_anonymous_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53742] = 4, + [54354] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1990), 1, - sym__name, - STATE(1102), 1, - sym_identifier, + ACTIONS(2707), 1, + anon_sym_fn, + ACTIONS(2709), 1, + anon_sym_type, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53756] = 4, + [54368] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2235), 1, - anon_sym_LPAREN, - STATE(1095), 1, - sym_anonymous_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53770] = 4, + ACTIONS(2711), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [54380] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2671), 1, + ACTIONS(2713), 1, + sym__name, + STATE(782), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [54394] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2715), 1, anon_sym_LBRACE, - STATE(779), 1, - sym_unqualified_imports, + ACTIONS(2717), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53784] = 4, + [54408] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(319), 1, - sym__upname, - STATE(294), 1, - sym_constructor_name, + ACTIONS(2719), 1, + anon_sym_LBRACE, + STATE(786), 1, + sym_unqualified_imports, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53798] = 4, + [54422] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2283), 1, - sym__name, - STATE(1125), 1, - sym_type_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53812] = 3, + ACTIONS(2721), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [54434] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2673), 2, - anon_sym_LBRACE, - anon_sym_DASH_GT, - [53824] = 4, + ACTIONS(2594), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [54446] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2132), 1, + ACTIONS(2128), 1, sym__name, - STATE(132), 1, + STATE(131), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53838] = 3, + [54460] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2723), 1, + sym__name, + STATE(476), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2675), 2, - anon_sym_LBRACE, - anon_sym_DASH_GT, - [53850] = 4, + [54474] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2677), 1, - sym__name, - STATE(490), 1, - sym_identifier, + ACTIONS(2725), 1, + anon_sym_fn, + ACTIONS(2727), 1, + anon_sym_type, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53864] = 3, + [54488] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2679), 2, - anon_sym_RBRACE, + ACTIONS(2729), 2, anon_sym_COMMA, - [53876] = 4, + anon_sym_RPAREN, + [54500] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2681), 1, + ACTIONS(2731), 1, anon_sym_LBRACE, - STATE(403), 1, + STATE(400), 1, sym_unqualified_imports, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53890] = 4, + [54514] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2677), 1, - sym__name, - STATE(486), 1, - sym_identifier, + ACTIONS(2733), 1, + anon_sym_LBRACE, + ACTIONS(2735), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53904] = 4, + [54528] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1236), 1, - sym__upname, - STATE(633), 1, - sym_constructor_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53918] = 4, + ACTIONS(2711), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [54540] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2683), 1, - anon_sym_type, - ACTIONS(2685), 1, - anon_sym_fn, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53932] = 3, + ACTIONS(2721), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [54552] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(298), 1, + sym__upname, + STATE(296), 1, + sym_constructor_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2542), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [53944] = 3, + [54566] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2737), 1, + anon_sym_LBRACE, + ACTIONS(2739), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [54580] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2623), 2, + ACTIONS(2556), 2, anon_sym_COMMA, anon_sym_RPAREN, - [53956] = 4, + [54592] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2687), 1, + ACTIONS(2741), 1, anon_sym_LBRACE, - ACTIONS(2689), 1, + ACTIONS(2743), 1, anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53970] = 4, + [54606] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2691), 1, - anon_sym_LBRACE, - ACTIONS(2693), 1, - anon_sym_EQ, + ACTIONS(2689), 1, + anon_sym_LPAREN, + STATE(1225), 1, + sym_external_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53984] = 4, + [54620] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1990), 1, - sym__name, - STATE(1160), 1, - sym_identifier, + ACTIONS(2745), 1, + anon_sym_LPAREN, + STATE(149), 1, + sym_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53998] = 4, + [54634] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2695), 1, - anon_sym_LBRACE, - ACTIONS(2697), 1, - anon_sym_EQ, + ACTIONS(2747), 1, + anon_sym_LPAREN, + STATE(1159), 1, + sym_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54012] = 4, + [54648] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2699), 1, + ACTIONS(2747), 1, anon_sym_LPAREN, - STATE(1170), 1, + STATE(1164), 1, sym_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54026] = 3, + [54662] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2701), 2, + ACTIONS(2561), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [54038] = 4, + anon_sym_GT_GT, + [54674] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2703), 1, - anon_sym_LPAREN, - STATE(146), 1, - sym_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54052] = 4, + ACTIONS(2541), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [54686] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2699), 1, - anon_sym_LPAREN, - STATE(1151), 1, - sym_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54066] = 4, + ACTIONS(2749), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [54698] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2699), 1, - anon_sym_LPAREN, - STATE(1152), 1, - sym_function_parameters, + ACTIONS(2751), 1, + sym__name, + STATE(779), 1, + sym_module, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54080] = 4, + [54712] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2705), 1, + ACTIONS(2753), 1, anon_sym_LBRACE, - ACTIONS(2707), 1, + ACTIONS(2755), 1, anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54094] = 4, + [54726] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2709), 1, - anon_sym_DOT, - ACTIONS(2711), 1, - anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54108] = 3, + ACTIONS(2534), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [54738] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1776), 1, + sym__upname, + STATE(721), 1, + sym_type_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2510), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [54120] = 3, + [54752] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2713), 2, + ACTIONS(2757), 2, anon_sym_RBRACE, + anon_sym_COMMA, + [54764] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(851), 1, sym__upname, - [54132] = 3, + STATE(315), 1, + sym_constructor_name, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [54778] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1638), 2, + ACTIONS(2759), 2, anon_sym_COMMA, anon_sym_RPAREN, - [54144] = 3, + [54790] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2715), 2, + ACTIONS(2526), 2, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_RPAREN, - [54156] = 3, + [54802] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2717), 2, - anon_sym_LBRACE, - anon_sym_DASH_GT, - [54168] = 3, + ACTIONS(2311), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [54814] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2719), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [54180] = 4, + ACTIONS(2761), 2, + anon_sym_RBRACE, + sym__upname, + [54826] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(473), 1, - anon_sym_DQUOTE, - STATE(1188), 1, - sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54194] = 4, + ACTIONS(2763), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [54838] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(307), 1, + ACTIONS(286), 1, anon_sym_DQUOTE, - STATE(783), 1, + STATE(805), 1, sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54208] = 3, + [54852] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2296), 2, + ACTIONS(2514), 2, anon_sym_COMMA, anon_sym_RPAREN, - [54220] = 4, + [54864] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2721), 1, - sym__name, - STATE(774), 1, - sym_module, + ACTIONS(505), 1, + anon_sym_DQUOTE, + STATE(1207), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54234] = 3, + [54878] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2501), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [54246] = 3, + ACTIONS(2765), 2, + anon_sym_RBRACE, + sym__upname, + [54890] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2767), 1, + anon_sym_DOT, + ACTIONS(2769), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2723), 2, - anon_sym_LBRACE, - anon_sym_DASH_GT, - [54258] = 4, + [54904] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2725), 1, + ACTIONS(2771), 1, anon_sym_LBRACE, - ACTIONS(2727), 1, - anon_sym_DASH_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [54272] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(841), 1, - sym__upname, - STATE(302), 1, - sym_constructor_name, + ACTIONS(2773), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54286] = 3, + [54918] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2126), 1, + sym__name, + STATE(19), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2729), 2, - anon_sym_LBRACE, - anon_sym_DASH_GT, - [54298] = 4, + [54932] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(57), 1, sym__upname, - STATE(19), 1, + STATE(17), 1, sym_constructor_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54312] = 4, + [54946] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2731), 1, - sym__name, - STATE(18), 1, - sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54326] = 3, + ACTIONS(1686), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [54958] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2478), 2, + ACTIONS(2503), 2, anon_sym_COMMA, anon_sym_RPAREN, - [54338] = 4, + [54970] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1990), 1, - sym__name, - STATE(1103), 1, - sym_identifier, + ACTIONS(2775), 1, + anon_sym_LPAREN, + STATE(14), 1, + sym_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54352] = 3, + [54984] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(505), 1, + anon_sym_DQUOTE, + STATE(1240), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2483), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [54364] = 4, + [54998] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(47), 1, - anon_sym_DQUOTE, - STATE(478), 1, - sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54378] = 3, + ACTIONS(2777), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [55010] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2733), 2, - anon_sym_LBRACE, - anon_sym_DASH_GT, - [54390] = 4, + ACTIONS(2316), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [55022] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2735), 1, + ACTIONS(2779), 1, anon_sym_LPAREN, - STATE(368), 1, + STATE(363), 1, sym_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54404] = 3, + [55036] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2737), 2, + ACTIONS(2781), 2, anon_sym_COMMA, anon_sym_RPAREN, - [54416] = 3, + [55048] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2024), 1, + sym__name, + STATE(782), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2739), 2, - anon_sym_RBRACE, - sym__upname, - [54428] = 4, + [55062] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2741), 1, - anon_sym_LPAREN, - STATE(27), 1, - sym_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54442] = 3, + ACTIONS(2498), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [55074] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2459), 2, + ACTIONS(2473), 2, anon_sym_COMMA, anon_sym_RPAREN, - [54454] = 3, + [55086] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2743), 2, + ACTIONS(2783), 2, anon_sym_COMMA, anon_sym_RPAREN, - [54466] = 3, + [55098] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2255), 1, + anon_sym_LPAREN, + STATE(1125), 1, + sym_anonymous_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2448), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [54478] = 4, + [55112] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2745), 1, + ACTIONS(2012), 1, sym__name, - STATE(364), 1, + STATE(365), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54492] = 4, + [55126] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(473), 1, - anon_sym_DQUOTE, - STATE(1234), 1, - sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54506] = 4, + ACTIONS(2783), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [55138] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1990), 1, - sym__name, - STATE(1099), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54520] = 3, + ACTIONS(2785), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [55150] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2787), 1, + anon_sym_LBRACE, + ACTIONS(2789), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2747), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [54532] = 3, + [55164] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2791), 1, + anon_sym_fn, + ACTIONS(2793), 1, + anon_sym_type, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2749), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [54544] = 3, + [55178] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2751), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [54556] = 4, + ACTIONS(2795), 2, + anon_sym_RBRACE, + sym__upname, + [55190] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2753), 1, - anon_sym_type, - ACTIONS(2755), 1, - anon_sym_fn, + ACTIONS(2024), 1, + sym__name, + STATE(1193), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54570] = 3, + [55204] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2437), 2, + ACTIONS(2323), 2, anon_sym_COMMA, anon_sym_RPAREN, - [54582] = 3, + [55216] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2797), 1, + anon_sym_LBRACE, + ACTIONS(2799), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2747), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [54594] = 3, + [55230] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2751), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [54606] = 3, + ACTIONS(2801), 2, + anon_sym_LBRACE, + anon_sym_DASH_GT, + [55242] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2426), 2, + ACTIONS(1678), 2, anon_sym_COMMA, anon_sym_RPAREN, - [54618] = 4, + [55254] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1990), 1, + ACTIONS(2024), 1, sym__name, - STATE(921), 1, + STATE(975), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54632] = 4, + [55268] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2014), 1, + ACTIONS(2024), 1, sym__name, - STATE(804), 1, + STATE(1057), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54646] = 3, + [55282] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(505), 1, + anon_sym_DQUOTE, + STATE(1304), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2757), 2, - anon_sym_RBRACE, - sym__upname, - [54658] = 3, + [55296] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2759), 2, + ACTIONS(2803), 2, anon_sym_RBRACE, sym__upname, - [54670] = 4, + [55308] = 4, ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2235), 1, - anon_sym_LPAREN, - STATE(1104), 1, - sym_anonymous_function_parameters, + sym_module_comment, + ACTIONS(2040), 1, + sym__name, + STATE(822), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54684] = 4, + [55322] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2761), 1, - anon_sym_LBRACE, - ACTIONS(2763), 1, - anon_sym_DASH_GT, + ACTIONS(2024), 1, + sym__name, + STATE(1128), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54698] = 4, + [55336] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2765), 1, - anon_sym_LBRACE, - ACTIONS(2767), 1, - anon_sym_DASH_GT, + ACTIONS(1776), 1, + sym__upname, + STATE(1128), 1, + sym_type_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54712] = 4, + [55350] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(473), 1, + ACTIONS(505), 1, anon_sym_DQUOTE, - STATE(1277), 1, + STATE(1238), 1, sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54726] = 3, + [55364] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2805), 1, + anon_sym_LBRACE, + ACTIONS(2807), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2769), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [54738] = 3, + [55378] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2321), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [54750] = 4, + ACTIONS(2809), 2, + anon_sym_LBRACE, + anon_sym_DASH_GT, + [55390] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1990), 1, - sym__name, - STATE(1037), 1, - sym_identifier, + ACTIONS(2689), 1, + anon_sym_LPAREN, + STATE(1244), 1, + sym_external_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54764] = 4, + [55404] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(473), 1, - anon_sym_DQUOTE, - STATE(1290), 1, - sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54778] = 4, + ACTIONS(2436), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [55416] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2771), 1, - anon_sym_type, - ACTIONS(2773), 1, - anon_sym_fn, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54792] = 4, + ACTIONS(2811), 2, + anon_sym_LBRACE, + anon_sym_DASH_GT, + [55428] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1990), 1, - sym__name, - STATE(1009), 1, - sym_identifier, + ACTIONS(2813), 1, + anon_sym_LBRACE, + ACTIONS(2815), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54806] = 4, + [55442] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1202), 1, - sym_external_function_parameters, + ACTIONS(2817), 1, + anon_sym_fn, + ACTIONS(2819), 1, + anon_sym_type, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54820] = 3, + [55456] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2024), 1, + sym__name, + STATE(1029), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2775), 2, - anon_sym_LBRACE, - anon_sym_DASH_GT, - [54832] = 3, + [55470] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2723), 1, + sym__name, + STATE(446), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2777), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [54844] = 4, + [55484] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2779), 1, - anon_sym_COMMA, - ACTIONS(2781), 1, - anon_sym_RPAREN, + ACTIONS(2024), 1, + sym__name, + STATE(1120), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54858] = 3, + [55498] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2783), 2, - anon_sym_LBRACE, - anon_sym_DASH_GT, - [54870] = 3, + ACTIONS(2821), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [55510] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2785), 2, + ACTIONS(2823), 2, anon_sym_COMMA, anon_sym_RPAREN, - [54882] = 3, + [55522] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2785), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [54894] = 3, + ACTIONS(2825), 2, + anon_sym_LBRACE, + anon_sym_DASH_GT, + [55534] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1901), 1, + sym__upname, + STATE(419), 1, + sym_type_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2338), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [54906] = 4, + [55548] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2787), 1, + ACTIONS(2827), 1, anon_sym_LPAREN, - STATE(309), 1, + STATE(307), 1, sym_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54920] = 3, + [55562] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2829), 1, + anon_sym_LBRACE, + ACTIONS(2831), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2789), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [54932] = 4, + [55576] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2791), 1, - anon_sym_LBRACE, - ACTIONS(2793), 1, - anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54946] = 3, + ACTIONS(2833), 2, + anon_sym_LBRACE, + anon_sym_DASH_GT, + [55588] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2747), 1, + anon_sym_LPAREN, + STATE(1116), 1, + sym_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2795), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [54958] = 4, + [55602] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(483), 1, - sym__upname, - STATE(92), 1, - sym_constructor_name, + ACTIONS(2747), 1, + anon_sym_LPAREN, + STATE(1180), 1, + sym_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54972] = 4, + [55616] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2014), 1, + ACTIONS(2024), 1, sym__name, - STATE(782), 1, + STATE(1177), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54986] = 3, + [55630] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1234), 1, + sym__upname, + STATE(637), 1, + sym_constructor_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2797), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [54998] = 4, + [55644] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2799), 1, + ACTIONS(2835), 1, sym__name, - STATE(315), 1, + STATE(316), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55012] = 4, + [55658] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1990), 1, + ACTIONS(2024), 1, sym__name, - STATE(1060), 1, + STATE(1117), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55026] = 4, + [55672] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2699), 1, - anon_sym_LPAREN, - STATE(1184), 1, - sym_function_parameters, + ACTIONS(2837), 1, + anon_sym_LBRACE, + ACTIONS(2839), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55040] = 3, + [55686] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1634), 2, + ACTIONS(2841), 2, anon_sym_COMMA, anon_sym_RPAREN, - [55052] = 3, + [55698] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2843), 1, + anon_sym_COMMA, + ACTIONS(2845), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2490), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [55064] = 4, + [55712] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2801), 1, + ACTIONS(2847), 1, anon_sym_LBRACE, - ACTIONS(2803), 1, + ACTIONS(2849), 1, anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55078] = 4, + [55726] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1750), 1, - sym__upname, - STATE(1088), 1, - sym_type_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55092] = 4, + ACTIONS(2851), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [55738] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2805), 1, - anon_sym_LBRACE, - ACTIONS(2807), 1, - anon_sym_EQ, + ACTIONS(515), 1, + sym__upname, + STATE(97), 1, + sym_constructor_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55106] = 3, + [55752] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2040), 1, + sym__name, + STATE(807), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2347), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [55118] = 4, + [55766] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2809), 1, + ACTIONS(2853), 1, anon_sym_LBRACE, - ACTIONS(2811), 1, - anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55132] = 4, + [55777] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1990), 1, - sym__name, - STATE(1088), 1, - sym_identifier, + ACTIONS(2767), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55146] = 3, + [55788] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2813), 1, - anon_sym_DASH_GT, + ACTIONS(2855), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55157] = 3, + [55799] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2815), 1, - anon_sym_DASH_GT, + ACTIONS(2857), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55168] = 3, + [55810] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2817), 1, - anon_sym_RPAREN, + ACTIONS(2859), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55179] = 3, + [55821] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2709), 1, - anon_sym_DOT, + ACTIONS(2861), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55190] = 3, + [55832] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2819), 1, - anon_sym_RBRACE, + ACTIONS(2863), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55201] = 3, + [55843] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2821), 1, - anon_sym_DOT, + ACTIONS(2865), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55212] = 3, + [55854] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2823), 1, + ACTIONS(2867), 1, anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55223] = 3, + [55865] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2825), 1, - anon_sym_LPAREN, + ACTIONS(2869), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55234] = 3, + [55876] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2827), 1, - anon_sym_LPAREN, + ACTIONS(2871), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55245] = 3, + [55887] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2829), 1, - anon_sym_DOT, + ACTIONS(2102), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55256] = 3, + [55898] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2831), 1, - anon_sym_DOT, + ACTIONS(2873), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55267] = 3, + [55909] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2833), 1, - anon_sym_RBRACK, + ACTIONS(2875), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55278] = 3, + [55920] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2835), 1, - anon_sym_LBRACE, + ACTIONS(2877), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55289] = 3, + [55931] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2837), 1, - anon_sym_LPAREN, + ACTIONS(2879), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55300] = 3, + [55942] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2839), 1, + ACTIONS(2881), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55311] = 3, + [55953] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2841), 1, + ACTIONS(2883), 1, anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55322] = 3, + [55964] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2843), 1, - anon_sym_DASH_GT, + ACTIONS(2885), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55333] = 3, + [55975] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2845), 1, + ACTIONS(2887), 1, anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55344] = 3, + [55986] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2847), 1, - anon_sym_RPAREN, + ACTIONS(2889), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55355] = 3, + [55997] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2849), 1, - anon_sym_RBRACK, + ACTIONS(2891), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55366] = 3, + [56008] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2851), 1, + ACTIONS(2893), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55377] = 3, + [56019] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2853), 1, - anon_sym_RPAREN, + ACTIONS(2895), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55388] = 3, + [56030] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2855), 1, - anon_sym_EQ, + ACTIONS(2897), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55399] = 3, + [56041] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1252), 1, - anon_sym_RPAREN, + ACTIONS(2899), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55410] = 3, + [56052] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2857), 1, - anon_sym_RPAREN, + ACTIONS(2901), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55421] = 3, + [56063] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2859), 1, + ACTIONS(2903), 1, anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55432] = 3, + [56074] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2861), 1, - anon_sym_DOT, + ACTIONS(2905), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55443] = 3, + [56085] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2863), 1, - anon_sym_RBRACK, + ACTIONS(2907), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55454] = 3, + [56096] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2865), 1, - anon_sym_DASH_GT, + ACTIONS(2909), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55465] = 3, + [56107] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2867), 1, + ACTIONS(2911), 1, anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55476] = 3, + [56118] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2869), 1, - anon_sym_EQ, + ACTIONS(2913), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55487] = 3, + [56129] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2871), 1, - anon_sym_DASH_GT, + ACTIONS(2915), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55498] = 3, + [56140] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2873), 1, - anon_sym_LPAREN, + ACTIONS(2917), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55509] = 3, + [56151] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2875), 1, - anon_sym_RBRACE, + ACTIONS(2919), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55520] = 3, + [56162] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2877), 1, - anon_sym_RBRACK, + ACTIONS(2921), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55531] = 3, + [56173] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2879), 1, - anon_sym_RBRACK, + ACTIONS(2923), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55542] = 3, + [56184] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2881), 1, + ACTIONS(2925), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55553] = 3, + [56195] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2883), 1, - anon_sym_LPAREN, + ACTIONS(2927), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55564] = 3, + [56206] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2885), 1, + ACTIONS(2929), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55575] = 3, + [56217] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2887), 1, - anon_sym_LBRACE, + ACTIONS(2931), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55586] = 3, + [56228] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2889), 1, - anon_sym_EQ, + ACTIONS(2933), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55597] = 3, + [56239] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2891), 1, - anon_sym_LBRACE, + ACTIONS(2935), 1, + anon_sym_type, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55608] = 3, + [56250] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2893), 1, + ACTIONS(2937), 1, anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55619] = 3, + [56261] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2895), 1, + ACTIONS(2939), 1, anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55630] = 3, + [56272] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2897), 1, - anon_sym_DOT, + ACTIONS(2941), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55641] = 3, + [56283] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2899), 1, + ACTIONS(1163), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55652] = 3, + [56294] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2901), 1, - anon_sym_EQ, + ACTIONS(2943), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55663] = 3, + [56305] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2903), 1, + ACTIONS(2945), 1, anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55674] = 3, + [56316] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2905), 1, - anon_sym_RPAREN, + ACTIONS(2947), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55685] = 3, + [56327] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2907), 1, + ACTIONS(2949), 1, anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55696] = 3, + [56338] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2909), 1, + ACTIONS(2951), 1, anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55707] = 3, + [56349] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2911), 1, - anon_sym_DASH_GT, + ACTIONS(2953), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55718] = 3, + [56360] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2913), 1, - anon_sym_COLON, + ACTIONS(2955), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55729] = 3, + [56371] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2915), 1, + ACTIONS(2957), 1, anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55740] = 3, + [56382] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2917), 1, + ACTIONS(2959), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55751] = 3, + [56393] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2919), 1, + ACTIONS(2961), 1, anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55762] = 3, + [56404] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2921), 1, - anon_sym_DOT, + ACTIONS(2963), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55773] = 3, + [56415] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2923), 1, - anon_sym_EQ, + ACTIONS(2965), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55784] = 3, + [56426] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2925), 1, - anon_sym_LPAREN, + ACTIONS(2967), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55795] = 3, + [56437] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2927), 1, + ACTIONS(2969), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55806] = 3, + [56448] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2929), 1, - anon_sym_DASH_GT, + ACTIONS(2971), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55817] = 3, + [56459] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2931), 1, - anon_sym_DOT, + ACTIONS(2973), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55828] = 3, + [56470] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2933), 1, + ACTIONS(2975), 1, ts_builtin_sym_end, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55839] = 3, + [56481] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2935), 1, - anon_sym_DASH_GT, + ACTIONS(2977), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55850] = 3, + [56492] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2937), 1, - anon_sym_RBRACE, + ACTIONS(1185), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55861] = 3, + [56503] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2939), 1, + ACTIONS(2979), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55872] = 3, + [56514] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2941), 1, + ACTIONS(2981), 1, anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55883] = 3, + [56525] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2943), 1, - anon_sym_RBRACK, + ACTIONS(2983), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55894] = 3, + [56536] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2050), 1, + ACTIONS(2080), 1, anon_sym_type, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55905] = 3, + [56547] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2945), 1, - sym__name, + ACTIONS(2985), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55916] = 3, + [56558] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2947), 1, - anon_sym_COLON, + ACTIONS(2987), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55927] = 3, + [56569] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1212), 1, + ACTIONS(2989), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55938] = 3, + [56580] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2949), 1, + ACTIONS(2991), 1, anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55949] = 3, + [56591] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2951), 1, + ACTIONS(2993), 1, anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55960] = 3, + [56602] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2076), 1, - anon_sym_RPAREN, + ACTIONS(2995), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55971] = 3, + [56613] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2082), 1, + ACTIONS(2110), 1, anon_sym_type, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55982] = 3, + [56624] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2953), 1, - anon_sym_LBRACE, + ACTIONS(2997), 1, + sym__name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55993] = 3, + [56635] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2955), 1, - anon_sym_DOT, + ACTIONS(2999), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56004] = 3, + [56646] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2957), 1, + ACTIONS(3001), 1, anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56015] = 3, + [56657] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2959), 1, + ACTIONS(3003), 1, anon_sym_type, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56026] = 3, + [56668] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2961), 1, - anon_sym_RBRACE, + ACTIONS(3005), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56037] = 3, + [56679] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2963), 1, + ACTIONS(3007), 1, anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56048] = 3, + [56690] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2965), 1, - anon_sym_EQ, + ACTIONS(3009), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56059] = 3, + [56701] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2967), 1, - anon_sym_RPAREN, + ACTIONS(3011), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56070] = 3, + [56712] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2969), 1, - anon_sym_DASH_GT, + ACTIONS(3013), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56081] = 3, + [56723] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2971), 1, - anon_sym_RPAREN, + ACTIONS(3015), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56092] = 3, + [56734] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2973), 1, - anon_sym_RPAREN, + ACTIONS(3017), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56103] = 3, + [56745] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2975), 1, - anon_sym_EQ, + ACTIONS(3019), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56114] = 3, + [56756] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2977), 1, - anon_sym_COLON, + ACTIONS(3021), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56125] = 3, + [56767] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2979), 1, + ACTIONS(3023), 1, anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56136] = 3, + [56778] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2981), 1, + ACTIONS(3025), 1, anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56147] = 3, + [56789] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2983), 1, - anon_sym_RPAREN, + ACTIONS(3027), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56158] = 3, + [56800] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2985), 1, - anon_sym_RPAREN, + ACTIONS(3029), 1, + sym__name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56169] = 3, + [56811] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2987), 1, + ACTIONS(3031), 1, anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56180] = 3, + [56822] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2989), 1, + ACTIONS(3033), 1, anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56191] = 3, + [56833] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2991), 1, - anon_sym_RBRACE, + ACTIONS(3035), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56202] = 3, + [56844] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2993), 1, - sym__name, + ACTIONS(3037), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56213] = 3, + [56855] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2995), 1, - anon_sym_EQ, + ACTIONS(3039), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56224] = 3, + [56866] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2997), 1, - anon_sym_LPAREN, + ACTIONS(3041), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56235] = 3, + [56877] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2999), 1, - anon_sym_EQ, + ACTIONS(3043), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56246] = 3, + [56888] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3001), 1, + ACTIONS(3045), 1, anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56257] = 3, + [56899] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3003), 1, + ACTIONS(3047), 1, anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56268] = 3, + [56910] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3005), 1, - anon_sym_type, + ACTIONS(3049), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56279] = 3, + [56921] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3007), 1, - anon_sym_DOT, + ACTIONS(3051), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56290] = 3, + [56932] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3009), 1, - anon_sym_RPAREN, + ACTIONS(3053), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56301] = 3, + [56943] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3011), 1, + ACTIONS(3055), 1, anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56312] = 3, + [56954] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3013), 1, + ACTIONS(3057), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56323] = 3, + [56965] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3015), 1, + ACTIONS(3059), 1, anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56334] = 3, + [56976] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3017), 1, + ACTIONS(3061), 1, anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56345] = 3, + [56987] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3019), 1, - anon_sym_COLON, + ACTIONS(3063), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56356] = 3, + [56998] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3021), 1, - anon_sym_DASH_GT, + ACTIONS(3065), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56367] = 3, + [57009] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3023), 1, - anon_sym_RBRACE, + ACTIONS(3067), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56378] = 3, + [57020] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3025), 1, - anon_sym_RBRACE, + ACTIONS(3069), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56389] = 3, + [57031] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3027), 1, - anon_sym_EQ, + ACTIONS(3071), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56400] = 3, + [57042] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3029), 1, - anon_sym_DASH_GT, + ACTIONS(3073), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, @@ -50673,14 +51227,14 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(5)] = 128, [SMALL_STATE(6)] = 256, [SMALL_STATE(7)] = 324, - [SMALL_STATE(8)] = 387, - [SMALL_STATE(9)] = 454, - [SMALL_STATE(10)] = 517, - [SMALL_STATE(11)] = 580, - [SMALL_STATE(12)] = 705, - [SMALL_STATE(13)] = 768, + [SMALL_STATE(8)] = 449, + [SMALL_STATE(9)] = 516, + [SMALL_STATE(10)] = 579, + [SMALL_STATE(11)] = 642, + [SMALL_STATE(12)] = 767, + [SMALL_STATE(13)] = 830, [SMALL_STATE(14)] = 893, - [SMALL_STATE(15)] = 1018, + [SMALL_STATE(15)] = 956, [SMALL_STATE(16)] = 1081, [SMALL_STATE(17)] = 1144, [SMALL_STATE(18)] = 1207, @@ -50691,1281 +51245,1302 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(23)] = 1522, [SMALL_STATE(24)] = 1585, [SMALL_STATE(25)] = 1648, - [SMALL_STATE(26)] = 1715, - [SMALL_STATE(27)] = 1778, - [SMALL_STATE(28)] = 1841, + [SMALL_STATE(26)] = 1773, + [SMALL_STATE(27)] = 1836, + [SMALL_STATE(28)] = 1903, [SMALL_STATE(29)] = 1966, - [SMALL_STATE(30)] = 2088, - [SMALL_STATE(31)] = 2150, - [SMALL_STATE(32)] = 2214, - [SMALL_STATE(33)] = 2336, + [SMALL_STATE(30)] = 2030, + [SMALL_STATE(31)] = 2152, + [SMALL_STATE(32)] = 2216, + [SMALL_STATE(33)] = 2278, [SMALL_STATE(34)] = 2400, - [SMALL_STATE(35)] = 2462, - [SMALL_STATE(36)] = 2524, - [SMALL_STATE(37)] = 2646, - [SMALL_STATE(38)] = 2708, - [SMALL_STATE(39)] = 2830, - [SMALL_STATE(40)] = 2952, + [SMALL_STATE(35)] = 2464, + [SMALL_STATE(36)] = 2586, + [SMALL_STATE(37)] = 2708, + [SMALL_STATE(38)] = 2770, + [SMALL_STATE(39)] = 2832, + [SMALL_STATE(40)] = 2954, [SMALL_STATE(41)] = 3016, [SMALL_STATE(42)] = 3138, - [SMALL_STATE(43)] = 3260, + [SMALL_STATE(43)] = 3200, [SMALL_STATE(44)] = 3322, - [SMALL_STATE(45)] = 3444, - [SMALL_STATE(46)] = 3508, - [SMALL_STATE(47)] = 3570, + [SMALL_STATE(45)] = 3384, + [SMALL_STATE(46)] = 3506, + [SMALL_STATE(47)] = 3628, [SMALL_STATE(48)] = 3692, [SMALL_STATE(49)] = 3814, [SMALL_STATE(50)] = 3876, [SMALL_STATE(51)] = 3998, [SMALL_STATE(52)] = 4120, [SMALL_STATE(53)] = 4182, - [SMALL_STATE(54)] = 4243, - [SMALL_STATE(55)] = 4362, - [SMALL_STATE(56)] = 4439, - [SMALL_STATE(57)] = 4558, - [SMALL_STATE(58)] = 4619, - [SMALL_STATE(59)] = 4738, - [SMALL_STATE(60)] = 4799, - [SMALL_STATE(61)] = 4918, - [SMALL_STATE(62)] = 5037, - [SMALL_STATE(63)] = 5116, - [SMALL_STATE(64)] = 5235, - [SMALL_STATE(65)] = 5296, - [SMALL_STATE(66)] = 5361, - [SMALL_STATE(67)] = 5480, - [SMALL_STATE(68)] = 5561, - [SMALL_STATE(69)] = 5680, - [SMALL_STATE(70)] = 5799, - [SMALL_STATE(71)] = 5918, - [SMALL_STATE(72)] = 6037, - [SMALL_STATE(73)] = 6098, - [SMALL_STATE(74)] = 6159, - [SMALL_STATE(75)] = 6278, - [SMALL_STATE(76)] = 6339, - [SMALL_STATE(77)] = 6414, - [SMALL_STATE(78)] = 6475, - [SMALL_STATE(79)] = 6544, - [SMALL_STATE(80)] = 6605, - [SMALL_STATE(81)] = 6666, - [SMALL_STATE(82)] = 6785, - [SMALL_STATE(83)] = 6846, - [SMALL_STATE(84)] = 6965, - [SMALL_STATE(85)] = 7084, - [SMALL_STATE(86)] = 7145, - [SMALL_STATE(87)] = 7264, - [SMALL_STATE(88)] = 7335, - [SMALL_STATE(89)] = 7416, - [SMALL_STATE(90)] = 7477, - [SMALL_STATE(91)] = 7538, - [SMALL_STATE(92)] = 7657, - [SMALL_STATE(93)] = 7718, - [SMALL_STATE(94)] = 7837, - [SMALL_STATE(95)] = 7898, - [SMALL_STATE(96)] = 7959, - [SMALL_STATE(97)] = 8078, - [SMALL_STATE(98)] = 8139, - [SMALL_STATE(99)] = 8258, - [SMALL_STATE(100)] = 8339, - [SMALL_STATE(101)] = 8458, - [SMALL_STATE(102)] = 8577, - [SMALL_STATE(103)] = 8696, - [SMALL_STATE(104)] = 8757, - [SMALL_STATE(105)] = 8876, - [SMALL_STATE(106)] = 8995, - [SMALL_STATE(107)] = 9076, - [SMALL_STATE(108)] = 9195, - [SMALL_STATE(109)] = 9314, - [SMALL_STATE(110)] = 9395, + [SMALL_STATE(54)] = 4247, + [SMALL_STATE(55)] = 4308, + [SMALL_STATE(56)] = 4369, + [SMALL_STATE(57)] = 4450, + [SMALL_STATE(58)] = 4511, + [SMALL_STATE(59)] = 4630, + [SMALL_STATE(60)] = 4749, + [SMALL_STATE(61)] = 4868, + [SMALL_STATE(62)] = 4987, + [SMALL_STATE(63)] = 5068, + [SMALL_STATE(64)] = 5187, + [SMALL_STATE(65)] = 5268, + [SMALL_STATE(66)] = 5329, + [SMALL_STATE(67)] = 5448, + [SMALL_STATE(68)] = 5509, + [SMALL_STATE(69)] = 5570, + [SMALL_STATE(70)] = 5689, + [SMALL_STATE(71)] = 5750, + [SMALL_STATE(72)] = 5869, + [SMALL_STATE(73)] = 5988, + [SMALL_STATE(74)] = 6049, + [SMALL_STATE(75)] = 6110, + [SMALL_STATE(76)] = 6171, + [SMALL_STATE(77)] = 6232, + [SMALL_STATE(78)] = 6351, + [SMALL_STATE(79)] = 6420, + [SMALL_STATE(80)] = 6539, + [SMALL_STATE(81)] = 6610, + [SMALL_STATE(82)] = 6685, + [SMALL_STATE(83)] = 6804, + [SMALL_STATE(84)] = 6881, + [SMALL_STATE(85)] = 7000, + [SMALL_STATE(86)] = 7079, + [SMALL_STATE(87)] = 7198, + [SMALL_STATE(88)] = 7259, + [SMALL_STATE(89)] = 7320, + [SMALL_STATE(90)] = 7381, + [SMALL_STATE(91)] = 7442, + [SMALL_STATE(92)] = 7523, + [SMALL_STATE(93)] = 7584, + [SMALL_STATE(94)] = 7703, + [SMALL_STATE(95)] = 7764, + [SMALL_STATE(96)] = 7883, + [SMALL_STATE(97)] = 8002, + [SMALL_STATE(98)] = 8063, + [SMALL_STATE(99)] = 8124, + [SMALL_STATE(100)] = 8185, + [SMALL_STATE(101)] = 8304, + [SMALL_STATE(102)] = 8423, + [SMALL_STATE(103)] = 8542, + [SMALL_STATE(104)] = 8661, + [SMALL_STATE(105)] = 8742, + [SMALL_STATE(106)] = 8861, + [SMALL_STATE(107)] = 8980, + [SMALL_STATE(108)] = 9099, + [SMALL_STATE(109)] = 9218, + [SMALL_STATE(110)] = 9337, [SMALL_STATE(111)] = 9456, [SMALL_STATE(112)] = 9575, - [SMALL_STATE(113)] = 9636, - [SMALL_STATE(114)] = 9697, - [SMALL_STATE(115)] = 9816, + [SMALL_STATE(113)] = 9694, + [SMALL_STATE(114)] = 9813, + [SMALL_STATE(115)] = 9874, [SMALL_STATE(116)] = 9935, - [SMALL_STATE(117)] = 10051, - [SMALL_STATE(118)] = 10167, - [SMALL_STATE(119)] = 10283, - [SMALL_STATE(120)] = 10399, - [SMALL_STATE(121)] = 10515, - [SMALL_STATE(122)] = 10631, - [SMALL_STATE(123)] = 10747, - [SMALL_STATE(124)] = 10811, - [SMALL_STATE(125)] = 10927, - [SMALL_STATE(126)] = 11043, - [SMALL_STATE(127)] = 11159, - [SMALL_STATE(128)] = 11275, - [SMALL_STATE(129)] = 11391, - [SMALL_STATE(130)] = 11450, - [SMALL_STATE(131)] = 11509, - [SMALL_STATE(132)] = 11568, - [SMALL_STATE(133)] = 11627, - [SMALL_STATE(134)] = 11686, - [SMALL_STATE(135)] = 11745, - [SMALL_STATE(136)] = 11804, - [SMALL_STATE(137)] = 11863, - [SMALL_STATE(138)] = 11922, - [SMALL_STATE(139)] = 11981, - [SMALL_STATE(140)] = 12094, - [SMALL_STATE(141)] = 12207, - [SMALL_STATE(142)] = 12320, - [SMALL_STATE(143)] = 12383, - [SMALL_STATE(144)] = 12496, - [SMALL_STATE(145)] = 12555, - [SMALL_STATE(146)] = 12618, - [SMALL_STATE(147)] = 12677, - [SMALL_STATE(148)] = 12790, - [SMALL_STATE(149)] = 12903, - [SMALL_STATE(150)] = 13016, - [SMALL_STATE(151)] = 13129, - [SMALL_STATE(152)] = 13242, - [SMALL_STATE(153)] = 13300, - [SMALL_STATE(154)] = 13358, - [SMALL_STATE(155)] = 13468, - [SMALL_STATE(156)] = 13578, - [SMALL_STATE(157)] = 13688, - [SMALL_STATE(158)] = 13798, - [SMALL_STATE(159)] = 13908, - [SMALL_STATE(160)] = 14018, - [SMALL_STATE(161)] = 14128, - [SMALL_STATE(162)] = 14238, - [SMALL_STATE(163)] = 14348, - [SMALL_STATE(164)] = 14458, - [SMALL_STATE(165)] = 14568, - [SMALL_STATE(166)] = 14678, - [SMALL_STATE(167)] = 14788, - [SMALL_STATE(168)] = 14848, - [SMALL_STATE(169)] = 14958, - [SMALL_STATE(170)] = 15018, - [SMALL_STATE(171)] = 15078, - [SMALL_STATE(172)] = 15138, - [SMALL_STATE(173)] = 15248, - [SMALL_STATE(174)] = 15358, - [SMALL_STATE(175)] = 15416, + [SMALL_STATE(117)] = 9996, + [SMALL_STATE(118)] = 10112, + [SMALL_STATE(119)] = 10228, + [SMALL_STATE(120)] = 10344, + [SMALL_STATE(121)] = 10460, + [SMALL_STATE(122)] = 10576, + [SMALL_STATE(123)] = 10692, + [SMALL_STATE(124)] = 10756, + [SMALL_STATE(125)] = 10872, + [SMALL_STATE(126)] = 10988, + [SMALL_STATE(127)] = 11104, + [SMALL_STATE(128)] = 11220, + [SMALL_STATE(129)] = 11336, + [SMALL_STATE(130)] = 11452, + [SMALL_STATE(131)] = 11565, + [SMALL_STATE(132)] = 11624, + [SMALL_STATE(133)] = 11737, + [SMALL_STATE(134)] = 11850, + [SMALL_STATE(135)] = 11963, + [SMALL_STATE(136)] = 12076, + [SMALL_STATE(137)] = 12135, + [SMALL_STATE(138)] = 12194, + [SMALL_STATE(139)] = 12253, + [SMALL_STATE(140)] = 12366, + [SMALL_STATE(141)] = 12429, + [SMALL_STATE(142)] = 12492, + [SMALL_STATE(143)] = 12605, + [SMALL_STATE(144)] = 12664, + [SMALL_STATE(145)] = 12777, + [SMALL_STATE(146)] = 12836, + [SMALL_STATE(147)] = 12895, + [SMALL_STATE(148)] = 13008, + [SMALL_STATE(149)] = 13067, + [SMALL_STATE(150)] = 13126, + [SMALL_STATE(151)] = 13185, + [SMALL_STATE(152)] = 13244, + [SMALL_STATE(153)] = 13354, + [SMALL_STATE(154)] = 13464, + [SMALL_STATE(155)] = 13574, + [SMALL_STATE(156)] = 13632, + [SMALL_STATE(157)] = 13690, + [SMALL_STATE(158)] = 13800, + [SMALL_STATE(159)] = 13910, + [SMALL_STATE(160)] = 14020, + [SMALL_STATE(161)] = 14078, + [SMALL_STATE(162)] = 14188, + [SMALL_STATE(163)] = 14298, + [SMALL_STATE(164)] = 14356, + [SMALL_STATE(165)] = 14416, + [SMALL_STATE(166)] = 14526, + [SMALL_STATE(167)] = 14636, + [SMALL_STATE(168)] = 14746, + [SMALL_STATE(169)] = 14856, + [SMALL_STATE(170)] = 14966, + [SMALL_STATE(171)] = 15076, + [SMALL_STATE(172)] = 15186, + [SMALL_STATE(173)] = 15296, + [SMALL_STATE(174)] = 15354, + [SMALL_STATE(175)] = 15414, [SMALL_STATE(176)] = 15474, [SMALL_STATE(177)] = 15532, [SMALL_STATE(178)] = 15642, - [SMALL_STATE(179)] = 15752, - [SMALL_STATE(180)] = 15810, - [SMALL_STATE(181)] = 15868, - [SMALL_STATE(182)] = 15978, - [SMALL_STATE(183)] = 16036, - [SMALL_STATE(184)] = 16146, - [SMALL_STATE(185)] = 16203, - [SMALL_STATE(186)] = 16314, - [SMALL_STATE(187)] = 16421, - [SMALL_STATE(188)] = 16478, - [SMALL_STATE(189)] = 16585, - [SMALL_STATE(190)] = 16692, - [SMALL_STATE(191)] = 16799, - [SMALL_STATE(192)] = 16906, - [SMALL_STATE(193)] = 17013, - [SMALL_STATE(194)] = 17120, - [SMALL_STATE(195)] = 17177, - [SMALL_STATE(196)] = 17284, - [SMALL_STATE(197)] = 17341, - [SMALL_STATE(198)] = 17448, - [SMALL_STATE(199)] = 17555, - [SMALL_STATE(200)] = 17662, - [SMALL_STATE(201)] = 17719, - [SMALL_STATE(202)] = 17826, - [SMALL_STATE(203)] = 17933, - [SMALL_STATE(204)] = 17990, - [SMALL_STATE(205)] = 18047, - [SMALL_STATE(206)] = 18154, - [SMALL_STATE(207)] = 18261, - [SMALL_STATE(208)] = 18368, - [SMALL_STATE(209)] = 18475, - [SMALL_STATE(210)] = 18582, - [SMALL_STATE(211)] = 18689, - [SMALL_STATE(212)] = 18800, - [SMALL_STATE(213)] = 18907, - [SMALL_STATE(214)] = 19018, - [SMALL_STATE(215)] = 19125, - [SMALL_STATE(216)] = 19232, - [SMALL_STATE(217)] = 19339, - [SMALL_STATE(218)] = 19450, - [SMALL_STATE(219)] = 19557, - [SMALL_STATE(220)] = 19668, - [SMALL_STATE(221)] = 19775, - [SMALL_STATE(222)] = 19882, - [SMALL_STATE(223)] = 19989, - [SMALL_STATE(224)] = 20046, - [SMALL_STATE(225)] = 20103, - [SMALL_STATE(226)] = 20214, - [SMALL_STATE(227)] = 20325, - [SMALL_STATE(228)] = 20432, - [SMALL_STATE(229)] = 20539, - [SMALL_STATE(230)] = 20646, - [SMALL_STATE(231)] = 20753, - [SMALL_STATE(232)] = 20860, - [SMALL_STATE(233)] = 20967, - [SMALL_STATE(234)] = 21074, - [SMALL_STATE(235)] = 21181, - [SMALL_STATE(236)] = 21288, - [SMALL_STATE(237)] = 21395, - [SMALL_STATE(238)] = 21502, - [SMALL_STATE(239)] = 21559, - [SMALL_STATE(240)] = 21670, - [SMALL_STATE(241)] = 21727, - [SMALL_STATE(242)] = 21784, - [SMALL_STATE(243)] = 21891, - [SMALL_STATE(244)] = 21948, - [SMALL_STATE(245)] = 22005, - [SMALL_STATE(246)] = 22112, - [SMALL_STATE(247)] = 22219, - [SMALL_STATE(248)] = 22326, - [SMALL_STATE(249)] = 22433, - [SMALL_STATE(250)] = 22540, - [SMALL_STATE(251)] = 22647, - [SMALL_STATE(252)] = 22754, - [SMALL_STATE(253)] = 22861, - [SMALL_STATE(254)] = 22968, - [SMALL_STATE(255)] = 23075, - [SMALL_STATE(256)] = 23182, - [SMALL_STATE(257)] = 23289, - [SMALL_STATE(258)] = 23396, - [SMALL_STATE(259)] = 23507, - [SMALL_STATE(260)] = 23614, - [SMALL_STATE(261)] = 23721, - [SMALL_STATE(262)] = 23832, - [SMALL_STATE(263)] = 23939, - [SMALL_STATE(264)] = 24046, - [SMALL_STATE(265)] = 24157, - [SMALL_STATE(266)] = 24264, - [SMALL_STATE(267)] = 24371, - [SMALL_STATE(268)] = 24482, - [SMALL_STATE(269)] = 24589, - [SMALL_STATE(270)] = 24646, - [SMALL_STATE(271)] = 24753, - [SMALL_STATE(272)] = 24860, - [SMALL_STATE(273)] = 24967, - [SMALL_STATE(274)] = 25074, - [SMALL_STATE(275)] = 25182, - [SMALL_STATE(276)] = 25287, - [SMALL_STATE(277)] = 25392, - [SMALL_STATE(278)] = 25497, - [SMALL_STATE(279)] = 25602, - [SMALL_STATE(280)] = 25707, - [SMALL_STATE(281)] = 25761, - [SMALL_STATE(282)] = 25835, - [SMALL_STATE(283)] = 25893, - [SMALL_STATE(284)] = 25965, - [SMALL_STATE(285)] = 26035, - [SMALL_STATE(286)] = 26103, - [SMALL_STATE(287)] = 26167, - [SMALL_STATE(288)] = 26229, - [SMALL_STATE(289)] = 26303, - [SMALL_STATE(290)] = 26377, - [SMALL_STATE(291)] = 26451, - [SMALL_STATE(292)] = 26525, - [SMALL_STATE(293)] = 26578, - [SMALL_STATE(294)] = 26631, - [SMALL_STATE(295)] = 26684, - [SMALL_STATE(296)] = 26737, - [SMALL_STATE(297)] = 26790, - [SMALL_STATE(298)] = 26841, - [SMALL_STATE(299)] = 26892, - [SMALL_STATE(300)] = 26946, - [SMALL_STATE(301)] = 26995, + [SMALL_STATE(179)] = 15702, + [SMALL_STATE(180)] = 15760, + [SMALL_STATE(181)] = 15818, + [SMALL_STATE(182)] = 15928, + [SMALL_STATE(183)] = 16038, + [SMALL_STATE(184)] = 16148, + [SMALL_STATE(185)] = 16255, + [SMALL_STATE(186)] = 16366, + [SMALL_STATE(187)] = 16473, + [SMALL_STATE(188)] = 16584, + [SMALL_STATE(189)] = 16691, + [SMALL_STATE(190)] = 16798, + [SMALL_STATE(191)] = 16905, + [SMALL_STATE(192)] = 17012, + [SMALL_STATE(193)] = 17119, + [SMALL_STATE(194)] = 17226, + [SMALL_STATE(195)] = 17333, + [SMALL_STATE(196)] = 17440, + [SMALL_STATE(197)] = 17547, + [SMALL_STATE(198)] = 17654, + [SMALL_STATE(199)] = 17761, + [SMALL_STATE(200)] = 17868, + [SMALL_STATE(201)] = 17975, + [SMALL_STATE(202)] = 18082, + [SMALL_STATE(203)] = 18189, + [SMALL_STATE(204)] = 18296, + [SMALL_STATE(205)] = 18403, + [SMALL_STATE(206)] = 18510, + [SMALL_STATE(207)] = 18617, + [SMALL_STATE(208)] = 18724, + [SMALL_STATE(209)] = 18835, + [SMALL_STATE(210)] = 18942, + [SMALL_STATE(211)] = 19049, + [SMALL_STATE(212)] = 19156, + [SMALL_STATE(213)] = 19263, + [SMALL_STATE(214)] = 19370, + [SMALL_STATE(215)] = 19427, + [SMALL_STATE(216)] = 19534, + [SMALL_STATE(217)] = 19591, + [SMALL_STATE(218)] = 19698, + [SMALL_STATE(219)] = 19805, + [SMALL_STATE(220)] = 19916, + [SMALL_STATE(221)] = 20023, + [SMALL_STATE(222)] = 20130, + [SMALL_STATE(223)] = 20237, + [SMALL_STATE(224)] = 20348, + [SMALL_STATE(225)] = 20455, + [SMALL_STATE(226)] = 20512, + [SMALL_STATE(227)] = 20619, + [SMALL_STATE(228)] = 20676, + [SMALL_STATE(229)] = 20733, + [SMALL_STATE(230)] = 20840, + [SMALL_STATE(231)] = 20947, + [SMALL_STATE(232)] = 21054, + [SMALL_STATE(233)] = 21165, + [SMALL_STATE(234)] = 21222, + [SMALL_STATE(235)] = 21329, + [SMALL_STATE(236)] = 21440, + [SMALL_STATE(237)] = 21497, + [SMALL_STATE(238)] = 21554, + [SMALL_STATE(239)] = 21661, + [SMALL_STATE(240)] = 21768, + [SMALL_STATE(241)] = 21875, + [SMALL_STATE(242)] = 21982, + [SMALL_STATE(243)] = 22093, + [SMALL_STATE(244)] = 22204, + [SMALL_STATE(245)] = 22311, + [SMALL_STATE(246)] = 22422, + [SMALL_STATE(247)] = 22533, + [SMALL_STATE(248)] = 22640, + [SMALL_STATE(249)] = 22747, + [SMALL_STATE(250)] = 22854, + [SMALL_STATE(251)] = 22911, + [SMALL_STATE(252)] = 22968, + [SMALL_STATE(253)] = 23075, + [SMALL_STATE(254)] = 23182, + [SMALL_STATE(255)] = 23289, + [SMALL_STATE(256)] = 23346, + [SMALL_STATE(257)] = 23403, + [SMALL_STATE(258)] = 23514, + [SMALL_STATE(259)] = 23621, + [SMALL_STATE(260)] = 23728, + [SMALL_STATE(261)] = 23835, + [SMALL_STATE(262)] = 23942, + [SMALL_STATE(263)] = 24049, + [SMALL_STATE(264)] = 24156, + [SMALL_STATE(265)] = 24263, + [SMALL_STATE(266)] = 24370, + [SMALL_STATE(267)] = 24477, + [SMALL_STATE(268)] = 24584, + [SMALL_STATE(269)] = 24691, + [SMALL_STATE(270)] = 24748, + [SMALL_STATE(271)] = 24855, + [SMALL_STATE(272)] = 24912, + [SMALL_STATE(273)] = 24969, + [SMALL_STATE(274)] = 25076, + [SMALL_STATE(275)] = 25184, + [SMALL_STATE(276)] = 25289, + [SMALL_STATE(277)] = 25394, + [SMALL_STATE(278)] = 25499, + [SMALL_STATE(279)] = 25604, + [SMALL_STATE(280)] = 25709, + [SMALL_STATE(281)] = 25777, + [SMALL_STATE(282)] = 25851, + [SMALL_STATE(283)] = 25921, + [SMALL_STATE(284)] = 25975, + [SMALL_STATE(285)] = 26039, + [SMALL_STATE(286)] = 26101, + [SMALL_STATE(287)] = 26175, + [SMALL_STATE(288)] = 26249, + [SMALL_STATE(289)] = 26323, + [SMALL_STATE(290)] = 26397, + [SMALL_STATE(291)] = 26455, + [SMALL_STATE(292)] = 26527, + [SMALL_STATE(293)] = 26580, + [SMALL_STATE(294)] = 26633, + [SMALL_STATE(295)] = 26686, + [SMALL_STATE(296)] = 26739, + [SMALL_STATE(297)] = 26792, + [SMALL_STATE(298)] = 26843, + [SMALL_STATE(299)] = 26894, + [SMALL_STATE(300)] = 26945, + [SMALL_STATE(301)] = 26999, [SMALL_STATE(302)] = 27048, [SMALL_STATE(303)] = 27097, [SMALL_STATE(304)] = 27150, [SMALL_STATE(305)] = 27199, - [SMALL_STATE(306)] = 27248, - [SMALL_STATE(307)] = 27297, - [SMALL_STATE(308)] = 27346, - [SMALL_STATE(309)] = 27395, - [SMALL_STATE(310)] = 27444, - [SMALL_STATE(311)] = 27493, - [SMALL_STATE(312)] = 27542, - [SMALL_STATE(313)] = 27591, - [SMALL_STATE(314)] = 27640, - [SMALL_STATE(315)] = 27689, - [SMALL_STATE(316)] = 27738, - [SMALL_STATE(317)] = 27787, - [SMALL_STATE(318)] = 27835, - [SMALL_STATE(319)] = 27883, - [SMALL_STATE(320)] = 27933, - [SMALL_STATE(321)] = 27981, - [SMALL_STATE(322)] = 28029, - [SMALL_STATE(323)] = 28079, - [SMALL_STATE(324)] = 28127, - [SMALL_STATE(325)] = 28177, - [SMALL_STATE(326)] = 28225, - [SMALL_STATE(327)] = 28273, - [SMALL_STATE(328)] = 28323, - [SMALL_STATE(329)] = 28371, - [SMALL_STATE(330)] = 28418, - [SMALL_STATE(331)] = 28485, - [SMALL_STATE(332)] = 28532, - [SMALL_STATE(333)] = 28587, - [SMALL_STATE(334)] = 28634, - [SMALL_STATE(335)] = 28691, - [SMALL_STATE(336)] = 28738, - [SMALL_STATE(337)] = 28799, - [SMALL_STATE(338)] = 28866, - [SMALL_STATE(339)] = 28913, - [SMALL_STATE(340)] = 28960, - [SMALL_STATE(341)] = 29007, - [SMALL_STATE(342)] = 29054, - [SMALL_STATE(343)] = 29101, - [SMALL_STATE(344)] = 29168, - [SMALL_STATE(345)] = 29215, - [SMALL_STATE(346)] = 29262, - [SMALL_STATE(347)] = 29325, - [SMALL_STATE(348)] = 29372, - [SMALL_STATE(349)] = 29439, - [SMALL_STATE(350)] = 29486, - [SMALL_STATE(351)] = 29551, - [SMALL_STATE(352)] = 29602, - [SMALL_STATE(353)] = 29649, - [SMALL_STATE(354)] = 29696, - [SMALL_STATE(355)] = 29743, - [SMALL_STATE(356)] = 29790, - [SMALL_STATE(357)] = 29837, - [SMALL_STATE(358)] = 29885, - [SMALL_STATE(359)] = 29933, - [SMALL_STATE(360)] = 29981, - [SMALL_STATE(361)] = 30029, - [SMALL_STATE(362)] = 30086, - [SMALL_STATE(363)] = 30143, - [SMALL_STATE(364)] = 30186, - [SMALL_STATE(365)] = 30229, - [SMALL_STATE(366)] = 30272, - [SMALL_STATE(367)] = 30315, - [SMALL_STATE(368)] = 30358, - [SMALL_STATE(369)] = 30401, - [SMALL_STATE(370)] = 30444, - [SMALL_STATE(371)] = 30487, - [SMALL_STATE(372)] = 30530, - [SMALL_STATE(373)] = 30573, - [SMALL_STATE(374)] = 30630, - [SMALL_STATE(375)] = 30677, - [SMALL_STATE(376)] = 30724, - [SMALL_STATE(377)] = 30781, - [SMALL_STATE(378)] = 30838, - [SMALL_STATE(379)] = 30895, - [SMALL_STATE(380)] = 30938, - [SMALL_STATE(381)] = 30994, - [SMALL_STATE(382)] = 31038, - [SMALL_STATE(383)] = 31080, - [SMALL_STATE(384)] = 31122, - [SMALL_STATE(385)] = 31164, - [SMALL_STATE(386)] = 31206, - [SMALL_STATE(387)] = 31252, - [SMALL_STATE(388)] = 31298, - [SMALL_STATE(389)] = 31342, - [SMALL_STATE(390)] = 31398, - [SMALL_STATE(391)] = 31440, - [SMALL_STATE(392)] = 31486, - [SMALL_STATE(393)] = 31528, - [SMALL_STATE(394)] = 31584, - [SMALL_STATE(395)] = 31630, - [SMALL_STATE(396)] = 31672, - [SMALL_STATE(397)] = 31714, - [SMALL_STATE(398)] = 31758, - [SMALL_STATE(399)] = 31802, - [SMALL_STATE(400)] = 31861, - [SMALL_STATE(401)] = 31916, - [SMALL_STATE(402)] = 31957, - [SMALL_STATE(403)] = 31998, - [SMALL_STATE(404)] = 32041, - [SMALL_STATE(405)] = 32094, - [SMALL_STATE(406)] = 32169, - [SMALL_STATE(407)] = 32212, - [SMALL_STATE(408)] = 32271, - [SMALL_STATE(409)] = 32312, - [SMALL_STATE(410)] = 32353, - [SMALL_STATE(411)] = 32394, - [SMALL_STATE(412)] = 32435, - [SMALL_STATE(413)] = 32512, - [SMALL_STATE(414)] = 32587, - [SMALL_STATE(415)] = 32628, - [SMALL_STATE(416)] = 32703, - [SMALL_STATE(417)] = 32744, - [SMALL_STATE(418)] = 32785, - [SMALL_STATE(419)] = 32826, - [SMALL_STATE(420)] = 32879, - [SMALL_STATE(421)] = 32920, - [SMALL_STATE(422)] = 32995, - [SMALL_STATE(423)] = 33036, - [SMALL_STATE(424)] = 33111, - [SMALL_STATE(425)] = 33154, - [SMALL_STATE(426)] = 33195, - [SMALL_STATE(427)] = 33248, - [SMALL_STATE(428)] = 33325, - [SMALL_STATE(429)] = 33366, - [SMALL_STATE(430)] = 33441, - [SMALL_STATE(431)] = 33492, - [SMALL_STATE(432)] = 33533, - [SMALL_STATE(433)] = 33574, - [SMALL_STATE(434)] = 33615, - [SMALL_STATE(435)] = 33660, - [SMALL_STATE(436)] = 33701, - [SMALL_STATE(437)] = 33754, - [SMALL_STATE(438)] = 33811, - [SMALL_STATE(439)] = 33852, - [SMALL_STATE(440)] = 33893, - [SMALL_STATE(441)] = 33934, - [SMALL_STATE(442)] = 33983, - [SMALL_STATE(443)] = 34024, - [SMALL_STATE(444)] = 34101, - [SMALL_STATE(445)] = 34141, - [SMALL_STATE(446)] = 34181, - [SMALL_STATE(447)] = 34221, - [SMALL_STATE(448)] = 34261, - [SMALL_STATE(449)] = 34301, - [SMALL_STATE(450)] = 34341, - [SMALL_STATE(451)] = 34381, - [SMALL_STATE(452)] = 34421, - [SMALL_STATE(453)] = 34461, - [SMALL_STATE(454)] = 34501, - [SMALL_STATE(455)] = 34541, - [SMALL_STATE(456)] = 34581, - [SMALL_STATE(457)] = 34621, - [SMALL_STATE(458)] = 34661, - [SMALL_STATE(459)] = 34701, - [SMALL_STATE(460)] = 34741, - [SMALL_STATE(461)] = 34781, - [SMALL_STATE(462)] = 34821, - [SMALL_STATE(463)] = 34861, - [SMALL_STATE(464)] = 34901, - [SMALL_STATE(465)] = 34941, - [SMALL_STATE(466)] = 34981, - [SMALL_STATE(467)] = 35021, - [SMALL_STATE(468)] = 35061, - [SMALL_STATE(469)] = 35101, - [SMALL_STATE(470)] = 35141, - [SMALL_STATE(471)] = 35181, - [SMALL_STATE(472)] = 35221, - [SMALL_STATE(473)] = 35261, - [SMALL_STATE(474)] = 35301, - [SMALL_STATE(475)] = 35341, - [SMALL_STATE(476)] = 35381, - [SMALL_STATE(477)] = 35421, - [SMALL_STATE(478)] = 35461, - [SMALL_STATE(479)] = 35501, - [SMALL_STATE(480)] = 35541, - [SMALL_STATE(481)] = 35581, - [SMALL_STATE(482)] = 35625, - [SMALL_STATE(483)] = 35665, - [SMALL_STATE(484)] = 35705, - [SMALL_STATE(485)] = 35745, - [SMALL_STATE(486)] = 35785, - [SMALL_STATE(487)] = 35825, - [SMALL_STATE(488)] = 35865, - [SMALL_STATE(489)] = 35905, - [SMALL_STATE(490)] = 35945, - [SMALL_STATE(491)] = 35985, - [SMALL_STATE(492)] = 36025, - [SMALL_STATE(493)] = 36065, - [SMALL_STATE(494)] = 36105, - [SMALL_STATE(495)] = 36145, - [SMALL_STATE(496)] = 36185, - [SMALL_STATE(497)] = 36225, - [SMALL_STATE(498)] = 36265, - [SMALL_STATE(499)] = 36305, - [SMALL_STATE(500)] = 36345, - [SMALL_STATE(501)] = 36385, - [SMALL_STATE(502)] = 36425, - [SMALL_STATE(503)] = 36465, - [SMALL_STATE(504)] = 36505, - [SMALL_STATE(505)] = 36545, - [SMALL_STATE(506)] = 36585, - [SMALL_STATE(507)] = 36625, - [SMALL_STATE(508)] = 36692, - [SMALL_STATE(509)] = 36763, - [SMALL_STATE(510)] = 36830, - [SMALL_STATE(511)] = 36901, - [SMALL_STATE(512)] = 36970, - [SMALL_STATE(513)] = 37039, - [SMALL_STATE(514)] = 37110, - [SMALL_STATE(515)] = 37181, - [SMALL_STATE(516)] = 37248, - [SMALL_STATE(517)] = 37319, - [SMALL_STATE(518)] = 37386, - [SMALL_STATE(519)] = 37453, - [SMALL_STATE(520)] = 37520, - [SMALL_STATE(521)] = 37587, - [SMALL_STATE(522)] = 37654, - [SMALL_STATE(523)] = 37711, - [SMALL_STATE(524)] = 37778, - [SMALL_STATE(525)] = 37845, - [SMALL_STATE(526)] = 37883, - [SMALL_STATE(527)] = 37921, - [SMALL_STATE(528)] = 37959, - [SMALL_STATE(529)] = 37997, - [SMALL_STATE(530)] = 38059, - [SMALL_STATE(531)] = 38127, - [SMALL_STATE(532)] = 38165, - [SMALL_STATE(533)] = 38203, - [SMALL_STATE(534)] = 38241, - [SMALL_STATE(535)] = 38279, - [SMALL_STATE(536)] = 38317, - [SMALL_STATE(537)] = 38379, - [SMALL_STATE(538)] = 38417, - [SMALL_STATE(539)] = 38455, - [SMALL_STATE(540)] = 38493, - [SMALL_STATE(541)] = 38531, - [SMALL_STATE(542)] = 38569, - [SMALL_STATE(543)] = 38631, - [SMALL_STATE(544)] = 38699, - [SMALL_STATE(545)] = 38767, - [SMALL_STATE(546)] = 38829, - [SMALL_STATE(547)] = 38867, - [SMALL_STATE(548)] = 38905, - [SMALL_STATE(549)] = 38943, - [SMALL_STATE(550)] = 39011, - [SMALL_STATE(551)] = 39070, - [SMALL_STATE(552)] = 39135, - [SMALL_STATE(553)] = 39200, - [SMALL_STATE(554)] = 39265, - [SMALL_STATE(555)] = 39330, - [SMALL_STATE(556)] = 39395, - [SMALL_STATE(557)] = 39460, - [SMALL_STATE(558)] = 39519, - [SMALL_STATE(559)] = 39584, - [SMALL_STATE(560)] = 39649, - [SMALL_STATE(561)] = 39714, - [SMALL_STATE(562)] = 39773, - [SMALL_STATE(563)] = 39838, - [SMALL_STATE(564)] = 39903, - [SMALL_STATE(565)] = 39968, - [SMALL_STATE(566)] = 40033, - [SMALL_STATE(567)] = 40098, - [SMALL_STATE(568)] = 40163, - [SMALL_STATE(569)] = 40222, - [SMALL_STATE(570)] = 40287, - [SMALL_STATE(571)] = 40352, - [SMALL_STATE(572)] = 40417, - [SMALL_STATE(573)] = 40482, - [SMALL_STATE(574)] = 40541, - [SMALL_STATE(575)] = 40606, - [SMALL_STATE(576)] = 40671, - [SMALL_STATE(577)] = 40733, - [SMALL_STATE(578)] = 40795, - [SMALL_STATE(579)] = 40849, - [SMALL_STATE(580)] = 40911, - [SMALL_STATE(581)] = 40973, - [SMALL_STATE(582)] = 41027, - [SMALL_STATE(583)] = 41089, - [SMALL_STATE(584)] = 41143, - [SMALL_STATE(585)] = 41205, - [SMALL_STATE(586)] = 41267, - [SMALL_STATE(587)] = 41329, - [SMALL_STATE(588)] = 41391, - [SMALL_STATE(589)] = 41453, - [SMALL_STATE(590)] = 41515, - [SMALL_STATE(591)] = 41577, - [SMALL_STATE(592)] = 41630, + [SMALL_STATE(306)] = 27252, + [SMALL_STATE(307)] = 27301, + [SMALL_STATE(308)] = 27350, + [SMALL_STATE(309)] = 27399, + [SMALL_STATE(310)] = 27448, + [SMALL_STATE(311)] = 27497, + [SMALL_STATE(312)] = 27546, + [SMALL_STATE(313)] = 27595, + [SMALL_STATE(314)] = 27644, + [SMALL_STATE(315)] = 27693, + [SMALL_STATE(316)] = 27742, + [SMALL_STATE(317)] = 27791, + [SMALL_STATE(318)] = 27840, + [SMALL_STATE(319)] = 27888, + [SMALL_STATE(320)] = 27936, + [SMALL_STATE(321)] = 27986, + [SMALL_STATE(322)] = 28036, + [SMALL_STATE(323)] = 28084, + [SMALL_STATE(324)] = 28132, + [SMALL_STATE(325)] = 28180, + [SMALL_STATE(326)] = 28228, + [SMALL_STATE(327)] = 28276, + [SMALL_STATE(328)] = 28326, + [SMALL_STATE(329)] = 28374, + [SMALL_STATE(330)] = 28424, + [SMALL_STATE(331)] = 28471, + [SMALL_STATE(332)] = 28518, + [SMALL_STATE(333)] = 28585, + [SMALL_STATE(334)] = 28632, + [SMALL_STATE(335)] = 28693, + [SMALL_STATE(336)] = 28744, + [SMALL_STATE(337)] = 28791, + [SMALL_STATE(338)] = 28854, + [SMALL_STATE(339)] = 28921, + [SMALL_STATE(340)] = 28968, + [SMALL_STATE(341)] = 29025, + [SMALL_STATE(342)] = 29080, + [SMALL_STATE(343)] = 29127, + [SMALL_STATE(344)] = 29174, + [SMALL_STATE(345)] = 29221, + [SMALL_STATE(346)] = 29286, + [SMALL_STATE(347)] = 29333, + [SMALL_STATE(348)] = 29380, + [SMALL_STATE(349)] = 29427, + [SMALL_STATE(350)] = 29474, + [SMALL_STATE(351)] = 29521, + [SMALL_STATE(352)] = 29588, + [SMALL_STATE(353)] = 29635, + [SMALL_STATE(354)] = 29682, + [SMALL_STATE(355)] = 29729, + [SMALL_STATE(356)] = 29796, + [SMALL_STATE(357)] = 29843, + [SMALL_STATE(358)] = 29890, + [SMALL_STATE(359)] = 29938, + [SMALL_STATE(360)] = 29986, + [SMALL_STATE(361)] = 30034, + [SMALL_STATE(362)] = 30082, + [SMALL_STATE(363)] = 30125, + [SMALL_STATE(364)] = 30168, + [SMALL_STATE(365)] = 30211, + [SMALL_STATE(366)] = 30254, + [SMALL_STATE(367)] = 30301, + [SMALL_STATE(368)] = 30344, + [SMALL_STATE(369)] = 30391, + [SMALL_STATE(370)] = 30448, + [SMALL_STATE(371)] = 30491, + [SMALL_STATE(372)] = 30534, + [SMALL_STATE(373)] = 30577, + [SMALL_STATE(374)] = 30634, + [SMALL_STATE(375)] = 30691, + [SMALL_STATE(376)] = 30734, + [SMALL_STATE(377)] = 30791, + [SMALL_STATE(378)] = 30834, + [SMALL_STATE(379)] = 30891, + [SMALL_STATE(380)] = 30948, + [SMALL_STATE(381)] = 31004, + [SMALL_STATE(382)] = 31050, + [SMALL_STATE(383)] = 31106, + [SMALL_STATE(384)] = 31162, + [SMALL_STATE(385)] = 31208, + [SMALL_STATE(386)] = 31252, + [SMALL_STATE(387)] = 31296, + [SMALL_STATE(388)] = 31340, + [SMALL_STATE(389)] = 31384, + [SMALL_STATE(390)] = 31426, + [SMALL_STATE(391)] = 31472, + [SMALL_STATE(392)] = 31514, + [SMALL_STATE(393)] = 31556, + [SMALL_STATE(394)] = 31598, + [SMALL_STATE(395)] = 31640, + [SMALL_STATE(396)] = 31682, + [SMALL_STATE(397)] = 31728, + [SMALL_STATE(398)] = 31770, + [SMALL_STATE(399)] = 31812, + [SMALL_STATE(400)] = 31853, + [SMALL_STATE(401)] = 31896, + [SMALL_STATE(402)] = 31953, + [SMALL_STATE(403)] = 32030, + [SMALL_STATE(404)] = 32075, + [SMALL_STATE(405)] = 32116, + [SMALL_STATE(406)] = 32157, + [SMALL_STATE(407)] = 32216, + [SMALL_STATE(408)] = 32257, + [SMALL_STATE(409)] = 32310, + [SMALL_STATE(410)] = 32387, + [SMALL_STATE(411)] = 32436, + [SMALL_STATE(412)] = 32477, + [SMALL_STATE(413)] = 32552, + [SMALL_STATE(414)] = 32611, + [SMALL_STATE(415)] = 32652, + [SMALL_STATE(416)] = 32705, + [SMALL_STATE(417)] = 32746, + [SMALL_STATE(418)] = 32821, + [SMALL_STATE(419)] = 32862, + [SMALL_STATE(420)] = 32903, + [SMALL_STATE(421)] = 32944, + [SMALL_STATE(422)] = 32985, + [SMALL_STATE(423)] = 33028, + [SMALL_STATE(424)] = 33069, + [SMALL_STATE(425)] = 33110, + [SMALL_STATE(426)] = 33153, + [SMALL_STATE(427)] = 33228, + [SMALL_STATE(428)] = 33269, + [SMALL_STATE(429)] = 33344, + [SMALL_STATE(430)] = 33395, + [SMALL_STATE(431)] = 33436, + [SMALL_STATE(432)] = 33489, + [SMALL_STATE(433)] = 33530, + [SMALL_STATE(434)] = 33571, + [SMALL_STATE(435)] = 33646, + [SMALL_STATE(436)] = 33687, + [SMALL_STATE(437)] = 33740, + [SMALL_STATE(438)] = 33815, + [SMALL_STATE(439)] = 33858, + [SMALL_STATE(440)] = 33899, + [SMALL_STATE(441)] = 33954, + [SMALL_STATE(442)] = 33995, + [SMALL_STATE(443)] = 34036, + [SMALL_STATE(444)] = 34113, + [SMALL_STATE(445)] = 34154, + [SMALL_STATE(446)] = 34194, + [SMALL_STATE(447)] = 34234, + [SMALL_STATE(448)] = 34274, + [SMALL_STATE(449)] = 34314, + [SMALL_STATE(450)] = 34354, + [SMALL_STATE(451)] = 34394, + [SMALL_STATE(452)] = 34434, + [SMALL_STATE(453)] = 34474, + [SMALL_STATE(454)] = 34514, + [SMALL_STATE(455)] = 34554, + [SMALL_STATE(456)] = 34594, + [SMALL_STATE(457)] = 34662, + [SMALL_STATE(458)] = 34702, + [SMALL_STATE(459)] = 34742, + [SMALL_STATE(460)] = 34782, + [SMALL_STATE(461)] = 34822, + [SMALL_STATE(462)] = 34862, + [SMALL_STATE(463)] = 34902, + [SMALL_STATE(464)] = 34942, + [SMALL_STATE(465)] = 34982, + [SMALL_STATE(466)] = 35022, + [SMALL_STATE(467)] = 35066, + [SMALL_STATE(468)] = 35106, + [SMALL_STATE(469)] = 35146, + [SMALL_STATE(470)] = 35186, + [SMALL_STATE(471)] = 35226, + [SMALL_STATE(472)] = 35266, + [SMALL_STATE(473)] = 35306, + [SMALL_STATE(474)] = 35346, + [SMALL_STATE(475)] = 35386, + [SMALL_STATE(476)] = 35426, + [SMALL_STATE(477)] = 35466, + [SMALL_STATE(478)] = 35534, + [SMALL_STATE(479)] = 35574, + [SMALL_STATE(480)] = 35614, + [SMALL_STATE(481)] = 35654, + [SMALL_STATE(482)] = 35722, + [SMALL_STATE(483)] = 35762, + [SMALL_STATE(484)] = 35802, + [SMALL_STATE(485)] = 35842, + [SMALL_STATE(486)] = 35882, + [SMALL_STATE(487)] = 35922, + [SMALL_STATE(488)] = 35962, + [SMALL_STATE(489)] = 36002, + [SMALL_STATE(490)] = 36042, + [SMALL_STATE(491)] = 36110, + [SMALL_STATE(492)] = 36178, + [SMALL_STATE(493)] = 36246, + [SMALL_STATE(494)] = 36314, + [SMALL_STATE(495)] = 36354, + [SMALL_STATE(496)] = 36394, + [SMALL_STATE(497)] = 36434, + [SMALL_STATE(498)] = 36474, + [SMALL_STATE(499)] = 36514, + [SMALL_STATE(500)] = 36554, + [SMALL_STATE(501)] = 36594, + [SMALL_STATE(502)] = 36634, + [SMALL_STATE(503)] = 36674, + [SMALL_STATE(504)] = 36714, + [SMALL_STATE(505)] = 36754, + [SMALL_STATE(506)] = 36794, + [SMALL_STATE(507)] = 36862, + [SMALL_STATE(508)] = 36902, + [SMALL_STATE(509)] = 36942, + [SMALL_STATE(510)] = 36982, + [SMALL_STATE(511)] = 37022, + [SMALL_STATE(512)] = 37062, + [SMALL_STATE(513)] = 37130, + [SMALL_STATE(514)] = 37170, + [SMALL_STATE(515)] = 37210, + [SMALL_STATE(516)] = 37250, + [SMALL_STATE(517)] = 37318, + [SMALL_STATE(518)] = 37358, + [SMALL_STATE(519)] = 37398, + [SMALL_STATE(520)] = 37467, + [SMALL_STATE(521)] = 37538, + [SMALL_STATE(522)] = 37609, + [SMALL_STATE(523)] = 37678, + [SMALL_STATE(524)] = 37735, + [SMALL_STATE(525)] = 37806, + [SMALL_STATE(526)] = 37877, + [SMALL_STATE(527)] = 37948, + [SMALL_STATE(528)] = 38010, + [SMALL_STATE(529)] = 38048, + [SMALL_STATE(530)] = 38114, + [SMALL_STATE(531)] = 38176, + [SMALL_STATE(532)] = 38214, + [SMALL_STATE(533)] = 38252, + [SMALL_STATE(534)] = 38290, + [SMALL_STATE(535)] = 38356, + [SMALL_STATE(536)] = 38394, + [SMALL_STATE(537)] = 38462, + [SMALL_STATE(538)] = 38530, + [SMALL_STATE(539)] = 38568, + [SMALL_STATE(540)] = 38606, + [SMALL_STATE(541)] = 38644, + [SMALL_STATE(542)] = 38682, + [SMALL_STATE(543)] = 38720, + [SMALL_STATE(544)] = 38758, + [SMALL_STATE(545)] = 38796, + [SMALL_STATE(546)] = 38858, + [SMALL_STATE(547)] = 38896, + [SMALL_STATE(548)] = 38964, + [SMALL_STATE(549)] = 39030, + [SMALL_STATE(550)] = 39096, + [SMALL_STATE(551)] = 39134, + [SMALL_STATE(552)] = 39196, + [SMALL_STATE(553)] = 39262, + [SMALL_STATE(554)] = 39300, + [SMALL_STATE(555)] = 39366, + [SMALL_STATE(556)] = 39404, + [SMALL_STATE(557)] = 39472, + [SMALL_STATE(558)] = 39510, + [SMALL_STATE(559)] = 39548, + [SMALL_STATE(560)] = 39607, + [SMALL_STATE(561)] = 39666, + [SMALL_STATE(562)] = 39729, + [SMALL_STATE(563)] = 39792, + [SMALL_STATE(564)] = 39855, + [SMALL_STATE(565)] = 39918, + [SMALL_STATE(566)] = 39983, + [SMALL_STATE(567)] = 40048, + [SMALL_STATE(568)] = 40107, + [SMALL_STATE(569)] = 40172, + [SMALL_STATE(570)] = 40237, + [SMALL_STATE(571)] = 40302, + [SMALL_STATE(572)] = 40361, + [SMALL_STATE(573)] = 40426, + [SMALL_STATE(574)] = 40491, + [SMALL_STATE(575)] = 40554, + [SMALL_STATE(576)] = 40619, + [SMALL_STATE(577)] = 40684, + [SMALL_STATE(578)] = 40747, + [SMALL_STATE(579)] = 40812, + [SMALL_STATE(580)] = 40875, + [SMALL_STATE(581)] = 40940, + [SMALL_STATE(582)] = 41005, + [SMALL_STATE(583)] = 41070, + [SMALL_STATE(584)] = 41135, + [SMALL_STATE(585)] = 41200, + [SMALL_STATE(586)] = 41259, + [SMALL_STATE(587)] = 41319, + [SMALL_STATE(588)] = 41379, + [SMALL_STATE(589)] = 41441, + [SMALL_STATE(590)] = 41501, + [SMALL_STATE(591)] = 41561, + [SMALL_STATE(592)] = 41623, [SMALL_STATE(593)] = 41683, - [SMALL_STATE(594)] = 41736, - [SMALL_STATE(595)] = 41795, - [SMALL_STATE(596)] = 41848, - [SMALL_STATE(597)] = 41907, - [SMALL_STATE(598)] = 41960, - [SMALL_STATE(599)] = 42019, - [SMALL_STATE(600)] = 42078, - [SMALL_STATE(601)] = 42137, - [SMALL_STATE(602)] = 42190, - [SMALL_STATE(603)] = 42249, - [SMALL_STATE(604)] = 42302, - [SMALL_STATE(605)] = 42355, - [SMALL_STATE(606)] = 42414, - [SMALL_STATE(607)] = 42473, - [SMALL_STATE(608)] = 42526, - [SMALL_STATE(609)] = 42585, - [SMALL_STATE(610)] = 42638, - [SMALL_STATE(611)] = 42691, - [SMALL_STATE(612)] = 42744, - [SMALL_STATE(613)] = 42797, - [SMALL_STATE(614)] = 42850, - [SMALL_STATE(615)] = 42903, - [SMALL_STATE(616)] = 42962, - [SMALL_STATE(617)] = 43015, - [SMALL_STATE(618)] = 43074, - [SMALL_STATE(619)] = 43133, - [SMALL_STATE(620)] = 43186, - [SMALL_STATE(621)] = 43245, - [SMALL_STATE(622)] = 43301, - [SMALL_STATE(623)] = 43357, - [SMALL_STATE(624)] = 43413, - [SMALL_STATE(625)] = 43469, - [SMALL_STATE(626)] = 43525, - [SMALL_STATE(627)] = 43581, - [SMALL_STATE(628)] = 43637, - [SMALL_STATE(629)] = 43693, - [SMALL_STATE(630)] = 43749, - [SMALL_STATE(631)] = 43805, - [SMALL_STATE(632)] = 43838, - [SMALL_STATE(633)] = 43868, - [SMALL_STATE(634)] = 43898, - [SMALL_STATE(635)] = 43928, - [SMALL_STATE(636)] = 43957, - [SMALL_STATE(637)] = 44004, - [SMALL_STATE(638)] = 44051, - [SMALL_STATE(639)] = 44080, - [SMALL_STATE(640)] = 44123, - [SMALL_STATE(641)] = 44166, - [SMALL_STATE(642)] = 44213, - [SMALL_STATE(643)] = 44242, - [SMALL_STATE(644)] = 44285, - [SMALL_STATE(645)] = 44314, - [SMALL_STATE(646)] = 44358, - [SMALL_STATE(647)] = 44402, - [SMALL_STATE(648)] = 44446, - [SMALL_STATE(649)] = 44490, - [SMALL_STATE(650)] = 44534, - [SMALL_STATE(651)] = 44578, - [SMALL_STATE(652)] = 44622, - [SMALL_STATE(653)] = 44666, - [SMALL_STATE(654)] = 44710, - [SMALL_STATE(655)] = 44754, - [SMALL_STATE(656)] = 44795, - [SMALL_STATE(657)] = 44836, - [SMALL_STATE(658)] = 44877, - [SMALL_STATE(659)] = 44918, - [SMALL_STATE(660)] = 44959, - [SMALL_STATE(661)] = 45000, - [SMALL_STATE(662)] = 45041, - [SMALL_STATE(663)] = 45082, - [SMALL_STATE(664)] = 45123, - [SMALL_STATE(665)] = 45164, - [SMALL_STATE(666)] = 45205, - [SMALL_STATE(667)] = 45243, - [SMALL_STATE(668)] = 45281, - [SMALL_STATE(669)] = 45319, - [SMALL_STATE(670)] = 45357, - [SMALL_STATE(671)] = 45395, - [SMALL_STATE(672)] = 45433, - [SMALL_STATE(673)] = 45471, - [SMALL_STATE(674)] = 45509, - [SMALL_STATE(675)] = 45547, - [SMALL_STATE(676)] = 45575, - [SMALL_STATE(677)] = 45613, - [SMALL_STATE(678)] = 45651, - [SMALL_STATE(679)] = 45679, - [SMALL_STATE(680)] = 45717, - [SMALL_STATE(681)] = 45755, - [SMALL_STATE(682)] = 45781, - [SMALL_STATE(683)] = 45807, - [SMALL_STATE(684)] = 45845, - [SMALL_STATE(685)] = 45883, - [SMALL_STATE(686)] = 45911, - [SMALL_STATE(687)] = 45949, - [SMALL_STATE(688)] = 45975, - [SMALL_STATE(689)] = 46013, - [SMALL_STATE(690)] = 46051, - [SMALL_STATE(691)] = 46089, - [SMALL_STATE(692)] = 46115, - [SMALL_STATE(693)] = 46141, - [SMALL_STATE(694)] = 46179, - [SMALL_STATE(695)] = 46217, - [SMALL_STATE(696)] = 46255, - [SMALL_STATE(697)] = 46293, - [SMALL_STATE(698)] = 46319, - [SMALL_STATE(699)] = 46357, - [SMALL_STATE(700)] = 46395, - [SMALL_STATE(701)] = 46419, - [SMALL_STATE(702)] = 46457, - [SMALL_STATE(703)] = 46486, - [SMALL_STATE(704)] = 46519, - [SMALL_STATE(705)] = 46552, - [SMALL_STATE(706)] = 46579, - [SMALL_STATE(707)] = 46618, - [SMALL_STATE(708)] = 46649, - [SMALL_STATE(709)] = 46688, - [SMALL_STATE(710)] = 46717, - [SMALL_STATE(711)] = 46748, - [SMALL_STATE(712)] = 46775, - [SMALL_STATE(713)] = 46802, - [SMALL_STATE(714)] = 46841, - [SMALL_STATE(715)] = 46864, - [SMALL_STATE(716)] = 46886, - [SMALL_STATE(717)] = 46908, - [SMALL_STATE(718)] = 46930, - [SMALL_STATE(719)] = 46966, - [SMALL_STATE(720)] = 47002, - [SMALL_STATE(721)] = 47024, - [SMALL_STATE(722)] = 47060, - [SMALL_STATE(723)] = 47096, - [SMALL_STATE(724)] = 47118, - [SMALL_STATE(725)] = 47144, - [SMALL_STATE(726)] = 47166, - [SMALL_STATE(727)] = 47192, - [SMALL_STATE(728)] = 47218, - [SMALL_STATE(729)] = 47240, - [SMALL_STATE(730)] = 47262, - [SMALL_STATE(731)] = 47284, - [SMALL_STATE(732)] = 47306, - [SMALL_STATE(733)] = 47332, - [SMALL_STATE(734)] = 47354, - [SMALL_STATE(735)] = 47376, - [SMALL_STATE(736)] = 47397, - [SMALL_STATE(737)] = 47418, - [SMALL_STATE(738)] = 47439, - [SMALL_STATE(739)] = 47460, - [SMALL_STATE(740)] = 47481, - [SMALL_STATE(741)] = 47502, - [SMALL_STATE(742)] = 47535, - [SMALL_STATE(743)] = 47556, - [SMALL_STATE(744)] = 47577, - [SMALL_STATE(745)] = 47598, - [SMALL_STATE(746)] = 47619, - [SMALL_STATE(747)] = 47640, - [SMALL_STATE(748)] = 47661, - [SMALL_STATE(749)] = 47702, - [SMALL_STATE(750)] = 47723, - [SMALL_STATE(751)] = 47764, - [SMALL_STATE(752)] = 47785, - [SMALL_STATE(753)] = 47806, - [SMALL_STATE(754)] = 47829, - [SMALL_STATE(755)] = 47850, - [SMALL_STATE(756)] = 47871, - [SMALL_STATE(757)] = 47892, - [SMALL_STATE(758)] = 47913, - [SMALL_STATE(759)] = 47946, - [SMALL_STATE(760)] = 47967, - [SMALL_STATE(761)] = 47988, - [SMALL_STATE(762)] = 48029, - [SMALL_STATE(763)] = 48050, - [SMALL_STATE(764)] = 48071, - [SMALL_STATE(765)] = 48092, - [SMALL_STATE(766)] = 48113, - [SMALL_STATE(767)] = 48134, - [SMALL_STATE(768)] = 48154, - [SMALL_STATE(769)] = 48174, - [SMALL_STATE(770)] = 48194, - [SMALL_STATE(771)] = 48214, - [SMALL_STATE(772)] = 48234, - [SMALL_STATE(773)] = 48272, - [SMALL_STATE(774)] = 48292, - [SMALL_STATE(775)] = 48316, - [SMALL_STATE(776)] = 48343, - [SMALL_STATE(777)] = 48366, - [SMALL_STATE(778)] = 48385, - [SMALL_STATE(779)] = 48404, - [SMALL_STATE(780)] = 48425, - [SMALL_STATE(781)] = 48444, - [SMALL_STATE(782)] = 48463, - [SMALL_STATE(783)] = 48481, - [SMALL_STATE(784)] = 48499, - [SMALL_STATE(785)] = 48517, - [SMALL_STATE(786)] = 48549, - [SMALL_STATE(787)] = 48567, - [SMALL_STATE(788)] = 48585, - [SMALL_STATE(789)] = 48603, - [SMALL_STATE(790)] = 48621, - [SMALL_STATE(791)] = 48639, - [SMALL_STATE(792)] = 48671, - [SMALL_STATE(793)] = 48691, - [SMALL_STATE(794)] = 48709, - [SMALL_STATE(795)] = 48727, - [SMALL_STATE(796)] = 48755, - [SMALL_STATE(797)] = 48773, - [SMALL_STATE(798)] = 48791, - [SMALL_STATE(799)] = 48809, - [SMALL_STATE(800)] = 48827, - [SMALL_STATE(801)] = 48845, - [SMALL_STATE(802)] = 48863, - [SMALL_STATE(803)] = 48881, - [SMALL_STATE(804)] = 48899, - [SMALL_STATE(805)] = 48917, - [SMALL_STATE(806)] = 48935, - [SMALL_STATE(807)] = 48967, - [SMALL_STATE(808)] = 48985, - [SMALL_STATE(809)] = 49003, - [SMALL_STATE(810)] = 49021, - [SMALL_STATE(811)] = 49039, - [SMALL_STATE(812)] = 49067, - [SMALL_STATE(813)] = 49085, - [SMALL_STATE(814)] = 49114, - [SMALL_STATE(815)] = 49131, - [SMALL_STATE(816)] = 49153, - [SMALL_STATE(817)] = 49175, - [SMALL_STATE(818)] = 49199, - [SMALL_STATE(819)] = 49221, - [SMALL_STATE(820)] = 49245, - [SMALL_STATE(821)] = 49269, - [SMALL_STATE(822)] = 49293, - [SMALL_STATE(823)] = 49319, - [SMALL_STATE(824)] = 49341, - [SMALL_STATE(825)] = 49365, - [SMALL_STATE(826)] = 49385, - [SMALL_STATE(827)] = 49411, - [SMALL_STATE(828)] = 49433, - [SMALL_STATE(829)] = 49457, - [SMALL_STATE(830)] = 49483, - [SMALL_STATE(831)] = 49507, - [SMALL_STATE(832)] = 49533, - [SMALL_STATE(833)] = 49559, - [SMALL_STATE(834)] = 49583, - [SMALL_STATE(835)] = 49607, - [SMALL_STATE(836)] = 49627, - [SMALL_STATE(837)] = 49653, - [SMALL_STATE(838)] = 49675, - [SMALL_STATE(839)] = 49699, - [SMALL_STATE(840)] = 49722, - [SMALL_STATE(841)] = 49741, - [SMALL_STATE(842)] = 49762, - [SMALL_STATE(843)] = 49785, - [SMALL_STATE(844)] = 49804, - [SMALL_STATE(845)] = 49825, - [SMALL_STATE(846)] = 49844, - [SMALL_STATE(847)] = 49865, - [SMALL_STATE(848)] = 49886, - [SMALL_STATE(849)] = 49907, - [SMALL_STATE(850)] = 49926, - [SMALL_STATE(851)] = 49945, - [SMALL_STATE(852)] = 49968, - [SMALL_STATE(853)] = 49989, - [SMALL_STATE(854)] = 50010, - [SMALL_STATE(855)] = 50033, - [SMALL_STATE(856)] = 50050, - [SMALL_STATE(857)] = 50073, - [SMALL_STATE(858)] = 50094, - [SMALL_STATE(859)] = 50113, - [SMALL_STATE(860)] = 50134, - [SMALL_STATE(861)] = 50157, - [SMALL_STATE(862)] = 50180, - [SMALL_STATE(863)] = 50198, - [SMALL_STATE(864)] = 50216, - [SMALL_STATE(865)] = 50234, - [SMALL_STATE(866)] = 50252, - [SMALL_STATE(867)] = 50270, - [SMALL_STATE(868)] = 50288, - [SMALL_STATE(869)] = 50308, - [SMALL_STATE(870)] = 50326, - [SMALL_STATE(871)] = 50344, - [SMALL_STATE(872)] = 50362, - [SMALL_STATE(873)] = 50382, - [SMALL_STATE(874)] = 50398, - [SMALL_STATE(875)] = 50416, - [SMALL_STATE(876)] = 50434, - [SMALL_STATE(877)] = 50454, - [SMALL_STATE(878)] = 50472, - [SMALL_STATE(879)] = 50488, - [SMALL_STATE(880)] = 50506, - [SMALL_STATE(881)] = 50526, - [SMALL_STATE(882)] = 50542, - [SMALL_STATE(883)] = 50560, - [SMALL_STATE(884)] = 50576, - [SMALL_STATE(885)] = 50594, - [SMALL_STATE(886)] = 50612, - [SMALL_STATE(887)] = 50630, - [SMALL_STATE(888)] = 50648, - [SMALL_STATE(889)] = 50668, - [SMALL_STATE(890)] = 50686, - [SMALL_STATE(891)] = 50704, - [SMALL_STATE(892)] = 50722, - [SMALL_STATE(893)] = 50740, - [SMALL_STATE(894)] = 50760, - [SMALL_STATE(895)] = 50778, - [SMALL_STATE(896)] = 50796, - [SMALL_STATE(897)] = 50814, - [SMALL_STATE(898)] = 50832, - [SMALL_STATE(899)] = 50850, - [SMALL_STATE(900)] = 50870, - [SMALL_STATE(901)] = 50886, - [SMALL_STATE(902)] = 50906, - [SMALL_STATE(903)] = 50926, - [SMALL_STATE(904)] = 50946, - [SMALL_STATE(905)] = 50964, - [SMALL_STATE(906)] = 50982, - [SMALL_STATE(907)] = 51000, - [SMALL_STATE(908)] = 51020, - [SMALL_STATE(909)] = 51038, - [SMALL_STATE(910)] = 51056, - [SMALL_STATE(911)] = 51076, - [SMALL_STATE(912)] = 51094, - [SMALL_STATE(913)] = 51107, - [SMALL_STATE(914)] = 51120, - [SMALL_STATE(915)] = 51137, - [SMALL_STATE(916)] = 51154, - [SMALL_STATE(917)] = 51169, - [SMALL_STATE(918)] = 51184, - [SMALL_STATE(919)] = 51201, - [SMALL_STATE(920)] = 51218, - [SMALL_STATE(921)] = 51233, - [SMALL_STATE(922)] = 51250, - [SMALL_STATE(923)] = 51267, - [SMALL_STATE(924)] = 51280, - [SMALL_STATE(925)] = 51293, - [SMALL_STATE(926)] = 51310, - [SMALL_STATE(927)] = 51327, - [SMALL_STATE(928)] = 51344, - [SMALL_STATE(929)] = 51357, - [SMALL_STATE(930)] = 51374, - [SMALL_STATE(931)] = 51391, - [SMALL_STATE(932)] = 51408, - [SMALL_STATE(933)] = 51425, - [SMALL_STATE(934)] = 51440, - [SMALL_STATE(935)] = 51453, - [SMALL_STATE(936)] = 51466, - [SMALL_STATE(937)] = 51483, - [SMALL_STATE(938)] = 51500, - [SMALL_STATE(939)] = 51517, - [SMALL_STATE(940)] = 51534, - [SMALL_STATE(941)] = 51549, - [SMALL_STATE(942)] = 51562, - [SMALL_STATE(943)] = 51579, - [SMALL_STATE(944)] = 51596, - [SMALL_STATE(945)] = 51613, - [SMALL_STATE(946)] = 51630, - [SMALL_STATE(947)] = 51647, - [SMALL_STATE(948)] = 51664, - [SMALL_STATE(949)] = 51681, - [SMALL_STATE(950)] = 51698, - [SMALL_STATE(951)] = 51715, - [SMALL_STATE(952)] = 51732, - [SMALL_STATE(953)] = 51749, - [SMALL_STATE(954)] = 51766, - [SMALL_STATE(955)] = 51783, - [SMALL_STATE(956)] = 51800, - [SMALL_STATE(957)] = 51815, - [SMALL_STATE(958)] = 51832, - [SMALL_STATE(959)] = 51849, - [SMALL_STATE(960)] = 51862, - [SMALL_STATE(961)] = 51879, - [SMALL_STATE(962)] = 51896, - [SMALL_STATE(963)] = 51909, - [SMALL_STATE(964)] = 51926, - [SMALL_STATE(965)] = 51943, - [SMALL_STATE(966)] = 51960, - [SMALL_STATE(967)] = 51977, - [SMALL_STATE(968)] = 51990, - [SMALL_STATE(969)] = 52007, - [SMALL_STATE(970)] = 52024, - [SMALL_STATE(971)] = 52041, - [SMALL_STATE(972)] = 52058, - [SMALL_STATE(973)] = 52071, - [SMALL_STATE(974)] = 52084, - [SMALL_STATE(975)] = 52097, - [SMALL_STATE(976)] = 52114, - [SMALL_STATE(977)] = 52127, - [SMALL_STATE(978)] = 52144, - [SMALL_STATE(979)] = 52161, - [SMALL_STATE(980)] = 52178, - [SMALL_STATE(981)] = 52191, - [SMALL_STATE(982)] = 52208, - [SMALL_STATE(983)] = 52225, - [SMALL_STATE(984)] = 52242, - [SMALL_STATE(985)] = 52259, - [SMALL_STATE(986)] = 52276, - [SMALL_STATE(987)] = 52293, - [SMALL_STATE(988)] = 52310, - [SMALL_STATE(989)] = 52327, - [SMALL_STATE(990)] = 52344, - [SMALL_STATE(991)] = 52361, - [SMALL_STATE(992)] = 52378, - [SMALL_STATE(993)] = 52395, - [SMALL_STATE(994)] = 52412, - [SMALL_STATE(995)] = 52425, - [SMALL_STATE(996)] = 52442, - [SMALL_STATE(997)] = 52459, - [SMALL_STATE(998)] = 52476, - [SMALL_STATE(999)] = 52489, - [SMALL_STATE(1000)] = 52506, - [SMALL_STATE(1001)] = 52519, - [SMALL_STATE(1002)] = 52536, - [SMALL_STATE(1003)] = 52553, - [SMALL_STATE(1004)] = 52566, - [SMALL_STATE(1005)] = 52583, - [SMALL_STATE(1006)] = 52600, - [SMALL_STATE(1007)] = 52617, - [SMALL_STATE(1008)] = 52634, - [SMALL_STATE(1009)] = 52647, - [SMALL_STATE(1010)] = 52664, - [SMALL_STATE(1011)] = 52681, - [SMALL_STATE(1012)] = 52694, - [SMALL_STATE(1013)] = 52711, - [SMALL_STATE(1014)] = 52728, - [SMALL_STATE(1015)] = 52745, - [SMALL_STATE(1016)] = 52762, - [SMALL_STATE(1017)] = 52779, - [SMALL_STATE(1018)] = 52792, - [SMALL_STATE(1019)] = 52809, - [SMALL_STATE(1020)] = 52826, - [SMALL_STATE(1021)] = 52843, - [SMALL_STATE(1022)] = 52860, - [SMALL_STATE(1023)] = 52877, - [SMALL_STATE(1024)] = 52894, - [SMALL_STATE(1025)] = 52907, - [SMALL_STATE(1026)] = 52924, - [SMALL_STATE(1027)] = 52941, - [SMALL_STATE(1028)] = 52958, - [SMALL_STATE(1029)] = 52975, - [SMALL_STATE(1030)] = 52992, - [SMALL_STATE(1031)] = 53009, - [SMALL_STATE(1032)] = 53026, - [SMALL_STATE(1033)] = 53043, - [SMALL_STATE(1034)] = 53060, - [SMALL_STATE(1035)] = 53077, - [SMALL_STATE(1036)] = 53094, - [SMALL_STATE(1037)] = 53111, - [SMALL_STATE(1038)] = 53128, - [SMALL_STATE(1039)] = 53145, - [SMALL_STATE(1040)] = 53162, - [SMALL_STATE(1041)] = 53179, - [SMALL_STATE(1042)] = 53196, - [SMALL_STATE(1043)] = 53213, - [SMALL_STATE(1044)] = 53226, - [SMALL_STATE(1045)] = 53243, - [SMALL_STATE(1046)] = 53260, - [SMALL_STATE(1047)] = 53277, - [SMALL_STATE(1048)] = 53290, - [SMALL_STATE(1049)] = 53307, - [SMALL_STATE(1050)] = 53324, - [SMALL_STATE(1051)] = 53341, - [SMALL_STATE(1052)] = 53358, - [SMALL_STATE(1053)] = 53375, - [SMALL_STATE(1054)] = 53388, - [SMALL_STATE(1055)] = 53405, - [SMALL_STATE(1056)] = 53422, - [SMALL_STATE(1057)] = 53439, - [SMALL_STATE(1058)] = 53456, - [SMALL_STATE(1059)] = 53470, - [SMALL_STATE(1060)] = 53484, - [SMALL_STATE(1061)] = 53498, - [SMALL_STATE(1062)] = 53510, - [SMALL_STATE(1063)] = 53522, - [SMALL_STATE(1064)] = 53536, - [SMALL_STATE(1065)] = 53550, - [SMALL_STATE(1066)] = 53564, - [SMALL_STATE(1067)] = 53578, - [SMALL_STATE(1068)] = 53592, - [SMALL_STATE(1069)] = 53606, - [SMALL_STATE(1070)] = 53620, - [SMALL_STATE(1071)] = 53634, - [SMALL_STATE(1072)] = 53648, - [SMALL_STATE(1073)] = 53662, - [SMALL_STATE(1074)] = 53676, - [SMALL_STATE(1075)] = 53688, - [SMALL_STATE(1076)] = 53702, - [SMALL_STATE(1077)] = 53716, - [SMALL_STATE(1078)] = 53728, - [SMALL_STATE(1079)] = 53742, - [SMALL_STATE(1080)] = 53756, - [SMALL_STATE(1081)] = 53770, - [SMALL_STATE(1082)] = 53784, - [SMALL_STATE(1083)] = 53798, - [SMALL_STATE(1084)] = 53812, - [SMALL_STATE(1085)] = 53824, - [SMALL_STATE(1086)] = 53838, - [SMALL_STATE(1087)] = 53850, - [SMALL_STATE(1088)] = 53864, - [SMALL_STATE(1089)] = 53876, - [SMALL_STATE(1090)] = 53890, - [SMALL_STATE(1091)] = 53904, - [SMALL_STATE(1092)] = 53918, - [SMALL_STATE(1093)] = 53932, - [SMALL_STATE(1094)] = 53944, - [SMALL_STATE(1095)] = 53956, - [SMALL_STATE(1096)] = 53970, - [SMALL_STATE(1097)] = 53984, - [SMALL_STATE(1098)] = 53998, - [SMALL_STATE(1099)] = 54012, - [SMALL_STATE(1100)] = 54026, - [SMALL_STATE(1101)] = 54038, - [SMALL_STATE(1102)] = 54052, - [SMALL_STATE(1103)] = 54066, - [SMALL_STATE(1104)] = 54080, - [SMALL_STATE(1105)] = 54094, - [SMALL_STATE(1106)] = 54108, - [SMALL_STATE(1107)] = 54120, - [SMALL_STATE(1108)] = 54132, - [SMALL_STATE(1109)] = 54144, - [SMALL_STATE(1110)] = 54156, - [SMALL_STATE(1111)] = 54168, - [SMALL_STATE(1112)] = 54180, - [SMALL_STATE(1113)] = 54194, - [SMALL_STATE(1114)] = 54208, - [SMALL_STATE(1115)] = 54220, - [SMALL_STATE(1116)] = 54234, - [SMALL_STATE(1117)] = 54246, - [SMALL_STATE(1118)] = 54258, - [SMALL_STATE(1119)] = 54272, - [SMALL_STATE(1120)] = 54286, - [SMALL_STATE(1121)] = 54298, - [SMALL_STATE(1122)] = 54312, - [SMALL_STATE(1123)] = 54326, - [SMALL_STATE(1124)] = 54338, - [SMALL_STATE(1125)] = 54352, - [SMALL_STATE(1126)] = 54364, - [SMALL_STATE(1127)] = 54378, - [SMALL_STATE(1128)] = 54390, - [SMALL_STATE(1129)] = 54404, - [SMALL_STATE(1130)] = 54416, - [SMALL_STATE(1131)] = 54428, - [SMALL_STATE(1132)] = 54442, - [SMALL_STATE(1133)] = 54454, - [SMALL_STATE(1134)] = 54466, - [SMALL_STATE(1135)] = 54478, - [SMALL_STATE(1136)] = 54492, - [SMALL_STATE(1137)] = 54506, - [SMALL_STATE(1138)] = 54520, - [SMALL_STATE(1139)] = 54532, - [SMALL_STATE(1140)] = 54544, - [SMALL_STATE(1141)] = 54556, - [SMALL_STATE(1142)] = 54570, - [SMALL_STATE(1143)] = 54582, - [SMALL_STATE(1144)] = 54594, - [SMALL_STATE(1145)] = 54606, - [SMALL_STATE(1146)] = 54618, - [SMALL_STATE(1147)] = 54632, - [SMALL_STATE(1148)] = 54646, - [SMALL_STATE(1149)] = 54658, - [SMALL_STATE(1150)] = 54670, - [SMALL_STATE(1151)] = 54684, - [SMALL_STATE(1152)] = 54698, - [SMALL_STATE(1153)] = 54712, - [SMALL_STATE(1154)] = 54726, - [SMALL_STATE(1155)] = 54738, - [SMALL_STATE(1156)] = 54750, - [SMALL_STATE(1157)] = 54764, - [SMALL_STATE(1158)] = 54778, - [SMALL_STATE(1159)] = 54792, - [SMALL_STATE(1160)] = 54806, - [SMALL_STATE(1161)] = 54820, - [SMALL_STATE(1162)] = 54832, - [SMALL_STATE(1163)] = 54844, - [SMALL_STATE(1164)] = 54858, - [SMALL_STATE(1165)] = 54870, - [SMALL_STATE(1166)] = 54882, - [SMALL_STATE(1167)] = 54894, - [SMALL_STATE(1168)] = 54906, - [SMALL_STATE(1169)] = 54920, - [SMALL_STATE(1170)] = 54932, - [SMALL_STATE(1171)] = 54946, - [SMALL_STATE(1172)] = 54958, - [SMALL_STATE(1173)] = 54972, - [SMALL_STATE(1174)] = 54986, - [SMALL_STATE(1175)] = 54998, - [SMALL_STATE(1176)] = 55012, - [SMALL_STATE(1177)] = 55026, - [SMALL_STATE(1178)] = 55040, - [SMALL_STATE(1179)] = 55052, - [SMALL_STATE(1180)] = 55064, - [SMALL_STATE(1181)] = 55078, - [SMALL_STATE(1182)] = 55092, - [SMALL_STATE(1183)] = 55106, - [SMALL_STATE(1184)] = 55118, - [SMALL_STATE(1185)] = 55132, - [SMALL_STATE(1186)] = 55146, - [SMALL_STATE(1187)] = 55157, - [SMALL_STATE(1188)] = 55168, - [SMALL_STATE(1189)] = 55179, - [SMALL_STATE(1190)] = 55190, - [SMALL_STATE(1191)] = 55201, - [SMALL_STATE(1192)] = 55212, - [SMALL_STATE(1193)] = 55223, - [SMALL_STATE(1194)] = 55234, - [SMALL_STATE(1195)] = 55245, - [SMALL_STATE(1196)] = 55256, - [SMALL_STATE(1197)] = 55267, - [SMALL_STATE(1198)] = 55278, - [SMALL_STATE(1199)] = 55289, - [SMALL_STATE(1200)] = 55300, - [SMALL_STATE(1201)] = 55311, - [SMALL_STATE(1202)] = 55322, - [SMALL_STATE(1203)] = 55333, - [SMALL_STATE(1204)] = 55344, - [SMALL_STATE(1205)] = 55355, - [SMALL_STATE(1206)] = 55366, - [SMALL_STATE(1207)] = 55377, - [SMALL_STATE(1208)] = 55388, - [SMALL_STATE(1209)] = 55399, - [SMALL_STATE(1210)] = 55410, - [SMALL_STATE(1211)] = 55421, - [SMALL_STATE(1212)] = 55432, - [SMALL_STATE(1213)] = 55443, - [SMALL_STATE(1214)] = 55454, - [SMALL_STATE(1215)] = 55465, - [SMALL_STATE(1216)] = 55476, - [SMALL_STATE(1217)] = 55487, - [SMALL_STATE(1218)] = 55498, - [SMALL_STATE(1219)] = 55509, - [SMALL_STATE(1220)] = 55520, - [SMALL_STATE(1221)] = 55531, - [SMALL_STATE(1222)] = 55542, - [SMALL_STATE(1223)] = 55553, - [SMALL_STATE(1224)] = 55564, - [SMALL_STATE(1225)] = 55575, - [SMALL_STATE(1226)] = 55586, - [SMALL_STATE(1227)] = 55597, - [SMALL_STATE(1228)] = 55608, - [SMALL_STATE(1229)] = 55619, - [SMALL_STATE(1230)] = 55630, - [SMALL_STATE(1231)] = 55641, - [SMALL_STATE(1232)] = 55652, - [SMALL_STATE(1233)] = 55663, - [SMALL_STATE(1234)] = 55674, - [SMALL_STATE(1235)] = 55685, - [SMALL_STATE(1236)] = 55696, - [SMALL_STATE(1237)] = 55707, - [SMALL_STATE(1238)] = 55718, - [SMALL_STATE(1239)] = 55729, - [SMALL_STATE(1240)] = 55740, - [SMALL_STATE(1241)] = 55751, - [SMALL_STATE(1242)] = 55762, - [SMALL_STATE(1243)] = 55773, - [SMALL_STATE(1244)] = 55784, - [SMALL_STATE(1245)] = 55795, - [SMALL_STATE(1246)] = 55806, - [SMALL_STATE(1247)] = 55817, - [SMALL_STATE(1248)] = 55828, - [SMALL_STATE(1249)] = 55839, - [SMALL_STATE(1250)] = 55850, - [SMALL_STATE(1251)] = 55861, - [SMALL_STATE(1252)] = 55872, - [SMALL_STATE(1253)] = 55883, - [SMALL_STATE(1254)] = 55894, - [SMALL_STATE(1255)] = 55905, - [SMALL_STATE(1256)] = 55916, - [SMALL_STATE(1257)] = 55927, - [SMALL_STATE(1258)] = 55938, - [SMALL_STATE(1259)] = 55949, - [SMALL_STATE(1260)] = 55960, - [SMALL_STATE(1261)] = 55971, - [SMALL_STATE(1262)] = 55982, - [SMALL_STATE(1263)] = 55993, - [SMALL_STATE(1264)] = 56004, - [SMALL_STATE(1265)] = 56015, - [SMALL_STATE(1266)] = 56026, - [SMALL_STATE(1267)] = 56037, - [SMALL_STATE(1268)] = 56048, - [SMALL_STATE(1269)] = 56059, - [SMALL_STATE(1270)] = 56070, - [SMALL_STATE(1271)] = 56081, - [SMALL_STATE(1272)] = 56092, - [SMALL_STATE(1273)] = 56103, - [SMALL_STATE(1274)] = 56114, - [SMALL_STATE(1275)] = 56125, - [SMALL_STATE(1276)] = 56136, - [SMALL_STATE(1277)] = 56147, - [SMALL_STATE(1278)] = 56158, - [SMALL_STATE(1279)] = 56169, - [SMALL_STATE(1280)] = 56180, - [SMALL_STATE(1281)] = 56191, - [SMALL_STATE(1282)] = 56202, - [SMALL_STATE(1283)] = 56213, - [SMALL_STATE(1284)] = 56224, - [SMALL_STATE(1285)] = 56235, - [SMALL_STATE(1286)] = 56246, - [SMALL_STATE(1287)] = 56257, - [SMALL_STATE(1288)] = 56268, - [SMALL_STATE(1289)] = 56279, - [SMALL_STATE(1290)] = 56290, - [SMALL_STATE(1291)] = 56301, - [SMALL_STATE(1292)] = 56312, - [SMALL_STATE(1293)] = 56323, - [SMALL_STATE(1294)] = 56334, - [SMALL_STATE(1295)] = 56345, - [SMALL_STATE(1296)] = 56356, - [SMALL_STATE(1297)] = 56367, - [SMALL_STATE(1298)] = 56378, - [SMALL_STATE(1299)] = 56389, - [SMALL_STATE(1300)] = 56400, + [SMALL_STATE(594)] = 41743, + [SMALL_STATE(595)] = 41797, + [SMALL_STATE(596)] = 41857, + [SMALL_STATE(597)] = 41917, + [SMALL_STATE(598)] = 41977, + [SMALL_STATE(599)] = 42031, + [SMALL_STATE(600)] = 42093, + [SMALL_STATE(601)] = 42155, + [SMALL_STATE(602)] = 42215, + [SMALL_STATE(603)] = 42275, + [SMALL_STATE(604)] = 42329, + [SMALL_STATE(605)] = 42391, + [SMALL_STATE(606)] = 42451, + [SMALL_STATE(607)] = 42511, + [SMALL_STATE(608)] = 42568, + [SMALL_STATE(609)] = 42625, + [SMALL_STATE(610)] = 42678, + [SMALL_STATE(611)] = 42731, + [SMALL_STATE(612)] = 42784, + [SMALL_STATE(613)] = 42837, + [SMALL_STATE(614)] = 42890, + [SMALL_STATE(615)] = 42943, + [SMALL_STATE(616)] = 42996, + [SMALL_STATE(617)] = 43049, + [SMALL_STATE(618)] = 43106, + [SMALL_STATE(619)] = 43159, + [SMALL_STATE(620)] = 43216, + [SMALL_STATE(621)] = 43269, + [SMALL_STATE(622)] = 43326, + [SMALL_STATE(623)] = 43379, + [SMALL_STATE(624)] = 43432, + [SMALL_STATE(625)] = 43489, + [SMALL_STATE(626)] = 43542, + [SMALL_STATE(627)] = 43599, + [SMALL_STATE(628)] = 43656, + [SMALL_STATE(629)] = 43709, + [SMALL_STATE(630)] = 43766, + [SMALL_STATE(631)] = 43819, + [SMALL_STATE(632)] = 43872, + [SMALL_STATE(633)] = 43929, + [SMALL_STATE(634)] = 43982, + [SMALL_STATE(635)] = 44015, + [SMALL_STATE(636)] = 44045, + [SMALL_STATE(637)] = 44075, + [SMALL_STATE(638)] = 44105, + [SMALL_STATE(639)] = 44148, + [SMALL_STATE(640)] = 44177, + [SMALL_STATE(641)] = 44224, + [SMALL_STATE(642)] = 44271, + [SMALL_STATE(643)] = 44300, + [SMALL_STATE(644)] = 44343, + [SMALL_STATE(645)] = 44390, + [SMALL_STATE(646)] = 44433, + [SMALL_STATE(647)] = 44462, + [SMALL_STATE(648)] = 44491, + [SMALL_STATE(649)] = 44535, + [SMALL_STATE(650)] = 44579, + [SMALL_STATE(651)] = 44623, + [SMALL_STATE(652)] = 44667, + [SMALL_STATE(653)] = 44711, + [SMALL_STATE(654)] = 44755, + [SMALL_STATE(655)] = 44799, + [SMALL_STATE(656)] = 44843, + [SMALL_STATE(657)] = 44887, + [SMALL_STATE(658)] = 44931, + [SMALL_STATE(659)] = 44972, + [SMALL_STATE(660)] = 45013, + [SMALL_STATE(661)] = 45054, + [SMALL_STATE(662)] = 45095, + [SMALL_STATE(663)] = 45136, + [SMALL_STATE(664)] = 45177, + [SMALL_STATE(665)] = 45218, + [SMALL_STATE(666)] = 45259, + [SMALL_STATE(667)] = 45300, + [SMALL_STATE(668)] = 45343, + [SMALL_STATE(669)] = 45386, + [SMALL_STATE(670)] = 45429, + [SMALL_STATE(671)] = 45470, + [SMALL_STATE(672)] = 45511, + [SMALL_STATE(673)] = 45549, + [SMALL_STATE(674)] = 45575, + [SMALL_STATE(675)] = 45613, + [SMALL_STATE(676)] = 45653, + [SMALL_STATE(677)] = 45691, + [SMALL_STATE(678)] = 45729, + [SMALL_STATE(679)] = 45767, + [SMALL_STATE(680)] = 45793, + [SMALL_STATE(681)] = 45831, + [SMALL_STATE(682)] = 45869, + [SMALL_STATE(683)] = 45893, + [SMALL_STATE(684)] = 45931, + [SMALL_STATE(685)] = 45959, + [SMALL_STATE(686)] = 45985, + [SMALL_STATE(687)] = 46013, + [SMALL_STATE(688)] = 46051, + [SMALL_STATE(689)] = 46089, + [SMALL_STATE(690)] = 46127, + [SMALL_STATE(691)] = 46155, + [SMALL_STATE(692)] = 46181, + [SMALL_STATE(693)] = 46221, + [SMALL_STATE(694)] = 46261, + [SMALL_STATE(695)] = 46299, + [SMALL_STATE(696)] = 46337, + [SMALL_STATE(697)] = 46377, + [SMALL_STATE(698)] = 46415, + [SMALL_STATE(699)] = 46453, + [SMALL_STATE(700)] = 46491, + [SMALL_STATE(701)] = 46517, + [SMALL_STATE(702)] = 46555, + [SMALL_STATE(703)] = 46593, + [SMALL_STATE(704)] = 46631, + [SMALL_STATE(705)] = 46671, + [SMALL_STATE(706)] = 46709, + [SMALL_STATE(707)] = 46735, + [SMALL_STATE(708)] = 46773, + [SMALL_STATE(709)] = 46811, + [SMALL_STATE(710)] = 46851, + [SMALL_STATE(711)] = 46889, + [SMALL_STATE(712)] = 46927, + [SMALL_STATE(713)] = 46965, + [SMALL_STATE(714)] = 47003, + [SMALL_STATE(715)] = 47043, + [SMALL_STATE(716)] = 47080, + [SMALL_STATE(717)] = 47117, + [SMALL_STATE(718)] = 47144, + [SMALL_STATE(719)] = 47177, + [SMALL_STATE(720)] = 47202, + [SMALL_STATE(721)] = 47233, + [SMALL_STATE(722)] = 47256, + [SMALL_STATE(723)] = 47293, + [SMALL_STATE(724)] = 47320, + [SMALL_STATE(725)] = 47347, + [SMALL_STATE(726)] = 47376, + [SMALL_STATE(727)] = 47413, + [SMALL_STATE(728)] = 47444, + [SMALL_STATE(729)] = 47473, + [SMALL_STATE(730)] = 47506, + [SMALL_STATE(731)] = 47528, + [SMALL_STATE(732)] = 47554, + [SMALL_STATE(733)] = 47576, + [SMALL_STATE(734)] = 47602, + [SMALL_STATE(735)] = 47624, + [SMALL_STATE(736)] = 47646, + [SMALL_STATE(737)] = 47668, + [SMALL_STATE(738)] = 47690, + [SMALL_STATE(739)] = 47712, + [SMALL_STATE(740)] = 47734, + [SMALL_STATE(741)] = 47756, + [SMALL_STATE(742)] = 47778, + [SMALL_STATE(743)] = 47804, + [SMALL_STATE(744)] = 47830, + [SMALL_STATE(745)] = 47852, + [SMALL_STATE(746)] = 47874, + [SMALL_STATE(747)] = 47915, + [SMALL_STATE(748)] = 47936, + [SMALL_STATE(749)] = 47957, + [SMALL_STATE(750)] = 47978, + [SMALL_STATE(751)] = 47999, + [SMALL_STATE(752)] = 48020, + [SMALL_STATE(753)] = 48041, + [SMALL_STATE(754)] = 48062, + [SMALL_STATE(755)] = 48083, + [SMALL_STATE(756)] = 48104, + [SMALL_STATE(757)] = 48125, + [SMALL_STATE(758)] = 48146, + [SMALL_STATE(759)] = 48167, + [SMALL_STATE(760)] = 48188, + [SMALL_STATE(761)] = 48209, + [SMALL_STATE(762)] = 48230, + [SMALL_STATE(763)] = 48271, + [SMALL_STATE(764)] = 48292, + [SMALL_STATE(765)] = 48313, + [SMALL_STATE(766)] = 48334, + [SMALL_STATE(767)] = 48355, + [SMALL_STATE(768)] = 48376, + [SMALL_STATE(769)] = 48397, + [SMALL_STATE(770)] = 48418, + [SMALL_STATE(771)] = 48441, + [SMALL_STATE(772)] = 48462, + [SMALL_STATE(773)] = 48503, + [SMALL_STATE(774)] = 48524, + [SMALL_STATE(775)] = 48545, + [SMALL_STATE(776)] = 48566, + [SMALL_STATE(777)] = 48586, + [SMALL_STATE(778)] = 48620, + [SMALL_STATE(779)] = 48640, + [SMALL_STATE(780)] = 48664, + [SMALL_STATE(781)] = 48684, + [SMALL_STATE(782)] = 48722, + [SMALL_STATE(783)] = 48742, + [SMALL_STATE(784)] = 48762, + [SMALL_STATE(785)] = 48782, + [SMALL_STATE(786)] = 48816, + [SMALL_STATE(787)] = 48837, + [SMALL_STATE(788)] = 48860, + [SMALL_STATE(789)] = 48887, + [SMALL_STATE(790)] = 48908, + [SMALL_STATE(791)] = 48927, + [SMALL_STATE(792)] = 48946, + [SMALL_STATE(793)] = 48965, + [SMALL_STATE(794)] = 48984, + [SMALL_STATE(795)] = 49002, + [SMALL_STATE(796)] = 49020, + [SMALL_STATE(797)] = 49052, + [SMALL_STATE(798)] = 49070, + [SMALL_STATE(799)] = 49088, + [SMALL_STATE(800)] = 49120, + [SMALL_STATE(801)] = 49138, + [SMALL_STATE(802)] = 49156, + [SMALL_STATE(803)] = 49174, + [SMALL_STATE(804)] = 49192, + [SMALL_STATE(805)] = 49210, + [SMALL_STATE(806)] = 49228, + [SMALL_STATE(807)] = 49246, + [SMALL_STATE(808)] = 49264, + [SMALL_STATE(809)] = 49282, + [SMALL_STATE(810)] = 49300, + [SMALL_STATE(811)] = 49318, + [SMALL_STATE(812)] = 49336, + [SMALL_STATE(813)] = 49354, + [SMALL_STATE(814)] = 49372, + [SMALL_STATE(815)] = 49404, + [SMALL_STATE(816)] = 49422, + [SMALL_STATE(817)] = 49440, + [SMALL_STATE(818)] = 49458, + [SMALL_STATE(819)] = 49476, + [SMALL_STATE(820)] = 49494, + [SMALL_STATE(821)] = 49512, + [SMALL_STATE(822)] = 49532, + [SMALL_STATE(823)] = 49550, + [SMALL_STATE(824)] = 49579, + [SMALL_STATE(825)] = 49596, + [SMALL_STATE(826)] = 49620, + [SMALL_STATE(827)] = 49642, + [SMALL_STATE(828)] = 49666, + [SMALL_STATE(829)] = 49690, + [SMALL_STATE(830)] = 49712, + [SMALL_STATE(831)] = 49736, + [SMALL_STATE(832)] = 49760, + [SMALL_STATE(833)] = 49782, + [SMALL_STATE(834)] = 49806, + [SMALL_STATE(835)] = 49830, + [SMALL_STATE(836)] = 49856, + [SMALL_STATE(837)] = 49878, + [SMALL_STATE(838)] = 49902, + [SMALL_STATE(839)] = 49924, + [SMALL_STATE(840)] = 49948, + [SMALL_STATE(841)] = 49970, + [SMALL_STATE(842)] = 49990, + [SMALL_STATE(843)] = 50016, + [SMALL_STATE(844)] = 50042, + [SMALL_STATE(845)] = 50068, + [SMALL_STATE(846)] = 50094, + [SMALL_STATE(847)] = 50118, + [SMALL_STATE(848)] = 50138, + [SMALL_STATE(849)] = 50164, + [SMALL_STATE(850)] = 50182, + [SMALL_STATE(851)] = 50205, + [SMALL_STATE(852)] = 50226, + [SMALL_STATE(853)] = 50245, + [SMALL_STATE(854)] = 50266, + [SMALL_STATE(855)] = 50289, + [SMALL_STATE(856)] = 50308, + [SMALL_STATE(857)] = 50329, + [SMALL_STATE(858)] = 50350, + [SMALL_STATE(859)] = 50369, + [SMALL_STATE(860)] = 50392, + [SMALL_STATE(861)] = 50413, + [SMALL_STATE(862)] = 50432, + [SMALL_STATE(863)] = 50455, + [SMALL_STATE(864)] = 50476, + [SMALL_STATE(865)] = 50497, + [SMALL_STATE(866)] = 50514, + [SMALL_STATE(867)] = 50535, + [SMALL_STATE(868)] = 50554, + [SMALL_STATE(869)] = 50577, + [SMALL_STATE(870)] = 50598, + [SMALL_STATE(871)] = 50617, + [SMALL_STATE(872)] = 50640, + [SMALL_STATE(873)] = 50663, + [SMALL_STATE(874)] = 50683, + [SMALL_STATE(875)] = 50703, + [SMALL_STATE(876)] = 50723, + [SMALL_STATE(877)] = 50741, + [SMALL_STATE(878)] = 50759, + [SMALL_STATE(879)] = 50777, + [SMALL_STATE(880)] = 50795, + [SMALL_STATE(881)] = 50813, + [SMALL_STATE(882)] = 50833, + [SMALL_STATE(883)] = 50853, + [SMALL_STATE(884)] = 50869, + [SMALL_STATE(885)] = 50887, + [SMALL_STATE(886)] = 50905, + [SMALL_STATE(887)] = 50925, + [SMALL_STATE(888)] = 50943, + [SMALL_STATE(889)] = 50961, + [SMALL_STATE(890)] = 50981, + [SMALL_STATE(891)] = 50999, + [SMALL_STATE(892)] = 51015, + [SMALL_STATE(893)] = 51035, + [SMALL_STATE(894)] = 51051, + [SMALL_STATE(895)] = 51069, + [SMALL_STATE(896)] = 51087, + [SMALL_STATE(897)] = 51105, + [SMALL_STATE(898)] = 51123, + [SMALL_STATE(899)] = 51141, + [SMALL_STATE(900)] = 51159, + [SMALL_STATE(901)] = 51175, + [SMALL_STATE(902)] = 51193, + [SMALL_STATE(903)] = 51211, + [SMALL_STATE(904)] = 51229, + [SMALL_STATE(905)] = 51247, + [SMALL_STATE(906)] = 51265, + [SMALL_STATE(907)] = 51285, + [SMALL_STATE(908)] = 51303, + [SMALL_STATE(909)] = 51321, + [SMALL_STATE(910)] = 51339, + [SMALL_STATE(911)] = 51359, + [SMALL_STATE(912)] = 51379, + [SMALL_STATE(913)] = 51399, + [SMALL_STATE(914)] = 51417, + [SMALL_STATE(915)] = 51435, + [SMALL_STATE(916)] = 51453, + [SMALL_STATE(917)] = 51473, + [SMALL_STATE(918)] = 51491, + [SMALL_STATE(919)] = 51509, + [SMALL_STATE(920)] = 51527, + [SMALL_STATE(921)] = 51547, + [SMALL_STATE(922)] = 51565, + [SMALL_STATE(923)] = 51585, + [SMALL_STATE(924)] = 51601, + [SMALL_STATE(925)] = 51619, + [SMALL_STATE(926)] = 51637, + [SMALL_STATE(927)] = 51654, + [SMALL_STATE(928)] = 51671, + [SMALL_STATE(929)] = 51688, + [SMALL_STATE(930)] = 51705, + [SMALL_STATE(931)] = 51722, + [SMALL_STATE(932)] = 51735, + [SMALL_STATE(933)] = 51748, + [SMALL_STATE(934)] = 51765, + [SMALL_STATE(935)] = 51782, + [SMALL_STATE(936)] = 51795, + [SMALL_STATE(937)] = 51812, + [SMALL_STATE(938)] = 51829, + [SMALL_STATE(939)] = 51846, + [SMALL_STATE(940)] = 51863, + [SMALL_STATE(941)] = 51880, + [SMALL_STATE(942)] = 51893, + [SMALL_STATE(943)] = 51910, + [SMALL_STATE(944)] = 51927, + [SMALL_STATE(945)] = 51944, + [SMALL_STATE(946)] = 51961, + [SMALL_STATE(947)] = 51978, + [SMALL_STATE(948)] = 51995, + [SMALL_STATE(949)] = 52012, + [SMALL_STATE(950)] = 52029, + [SMALL_STATE(951)] = 52046, + [SMALL_STATE(952)] = 52063, + [SMALL_STATE(953)] = 52078, + [SMALL_STATE(954)] = 52095, + [SMALL_STATE(955)] = 52112, + [SMALL_STATE(956)] = 52129, + [SMALL_STATE(957)] = 52142, + [SMALL_STATE(958)] = 52159, + [SMALL_STATE(959)] = 52176, + [SMALL_STATE(960)] = 52193, + [SMALL_STATE(961)] = 52210, + [SMALL_STATE(962)] = 52227, + [SMALL_STATE(963)] = 52240, + [SMALL_STATE(964)] = 52257, + [SMALL_STATE(965)] = 52274, + [SMALL_STATE(966)] = 52291, + [SMALL_STATE(967)] = 52304, + [SMALL_STATE(968)] = 52317, + [SMALL_STATE(969)] = 52334, + [SMALL_STATE(970)] = 52351, + [SMALL_STATE(971)] = 52364, + [SMALL_STATE(972)] = 52381, + [SMALL_STATE(973)] = 52398, + [SMALL_STATE(974)] = 52413, + [SMALL_STATE(975)] = 52430, + [SMALL_STATE(976)] = 52447, + [SMALL_STATE(977)] = 52464, + [SMALL_STATE(978)] = 52477, + [SMALL_STATE(979)] = 52494, + [SMALL_STATE(980)] = 52511, + [SMALL_STATE(981)] = 52528, + [SMALL_STATE(982)] = 52545, + [SMALL_STATE(983)] = 52562, + [SMALL_STATE(984)] = 52575, + [SMALL_STATE(985)] = 52592, + [SMALL_STATE(986)] = 52609, + [SMALL_STATE(987)] = 52626, + [SMALL_STATE(988)] = 52643, + [SMALL_STATE(989)] = 52660, + [SMALL_STATE(990)] = 52677, + [SMALL_STATE(991)] = 52690, + [SMALL_STATE(992)] = 52707, + [SMALL_STATE(993)] = 52720, + [SMALL_STATE(994)] = 52733, + [SMALL_STATE(995)] = 52750, + [SMALL_STATE(996)] = 52767, + [SMALL_STATE(997)] = 52784, + [SMALL_STATE(998)] = 52801, + [SMALL_STATE(999)] = 52818, + [SMALL_STATE(1000)] = 52835, + [SMALL_STATE(1001)] = 52852, + [SMALL_STATE(1002)] = 52869, + [SMALL_STATE(1003)] = 52882, + [SMALL_STATE(1004)] = 52897, + [SMALL_STATE(1005)] = 52914, + [SMALL_STATE(1006)] = 52931, + [SMALL_STATE(1007)] = 52944, + [SMALL_STATE(1008)] = 52957, + [SMALL_STATE(1009)] = 52970, + [SMALL_STATE(1010)] = 52987, + [SMALL_STATE(1011)] = 53004, + [SMALL_STATE(1012)] = 53021, + [SMALL_STATE(1013)] = 53036, + [SMALL_STATE(1014)] = 53053, + [SMALL_STATE(1015)] = 53070, + [SMALL_STATE(1016)] = 53087, + [SMALL_STATE(1017)] = 53104, + [SMALL_STATE(1018)] = 53121, + [SMALL_STATE(1019)] = 53134, + [SMALL_STATE(1020)] = 53151, + [SMALL_STATE(1021)] = 53168, + [SMALL_STATE(1022)] = 53185, + [SMALL_STATE(1023)] = 53202, + [SMALL_STATE(1024)] = 53215, + [SMALL_STATE(1025)] = 53232, + [SMALL_STATE(1026)] = 53249, + [SMALL_STATE(1027)] = 53266, + [SMALL_STATE(1028)] = 53283, + [SMALL_STATE(1029)] = 53300, + [SMALL_STATE(1030)] = 53317, + [SMALL_STATE(1031)] = 53330, + [SMALL_STATE(1032)] = 53347, + [SMALL_STATE(1033)] = 53364, + [SMALL_STATE(1034)] = 53377, + [SMALL_STATE(1035)] = 53394, + [SMALL_STATE(1036)] = 53411, + [SMALL_STATE(1037)] = 53428, + [SMALL_STATE(1038)] = 53441, + [SMALL_STATE(1039)] = 53458, + [SMALL_STATE(1040)] = 53475, + [SMALL_STATE(1041)] = 53492, + [SMALL_STATE(1042)] = 53509, + [SMALL_STATE(1043)] = 53522, + [SMALL_STATE(1044)] = 53537, + [SMALL_STATE(1045)] = 53554, + [SMALL_STATE(1046)] = 53571, + [SMALL_STATE(1047)] = 53588, + [SMALL_STATE(1048)] = 53605, + [SMALL_STATE(1049)] = 53618, + [SMALL_STATE(1050)] = 53633, + [SMALL_STATE(1051)] = 53646, + [SMALL_STATE(1052)] = 53663, + [SMALL_STATE(1053)] = 53680, + [SMALL_STATE(1054)] = 53697, + [SMALL_STATE(1055)] = 53710, + [SMALL_STATE(1056)] = 53727, + [SMALL_STATE(1057)] = 53740, + [SMALL_STATE(1058)] = 53757, + [SMALL_STATE(1059)] = 53774, + [SMALL_STATE(1060)] = 53791, + [SMALL_STATE(1061)] = 53808, + [SMALL_STATE(1062)] = 53825, + [SMALL_STATE(1063)] = 53842, + [SMALL_STATE(1064)] = 53855, + [SMALL_STATE(1065)] = 53872, + [SMALL_STATE(1066)] = 53889, + [SMALL_STATE(1067)] = 53906, + [SMALL_STATE(1068)] = 53923, + [SMALL_STATE(1069)] = 53940, + [SMALL_STATE(1070)] = 53957, + [SMALL_STATE(1071)] = 53974, + [SMALL_STATE(1072)] = 53991, + [SMALL_STATE(1073)] = 54008, + [SMALL_STATE(1074)] = 54025, + [SMALL_STATE(1075)] = 54042, + [SMALL_STATE(1076)] = 54059, + [SMALL_STATE(1077)] = 54076, + [SMALL_STATE(1078)] = 54088, + [SMALL_STATE(1079)] = 54102, + [SMALL_STATE(1080)] = 54116, + [SMALL_STATE(1081)] = 54130, + [SMALL_STATE(1082)] = 54144, + [SMALL_STATE(1083)] = 54156, + [SMALL_STATE(1084)] = 54168, + [SMALL_STATE(1085)] = 54180, + [SMALL_STATE(1086)] = 54194, + [SMALL_STATE(1087)] = 54208, + [SMALL_STATE(1088)] = 54220, + [SMALL_STATE(1089)] = 54232, + [SMALL_STATE(1090)] = 54244, + [SMALL_STATE(1091)] = 54258, + [SMALL_STATE(1092)] = 54272, + [SMALL_STATE(1093)] = 54286, + [SMALL_STATE(1094)] = 54298, + [SMALL_STATE(1095)] = 54312, + [SMALL_STATE(1096)] = 54326, + [SMALL_STATE(1097)] = 54340, + [SMALL_STATE(1098)] = 54354, + [SMALL_STATE(1099)] = 54368, + [SMALL_STATE(1100)] = 54380, + [SMALL_STATE(1101)] = 54394, + [SMALL_STATE(1102)] = 54408, + [SMALL_STATE(1103)] = 54422, + [SMALL_STATE(1104)] = 54434, + [SMALL_STATE(1105)] = 54446, + [SMALL_STATE(1106)] = 54460, + [SMALL_STATE(1107)] = 54474, + [SMALL_STATE(1108)] = 54488, + [SMALL_STATE(1109)] = 54500, + [SMALL_STATE(1110)] = 54514, + [SMALL_STATE(1111)] = 54528, + [SMALL_STATE(1112)] = 54540, + [SMALL_STATE(1113)] = 54552, + [SMALL_STATE(1114)] = 54566, + [SMALL_STATE(1115)] = 54580, + [SMALL_STATE(1116)] = 54592, + [SMALL_STATE(1117)] = 54606, + [SMALL_STATE(1118)] = 54620, + [SMALL_STATE(1119)] = 54634, + [SMALL_STATE(1120)] = 54648, + [SMALL_STATE(1121)] = 54662, + [SMALL_STATE(1122)] = 54674, + [SMALL_STATE(1123)] = 54686, + [SMALL_STATE(1124)] = 54698, + [SMALL_STATE(1125)] = 54712, + [SMALL_STATE(1126)] = 54726, + [SMALL_STATE(1127)] = 54738, + [SMALL_STATE(1128)] = 54752, + [SMALL_STATE(1129)] = 54764, + [SMALL_STATE(1130)] = 54778, + [SMALL_STATE(1131)] = 54790, + [SMALL_STATE(1132)] = 54802, + [SMALL_STATE(1133)] = 54814, + [SMALL_STATE(1134)] = 54826, + [SMALL_STATE(1135)] = 54838, + [SMALL_STATE(1136)] = 54852, + [SMALL_STATE(1137)] = 54864, + [SMALL_STATE(1138)] = 54878, + [SMALL_STATE(1139)] = 54890, + [SMALL_STATE(1140)] = 54904, + [SMALL_STATE(1141)] = 54918, + [SMALL_STATE(1142)] = 54932, + [SMALL_STATE(1143)] = 54946, + [SMALL_STATE(1144)] = 54958, + [SMALL_STATE(1145)] = 54970, + [SMALL_STATE(1146)] = 54984, + [SMALL_STATE(1147)] = 54998, + [SMALL_STATE(1148)] = 55010, + [SMALL_STATE(1149)] = 55022, + [SMALL_STATE(1150)] = 55036, + [SMALL_STATE(1151)] = 55048, + [SMALL_STATE(1152)] = 55062, + [SMALL_STATE(1153)] = 55074, + [SMALL_STATE(1154)] = 55086, + [SMALL_STATE(1155)] = 55098, + [SMALL_STATE(1156)] = 55112, + [SMALL_STATE(1157)] = 55126, + [SMALL_STATE(1158)] = 55138, + [SMALL_STATE(1159)] = 55150, + [SMALL_STATE(1160)] = 55164, + [SMALL_STATE(1161)] = 55178, + [SMALL_STATE(1162)] = 55190, + [SMALL_STATE(1163)] = 55204, + [SMALL_STATE(1164)] = 55216, + [SMALL_STATE(1165)] = 55230, + [SMALL_STATE(1166)] = 55242, + [SMALL_STATE(1167)] = 55254, + [SMALL_STATE(1168)] = 55268, + [SMALL_STATE(1169)] = 55282, + [SMALL_STATE(1170)] = 55296, + [SMALL_STATE(1171)] = 55308, + [SMALL_STATE(1172)] = 55322, + [SMALL_STATE(1173)] = 55336, + [SMALL_STATE(1174)] = 55350, + [SMALL_STATE(1175)] = 55364, + [SMALL_STATE(1176)] = 55378, + [SMALL_STATE(1177)] = 55390, + [SMALL_STATE(1178)] = 55404, + [SMALL_STATE(1179)] = 55416, + [SMALL_STATE(1180)] = 55428, + [SMALL_STATE(1181)] = 55442, + [SMALL_STATE(1182)] = 55456, + [SMALL_STATE(1183)] = 55470, + [SMALL_STATE(1184)] = 55484, + [SMALL_STATE(1185)] = 55498, + [SMALL_STATE(1186)] = 55510, + [SMALL_STATE(1187)] = 55522, + [SMALL_STATE(1188)] = 55534, + [SMALL_STATE(1189)] = 55548, + [SMALL_STATE(1190)] = 55562, + [SMALL_STATE(1191)] = 55576, + [SMALL_STATE(1192)] = 55588, + [SMALL_STATE(1193)] = 55602, + [SMALL_STATE(1194)] = 55616, + [SMALL_STATE(1195)] = 55630, + [SMALL_STATE(1196)] = 55644, + [SMALL_STATE(1197)] = 55658, + [SMALL_STATE(1198)] = 55672, + [SMALL_STATE(1199)] = 55686, + [SMALL_STATE(1200)] = 55698, + [SMALL_STATE(1201)] = 55712, + [SMALL_STATE(1202)] = 55726, + [SMALL_STATE(1203)] = 55738, + [SMALL_STATE(1204)] = 55752, + [SMALL_STATE(1205)] = 55766, + [SMALL_STATE(1206)] = 55777, + [SMALL_STATE(1207)] = 55788, + [SMALL_STATE(1208)] = 55799, + [SMALL_STATE(1209)] = 55810, + [SMALL_STATE(1210)] = 55821, + [SMALL_STATE(1211)] = 55832, + [SMALL_STATE(1212)] = 55843, + [SMALL_STATE(1213)] = 55854, + [SMALL_STATE(1214)] = 55865, + [SMALL_STATE(1215)] = 55876, + [SMALL_STATE(1216)] = 55887, + [SMALL_STATE(1217)] = 55898, + [SMALL_STATE(1218)] = 55909, + [SMALL_STATE(1219)] = 55920, + [SMALL_STATE(1220)] = 55931, + [SMALL_STATE(1221)] = 55942, + [SMALL_STATE(1222)] = 55953, + [SMALL_STATE(1223)] = 55964, + [SMALL_STATE(1224)] = 55975, + [SMALL_STATE(1225)] = 55986, + [SMALL_STATE(1226)] = 55997, + [SMALL_STATE(1227)] = 56008, + [SMALL_STATE(1228)] = 56019, + [SMALL_STATE(1229)] = 56030, + [SMALL_STATE(1230)] = 56041, + [SMALL_STATE(1231)] = 56052, + [SMALL_STATE(1232)] = 56063, + [SMALL_STATE(1233)] = 56074, + [SMALL_STATE(1234)] = 56085, + [SMALL_STATE(1235)] = 56096, + [SMALL_STATE(1236)] = 56107, + [SMALL_STATE(1237)] = 56118, + [SMALL_STATE(1238)] = 56129, + [SMALL_STATE(1239)] = 56140, + [SMALL_STATE(1240)] = 56151, + [SMALL_STATE(1241)] = 56162, + [SMALL_STATE(1242)] = 56173, + [SMALL_STATE(1243)] = 56184, + [SMALL_STATE(1244)] = 56195, + [SMALL_STATE(1245)] = 56206, + [SMALL_STATE(1246)] = 56217, + [SMALL_STATE(1247)] = 56228, + [SMALL_STATE(1248)] = 56239, + [SMALL_STATE(1249)] = 56250, + [SMALL_STATE(1250)] = 56261, + [SMALL_STATE(1251)] = 56272, + [SMALL_STATE(1252)] = 56283, + [SMALL_STATE(1253)] = 56294, + [SMALL_STATE(1254)] = 56305, + [SMALL_STATE(1255)] = 56316, + [SMALL_STATE(1256)] = 56327, + [SMALL_STATE(1257)] = 56338, + [SMALL_STATE(1258)] = 56349, + [SMALL_STATE(1259)] = 56360, + [SMALL_STATE(1260)] = 56371, + [SMALL_STATE(1261)] = 56382, + [SMALL_STATE(1262)] = 56393, + [SMALL_STATE(1263)] = 56404, + [SMALL_STATE(1264)] = 56415, + [SMALL_STATE(1265)] = 56426, + [SMALL_STATE(1266)] = 56437, + [SMALL_STATE(1267)] = 56448, + [SMALL_STATE(1268)] = 56459, + [SMALL_STATE(1269)] = 56470, + [SMALL_STATE(1270)] = 56481, + [SMALL_STATE(1271)] = 56492, + [SMALL_STATE(1272)] = 56503, + [SMALL_STATE(1273)] = 56514, + [SMALL_STATE(1274)] = 56525, + [SMALL_STATE(1275)] = 56536, + [SMALL_STATE(1276)] = 56547, + [SMALL_STATE(1277)] = 56558, + [SMALL_STATE(1278)] = 56569, + [SMALL_STATE(1279)] = 56580, + [SMALL_STATE(1280)] = 56591, + [SMALL_STATE(1281)] = 56602, + [SMALL_STATE(1282)] = 56613, + [SMALL_STATE(1283)] = 56624, + [SMALL_STATE(1284)] = 56635, + [SMALL_STATE(1285)] = 56646, + [SMALL_STATE(1286)] = 56657, + [SMALL_STATE(1287)] = 56668, + [SMALL_STATE(1288)] = 56679, + [SMALL_STATE(1289)] = 56690, + [SMALL_STATE(1290)] = 56701, + [SMALL_STATE(1291)] = 56712, + [SMALL_STATE(1292)] = 56723, + [SMALL_STATE(1293)] = 56734, + [SMALL_STATE(1294)] = 56745, + [SMALL_STATE(1295)] = 56756, + [SMALL_STATE(1296)] = 56767, + [SMALL_STATE(1297)] = 56778, + [SMALL_STATE(1298)] = 56789, + [SMALL_STATE(1299)] = 56800, + [SMALL_STATE(1300)] = 56811, + [SMALL_STATE(1301)] = 56822, + [SMALL_STATE(1302)] = 56833, + [SMALL_STATE(1303)] = 56844, + [SMALL_STATE(1304)] = 56855, + [SMALL_STATE(1305)] = 56866, + [SMALL_STATE(1306)] = 56877, + [SMALL_STATE(1307)] = 56888, + [SMALL_STATE(1308)] = 56899, + [SMALL_STATE(1309)] = 56910, + [SMALL_STATE(1310)] = 56921, + [SMALL_STATE(1311)] = 56932, + [SMALL_STATE(1312)] = 56943, + [SMALL_STATE(1313)] = 56954, + [SMALL_STATE(1314)] = 56965, + [SMALL_STATE(1315)] = 56976, + [SMALL_STATE(1316)] = 56987, + [SMALL_STATE(1317)] = 56998, + [SMALL_STATE(1318)] = 57009, + [SMALL_STATE(1319)] = 57020, + [SMALL_STATE(1320)] = 57031, + [SMALL_STATE(1321)] = 57042, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -51974,1448 +52549,1469 @@ static const TSParseActionEntry ts_parse_actions[] = { [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), [59] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), [61] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), - [63] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(956), - [66] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(121), - [69] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1068), - [72] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1071), - [75] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1292), - [78] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(156), - [81] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(213), - [84] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(873), - [87] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1075), - [90] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(817), - [93] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(910), - [96] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(576), - [99] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(45), - [102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(158), - [105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(569), - [108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(562), - [111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(279), - [114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(842), - [117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1254), - [120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(904), - [123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(99), + [63] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(973), + [66] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(118), + [69] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1086), + [72] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1091), + [75] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1313), + [78] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(158), + [81] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(208), + [84] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(923), + [87] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(922), + [90] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1098), + [93] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(828), + [96] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(588), + [99] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(47), + [102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(182), + [105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(581), + [108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(583), + [111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(275), + [114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(854), + [117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1275), + [120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(917), + [123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(56), [126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(22), [129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(22), [132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(23), [135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(24), [138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), [140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), - [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(121), - [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(1292), - [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(156), - [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(213), - [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(873), - [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(1073), - [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(576), - [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(45), - [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(158), - [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(569), - [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(562), - [175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(279), - [178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(904), - [181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(99), + [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(118), + [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(1313), + [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(158), + [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(208), + [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(923), + [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(1092), + [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(588), + [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(47), + [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(182), + [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(581), + [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(583), + [175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(275), + [178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(917), + [181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(56), [184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(22), [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(22), [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(23), [193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(24), [196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), [198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), - [200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(121), - [203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(1292), - [206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(156), - [209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(213), - [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(873), - [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(1073), - [218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(576), - [221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(45), - [224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(158), - [227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(569), - [230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(562), - [233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(279), - [236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(904), - [239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(99), + [200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(118), + [203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(1313), + [206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(158), + [209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(208), + [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(923), + [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(1092), + [218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(588), + [221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(47), + [224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(182), + [227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(581), + [230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(583), + [233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(275), + [236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(917), + [239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(56), [242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(22), [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(22), [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(23), [251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(24), [254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record, 1, .production_id = 1), [256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record, 1, .production_id = 1), - [258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), - [262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), - [264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_unit, 1), - [266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_unit, 1), - [268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), - [271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__maybe_function_expression, 1), - [273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), - [275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), - [277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer, 2), - [279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer, 2), - [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), - [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), - [323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case, 5, .production_id = 41), - [335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case, 5, .production_id = 41), - [337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1), - [339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 1), - [341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 1), - [343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 1), - [345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 3, .production_id = 12), - [347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 3, .production_id = 12), - [349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_constructor_name, 3, .production_id = 13), - [351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_constructor_name, 3, .production_id = 13), - [353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_group, 3), - [355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_group, 3), + [258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), + [274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), + [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_unit, 1), + [302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_unit, 1), + [304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), + [307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__maybe_function_expression, 1), + [309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), + [311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), + [313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer, 2), + [315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer, 2), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1), + [323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 1), + [325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), + [327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), + [329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 2, .production_id = 5), + [331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 2, .production_id = 5), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case, 5, .production_id = 41), + [339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case, 5, .production_id = 41), + [341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_constructor_name, 3, .production_id = 13), + [343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_constructor_name, 3, .production_id = 13), + [345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), + [347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), + [349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 3, .production_id = 12), + [351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 3, .production_id = 12), + [353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 1), + [355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 1), [357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_access, 3, .production_id = 11), [359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_access, 3, .production_id = 11), [361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer, 1), [363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer, 1), [365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_name, 1), [367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_name, 1), - [369] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(1121), - [373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), - [375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), - [377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 2, .production_id = 5), - [379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 2, .production_id = 5), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3), - [389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), + [375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), + [377] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(1142), + [381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_group, 3), + [383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_group, 3), + [385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), + [387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 7, .production_id = 59), + [389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 7, .production_id = 59), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), [393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__maybe_record_expression, 1), - [395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 6), - [397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 6), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), [399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record, 2, .production_id = 6), [401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record, 2, .production_id = 6), - [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 5, .production_id = 32), - [407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 5, .production_id = 32), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 5), - [417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 5), - [419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_todo, 1), - [421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_todo, 1), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 7, .production_id = 60), - [427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 7, .production_id = 60), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update, 7, .production_id = 64), - [435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_update, 7, .production_id = 64), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 4), - [441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 4), - [443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negation, 2), - [445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negation, 2), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), - [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), - [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), - [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 10), - [487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 10), - [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), - [509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string, 2), - [515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 2), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 7, .production_id = 57), - [525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 7, .production_id = 57), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try, 4, .production_id = 24), - [531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try, 4, .production_id = 24), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let, 2, .production_id = 4), - [545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let, 2, .production_id = 4), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert, 2, .production_id = 4), - [551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert, 2, .production_id = 4), - [553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string, 5), - [555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 5), - [557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), - [559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), - [565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try, 5, .production_id = 40), - [575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try, 5, .production_id = 40), - [577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 5), - [579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 5), - [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(118), - [586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(1206), - [589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(183), - [592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(211), - [595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(881), - [598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(1150), - [601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(577), - [604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(167), - [607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(157), - [610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(571), - [613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(566), - [616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(278), - [619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(871), - [622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(281), - [625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(77), - [628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(77), - [631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(16), - [634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(85), - [637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 6, .production_id = 46), - [639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 6, .production_id = 46), - [641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 5, .production_id = 30), - [643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 5, .production_id = 30), - [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 4), - [649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 4), - [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_seq, 1), - [655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_seq, 1), - [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_todo, 4, .production_id = 26), - [665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_todo, 4, .production_id = 26), - [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment, 4, .production_id = 42), - [673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment, 4, .production_id = 42), - [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment, 3, .production_id = 28), - [681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment, 3, .production_id = 28), - [683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string, 4), - [685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 4), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), - [691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), - [693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string, 3), - [695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 3), - [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [717] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(1172), - [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), - [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), - [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_subjects, 2), SHIFT(128), - [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_subjects, 3), SHIFT(128), - [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), - [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), - [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), - [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [1019] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(1119), - [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [1045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 4, .production_id = 62), - [1047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 4, .production_id = 62), - [1049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 3, .production_id = 53), - [1051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 3, .production_id = 53), - [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [1055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), - [1057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), - [1059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1255), - [1062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2), - [1064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2), - [1066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), - [1068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1), - [1070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 1), - [1072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment_options, 2), - [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [1080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), - [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [1084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment_options, 3), - [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [1088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment_options, 2), - [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [1092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), - [1095] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(1082), - [1099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment_options, 3), - [1101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment_options, 3), - [1103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment_options, 2), - [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [1107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 1, .production_id = 1), - [1109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 1, .production_id = 1), - [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [1113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, .production_id = 1), - [1115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, .production_id = 1), - [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [1119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 2, .production_id = 2), - [1121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 2, .production_id = 2), - [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), - [1127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record, 1, .production_id = 1), - [1129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record, 1, .production_id = 1), - [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [1133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__maybe_tuple_expression, 1), - [1135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__maybe_record_expression, 1), - [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [1157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 4, .production_id = 15), - [1159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 4, .production_id = 15), - [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), - [1163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), - [1165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(1193), - [1168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(513), - [1171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(544), - [1174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(900), - [1177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(874), - [1180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(855), - [1183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(642), - [1186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(642), - [1189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(765), - [1192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(634), - [1195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(632), - [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_identifier, 1), - [1200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_identifier, 1), - [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_imports, 4), - [1204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unqualified_imports, 4), - [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_imports, 5), - [1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unqualified_imports, 5), - [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [1214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [1216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [1218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [1220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), - [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), - [1226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clauses, 1), + [403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 5, .production_id = 31), + [405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 5, .production_id = 31), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 6), + [411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 6), + [413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 4), + [415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 4), + [417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3), + [419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_todo, 1), + [425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_todo, 1), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 5), + [433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 5), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update, 7, .production_id = 64), + [441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_update, 7, .production_id = 64), + [443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 10), + [445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 10), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), + [453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), + [455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string, 5), + [457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 5), + [459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_seq, 1), + [461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_seq, 1), + [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try, 5, .production_id = 40), + [525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try, 5, .production_id = 40), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment, 3, .production_id = 28), + [531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment, 3, .production_id = 28), + [533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 5), + [535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 5), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 4), + [541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 4), + [543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), + [545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string, 2), + [551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 2), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 5, .production_id = 30), + [559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 5, .production_id = 30), + [561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string, 4), + [563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 4), + [565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string, 3), + [567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 3), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let, 2, .production_id = 4), + [581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let, 2, .production_id = 4), + [583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert, 2, .production_id = 4), + [585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert, 2, .production_id = 4), + [587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negation, 2), + [589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negation, 2), + [591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment, 4, .production_id = 42), + [593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment, 4, .production_id = 42), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), + [599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 6, .production_id = 47), + [607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 6, .production_id = 47), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try, 4, .production_id = 24), + [617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try, 4, .production_id = 24), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(121), + [638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(1227), + [641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(181), + [644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(246), + [647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(891), + [650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(1155), + [653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(600), + [656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(164), + [659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(167), + [662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(566), + [665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(565), + [668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(279), + [671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(919), + [674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(281), + [677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(57), + [680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(57), + [683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(12), + [686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(92), + [689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_todo, 4, .production_id = 26), + [691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_todo, 4, .production_id = 26), + [693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), + [695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), + [697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 7, .production_id = 58), + [699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 7, .production_id = 58), + [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), + [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [729] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(1203), + [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), + [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), + [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_subjects, 2), SHIFT(127), + [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_subjects, 3), SHIFT(127), + [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [1019] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(1129), + [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [1025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 3, .production_id = 53), + [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), + [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [1047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 3, .production_id = 53), + [1049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 4, .production_id = 62), + [1051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 4, .production_id = 62), + [1053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1), + [1055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 1), + [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [1059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2), + [1061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2), + [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [1065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), + [1067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), + [1069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1283), + [1072] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(1113), + [1076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), + [1079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment_options, 2), + [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [1091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment_options, 3), + [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [1095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment_options, 3), + [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [1099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment_options, 2), + [1101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment_options, 3), + [1103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment_options, 2), + [1105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record, 1, .production_id = 1), + [1107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record, 1, .production_id = 1), + [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [1111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, .production_id = 1), + [1113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, .production_id = 1), + [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [1119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__maybe_record_expression, 1), + [1121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__maybe_tuple_expression, 1), + [1123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 1, .production_id = 1), + [1125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 1, .production_id = 1), + [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [1129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 2, .production_id = 2), + [1131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 2, .production_id = 2), + [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), + [1137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 4, .production_id = 15), + [1139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 4, .production_id = 15), + [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [1175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_imports, 4), + [1177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unqualified_imports, 4), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [1181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_imports, 2), + [1183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unqualified_imports, 2), + [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [1187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), + [1189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(1212), + [1192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(525), + [1195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(556), + [1198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(883), + [1201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(887), + [1204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(865), + [1207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(647), + [1210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(647), + [1213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(765), + [1216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(635), + [1219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(636), + [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), + [1224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [1226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [1234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_type_identifier, 3, .production_id = 13), + [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_type_identifier, 3, .production_id = 13), [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_imports, 3), [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unqualified_imports, 3), - [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_imports, 2), - [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unqualified_imports, 2), - [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_var, 1), - [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_var, 1), - [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_type_identifier, 3, .production_id = 13), - [1256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_type_identifier, 3, .production_id = 13), - [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [1260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, .production_id = 35), - [1262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5, .production_id = 35), - [1264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, .production_id = 48), - [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 6, .production_id = 48), - [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record, 2, .production_id = 6), - [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record, 2, .production_id = 6), - [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string, 3), - [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string, 3), - [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_type, 4), - [1278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_type, 4), - [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_arguments, 2), - [1282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record_arguments, 2), - [1284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_type, 3), - [1286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_type, 3), - [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 9, .production_id = 69), - [1290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 9, .production_id = 69), - [1292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function, 9, .production_id = 68), - [1294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function, 9, .production_id = 68), - [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), - [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), - [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 6), - [1302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 6), - [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5), - [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5), - [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), - [1310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), - [1312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 5, .production_id = 29), - [1314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 5, .production_id = 29), - [1316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_arguments, 5), - [1318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record_arguments, 5), - [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 5, .production_id = 43), - [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 5, .production_id = 43), - [1324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple, 6), - [1326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_tuple, 6), - [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string, 2), - [1330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string, 2), - [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), - [1334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), - [1336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 59), - [1338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 59), - [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 47), - [1342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 47), - [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 2), - [1346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 2), - [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_arguments, 3), - [1350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record_arguments, 3), - [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, .production_id = 67), - [1354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 8, .production_id = 67), - [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), - [1358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), - [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, .production_id = 66), - [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 8, .production_id = 66), - [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_hole, 1), - [1366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_hole, 1), - [1368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), - [1370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), - [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_list, 2), - [1374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_list, 2), - [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), - [1378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), - [1380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, .production_id = 61), - [1382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 7, .production_id = 61), - [1384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 6), - [1386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 6), - [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 2), - [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 2), - [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), - [1394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), - [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_body, 2), - [1398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function_body, 2), - [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 4), - [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 4), - [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string, 4), - [1406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string, 4), - [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_list, 4), - [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_list, 4), - [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function, 8, .production_id = 65), - [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function, 8, .production_id = 65), - [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple, 3), - [1420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_tuple, 3), - [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 6, .production_id = 45), - [1424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 6, .production_id = 45), - [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target_group, 5, .production_id = 14), - [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_target_group, 5, .production_id = 14), - [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 4, .production_id = 17), - [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 4, .production_id = 17), - [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple, 4), - [1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_tuple, 4), - [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 4, .production_id = 16), - [1440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 4, .production_id = 16), - [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 5), - [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 5), - [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, .production_id = 63), - [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 7, .production_id = 63), - [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target_group, 4, .production_id = 14), - [1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_target_group, 4, .production_id = 14), - [1454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 2, .production_id = 6), - [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 2, .production_id = 6), - [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 7), - [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 7), - [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_list, 3), - [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_list, 3), - [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_arguments, 4), - [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record_arguments, 4), - [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string, 5), - [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string, 5), - [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), - [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), - [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 2, .production_id = 7), - [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 2, .production_id = 7), - [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 6, .production_id = 54), - [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 6, .production_id = 54), - [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_list, 5), - [1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_list, 5), - [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6), - [1492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6), - [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, .production_id = 55), - [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 6, .production_id = 55), - [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), - [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), - [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple, 5), - [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_tuple, 5), - [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_patterns, 3), - [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_patterns, 3), - [1526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_pattern, 2, .production_id = 27), - [1528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_pattern, 2, .production_id = 27), - [1530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_pattern, 3, .production_id = 38), - [1532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_pattern, 3, .production_id = 38), - [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [1538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [1540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_patterns, 2), - [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_patterns, 2), - [1544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [1546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [1550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [1554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_repeat1, 2), - [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [1606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_subjects, 1), - [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [1628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update_argument, 3, .production_id = 44), - [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 3, .production_id = 44), - [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 1, .production_id = 3), - [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [1744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), - [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), - [1756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1115), - [1759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1159), - [1762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1158), - [1765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(821), - [1768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1124), - [1771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(856), - [1774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1261), - [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [1799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), - [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [1845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_guard_unit, 1), - [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [1849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_unit, 1), - [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [1853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_guard_binary_expression, 3, .production_id = 10), - [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_binary_expression, 3, .production_id = 10), - [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_guard_unit, 1, .production_id = 52), - [1861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_unit, 1, .production_id = 52), - [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_tuple_access, 3, .production_id = 11), - [1865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_tuple_access, 3, .production_id = 11), - [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_guard_unit, 3), - [1869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_unit, 3), - [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_guard_expression, 1, .production_id = 51), - [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_expression, 1, .production_id = 51), - [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_guard, 2), - [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [1905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 1, .production_id = 1), - [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [1917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1282), - [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), - [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [1924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 6, .production_id = 49), - [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3), - [1928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string, 4), - [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 3), - [1932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 6), - [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 5), - [1936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), - [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2), - [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 2, .production_id = 6), - [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string, 2), - [1944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 6, .production_id = 37), - [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 4, .production_id = 22), - [1948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, .production_id = 22), - [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, .production_id = 36), - [1960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, .production_id = 36), - [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string, 3), - [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, .production_id = 49), - [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 4, .production_id = 37), - [1968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 2), - [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 5, .production_id = 22), - [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 5, .production_id = 37), - [1976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 4), - [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string, 5), - [1980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discard, 1), - [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 3, .production_id = 23), - [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), - [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [1996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1), - [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [2008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 22), - [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [2016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_repeat1, 2), SHIFT_REPEAT(212), - [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [2037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_pattern, 1, .production_id = 27), - [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [2041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_data_constructors_repeat1, 2), - [2043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_constructors_repeat1, 2), SHIFT_REPEAT(85), - [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [2056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type, 1, .production_id = 1), - [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [2060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 38), - [2062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 38), SHIFT_REPEAT(587), - [2065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 38), SHIFT_REPEAT(586), - [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [2072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructors, 1), - [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [2088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern_tail, 1), - [2090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_pattern, 2, .production_id = 38), - [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [2098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), - [2100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(862), - [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 1, .production_id = 21), - [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [2117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_bit_string_segment_options_repeat1, 2), - [2119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_bit_string_segment_options_repeat1, 2), SHIFT_REPEAT(404), - [2122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_patterns, 1), - [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [2130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update_arguments, 2), - [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), - [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [2146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pattern_bit_string_segment_options_repeat1, 2), - [2148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_bit_string_segment_options_repeat1, 2), SHIFT_REPEAT(436), - [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), - [2161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment_options, 1), - [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [2181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update_arguments, 3), - [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_bit_string_segment_options_repeat1, 2), - [2185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_bit_string_segment_options_repeat1, 2), SHIFT_REPEAT(419), - [2188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameter, 1, .production_id = 8), - [2190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_pattern_arguments_repeat1, 2), SHIFT_REPEAT(530), - [2193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_pattern_arguments_repeat1, 2), - [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment_options, 1), - [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_patterns_repeat1, 2), - [2201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_patterns_repeat1, 2), SHIFT_REPEAT(560), - [2204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor, 1, .production_id = 1), - [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [2208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_tuple_repeat1, 2), SHIFT_REPEAT(622), - [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_tuple_repeat1, 2), - [2213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 1, .production_id = 8), - [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment_options, 1), - [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [2237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string_segment_option_size, 4), - [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_argument, 3, .production_id = 50), - [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_import, 1, .production_id = 1), - [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [2257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_subjects, 2), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [2261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment, 1, .production_id = 3), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [2273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type, 2, .production_id = 6), - [2275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name_param, 1, .production_id = 1), - [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [2289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string_segment_option_size, 4), - [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [2293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_anonymous_function_parameters_repeat1, 2), SHIFT_REPEAT(813), - [2296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_anonymous_function_parameters_repeat1, 2), - [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [2304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment, 1, .production_id = 9), - [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [2308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__labeled_name_param, 2, .production_id = 34), - [2310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__labeled_discard_param, 2, .production_id = 34), - [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [2318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_bit_string_repeat1, 2), SHIFT_REPEAT(565), - [2321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pattern_bit_string_repeat1, 2), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [2325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment, 1, .production_id = 3), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [2329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bit_string_segment_option, 1), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [2335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(63), - [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), - [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [2344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_bit_string_repeat1, 2), SHIFT_REPEAT(274), - [2347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_bit_string_repeat1, 2), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [2385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple_type, 3), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [2393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_arguments, 2), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_arguments, 5), - [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple_type, 6), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discard_param, 1, .production_id = 1), - [2423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_update_arguments_repeat1, 2), SHIFT_REPEAT(969), - [2426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_update_arguments_repeat1, 2), - [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [2432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string_segment_option_size, 4), - [2434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(660), - [2437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), - [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [2445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(680), - [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), - [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [2456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_constructor_arguments_repeat1, 2), SHIFT_REPEAT(654), - [2459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_data_constructor_arguments_repeat1, 2), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [2475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_type_arguments_repeat1, 2), SHIFT_REPEAT(718), - [2478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_type_arguments_repeat1, 2), - [2480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(1083), - [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_arguments, 4), - [2487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_tuple_type_repeat1, 2), SHIFT_REPEAT(758), - [2490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_tuple_type_repeat1, 2), - [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [2496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple_type, 5), - [2498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_parameters_repeat1, 2), SHIFT_REPEAT(772), - [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_parameters_repeat1, 2), - [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [2507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_record_arguments_repeat1, 2), SHIFT_REPEAT(588), - [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_record_arguments_repeat1, 2), - [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [2520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_argument, 1, .production_id = 25), - [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [2532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update_arguments, 1), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 2, .production_id = 18), - [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unqualified_imports_repeat1, 2), - [2544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unqualified_imports_repeat1, 2), SHIFT_REPEAT(860), - [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [2583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__constant_bit_string_repeat1, 2), SHIFT_REPEAT(615), - [2586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__constant_bit_string_repeat1, 2), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [2604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple_type, 4), - [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_arguments, 3), - [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [2620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_external_function_parameters_repeat1, 2), SHIFT_REPEAT(661), - [2623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_external_function_parameters_repeat1, 2), - [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [2627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bit_string_segment_option, 4), - [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameter, 3, .production_id = 58), - [2651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_arguments, 3), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [2669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment, 3, .production_id = 19), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [2673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameters, 2), - [2675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 5), - [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [2679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_import, 3, .production_id = 56), - [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [2701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameter, 1, .production_id = 31), - [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [2713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor, 2, .production_id = 6), - [2715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hole, 1), - [2717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameters, 4), - [2719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_argument, 3, .production_id = 44), - [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [2723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 4), - [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [2729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameters, 5), - [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [2733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 3), - [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [2737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument, 1), - [2739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_arguments, 4), - [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [2743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_argument, 3, .production_id = 44), - [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [2747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 2, .production_id = 33), - [2749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_argument, 1, .production_id = 3), - [2751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 2, .production_id = 20), - [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [2757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_arguments, 2), - [2759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_arguments, 5), - [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [2769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment, 3, .production_id = 39), - [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [2775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 2), - [2777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_argument, 1), - [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [2781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_spread, 1), - [2783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameters, 3), - [2785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameter, 2, .production_id = 20), - [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [2789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1), - [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [2795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_argument, 1, .production_id = 3), - [2797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment, 3, .production_id = 19), - [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [2815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_types, 2), - [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [2849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern_tail, 2), - [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [2857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_spread, 2), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [2865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameters, 3), - [2867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_types, 3), - [2869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_type_annotation, 2, .production_id = 18), - [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_types, 5), - [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [2911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_types, 4), - [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target, 1), - [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [2933] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [2935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameters, 5), - [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [2969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameters, 2), - [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [3029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameters, 4), + [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_value, 1), + [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_value, 1), + [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_var, 1), + [1252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_var, 1), + [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_imports, 5), + [1256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unqualified_imports, 5), + [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clauses, 1), + [1260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_identifier, 1), + [1262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_identifier, 1), + [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [1266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function, 8, .production_id = 66), + [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function, 8, .production_id = 66), + [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 6, .production_id = 45), + [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 6, .production_id = 45), + [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_arguments, 5), + [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record_arguments, 5), + [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_field_access, 3, .production_id = 12), + [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_field_access, 3, .production_id = 12), + [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_arguments, 2), + [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record_arguments, 2), + [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5), + [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5), + [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 2, .production_id = 8), + [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 2, .production_id = 8), + [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple, 6), + [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_tuple, 6), + [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string, 2), + [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string, 2), + [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), + [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), + [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, .production_id = 67), + [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 8, .production_id = 67), + [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, .production_id = 34), + [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5, .production_id = 34), + [1324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target_group, 4, .production_id = 14), + [1326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_target_group, 4, .production_id = 14), + [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 4), + [1330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 4), + [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 2, .production_id = 6), + [1334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 2, .production_id = 6), + [1336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_type, 3), + [1338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_type, 3), + [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), + [1342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), + [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record, 2, .production_id = 6), + [1346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record, 2, .production_id = 6), + [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 46), + [1350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 46), + [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, .production_id = 65), + [1354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 8, .production_id = 65), + [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_hole, 1), + [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_hole, 1), + [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 2), + [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 2), + [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), + [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), + [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_arguments, 4), + [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record_arguments, 4), + [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, .production_id = 48), + [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 6, .production_id = 48), + [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string, 5), + [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string, 5), + [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_type, 4), + [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_type, 4), + [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_list, 5), + [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_list, 5), + [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple, 5), + [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_tuple, 5), + [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 4, .production_id = 16), + [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 4, .production_id = 16), + [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_list, 3), + [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_list, 3), + [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_body, 2), + [1406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function_body, 2), + [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 6), + [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 6), + [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), + [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), + [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 7), + [1420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 7), + [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 57), + [1424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 57), + [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple, 3), + [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_tuple, 3), + [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string, 3), + [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string, 3), + [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, .production_id = 63), + [1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 7, .production_id = 63), + [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 9, .production_id = 68), + [1440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 9, .production_id = 68), + [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), + [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), + [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function, 9, .production_id = 69), + [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function, 9, .production_id = 69), + [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 5), + [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 5), + [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), + [1462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), + [1464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), + [1466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), + [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target_group, 5, .production_id = 14), + [1470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_target_group, 5, .production_id = 14), + [1472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 5, .production_id = 43), + [1474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 5, .production_id = 43), + [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, .production_id = 60), + [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 7, .production_id = 60), + [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 6), + [1482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 6), + [1484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6), + [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6), + [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_list, 2), + [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_list, 2), + [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 4, .production_id = 17), + [1494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 4, .production_id = 17), + [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), + [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), + [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_arguments, 3), + [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record_arguments, 3), + [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string, 4), + [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string, 4), + [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 2), + [1512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 2), + [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 5, .production_id = 29), + [1516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 5, .production_id = 29), + [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [1520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_list, 4), + [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_list, 4), + [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple, 4), + [1526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_tuple, 4), + [1528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), + [1530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), + [1532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 6, .production_id = 54), + [1536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 6, .production_id = 54), + [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, .production_id = 55), + [1540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 6, .production_id = 55), + [1542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_pattern, 3, .production_id = 38), + [1544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_pattern, 3, .production_id = 38), + [1546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_patterns, 3), + [1548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_patterns, 3), + [1550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_patterns, 2), + [1552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_patterns, 2), + [1554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_pattern, 2, .production_id = 27), + [1556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_pattern, 2, .production_id = 27), + [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_repeat1, 2), + [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [1612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_subjects, 1), + [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update_argument, 3, .production_id = 44), + [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [1678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 3, .production_id = 44), + [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [1686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 1, .production_id = 3), + [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [1770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [1774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [1784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), + [1786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1124), + [1789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1182), + [1792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1184), + [1795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1181), + [1798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(837), + [1801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(868), + [1804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1282), + [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), + [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_tuple_access, 3, .production_id = 11), + [1857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_tuple_access, 3, .production_id = 11), + [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [1861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_guard_unit, 3), + [1863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_unit, 3), + [1865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__constant_value, 1), REDUCE(sym__case_clause_guard_unit, 1), + [1868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [1870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__constant_value, 1), REDUCE(sym__case_clause_guard_unit, 1), + [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_guard_binary_expression, 3, .production_id = 10), + [1875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_binary_expression, 3, .production_id = 10), + [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [1881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_guard_unit, 1, .production_id = 52), + [1883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_unit, 1, .production_id = 52), + [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [1889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_guard_expression, 1, .production_id = 51), + [1891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_expression, 1, .production_id = 51), + [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [1909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 1, .production_id = 1), + [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_guard, 2), + [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), + [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [1941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1299), + [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 4, .production_id = 22), + [1952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 6, .production_id = 37), + [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 4, .production_id = 37), + [1956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, .production_id = 49), + [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 6, .production_id = 49), + [1960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, .production_id = 36), + [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, .production_id = 22), + [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 2), + [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 6), + [1968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 4), + [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 2, .production_id = 6), + [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), + [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string, 4), + [1976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string, 2), + [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3), + [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 5, .production_id = 37), + [1984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string, 3), + [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discard, 1), + [1988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, .production_id = 36), + [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 3), + [1992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2), + [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string, 5), + [1996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 5), + [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [2000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 5, .production_id = 22), + [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [2010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 3, .production_id = 23), + [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), + [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [2020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1), + [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 22), + [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [2044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_repeat1, 2), SHIFT_REPEAT(240), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern_tail, 1), + [2065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_pattern, 1, .production_id = 27), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [2069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_data_constructors_repeat1, 2), + [2071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_constructors_repeat1, 2), SHIFT_REPEAT(92), + [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [2084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 38), SHIFT_REPEAT(604), + [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 38), + [2089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructors, 1), + [2091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 38), SHIFT_REPEAT(599), + [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [2096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_pattern, 2, .production_id = 38), + [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [2114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type, 1, .production_id = 1), + [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [2144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update_arguments, 3), + [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 1, .production_id = 7), + [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_bit_string_segment_options_repeat1, 2), + [2156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_bit_string_segment_options_repeat1, 2), SHIFT_REPEAT(408), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [2181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_bit_string_segment_options_repeat1, 2), + [2183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_bit_string_segment_options_repeat1, 2), SHIFT_REPEAT(415), + [2186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_pattern_arguments_repeat1, 2), SHIFT_REPEAT(537), + [2189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_pattern_arguments_repeat1, 2), + [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_patterns_repeat1, 2), + [2193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_patterns_repeat1, 2), SHIFT_REPEAT(570), + [2196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameter, 1, .production_id = 7), + [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor, 1, .production_id = 1), + [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [2206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_patterns, 1), + [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [2210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 1, .production_id = 21), + [2212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_tuple_repeat1, 2), SHIFT_REPEAT(624), + [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_tuple_repeat1, 2), + [2217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment_options, 1), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [2225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pattern_bit_string_segment_options_repeat1, 2), + [2227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_bit_string_segment_options_repeat1, 2), SHIFT_REPEAT(436), + [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [2232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update_arguments, 2), + [2234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment_options, 1), + [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [2250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), + [2252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(921), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), + [2261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment_options, 1), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [2273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_anonymous_function_parameters_repeat1, 2), SHIFT_REPEAT(823), + [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_anonymous_function_parameters_repeat1, 2), + [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [2284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__labeled_name_param, 2, .production_id = 33), + [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__labeled_discard_param, 2, .production_id = 33), + [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [2296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bit_string_segment_option, 1), + [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [2308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_bit_string_repeat1, 2), SHIFT_REPEAT(274), + [2311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_bit_string_repeat1, 2), + [2313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_bit_string_repeat1, 2), SHIFT_REPEAT(582), + [2316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pattern_bit_string_repeat1, 2), + [2318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type, 2, .production_id = 6), + [2320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(103), + [2323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [2351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment, 1, .production_id = 3), + [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple_type, 3), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [2385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_function_type, 3, .production_id = 46), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 2, .production_id = 18), + [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_arguments, 2), + [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [2407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_argument, 1, .production_id = 25), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [2433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_parameters_repeat1, 2), SHIFT_REPEAT(781), + [2436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_parameters_repeat1, 2), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [2442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string_segment_option_size, 4), + [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_subjects, 2), + [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [2458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_arguments, 5), + [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [2462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple_type, 6), + [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [2470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_update_arguments_repeat1, 2), SHIFT_REPEAT(985), + [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_update_arguments_repeat1, 2), + [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string_segment_option_size, 4), + [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment, 1, .production_id = 9), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [2495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(1078), + [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), + [2500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_constructor_arguments_repeat1, 2), SHIFT_REPEAT(654), + [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_data_constructor_arguments_repeat1, 2), + [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_argument, 3, .production_id = 50), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [2511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(660), + [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), + [2516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment, 1, .production_id = 3), + [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [2524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update_arguments, 1), + [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unqualified_imports_repeat1, 2), + [2528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unqualified_imports_repeat1, 2), SHIFT_REPEAT(850), + [2531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(694), + [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), + [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [2538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_type_arguments_repeat1, 2), SHIFT_REPEAT(692), + [2541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_type_arguments_repeat1, 2), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [2549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_arguments, 4), + [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [2553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_tuple_type_repeat1, 2), SHIFT_REPEAT(722), + [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_tuple_type_repeat1, 2), + [2558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__constant_bit_string_repeat1, 2), SHIFT_REPEAT(596), + [2561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__constant_bit_string_repeat1, 2), + [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [2569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple_type, 4), + [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [2577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple_type, 5), + [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [2585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_function_type, 4, .production_id = 57), + [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [2591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_record_arguments_repeat1, 2), SHIFT_REPEAT(577), + [2594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_record_arguments_repeat1, 2), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_arguments, 3), + [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_import, 1, .production_id = 1), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discard_param, 1, .production_id = 1), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name_param, 1, .production_id = 1), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string_segment_option_size, 4), + [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [2634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bit_string_segment_option, 4), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [2660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_external_function_parameters_repeat1, 2), SHIFT_REPEAT(659), + [2663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_external_function_parameters_repeat1, 2), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [2687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_arguments, 4), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [2691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameter, 3, .production_id = 61), + [2693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameters, 2), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [2697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 5), + [2699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument, 1), + [2701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 3), + [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [2711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 2, .production_id = 32), + [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [2721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 2, .production_id = 20), + [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [2729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_argument, 3, .production_id = 44), + [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [2749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment, 3, .production_id = 19), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [2757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_import, 3, .production_id = 56), + [2759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameter, 1, .production_id = 35), + [2761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor, 2, .production_id = 6), + [2763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment, 3, .production_id = 19), + [2765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_arguments, 3), + [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [2777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment, 3, .production_id = 39), + [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [2781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_argument, 3, .production_id = 44), + [2783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameter, 2, .production_id = 20), + [2785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_argument, 1, .production_id = 3), + [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [2795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_arguments, 2), + [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [2801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameters, 3), + [2803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_arguments, 5), + [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [2809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 2), + [2811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 4), + [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [2821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_argument, 1, .production_id = 3), + [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1), + [2825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameters, 5), + [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [2833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameters, 4), + [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [2841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_argument, 1), + [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [2845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_spread, 1), + [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [2851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hole, 1), + [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [2861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_function_parameter_types, 2), + [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [2873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern_tail, 2), + [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [2887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_types, 2), + [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [2899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameters, 3), + [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [2911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_types, 5), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [2931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_function_parameter_types, 5), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [2943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_spread, 2), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [2957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target, 1), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [2975] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [2983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameters, 5), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_types, 4), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [3005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_function_parameter_types, 4), + [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [3009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameters, 2), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [3017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_function_parameter_types, 3), + [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [3053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_types, 3), + [3055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_type_annotation, 2, .production_id = 18), + [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [3069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameters, 4), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), }; #ifdef __cplusplus diff --git a/test/corpus/constants.txt b/test/corpus/constants.txt index 281de6600..287ebfdc2 100644 --- a/test/corpus/constants.txt +++ b/test/corpus/constants.txt @@ -26,6 +26,9 @@ const a = Cat("Ginny", 1950) const a = Person(name: "Billy", age: 52) const a = uri.Uri(host: "github.com") const a: option.Option(String) = option.Some("Hello, World!") +const var_alias = b +const int_identity_alias: fn(Int) -> Int = int_identity +const fun_tuple: #(fn(Float) -> String, fn(Int) -> String) = #(float.to_string, int.to_string) -------------------------------------------------------------------------------- @@ -206,7 +209,41 @@ const a: option.Option(String) = option.Some("Hello, World!") arguments: (arguments (argument value: (string - (quoted_content))))))) + (quoted_content)))))) + (constant + name: (identifier) + value: (identifier)) + (constant + name: (identifier) + type: (function_type + parameter_types: (function_parameter_types + (type + name: (type_identifier))) + return_type: (type + name: (type_identifier))) + value: (identifier)) + (constant + name: (identifier) + type: (tuple_type + (function_type + parameter_types: (function_parameter_types + (type + name: (type_identifier))) + return_type: (type + name: (type_identifier))) + (function_type + parameter_types: (function_parameter_types + (type + name: (type_identifier))) + return_type: (type + name: (type_identifier)))) + value: (tuple + (field_access + record: (identifier) + field: (label)) + (field_access + record: (identifier) + field: (label))))) ================================================================================ Public constants diff --git a/test/corpus/functions.txt b/test/corpus/functions.txt index 66d6cc5c8..7f25b0a7b 100644 --- a/test/corpus/functions.txt +++ b/test/corpus/functions.txt @@ -780,6 +780,36 @@ fn try_try_again(x, y) -> Int { (identifier)) value: (todo))))) +================================================================================ +Let expressions +================================================================================ + +let foo: fn(Int) -> Int = fn(x) { x } +let fun_ref = float.to_string + +-------------------------------------------------------------------------------- + +(source_file + (let + pattern: (identifier) + type: (function_type + parameter_types: (function_parameter_types + (type + name: (type_identifier))) + return_type: (type + name: (type_identifier))) + value: (anonymous_function + parameters: (function_parameters + (function_parameter + name: (identifier))) + body: (function_body + (identifier)))) + (let + pattern: (identifier) + value: (field_access + record: (identifier) + field: (label)))) + ================================================================================ Complex binary expressions ================================================================================