From 4a3bae27c76b51fd687a5fcf17b9535b59458883 Mon Sep 17 00:00:00 2001 From: Jonathan Arnett Date: Mon, 24 Apr 2023 23:14:52 -0400 Subject: [PATCH] Add integer negation --- grammar.js | 7 +- queries/highlights.scm | 3 +- src/grammar.json | 24 +- src/node-types.json | 447 +- src/parser.c | 51055 +++++++++++++++-------------- test/corpus/expressions.txt | 32 +- test/highlight/expressions.gleam | 4 + 7 files changed, 26512 insertions(+), 25060 deletions(-) diff --git a/grammar.js b/grammar.js index c9dda81d6..50233efa0 100644 --- a/grammar.js +++ b/grammar.js @@ -25,6 +25,7 @@ module.exports = grammar({ [$.case_subjects], [$.source_file], [$._constant_value, $._case_clause_guard_unit], + [$.integer], ], rules: { /* General rules */ @@ -333,7 +334,8 @@ module.exports = grammar({ $.block, $.case, $.assert, - $.negation, + $.boolean_negation, + $.integer_negation, $.record_update, $.tuple_access, $.field_access, @@ -456,7 +458,8 @@ module.exports = grammar({ field("value", $._expression) ), assert: ($) => seq("assert", $._assignment), - negation: ($) => seq("!", $._expression_unit), + boolean_negation: ($) => seq("!", $._expression_unit), + integer_negation: ($) => seq("-", $._expression_unit), _assignment: ($) => seq( field("pattern", $._pattern), diff --git a/queries/highlights.scm b/queries/highlights.scm index 95a2e870b..0a07cdd5c 100644 --- a/queries/highlights.scm +++ b/queries/highlights.scm @@ -63,7 +63,8 @@ ; Operators (binary_expression operator: _ @operator) -"!" @operator +(boolean_negation "!" @operator) +(integer_negation "-" @operator) ; Keywords [ diff --git a/src/grammar.json b/src/grammar.json index a743ce2f6..858356895 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -2705,7 +2705,11 @@ }, { "type": "SYMBOL", - "name": "negation" + "name": "boolean_negation" + }, + { + "type": "SYMBOL", + "name": "integer_negation" }, { "type": "SYMBOL", @@ -4157,7 +4161,7 @@ } ] }, - "negation": { + "boolean_negation": { "type": "SEQ", "members": [ { @@ -4170,6 +4174,19 @@ } ] }, + "integer_negation": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "-" + }, + { + "type": "SYMBOL", + "name": "_expression_unit" + } + ] + }, "_assignment": { "type": "SEQ", "members": [ @@ -6239,6 +6256,9 @@ [ "_constant_value", "_case_clause_guard_unit" + ], + [ + "integer" ] ], "precedences": [], diff --git a/src/node-types.json b/src/node-types.json index debfcbf8c..fc619a98a 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -89,6 +89,10 @@ "type": "block", "named": true }, + { + "type": "boolean_negation", + "named": true + }, { "type": "case", "named": true @@ -118,11 +122,11 @@ "named": true }, { - "type": "list", + "type": "integer_negation", "named": true }, { - "type": "negation", + "type": "list", "named": true }, { @@ -290,6 +294,10 @@ "type": "block", "named": true }, + { + "type": "boolean_negation", + "named": true + }, { "type": "case", "named": true @@ -315,11 +323,11 @@ "named": true }, { - "type": "list", + "type": "integer_negation", "named": true }, { - "type": "negation", + "type": "list", "named": true }, { @@ -386,6 +394,10 @@ "type": "block", "named": true }, + { + "type": "boolean_negation", + "named": true + }, { "type": "case", "named": true @@ -415,15 +427,15 @@ "named": true }, { - "type": "list", + "type": "integer_negation", "named": true }, { - "type": "list_pattern", + "type": "list", "named": true }, { - "type": "negation", + "type": "list_pattern", "named": true }, { @@ -598,6 +610,10 @@ "type": "block", "named": true }, + { + "type": "boolean_negation", + "named": true + }, { "type": "case", "named": true @@ -627,15 +643,15 @@ "named": true }, { - "type": "list", + "type": "integer_negation", "named": true }, { - "type": "list_pattern", + "type": "list", "named": true }, { - "type": "negation", + "type": "list_pattern", "named": true }, { @@ -780,6 +796,10 @@ "type": "block", "named": true }, + { + "type": "boolean_negation", + "named": true + }, { "type": "case", "named": true @@ -809,15 +829,15 @@ "named": true }, { - "type": "list", + "type": "integer_negation", "named": true }, { - "type": "list_pattern", + "type": "list", "named": true }, { - "type": "negation", + "type": "list_pattern", "named": true }, { @@ -888,6 +908,10 @@ "type": "block", "named": true }, + { + "type": "boolean_negation", + "named": true + }, { "type": "case", "named": true @@ -913,11 +937,11 @@ "named": true }, { - "type": "list", + "type": "integer_negation", "named": true }, { - "type": "negation", + "type": "list", "named": true }, { @@ -998,6 +1022,10 @@ "type": "block", "named": true }, + { + "type": "boolean_negation", + "named": true + }, { "type": "case", "named": true @@ -1023,19 +1051,19 @@ "named": true }, { - "type": "let", + "type": "integer_negation", "named": true }, { - "type": "let_assert", + "type": "let", "named": true }, { - "type": "list", + "type": "let_assert", "named": true }, { - "type": "negation", + "type": "list", "named": true }, { @@ -1077,6 +1105,97 @@ ] } }, + { + "type": "boolean_negation", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "anonymous_function", + "named": true + }, + { + "type": "assert", + "named": true + }, + { + "type": "bit_string", + "named": true + }, + { + "type": "block", + "named": true + }, + { + "type": "boolean_negation", + "named": true + }, + { + "type": "case", + "named": true + }, + { + "type": "field_access", + "named": true + }, + { + "type": "float", + "named": true + }, + { + "type": "function_call", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "integer", + "named": true + }, + { + "type": "integer_negation", + "named": true + }, + { + "type": "list", + "named": true + }, + { + "type": "panic", + "named": true + }, + { + "type": "record", + "named": true + }, + { + "type": "record_update", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "todo", + "named": true + }, + { + "type": "tuple", + "named": true + }, + { + "type": "tuple_access", + "named": true + } + ] + } + }, { "type": "case", "named": true, @@ -1151,6 +1270,10 @@ "type": "block", "named": true }, + { + "type": "boolean_negation", + "named": true + }, { "type": "case", "named": true @@ -1176,11 +1299,11 @@ "named": true }, { - "type": "list", + "type": "integer_negation", "named": true }, { - "type": "negation", + "type": "list", "named": true }, { @@ -1394,6 +1517,10 @@ "type": "block", "named": true }, + { + "type": "boolean_negation", + "named": true + }, { "type": "case", "named": true @@ -1419,11 +1546,11 @@ "named": true }, { - "type": "list", + "type": "integer_negation", "named": true }, { - "type": "negation", + "type": "list", "named": true }, { @@ -1915,6 +2042,10 @@ "type": "block", "named": true }, + { + "type": "boolean_negation", + "named": true + }, { "type": "case", "named": true @@ -1940,19 +2071,19 @@ "named": true }, { - "type": "let", + "type": "integer_negation", "named": true }, { - "type": "let_assert", + "type": "let", "named": true }, { - "type": "list", + "type": "let_assert", "named": true }, { - "type": "negation", + "type": "list", "named": true }, { @@ -2239,6 +2370,97 @@ "named": true, "fields": {} }, + { + "type": "integer_negation", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "anonymous_function", + "named": true + }, + { + "type": "assert", + "named": true + }, + { + "type": "bit_string", + "named": true + }, + { + "type": "block", + "named": true + }, + { + "type": "boolean_negation", + "named": true + }, + { + "type": "case", + "named": true + }, + { + "type": "field_access", + "named": true + }, + { + "type": "float", + "named": true + }, + { + "type": "function_call", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "integer", + "named": true + }, + { + "type": "integer_negation", + "named": true + }, + { + "type": "list", + "named": true + }, + { + "type": "panic", + "named": true + }, + { + "type": "record", + "named": true + }, + { + "type": "record_update", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "todo", + "named": true + }, + { + "type": "tuple", + "named": true + }, + { + "type": "tuple_access", + "named": true + } + ] + } + }, { "type": "label", "named": true, @@ -2362,6 +2584,10 @@ "type": "block", "named": true }, + { + "type": "boolean_negation", + "named": true + }, { "type": "case", "named": true @@ -2387,11 +2613,11 @@ "named": true }, { - "type": "list", + "type": "integer_negation", "named": true }, { - "type": "negation", + "type": "list", "named": true }, { @@ -2544,6 +2770,10 @@ "type": "block", "named": true }, + { + "type": "boolean_negation", + "named": true + }, { "type": "case", "named": true @@ -2569,11 +2799,11 @@ "named": true }, { - "type": "list", + "type": "integer_negation", "named": true }, { - "type": "negation", + "type": "list", "named": true }, { @@ -2636,6 +2866,10 @@ "type": "block", "named": true }, + { + "type": "boolean_negation", + "named": true + }, { "type": "case", "named": true @@ -2661,11 +2895,11 @@ "named": true }, { - "type": "list", + "type": "integer_negation", "named": true }, { - "type": "negation", + "type": "list", "named": true }, { @@ -2723,6 +2957,10 @@ "type": "block", "named": true }, + { + "type": "boolean_negation", + "named": true + }, { "type": "case", "named": true @@ -2748,11 +2986,11 @@ "named": true }, { - "type": "list", + "type": "integer_negation", "named": true }, { - "type": "negation", + "type": "list", "named": true }, { @@ -2880,93 +3118,6 @@ "named": true, "fields": {} }, - { - "type": "negation", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "anonymous_function", - "named": true - }, - { - "type": "assert", - "named": true - }, - { - "type": "bit_string", - "named": true - }, - { - "type": "block", - "named": true - }, - { - "type": "case", - "named": true - }, - { - "type": "field_access", - "named": true - }, - { - "type": "float", - "named": true - }, - { - "type": "function_call", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "integer", - "named": true - }, - { - "type": "list", - "named": true - }, - { - "type": "negation", - "named": true - }, - { - "type": "panic", - "named": true - }, - { - "type": "record", - "named": true - }, - { - "type": "record_update", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "todo", - "named": true - }, - { - "type": "tuple", - "named": true - }, - { - "type": "tuple_access", - "named": true - } - ] - } - }, { "type": "panic", "named": true, @@ -3188,6 +3339,10 @@ "type": "block", "named": true }, + { + "type": "boolean_negation", + "named": true + }, { "type": "case", "named": true @@ -3213,11 +3368,11 @@ "named": true }, { - "type": "list", + "type": "integer_negation", "named": true }, { - "type": "negation", + "type": "list", "named": true }, { @@ -3290,6 +3445,10 @@ "type": "block", "named": true }, + { + "type": "boolean_negation", + "named": true + }, { "type": "case", "named": true @@ -3315,11 +3474,11 @@ "named": true }, { - "type": "list", + "type": "integer_negation", "named": true }, { - "type": "negation", + "type": "list", "named": true }, { @@ -3449,6 +3608,10 @@ "type": "block", "named": true }, + { + "type": "boolean_negation", + "named": true + }, { "type": "case", "named": true @@ -3494,19 +3657,19 @@ "named": true }, { - "type": "let", + "type": "integer_negation", "named": true }, { - "type": "let_assert", + "type": "let", "named": true }, { - "type": "list", + "type": "let_assert", "named": true }, { - "type": "negation", + "type": "list", "named": true }, { @@ -3768,6 +3931,10 @@ "type": "block", "named": true }, + { + "type": "boolean_negation", + "named": true + }, { "type": "case", "named": true @@ -3793,11 +3960,11 @@ "named": true }, { - "type": "list", + "type": "integer_negation", "named": true }, { - "type": "negation", + "type": "list", "named": true }, { @@ -3860,6 +4027,10 @@ "type": "block", "named": true }, + { + "type": "boolean_negation", + "named": true + }, { "type": "case", "named": true @@ -3885,11 +4056,11 @@ "named": true }, { - "type": "list", + "type": "integer_negation", "named": true }, { - "type": "negation", + "type": "list", "named": true }, { @@ -4372,6 +4543,10 @@ "type": "block", "named": true }, + { + "type": "boolean_negation", + "named": true + }, { "type": "case", "named": true @@ -4397,11 +4572,11 @@ "named": true }, { - "type": "list", + "type": "integer_negation", "named": true }, { - "type": "negation", + "type": "list", "named": true }, { diff --git a/src/parser.c b/src/parser.c index d905c7900..c0fa21420 100644 --- a/src/parser.c +++ b/src/parser.c @@ -14,9 +14,9 @@ #endif #define LANGUAGE_VERSION 13 -#define STATE_COUNT 1369 +#define STATE_COUNT 1388 #define LARGE_STATE_COUNT 6 -#define SYMBOL_COUNT 262 +#define SYMBOL_COUNT 263 #define ALIAS_COUNT 1 #define TOKEN_COUNT 94 #define EXTERNAL_TOKEN_COUNT 1 @@ -196,97 +196,98 @@ enum { sym_let = 169, sym_use = 170, sym_assert = 171, - sym_negation = 172, - sym__assignment = 173, - sym_record_update = 174, - sym_record_update_arguments = 175, - sym_record_update_argument = 176, - sym__maybe_tuple_expression = 177, - sym_tuple_access = 178, - sym__maybe_record_expression = 179, - sym_field_access = 180, - sym__maybe_function_expression = 181, - sym_arguments = 182, - sym_argument = 183, - sym_hole = 184, - sym_function_call = 185, - sym__pattern_expression = 186, - sym__pattern_binary_expression = 187, - sym__pattern = 188, - sym_record_pattern = 189, - sym_record_pattern_arguments = 190, - sym_record_pattern_argument = 191, - sym_pattern_spread = 192, - sym_tuple_pattern = 193, - sym__pattern_bit_string = 194, - sym_pattern_bit_string_segment = 195, - sym_pattern_bit_string_segment_options = 196, - sym__pattern_bit_string_segment_option = 197, - sym__pattern_bit_string_named_segment_option = 198, - sym__pattern_bit_string_segment_option_size = 199, - sym__pattern_bit_string_segment_argument = 200, - sym_list_pattern = 201, - sym_list_pattern_tail = 202, - sym_type_definition = 203, - sym_data_constructors = 204, - sym_data_constructor = 205, - sym_data_constructor_arguments = 206, - sym_data_constructor_argument = 207, - sym_type_alias = 208, - sym_string = 209, - sym_integer = 210, - sym__bit_string_segment_option = 211, - sym__type = 212, - sym__type_annotation = 213, - sym_type_hole = 214, - sym_tuple_type = 215, - sym_function_type = 216, - sym_function_parameter_types = 217, - sym_type = 218, - sym_type_arguments = 219, - sym_type_argument = 220, - sym_type_var = 221, - sym_type_name = 222, - sym_type_parameters = 223, - sym_type_parameter = 224, - sym_identifier = 225, - sym_label = 226, - sym_discard = 227, - sym_type_identifier = 228, - sym_remote_type_identifier = 229, - sym_constructor_name = 230, - sym_remote_constructor_name = 231, - aux_sym_source_file_repeat1 = 232, - aux_sym_target_group_repeat1 = 233, - aux_sym_module_repeat1 = 234, - aux_sym_unqualified_imports_repeat1 = 235, - aux_sym_constant_tuple_repeat1 = 236, - aux_sym__constant_bit_string_repeat1 = 237, - aux_sym_constant_bit_string_segment_options_repeat1 = 238, - aux_sym_constant_record_arguments_repeat1 = 239, - aux_sym_constant_tuple_type_repeat1 = 240, - aux_sym_constant_type_arguments_repeat1 = 241, - aux_sym_external_function_parameters_repeat1 = 242, - aux_sym_function_parameters_repeat1 = 243, - aux_sym_tuple_repeat1 = 244, - aux_sym__expression_bit_string_repeat1 = 245, - aux_sym_expression_bit_string_segment_options_repeat1 = 246, - aux_sym_anonymous_function_parameters_repeat1 = 247, - aux_sym_case_clauses_repeat1 = 248, - aux_sym_case_clause_patterns_repeat1 = 249, - aux_sym_case_clause_pattern_repeat1 = 250, - aux_sym_record_update_arguments_repeat1 = 251, - aux_sym_arguments_repeat1 = 252, - aux_sym_record_pattern_arguments_repeat1 = 253, - aux_sym__pattern_bit_string_repeat1 = 254, - aux_sym_pattern_bit_string_segment_options_repeat1 = 255, - aux_sym_data_constructors_repeat1 = 256, - aux_sym_data_constructor_arguments_repeat1 = 257, - aux_sym_string_repeat1 = 258, - aux_sym_tuple_type_repeat1 = 259, - aux_sym_type_arguments_repeat1 = 260, - aux_sym_type_parameters_repeat1 = 261, - alias_sym_function_body = 262, + sym_boolean_negation = 172, + sym_integer_negation = 173, + sym__assignment = 174, + sym_record_update = 175, + sym_record_update_arguments = 176, + sym_record_update_argument = 177, + sym__maybe_tuple_expression = 178, + sym_tuple_access = 179, + sym__maybe_record_expression = 180, + sym_field_access = 181, + sym__maybe_function_expression = 182, + sym_arguments = 183, + sym_argument = 184, + sym_hole = 185, + sym_function_call = 186, + sym__pattern_expression = 187, + sym__pattern_binary_expression = 188, + sym__pattern = 189, + sym_record_pattern = 190, + sym_record_pattern_arguments = 191, + sym_record_pattern_argument = 192, + sym_pattern_spread = 193, + sym_tuple_pattern = 194, + sym__pattern_bit_string = 195, + sym_pattern_bit_string_segment = 196, + sym_pattern_bit_string_segment_options = 197, + sym__pattern_bit_string_segment_option = 198, + sym__pattern_bit_string_named_segment_option = 199, + sym__pattern_bit_string_segment_option_size = 200, + sym__pattern_bit_string_segment_argument = 201, + sym_list_pattern = 202, + sym_list_pattern_tail = 203, + sym_type_definition = 204, + sym_data_constructors = 205, + sym_data_constructor = 206, + sym_data_constructor_arguments = 207, + sym_data_constructor_argument = 208, + sym_type_alias = 209, + sym_string = 210, + sym_integer = 211, + sym__bit_string_segment_option = 212, + sym__type = 213, + sym__type_annotation = 214, + sym_type_hole = 215, + sym_tuple_type = 216, + sym_function_type = 217, + sym_function_parameter_types = 218, + sym_type = 219, + sym_type_arguments = 220, + sym_type_argument = 221, + sym_type_var = 222, + sym_type_name = 223, + sym_type_parameters = 224, + sym_type_parameter = 225, + sym_identifier = 226, + sym_label = 227, + sym_discard = 228, + sym_type_identifier = 229, + sym_remote_type_identifier = 230, + sym_constructor_name = 231, + sym_remote_constructor_name = 232, + aux_sym_source_file_repeat1 = 233, + aux_sym_target_group_repeat1 = 234, + aux_sym_module_repeat1 = 235, + aux_sym_unqualified_imports_repeat1 = 236, + aux_sym_constant_tuple_repeat1 = 237, + aux_sym__constant_bit_string_repeat1 = 238, + aux_sym_constant_bit_string_segment_options_repeat1 = 239, + aux_sym_constant_record_arguments_repeat1 = 240, + aux_sym_constant_tuple_type_repeat1 = 241, + aux_sym_constant_type_arguments_repeat1 = 242, + aux_sym_external_function_parameters_repeat1 = 243, + aux_sym_function_parameters_repeat1 = 244, + aux_sym_tuple_repeat1 = 245, + aux_sym__expression_bit_string_repeat1 = 246, + aux_sym_expression_bit_string_segment_options_repeat1 = 247, + aux_sym_anonymous_function_parameters_repeat1 = 248, + aux_sym_case_clauses_repeat1 = 249, + aux_sym_case_clause_patterns_repeat1 = 250, + aux_sym_case_clause_pattern_repeat1 = 251, + aux_sym_record_update_arguments_repeat1 = 252, + aux_sym_arguments_repeat1 = 253, + aux_sym_record_pattern_arguments_repeat1 = 254, + aux_sym__pattern_bit_string_repeat1 = 255, + aux_sym_pattern_bit_string_segment_options_repeat1 = 256, + aux_sym_data_constructors_repeat1 = 257, + aux_sym_data_constructor_arguments_repeat1 = 258, + aux_sym_string_repeat1 = 259, + aux_sym_tuple_type_repeat1 = 260, + aux_sym_type_arguments_repeat1 = 261, + aux_sym_type_parameters_repeat1 = 262, + alias_sym_function_body = 263, }; static const char * const ts_symbol_names[] = { @@ -462,7 +463,8 @@ static const char * const ts_symbol_names[] = { [sym_let] = "let", [sym_use] = "use", [sym_assert] = "assert", - [sym_negation] = "negation", + [sym_boolean_negation] = "boolean_negation", + [sym_integer_negation] = "integer_negation", [sym__assignment] = "_assignment", [sym_record_update] = "record_update", [sym_record_update_arguments] = "record_update_arguments", @@ -728,7 +730,8 @@ static const TSSymbol ts_symbol_map[] = { [sym_let] = sym_let, [sym_use] = sym_use, [sym_assert] = sym_assert, - [sym_negation] = sym_negation, + [sym_boolean_negation] = sym_boolean_negation, + [sym_integer_negation] = sym_integer_negation, [sym__assignment] = sym__assignment, [sym_record_update] = sym_record_update, [sym_record_update_arguments] = sym_record_update_arguments, @@ -1510,7 +1513,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_negation] = { + [sym_boolean_negation] = { + .visible = true, + .named = true, + }, + [sym_integer_negation] = { .visible = true, .named = true, }, @@ -2301,159 +2308,159 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(159); + if (eof) ADVANCE(162); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') SKIP(156) - if (lookahead == '\r') SKIP(156) - if (lookahead == '!') ADVANCE(245); - if (lookahead == '"') ADVANCE(251); - if (lookahead == '#') ADVANCE(186); - if (lookahead == '%') ADVANCE(232); + lookahead == ' ') SKIP(159) + if (lookahead == '\r') SKIP(159) + if (lookahead == '!') ADVANCE(249); + if (lookahead == '"') ADVANCE(255); + if (lookahead == '#') ADVANCE(189); + if (lookahead == '%') ADVANCE(235); if (lookahead == '&') ADVANCE(1); - if (lookahead == '(') ADVANCE(187); - if (lookahead == ')') ADVANCE(188); - if (lookahead == '*') ADVANCE(229); - if (lookahead == '+') ADVANCE(226); - if (lookahead == ',') ADVANCE(181); - if (lookahead == '-') ADVANCE(196); - if (lookahead == '.') ADVANCE(176); - if (lookahead == '/') ADVANCE(179); - if (lookahead == '0') ADVANCE(256); - if (lookahead == ':') ADVANCE(193); - if (lookahead == '<') ADVANCE(214); - if (lookahead == '=') ADVANCE(185); - if (lookahead == '>') ADVANCE(221); - if (lookahead == '[') ADVANCE(189); - if (lookahead == '\\') ADVANCE(152); - if (lookahead == ']') ADVANCE(190); - if (lookahead == '_') ADVANCE(298); - if (lookahead == 'a') ADVANCE(409); - if (lookahead == 'b') ADVANCE(355); - if (lookahead == 'c') ADVANCE(307); - if (lookahead == 'e') ADVANCE(402); - if (lookahead == 'f') ADVANCE(366); - if (lookahead == 'i') ADVANCE(346); - if (lookahead == 'j') ADVANCE(305); - if (lookahead == 'l') ADVANCE(338); - if (lookahead == 'n') ADVANCE(315); - if (lookahead == 'o') ADVANCE(395); - if (lookahead == 'p') ADVANCE(309); - if (lookahead == 's') ADVANCE(356); - if (lookahead == 't') ADVANCE(382); - if (lookahead == 'u') ADVANCE(371); - if (lookahead == '{') ADVANCE(167); - if (lookahead == '|') ADVANCE(239); - if (lookahead == '}') ADVANCE(168); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(257); - if (('d' <= lookahead && lookahead <= 'z')) ADVANCE(441); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(442); + if (lookahead == '(') ADVANCE(190); + if (lookahead == ')') ADVANCE(191); + if (lookahead == '*') ADVANCE(232); + if (lookahead == '+') ADVANCE(229); + if (lookahead == ',') ADVANCE(184); + if (lookahead == '-') ADVANCE(199); + if (lookahead == '.') ADVANCE(179); + if (lookahead == '/') ADVANCE(182); + if (lookahead == '0') ADVANCE(260); + if (lookahead == ':') ADVANCE(196); + if (lookahead == '<') ADVANCE(217); + if (lookahead == '=') ADVANCE(188); + if (lookahead == '>') ADVANCE(224); + if (lookahead == '[') ADVANCE(192); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == ']') ADVANCE(193); + if (lookahead == '_') ADVANCE(302); + if (lookahead == 'a') ADVANCE(413); + if (lookahead == 'b') ADVANCE(359); + if (lookahead == 'c') ADVANCE(311); + if (lookahead == 'e') ADVANCE(406); + if (lookahead == 'f') ADVANCE(370); + if (lookahead == 'i') ADVANCE(350); + if (lookahead == 'j') ADVANCE(309); + if (lookahead == 'l') ADVANCE(342); + if (lookahead == 'n') ADVANCE(319); + if (lookahead == 'o') ADVANCE(399); + if (lookahead == 'p') ADVANCE(313); + if (lookahead == 's') ADVANCE(360); + if (lookahead == 't') ADVANCE(386); + if (lookahead == 'u') ADVANCE(375); + if (lookahead == '{') ADVANCE(170); + if (lookahead == '|') ADVANCE(242); + if (lookahead == '}') ADVANCE(171); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(261); + if (('d' <= lookahead && lookahead <= 'z')) ADVANCE(445); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(446); END_STATE(); case 1: - if (lookahead == '&') ADVANCE(211); + if (lookahead == '&') ADVANCE(214); END_STATE(); case 2: - if (lookahead == '-') ADVANCE(154); + if (lookahead == '-') ADVANCE(157); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(254); + lookahead == '_') ADVANCE(258); END_STATE(); case 3: - if (lookahead == '-') ADVANCE(243); - if (lookahead == '<') ADVANCE(191); + if (lookahead == '-') ADVANCE(247); + if (lookahead == '<') ADVANCE(194); END_STATE(); case 4: - if (lookahead == '-') ADVANCE(243); - if (lookahead == '>') ADVANCE(233); + if (lookahead == '-') ADVANCE(247); + if (lookahead == '>') ADVANCE(236); END_STATE(); case 5: - if (lookahead == '.') ADVANCE(236); + if (lookahead == '.') ADVANCE(239); END_STATE(); case 6: - if (lookahead == '.') ADVANCE(253); + if (lookahead == '.') ADVANCE(257); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_') ADVANCE(6); END_STATE(); case 7: - if (lookahead == '/') ADVANCE(163); + if (lookahead == '/') ADVANCE(166); END_STATE(); case 8: if (lookahead == '1') ADVANCE(10); if (lookahead == '3') ADVANCE(9); - if (lookahead == '8') ADVANCE(274); + if (lookahead == '8') ADVANCE(278); END_STATE(); case 9: - if (lookahead == '2') ADVANCE(278); + if (lookahead == '2') ADVANCE(282); END_STATE(); case 10: - if (lookahead == '6') ADVANCE(276); + if (lookahead == '6') ADVANCE(280); END_STATE(); case 11: - if (lookahead == '<') ADVANCE(191); + if (lookahead == '<') ADVANCE(194); END_STATE(); case 12: - if (lookahead == '=') ADVANCE(213); + if (lookahead == '=') ADVANCE(216); END_STATE(); case 13: - if (lookahead == '=') ADVANCE(212); + if (lookahead == '=') ADVANCE(215); END_STATE(); case 14: - if (lookahead == '>') ADVANCE(204); + if (lookahead == '>') ADVANCE(207); END_STATE(); case 15: - if (lookahead == '>') ADVANCE(192); + if (lookahead == '>') ADVANCE(195); END_STATE(); case 16: - if (lookahead == '>') ADVANCE(225); - if (lookahead == '|') ADVANCE(210); + if (lookahead == '>') ADVANCE(228); + if (lookahead == '|') ADVANCE(213); END_STATE(); case 17: - if (lookahead == '_') ADVANCE(110); - if (lookahead == 's') ADVANCE(272); + if (lookahead == '_') ADVANCE(111); + if (lookahead == 's') ADVANCE(276); END_STATE(); case 18: - if (lookahead == 'a') ADVANCE(128); + if (lookahead == 'a') ADVANCE(129); END_STATE(); case 19: - if (lookahead == 'a') ADVANCE(99); + if (lookahead == 'a') ADVANCE(100); END_STATE(); case 20: - if (lookahead == 'a') ADVANCE(101); + if (lookahead == 'a') ADVANCE(102); END_STATE(); case 21: - if (lookahead == 'a') ADVANCE(75); + if (lookahead == 'a') ADVANCE(76); END_STATE(); case 22: - if (lookahead == 'a') ADVANCE(66); + if (lookahead == 'a') ADVANCE(67); END_STATE(); case 23: - if (lookahead == 'a') ADVANCE(108); + if (lookahead == 'a') ADVANCE(109); END_STATE(); case 24: - if (lookahead == 'a') ADVANCE(123); + if (lookahead == 'a') ADVANCE(124); END_STATE(); case 25: - if (lookahead == 'a') ADVANCE(115); + if (lookahead == 'a') ADVANCE(116); END_STATE(); case 26: - if (lookahead == 'b') ADVANCE(246); + if (lookahead == 'b') ADVANCE(250); END_STATE(); case 27: - if (lookahead == 'c') ADVANCE(85); + if (lookahead == 'c') ADVANCE(86); END_STATE(); case 28: - if (lookahead == 'c') ADVANCE(104); + if (lookahead == 'c') ADVANCE(105); END_STATE(); case 29: - if (lookahead == 'c') ADVANCE(90); + if (lookahead == 'c') ADVANCE(91); END_STATE(); case 30: - if (lookahead == 'c') ADVANCE(91); + if (lookahead == 'c') ADVANCE(92); END_STATE(); case 31: - if (lookahead == 'd') ADVANCE(286); + if (lookahead == 'd') ADVANCE(290); END_STATE(); case 32: - if (lookahead == 'd') ADVANCE(288); + if (lookahead == 'd') ADVANCE(292); END_STATE(); case 33: if (lookahead == 'd') ADVANCE(45); @@ -2465,94 +2472,94 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'd') ADVANCE(47); END_STATE(); case 36: - if (lookahead == 'e') ADVANCE(200); + if (lookahead == 'e') ADVANCE(203); END_STATE(); case 37: - if (lookahead == 'e') ADVANCE(207); + if (lookahead == 'e') ADVANCE(210); END_STATE(); case 38: if (lookahead == 'e') ADVANCE(31); END_STATE(); case 39: - if (lookahead == 'e') ADVANCE(292); + if (lookahead == 'e') ADVANCE(296); END_STATE(); case 40: - if (lookahead == 'e') ADVANCE(294); + if (lookahead == 'e') ADVANCE(298); END_STATE(); case 41: - if (lookahead == 'e') ADVANCE(248); + if (lookahead == 'e') ADVANCE(252); END_STATE(); case 42: - if (lookahead == 'e') ADVANCE(102); + if (lookahead == 'e') ADVANCE(103); END_STATE(); case 43: if (lookahead == 'e') ADVANCE(32); END_STATE(); case 44: - if (lookahead == 'e') ADVANCE(107); + if (lookahead == 'e') ADVANCE(108); END_STATE(); case 45: - if (lookahead == 'e') ADVANCE(95); + if (lookahead == 'e') ADVANCE(96); END_STATE(); case 46: - if (lookahead == 'e') ADVANCE(97); + if (lookahead == 'e') ADVANCE(98); END_STATE(); case 47: - if (lookahead == 'e') ADVANCE(98); + if (lookahead == 'e') ADVANCE(99); END_STATE(); case 48: if (lookahead == 'f') ADVANCE(8); END_STATE(); case 49: - if (lookahead == 'f') ADVANCE(165); - if (lookahead == 'm') ADVANCE(92); + if (lookahead == 'f') ADVANCE(168); END_STATE(); case 50: - if (lookahead == 'g') ADVANCE(290); - if (lookahead == 'n') ADVANCE(20); - if (lookahead == 't') ADVANCE(17); + if (lookahead == 'f') ADVANCE(168); + if (lookahead == 'm') ADVANCE(93); END_STATE(); case 51: - if (lookahead == 'g') ADVANCE(169); + if (lookahead == 'g') ADVANCE(294); + if (lookahead == 'n') ADVANCE(20); + if (lookahead == 't') ADVANCE(17); END_STATE(); case 52: - if (lookahead == 'g') ADVANCE(270); + if (lookahead == 'g') ADVANCE(172); END_STATE(); case 53: - if (lookahead == 'g') ADVANCE(77); - if (lookahead == 'z') ADVANCE(36); + if (lookahead == 'g') ADVANCE(274); END_STATE(); case 54: - if (lookahead == 'g') ADVANCE(79); + if (lookahead == 'g') ADVANCE(78); + if (lookahead == 'z') ADVANCE(36); END_STATE(); case 55: - if (lookahead == 'i') ADVANCE(50); - if (lookahead == 'y') ADVANCE(111); + if (lookahead == 'g') ADVANCE(80); END_STATE(); case 56: - if (lookahead == 'i') ADVANCE(53); + if (lookahead == 'i') ADVANCE(51); + if (lookahead == 'y') ADVANCE(112); END_STATE(); case 57: if (lookahead == 'i') ADVANCE(54); END_STATE(); case 58: - if (lookahead == 'i') ADVANCE(129); + if (lookahead == 'i') ADVANCE(55); END_STATE(); case 59: - if (lookahead == 'i') ADVANCE(125); + if (lookahead == 'i') ADVANCE(130); END_STATE(); case 60: - if (lookahead == 'i') ADVANCE(96); + if (lookahead == 'i') ADVANCE(126); END_STATE(); case 61: - if (lookahead == 'i') ADVANCE(76); + if (lookahead == 'i') ADVANCE(97); END_STATE(); case 62: - if (lookahead == 'i') ADVANCE(113); - if (lookahead == 's') ADVANCE(57); + if (lookahead == 'i') ADVANCE(77); END_STATE(); case 63: - if (lookahead == 'i') ADVANCE(80); + if (lookahead == 'i') ADVANCE(114); + if (lookahead == 's') ADVANCE(58); END_STATE(); case 64: if (lookahead == 'i') ADVANCE(81); @@ -2561,52 +2568,52 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'i') ADVANCE(82); END_STATE(); case 66: - if (lookahead == 'l') ADVANCE(205); + if (lookahead == 'i') ADVANCE(83); END_STATE(); case 67: - if (lookahead == 'l') ADVANCE(86); - if (lookahead == 'n') ADVANCE(202); + if (lookahead == 'l') ADVANCE(208); END_STATE(); case 68: - if (lookahead == 'l') ADVANCE(21); + if (lookahead == 'l') ADVANCE(87); + if (lookahead == 'n') ADVANCE(205); END_STATE(); case 69: - if (lookahead == 'l') ADVANCE(39); + if (lookahead == 'l') ADVANCE(21); END_STATE(); case 70: - if (lookahead == 'm') ADVANCE(92); + if (lookahead == 'l') ADVANCE(39); END_STATE(); case 71: - if (lookahead == 'm') ADVANCE(92); - if (lookahead == 'n') ADVANCE(112); + if (lookahead == 'm') ADVANCE(93); END_STATE(); case 72: - if (lookahead == 'n') ADVANCE(202); + if (lookahead == 'm') ADVANCE(93); + if (lookahead == 'n') ADVANCE(113); END_STATE(); case 73: - if (lookahead == 'n') ADVANCE(62); - if (lookahead == 't') ADVANCE(48); + if (lookahead == 'n') ADVANCE(205); END_STATE(); case 74: - if (lookahead == 'n') ADVANCE(109); + if (lookahead == 'n') ADVANCE(63); + if (lookahead == 't') ADVANCE(48); END_STATE(); case 75: - if (lookahead == 'n') ADVANCE(51); + if (lookahead == 'n') ADVANCE(110); END_STATE(); case 76: if (lookahead == 'n') ADVANCE(52); END_STATE(); case 77: - if (lookahead == 'n') ADVANCE(38); + if (lookahead == 'n') ADVANCE(53); END_STATE(); case 78: - if (lookahead == 'n') ADVANCE(22); + if (lookahead == 'n') ADVANCE(38); END_STATE(); case 79: - if (lookahead == 'n') ADVANCE(43); + if (lookahead == 'n') ADVANCE(22); END_STATE(); case 80: - if (lookahead == 'n') ADVANCE(118); + if (lookahead == 'n') ADVANCE(43); END_STATE(); case 81: if (lookahead == 'n') ADVANCE(119); @@ -2615,19 +2622,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'n') ADVANCE(120); END_STATE(); case 83: - if (lookahead == 'o') ADVANCE(74); + if (lookahead == 'n') ADVANCE(121); END_STATE(); case 84: - if (lookahead == 'o') ADVANCE(105); + if (lookahead == 'o') ADVANCE(75); END_STATE(); case 85: - if (lookahead == 'o') ADVANCE(33); + if (lookahead == 'o') ADVANCE(106); END_STATE(); case 86: - if (lookahead == 'o') ADVANCE(25); + if (lookahead == 'o') ADVANCE(33); END_STATE(); case 87: - if (lookahead == 'o') ADVANCE(63); + if (lookahead == 'o') ADVANCE(25); END_STATE(); case 88: if (lookahead == 'o') ADVANCE(64); @@ -2636,319 +2643,281 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'o') ADVANCE(65); END_STATE(); case 90: - if (lookahead == 'o') ADVANCE(34); + if (lookahead == 'o') ADVANCE(66); END_STATE(); case 91: - if (lookahead == 'o') ADVANCE(35); + if (lookahead == 'o') ADVANCE(34); END_STATE(); case 92: - if (lookahead == 'p') ADVANCE(84); + if (lookahead == 'o') ADVANCE(35); END_STATE(); case 93: - if (lookahead == 'p') ADVANCE(19); + if (lookahead == 'p') ADVANCE(85); END_STATE(); case 94: - if (lookahead == 'p') ADVANCE(37); + if (lookahead == 'p') ADVANCE(19); END_STATE(); case 95: - if (lookahead == 'p') ADVANCE(87); + if (lookahead == 'p') ADVANCE(37); END_STATE(); case 96: - if (lookahead == 'p') ADVANCE(117); + if (lookahead == 'p') ADVANCE(88); END_STATE(); case 97: - if (lookahead == 'p') ADVANCE(88); + if (lookahead == 'p') ADVANCE(118); END_STATE(); case 98: if (lookahead == 'p') ADVANCE(89); END_STATE(); case 99: - if (lookahead == 'q') ADVANCE(127); + if (lookahead == 'p') ADVANCE(90); END_STATE(); case 100: - if (lookahead == 'r') ADVANCE(68); - if (lookahead == 'x') ADVANCE(122); + if (lookahead == 'q') ADVANCE(128); END_STATE(); case 101: - if (lookahead == 'r') ADVANCE(131); + if (lookahead == 'r') ADVANCE(69); + if (lookahead == 'x') ADVANCE(123); END_STATE(); case 102: - if (lookahead == 'r') ADVANCE(78); + if (lookahead == 'r') ADVANCE(132); END_STATE(); case 103: - if (lookahead == 'r') ADVANCE(61); + if (lookahead == 'r') ADVANCE(79); END_STATE(); case 104: - if (lookahead == 'r') ADVANCE(60); + if (lookahead == 'r') ADVANCE(62); END_STATE(); case 105: - if (lookahead == 'r') ADVANCE(116); + if (lookahead == 'r') ADVANCE(61); END_STATE(); case 106: - if (lookahead == 's') ADVANCE(177); + if (lookahead == 'r') ADVANCE(117); END_STATE(); case 107: - if (lookahead == 's') ADVANCE(264); + if (lookahead == 's') ADVANCE(180); END_STATE(); case 108: - if (lookahead == 's') ADVANCE(28); + if (lookahead == 's') ADVANCE(268); END_STATE(); case 109: - if (lookahead == 's') ADVANCE(114); + if (lookahead == 's') ADVANCE(28); END_STATE(); case 110: - if (lookahead == 's') ADVANCE(124); + if (lookahead == 's') ADVANCE(115); END_STATE(); case 111: - if (lookahead == 't') ADVANCE(44); + if (lookahead == 's') ADVANCE(125); END_STATE(); case 112: - if (lookahead == 't') ADVANCE(266); + if (lookahead == 't') ADVANCE(44); END_STATE(); case 113: - if (lookahead == 't') ADVANCE(296); + if (lookahead == 't') ADVANCE(270); END_STATE(); case 114: - if (lookahead == 't') ADVANCE(182); + if (lookahead == 't') ADVANCE(300); END_STATE(); case 115: - if (lookahead == 't') ADVANCE(268); + if (lookahead == 't') ADVANCE(185); END_STATE(); case 116: - if (lookahead == 't') ADVANCE(173); + if (lookahead == 't') ADVANCE(272); END_STATE(); case 117: - if (lookahead == 't') ADVANCE(171); + if (lookahead == 't') ADVANCE(176); END_STATE(); case 118: - if (lookahead == 't') ADVANCE(280); + if (lookahead == 't') ADVANCE(174); END_STATE(); case 119: - if (lookahead == 't') ADVANCE(282); + if (lookahead == 't') ADVANCE(284); END_STATE(); case 120: - if (lookahead == 't') ADVANCE(284); + if (lookahead == 't') ADVANCE(286); END_STATE(); case 121: - if (lookahead == 't') ADVANCE(69); + if (lookahead == 't') ADVANCE(288); END_STATE(); case 122: - if (lookahead == 't') ADVANCE(42); + if (lookahead == 't') ADVANCE(70); END_STATE(); case 123: - if (lookahead == 't') ADVANCE(58); + if (lookahead == 't') ADVANCE(42); END_STATE(); case 124: - if (lookahead == 't') ADVANCE(103); + if (lookahead == 't') ADVANCE(59); END_STATE(); case 125: - if (lookahead == 't') ADVANCE(121); + if (lookahead == 't') ADVANCE(104); END_STATE(); case 126: - if (lookahead == 'u') ADVANCE(26); + if (lookahead == 't') ADVANCE(122); END_STATE(); case 127: - if (lookahead == 'u') ADVANCE(41); + if (lookahead == 'u') ADVANCE(26); END_STATE(); case 128: - if (lookahead == 'v') ADVANCE(23); + if (lookahead == 'u') ADVANCE(41); END_STATE(); case 129: - if (lookahead == 'v') ADVANCE(40); + if (lookahead == 'v') ADVANCE(23); END_STATE(); case 130: - if (lookahead == 'x') ADVANCE(122); + if (lookahead == 'v') ADVANCE(40); END_STATE(); case 131: - if (lookahead == 'y') ADVANCE(262); + if (lookahead == 'x') ADVANCE(123); END_STATE(); case 132: - if (lookahead == 'y') ADVANCE(94); + if (lookahead == 'y') ADVANCE(266); END_STATE(); case 133: - if (lookahead == '|') ADVANCE(210); + if (lookahead == 'y') ADVANCE(95); END_STATE(); case 134: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') SKIP(134) - if (lookahead == '\r') SKIP(134) - if (lookahead == '!') ADVANCE(245); - if (lookahead == '"') ADVANCE(250); - if (lookahead == '#') ADVANCE(186); - if (lookahead == '%') ADVANCE(232); - if (lookahead == '&') ADVANCE(1); - if (lookahead == '(') ADVANCE(187); - if (lookahead == ')') ADVANCE(188); - if (lookahead == '*') ADVANCE(229); - if (lookahead == '+') ADVANCE(226); - if (lookahead == ',') ADVANCE(181); - if (lookahead == '-') ADVANCE(197); - if (lookahead == '.') ADVANCE(176); - if (lookahead == '/') ADVANCE(179); - if (lookahead == '0') ADVANCE(256); - if (lookahead == ':') ADVANCE(193); - if (lookahead == '<') ADVANCE(214); - if (lookahead == '=') ADVANCE(185); - if (lookahead == '>') ADVANCE(221); - if (lookahead == '[') ADVANCE(189); - if (lookahead == ']') ADVANCE(190); - if (lookahead == '_') ADVANCE(300); - if (lookahead == 'a') ADVANCE(417); - if (lookahead == 'c') ADVANCE(308); - if (lookahead == 'f') ADVANCE(370); - if (lookahead == 'l') ADVANCE(339); - if (lookahead == 'p') ADVANCE(310); - if (lookahead == 't') ADVANCE(383); - if (lookahead == 'u') ADVANCE(410); - if (lookahead == '{') ADVANCE(167); - if (lookahead == '|') ADVANCE(16); - if (lookahead == '}') ADVANCE(168); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(257); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(441); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(442); + if (lookahead == '|') ADVANCE(213); END_STATE(); case 135: if (lookahead == '\t' || lookahead == '\n' || lookahead == ' ') SKIP(135) if (lookahead == '\r') SKIP(135) - if (lookahead == '!') ADVANCE(244); - if (lookahead == '"') ADVANCE(250); - if (lookahead == '#') ADVANCE(186); - if (lookahead == '(') ADVANCE(187); - if (lookahead == ')') ADVANCE(188); - if (lookahead == ',') ADVANCE(181); - if (lookahead == '-') ADVANCE(199); - if (lookahead == '.') ADVANCE(5); - if (lookahead == '/') ADVANCE(7); - if (lookahead == '0') ADVANCE(256); - if (lookahead == ':') ADVANCE(193); - if (lookahead == '<') ADVANCE(3); - if (lookahead == '=') ADVANCE(184); - if (lookahead == '[') ADVANCE(189); - if (lookahead == '_') ADVANCE(298); - if (lookahead == 'a') ADVANCE(417); - if (lookahead == 'c') ADVANCE(308); - if (lookahead == 'f') ADVANCE(370); - if (lookahead == 'p') ADVANCE(310); - if (lookahead == 't') ADVANCE(384); - if (lookahead == '{') ADVANCE(167); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(257); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(441); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(442); + if (lookahead == '!') ADVANCE(249); + if (lookahead == '"') ADVANCE(254); + if (lookahead == '#') ADVANCE(189); + if (lookahead == '%') ADVANCE(235); + if (lookahead == '&') ADVANCE(1); + if (lookahead == '(') ADVANCE(190); + if (lookahead == ')') ADVANCE(191); + if (lookahead == '*') ADVANCE(232); + if (lookahead == '+') ADVANCE(229); + if (lookahead == ',') ADVANCE(184); + if (lookahead == '-') ADVANCE(200); + if (lookahead == '.') ADVANCE(179); + if (lookahead == '/') ADVANCE(182); + if (lookahead == '0') ADVANCE(260); + if (lookahead == ':') ADVANCE(196); + if (lookahead == '<') ADVANCE(217); + if (lookahead == '=') ADVANCE(188); + if (lookahead == '>') ADVANCE(224); + if (lookahead == '[') ADVANCE(192); + if (lookahead == ']') ADVANCE(193); + if (lookahead == '_') ADVANCE(304); + if (lookahead == 'a') ADVANCE(421); + if (lookahead == 'c') ADVANCE(312); + if (lookahead == 'f') ADVANCE(374); + if (lookahead == 'l') ADVANCE(343); + if (lookahead == 'p') ADVANCE(314); + if (lookahead == 't') ADVANCE(387); + if (lookahead == 'u') ADVANCE(414); + if (lookahead == '{') ADVANCE(170); + if (lookahead == '|') ADVANCE(16); + if (lookahead == '}') ADVANCE(171); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(261); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(445); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(446); END_STATE(); case 136: if (lookahead == '\t' || lookahead == '\n' || lookahead == ' ') SKIP(136) if (lookahead == '\r') SKIP(136) - if (lookahead == '!') ADVANCE(244); - if (lookahead == '"') ADVANCE(250); - if (lookahead == '#') ADVANCE(186); - if (lookahead == ')') ADVANCE(188); - if (lookahead == '-') ADVANCE(199); + if (lookahead == '!') ADVANCE(248); + if (lookahead == '"') ADVANCE(254); + if (lookahead == '#') ADVANCE(189); + if (lookahead == '(') ADVANCE(190); + if (lookahead == ')') ADVANCE(191); + if (lookahead == ',') ADVANCE(184); + if (lookahead == '-') ADVANCE(202); if (lookahead == '.') ADVANCE(5); if (lookahead == '/') ADVANCE(7); - if (lookahead == '0') ADVANCE(256); - if (lookahead == '<') ADVANCE(11); - if (lookahead == '>') ADVANCE(15); - if (lookahead == '[') ADVANCE(189); - if (lookahead == ']') ADVANCE(190); - if (lookahead == '_') ADVANCE(300); - if (lookahead == 'a') ADVANCE(417); - if (lookahead == 'c') ADVANCE(308); - if (lookahead == 'f') ADVANCE(370); - if (lookahead == 'p') ADVANCE(310); - if (lookahead == 't') ADVANCE(384); - if (lookahead == '{') ADVANCE(167); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(257); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(441); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(442); + if (lookahead == '0') ADVANCE(260); + if (lookahead == ':') ADVANCE(196); + if (lookahead == '<') ADVANCE(3); + if (lookahead == '=') ADVANCE(187); + if (lookahead == '[') ADVANCE(192); + if (lookahead == '_') ADVANCE(302); + if (lookahead == 'a') ADVANCE(421); + if (lookahead == 'c') ADVANCE(312); + if (lookahead == 'f') ADVANCE(374); + if (lookahead == 'p') ADVANCE(314); + if (lookahead == 't') ADVANCE(388); + if (lookahead == '{') ADVANCE(170); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(261); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(445); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(446); END_STATE(); case 137: if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') SKIP(138) - if (lookahead == '\r') SKIP(138) - if (lookahead == '!') ADVANCE(12); - if (lookahead == '"') ADVANCE(251); - if (lookahead == '%') ADVANCE(232); - if (lookahead == '&') ADVANCE(1); - if (lookahead == '(') ADVANCE(187); - if (lookahead == ')') ADVANCE(188); - if (lookahead == '*') ADVANCE(229); - if (lookahead == '+') ADVANCE(226); - if (lookahead == ',') ADVANCE(181); - if (lookahead == '-') ADVANCE(195); - if (lookahead == '.') ADVANCE(176); - if (lookahead == '/') ADVANCE(179); - if (lookahead == '0') ADVANCE(258); - if (lookahead == ':') ADVANCE(193); - if (lookahead == '<') ADVANCE(216); - if (lookahead == '=') ADVANCE(185); - if (lookahead == '>') ADVANCE(221); - if (lookahead == '\\') ADVANCE(152); - if (lookahead == ']') ADVANCE(190); - if (lookahead == 'a') ADVANCE(106); - if (lookahead == 'b') ADVANCE(55); - if (lookahead == 'c') ADVANCE(83); - if (lookahead == 'e') ADVANCE(100); - if (lookahead == 'f') ADVANCE(67); - if (lookahead == 'i') ADVANCE(71); - if (lookahead == 'j') ADVANCE(18); - if (lookahead == 'l') ADVANCE(59); - if (lookahead == 'n') ADVANCE(24); - if (lookahead == 'o') ADVANCE(93); - if (lookahead == 'p') ADVANCE(126); - if (lookahead == 's') ADVANCE(56); - if (lookahead == 't') ADVANCE(132); - if (lookahead == 'u') ADVANCE(73); - if (lookahead == '{') ADVANCE(167); - if (lookahead == '|') ADVANCE(16); - if (lookahead == '}') ADVANCE(168); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(259); + lookahead == ' ') SKIP(137) + if (lookahead == '\r') SKIP(137) + if (lookahead == '!') ADVANCE(248); + if (lookahead == '"') ADVANCE(254); + if (lookahead == '#') ADVANCE(189); + if (lookahead == ')') ADVANCE(191); + if (lookahead == '-') ADVANCE(202); + if (lookahead == '.') ADVANCE(5); + if (lookahead == '/') ADVANCE(7); + if (lookahead == '0') ADVANCE(260); + if (lookahead == '<') ADVANCE(11); + if (lookahead == '>') ADVANCE(15); + if (lookahead == '[') ADVANCE(192); + if (lookahead == ']') ADVANCE(193); + if (lookahead == '_') ADVANCE(304); + if (lookahead == 'a') ADVANCE(421); + if (lookahead == 'c') ADVANCE(312); + if (lookahead == 'f') ADVANCE(374); + if (lookahead == 'p') ADVANCE(314); + if (lookahead == 't') ADVANCE(388); + if (lookahead == '{') ADVANCE(170); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(261); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(445); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(446); END_STATE(); case 138: if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') SKIP(138) - if (lookahead == '\r') SKIP(138) + lookahead == ' ') SKIP(139) + if (lookahead == '\r') SKIP(139) if (lookahead == '!') ADVANCE(12); - if (lookahead == '%') ADVANCE(232); + if (lookahead == '"') ADVANCE(255); + if (lookahead == '%') ADVANCE(235); if (lookahead == '&') ADVANCE(1); - if (lookahead == '(') ADVANCE(187); - if (lookahead == ')') ADVANCE(188); - if (lookahead == '*') ADVANCE(229); - if (lookahead == '+') ADVANCE(226); - if (lookahead == ',') ADVANCE(181); - if (lookahead == '-') ADVANCE(195); - if (lookahead == '.') ADVANCE(176); - if (lookahead == '/') ADVANCE(179); - if (lookahead == '0') ADVANCE(258); - if (lookahead == ':') ADVANCE(193); - if (lookahead == '<') ADVANCE(216); - if (lookahead == '=') ADVANCE(185); - if (lookahead == '>') ADVANCE(221); - if (lookahead == ']') ADVANCE(190); - if (lookahead == 'a') ADVANCE(106); - if (lookahead == 'b') ADVANCE(55); - if (lookahead == 'c') ADVANCE(83); - if (lookahead == 'e') ADVANCE(100); - if (lookahead == 'f') ADVANCE(67); - if (lookahead == 'i') ADVANCE(71); + if (lookahead == '(') ADVANCE(190); + if (lookahead == ')') ADVANCE(191); + if (lookahead == '*') ADVANCE(232); + if (lookahead == '+') ADVANCE(229); + if (lookahead == ',') ADVANCE(184); + if (lookahead == '-') ADVANCE(198); + if (lookahead == '.') ADVANCE(179); + if (lookahead == '/') ADVANCE(182); + if (lookahead == '0') ADVANCE(262); + if (lookahead == ':') ADVANCE(196); + if (lookahead == '<') ADVANCE(219); + if (lookahead == '=') ADVANCE(188); + if (lookahead == '>') ADVANCE(224); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == ']') ADVANCE(193); + if (lookahead == 'a') ADVANCE(107); + if (lookahead == 'b') ADVANCE(56); + if (lookahead == 'c') ADVANCE(84); + if (lookahead == 'e') ADVANCE(101); + if (lookahead == 'f') ADVANCE(68); + if (lookahead == 'i') ADVANCE(72); if (lookahead == 'j') ADVANCE(18); - if (lookahead == 'l') ADVANCE(59); + if (lookahead == 'l') ADVANCE(60); if (lookahead == 'n') ADVANCE(24); - if (lookahead == 'o') ADVANCE(93); - if (lookahead == 'p') ADVANCE(126); - if (lookahead == 's') ADVANCE(56); - if (lookahead == 't') ADVANCE(132); - if (lookahead == 'u') ADVANCE(73); - if (lookahead == '{') ADVANCE(167); + if (lookahead == 'o') ADVANCE(94); + if (lookahead == 'p') ADVANCE(127); + if (lookahead == 's') ADVANCE(57); + if (lookahead == 't') ADVANCE(133); + if (lookahead == 'u') ADVANCE(74); + if (lookahead == '{') ADVANCE(170); if (lookahead == '|') ADVANCE(16); - if (lookahead == '}') ADVANCE(168); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(259); + if (lookahead == '}') ADVANCE(171); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(263); END_STATE(); case 139: if (lookahead == '\t' || @@ -2956,32 +2925,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(139) if (lookahead == '\r') SKIP(139) if (lookahead == '!') ADVANCE(12); - if (lookahead == '%') ADVANCE(232); + if (lookahead == '%') ADVANCE(235); if (lookahead == '&') ADVANCE(1); - if (lookahead == '(') ADVANCE(187); - if (lookahead == ')') ADVANCE(188); - if (lookahead == '*') ADVANCE(229); - if (lookahead == '+') ADVANCE(226); - if (lookahead == ',') ADVANCE(181); - if (lookahead == '-') ADVANCE(195); - if (lookahead == '.') ADVANCE(176); - if (lookahead == '/') ADVANCE(179); - if (lookahead == ':') ADVANCE(193); - if (lookahead == '<') ADVANCE(216); - if (lookahead == '=') ADVANCE(13); - if (lookahead == '>') ADVANCE(221); - if (lookahead == ']') ADVANCE(190); - if (lookahead == 'a') ADVANCE(106); - if (lookahead == 'c') ADVANCE(83); - if (lookahead == 'e') ADVANCE(130); - if (lookahead == 'f') ADVANCE(72); - if (lookahead == 'i') ADVANCE(70); - if (lookahead == 'o') ADVANCE(93); - if (lookahead == 'p') ADVANCE(126); - if (lookahead == 't') ADVANCE(132); - if (lookahead == '{') ADVANCE(167); + if (lookahead == '(') ADVANCE(190); + if (lookahead == ')') ADVANCE(191); + if (lookahead == '*') ADVANCE(232); + if (lookahead == '+') ADVANCE(229); + if (lookahead == ',') ADVANCE(184); + if (lookahead == '-') ADVANCE(198); + if (lookahead == '.') ADVANCE(179); + if (lookahead == '/') ADVANCE(182); + if (lookahead == '0') ADVANCE(262); + if (lookahead == ':') ADVANCE(196); + if (lookahead == '<') ADVANCE(219); + if (lookahead == '=') ADVANCE(188); + if (lookahead == '>') ADVANCE(224); + if (lookahead == ']') ADVANCE(193); + if (lookahead == 'a') ADVANCE(107); + if (lookahead == 'b') ADVANCE(56); + if (lookahead == 'c') ADVANCE(84); + if (lookahead == 'e') ADVANCE(101); + if (lookahead == 'f') ADVANCE(68); + if (lookahead == 'i') ADVANCE(72); + if (lookahead == 'j') ADVANCE(18); + if (lookahead == 'l') ADVANCE(60); + if (lookahead == 'n') ADVANCE(24); + if (lookahead == 'o') ADVANCE(94); + if (lookahead == 'p') ADVANCE(127); + if (lookahead == 's') ADVANCE(57); + if (lookahead == 't') ADVANCE(133); + if (lookahead == 'u') ADVANCE(74); + if (lookahead == '{') ADVANCE(170); if (lookahead == '|') ADVANCE(16); - if (lookahead == '}') ADVANCE(168); + if (lookahead == '}') ADVANCE(171); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(263); END_STATE(); case 140: if (lookahead == '\t' || @@ -2989,2039 +2966,2112 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(140) if (lookahead == '\r') SKIP(140) if (lookahead == '!') ADVANCE(12); - if (lookahead == '"') ADVANCE(250); - if (lookahead == '#') ADVANCE(186); - if (lookahead == '%') ADVANCE(232); + if (lookahead == '%') ADVANCE(235); if (lookahead == '&') ADVANCE(1); - if (lookahead == '(') ADVANCE(187); - if (lookahead == ')') ADVANCE(188); - if (lookahead == '*') ADVANCE(229); - if (lookahead == '+') ADVANCE(226); - if (lookahead == '-') ADVANCE(197); - if (lookahead == '.') ADVANCE(176); - if (lookahead == '/') ADVANCE(179); - if (lookahead == '0') ADVANCE(256); - if (lookahead == '<') ADVANCE(214); + if (lookahead == '(') ADVANCE(190); + if (lookahead == ')') ADVANCE(191); + if (lookahead == '*') ADVANCE(232); + if (lookahead == '+') ADVANCE(229); + if (lookahead == ',') ADVANCE(184); + if (lookahead == '-') ADVANCE(198); + if (lookahead == '.') ADVANCE(179); + if (lookahead == '/') ADVANCE(182); + if (lookahead == ':') ADVANCE(196); + if (lookahead == '<') ADVANCE(219); if (lookahead == '=') ADVANCE(13); - if (lookahead == '>') ADVANCE(221); - if (lookahead == '[') ADVANCE(189); - if (lookahead == ']') ADVANCE(190); - if (lookahead == '_') ADVANCE(298); + if (lookahead == '>') ADVANCE(224); + if (lookahead == ']') ADVANCE(193); + if (lookahead == 'a') ADVANCE(107); + if (lookahead == 'c') ADVANCE(84); + if (lookahead == 'e') ADVANCE(131); + if (lookahead == 'f') ADVANCE(73); + if (lookahead == 'i') ADVANCE(71); + if (lookahead == 'o') ADVANCE(94); + if (lookahead == 'p') ADVANCE(127); + if (lookahead == 't') ADVANCE(133); + if (lookahead == '{') ADVANCE(170); if (lookahead == '|') ADVANCE(16); - if (lookahead == '}') ADVANCE(168); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(257); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(442); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + if (lookahead == '}') ADVANCE(171); END_STATE(); case 141: if (lookahead == '\t' || lookahead == '\n' || lookahead == ' ') SKIP(141) if (lookahead == '\r') SKIP(141) - if (lookahead == '"') ADVANCE(250); - if (lookahead == '#') ADVANCE(186); - if (lookahead == '-') ADVANCE(198); - if (lookahead == '/') ADVANCE(7); - if (lookahead == '0') ADVANCE(256); - if (lookahead == '<') ADVANCE(11); - if (lookahead == '[') ADVANCE(189); - if (lookahead == '_') ADVANCE(298); - if (lookahead == 'i') ADVANCE(348); - if (lookahead == '|') ADVANCE(238); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(257); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(442); + if (lookahead == '!') ADVANCE(12); + if (lookahead == '"') ADVANCE(254); + if (lookahead == '#') ADVANCE(189); + if (lookahead == '%') ADVANCE(235); + if (lookahead == '&') ADVANCE(1); + if (lookahead == '(') ADVANCE(190); + if (lookahead == ')') ADVANCE(191); + if (lookahead == '*') ADVANCE(232); + if (lookahead == '+') ADVANCE(229); + if (lookahead == '-') ADVANCE(200); + if (lookahead == '.') ADVANCE(179); + if (lookahead == '/') ADVANCE(182); + if (lookahead == '0') ADVANCE(260); + if (lookahead == '<') ADVANCE(217); + if (lookahead == '=') ADVANCE(13); + if (lookahead == '>') ADVANCE(224); + if (lookahead == '[') ADVANCE(192); + if (lookahead == ']') ADVANCE(193); + if (lookahead == '_') ADVANCE(302); + if (lookahead == '|') ADVANCE(16); + if (lookahead == '}') ADVANCE(171); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(261); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(446); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 142: if (lookahead == '\t' || lookahead == '\n' || lookahead == ' ') SKIP(142) if (lookahead == '\r') SKIP(142) - if (lookahead == '"') ADVANCE(250); - if (lookahead == '#') ADVANCE(186); - if (lookahead == ')') ADVANCE(188); - if (lookahead == '-') ADVANCE(199); + if (lookahead == '"') ADVANCE(254); + if (lookahead == '#') ADVANCE(189); + if (lookahead == '-') ADVANCE(201); if (lookahead == '/') ADVANCE(7); - if (lookahead == '0') ADVANCE(256); + if (lookahead == '0') ADVANCE(260); if (lookahead == '<') ADVANCE(11); - if (lookahead == '>') ADVANCE(15); - if (lookahead == '[') ADVANCE(189); - if (lookahead == ']') ADVANCE(190); - if (lookahead == '_') ADVANCE(300); - if (lookahead == '{') ADVANCE(167); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(257); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(442); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + if (lookahead == '[') ADVANCE(192); + if (lookahead == '_') ADVANCE(302); + if (lookahead == 'i') ADVANCE(352); + if (lookahead == '|') ADVANCE(241); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(261); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(446); END_STATE(); case 143: if (lookahead == '\t' || lookahead == '\n' || lookahead == ' ') SKIP(143) if (lookahead == '\r') SKIP(143) - if (lookahead == '!') ADVANCE(12); - if (lookahead == '&') ADVANCE(1); - if (lookahead == '(') ADVANCE(187); - if (lookahead == ')') ADVANCE(188); - if (lookahead == ',') ADVANCE(181); - if (lookahead == '-') ADVANCE(14); - if (lookahead == '.') ADVANCE(175); + if (lookahead == '"') ADVANCE(254); + if (lookahead == '#') ADVANCE(189); + if (lookahead == ')') ADVANCE(191); + if (lookahead == '-') ADVANCE(202); if (lookahead == '/') ADVANCE(7); - if (lookahead == ':') ADVANCE(193); - if (lookahead == '<') ADVANCE(215); - if (lookahead == '=') ADVANCE(13); - if (lookahead == '>') ADVANCE(221); - if (lookahead == ']') ADVANCE(190); - if (lookahead == 'c') ADVANCE(83); - if (lookahead == 'e') ADVANCE(130); - if (lookahead == 'f') ADVANCE(72); - if (lookahead == 'i') ADVANCE(49); - if (lookahead == 'o') ADVANCE(93); - if (lookahead == 'p') ADVANCE(126); - if (lookahead == 't') ADVANCE(132); - if (lookahead == '|') ADVANCE(133); - if (lookahead == '}') ADVANCE(168); + if (lookahead == '0') ADVANCE(260); + if (lookahead == '<') ADVANCE(11); + if (lookahead == '>') ADVANCE(15); + if (lookahead == '[') ADVANCE(192); + if (lookahead == ']') ADVANCE(193); + if (lookahead == '_') ADVANCE(304); + if (lookahead == '{') ADVANCE(170); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(261); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(446); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 144: if (lookahead == '\t' || lookahead == '\n' || lookahead == ' ') SKIP(144) if (lookahead == '\r') SKIP(144) - if (lookahead == '"') ADVANCE(250); - if (lookahead == '#') ADVANCE(186); - if (lookahead == '-') ADVANCE(199); + if (lookahead == '"') ADVANCE(254); + if (lookahead == '#') ADVANCE(189); + if (lookahead == '-') ADVANCE(202); if (lookahead == '/') ADVANCE(7); - if (lookahead == '0') ADVANCE(256); + if (lookahead == '0') ADVANCE(260); if (lookahead == '<') ADVANCE(11); - if (lookahead == '[') ADVANCE(189); - if (lookahead == '_') ADVANCE(298); - if (lookahead == 'a') ADVANCE(417); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(257); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(441); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(442); + if (lookahead == '[') ADVANCE(192); + if (lookahead == '_') ADVANCE(302); + if (lookahead == 'a') ADVANCE(421); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(261); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(445); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(446); END_STATE(); case 145: if (lookahead == '\t' || lookahead == '\n' || lookahead == ' ') SKIP(145) if (lookahead == '\r') SKIP(145) - if (lookahead == '"') ADVANCE(250); - if (lookahead == '#') ADVANCE(186); - if (lookahead == '-') ADVANCE(199); + if (lookahead == '!') ADVANCE(12); + if (lookahead == '&') ADVANCE(1); + if (lookahead == '(') ADVANCE(190); + if (lookahead == ')') ADVANCE(191); + if (lookahead == ',') ADVANCE(184); + if (lookahead == '-') ADVANCE(14); + if (lookahead == '.') ADVANCE(178); if (lookahead == '/') ADVANCE(7); - if (lookahead == '0') ADVANCE(256); - if (lookahead == '<') ADVANCE(3); - if (lookahead == '[') ADVANCE(189); - if (lookahead == '_') ADVANCE(298); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(257); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(442); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + if (lookahead == ':') ADVANCE(196); + if (lookahead == '<') ADVANCE(218); + if (lookahead == '=') ADVANCE(13); + if (lookahead == '>') ADVANCE(224); + if (lookahead == ']') ADVANCE(193); + if (lookahead == 'c') ADVANCE(84); + if (lookahead == 'e') ADVANCE(131); + if (lookahead == 'f') ADVANCE(73); + if (lookahead == 'i') ADVANCE(50); + if (lookahead == 'o') ADVANCE(94); + if (lookahead == 'p') ADVANCE(127); + if (lookahead == 't') ADVANCE(133); + if (lookahead == '|') ADVANCE(134); + if (lookahead == '}') ADVANCE(171); END_STATE(); case 146: if (lookahead == '\t' || lookahead == '\n' || lookahead == ' ') SKIP(146) if (lookahead == '\r') SKIP(146) - if (lookahead == '#') ADVANCE(186); - if (lookahead == ')') ADVANCE(188); + if (lookahead == '"') ADVANCE(254); + if (lookahead == '#') ADVANCE(189); + if (lookahead == '-') ADVANCE(202); if (lookahead == '/') ADVANCE(7); - if (lookahead == '_') ADVANCE(299); - if (lookahead == 'f') ADVANCE(370); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(442); + if (lookahead == '0') ADVANCE(260); + if (lookahead == '<') ADVANCE(3); + if (lookahead == '[') ADVANCE(192); + if (lookahead == '_') ADVANCE(302); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(261); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(446); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 147: if (lookahead == '\t' || lookahead == '\n' || lookahead == ' ') SKIP(147) if (lookahead == '\r') SKIP(147) - if (lookahead == '(') ADVANCE(187); - if (lookahead == ')') ADVANCE(188); - if (lookahead == ',') ADVANCE(181); - if (lookahead == '-') ADVANCE(14); - if (lookahead == '.') ADVANCE(176); + if (lookahead == '(') ADVANCE(190); + if (lookahead == ')') ADVANCE(191); + if (lookahead == ',') ADVANCE(184); + if (lookahead == '-') ADVANCE(197); + if (lookahead == '.') ADVANCE(179); if (lookahead == '/') ADVANCE(7); - if (lookahead == ':') ADVANCE(193); + if (lookahead == ':') ADVANCE(196); if (lookahead == '<') ADVANCE(4); - if (lookahead == '=') ADVANCE(184); + if (lookahead == '=') ADVANCE(187); if (lookahead == '>') ADVANCE(15); - if (lookahead == ']') ADVANCE(190); - if (lookahead == 'a') ADVANCE(106); - if (lookahead == 'c') ADVANCE(83); - if (lookahead == 'e') ADVANCE(130); - if (lookahead == 'f') ADVANCE(72); - if (lookahead == 'i') ADVANCE(49); - if (lookahead == 'o') ADVANCE(93); - if (lookahead == 'p') ADVANCE(126); - if (lookahead == 't') ADVANCE(132); - if (lookahead == '{') ADVANCE(167); - if (lookahead == '|') ADVANCE(238); - if (lookahead == '}') ADVANCE(168); + if (lookahead == ']') ADVANCE(193); + if (lookahead == 'a') ADVANCE(107); + if (lookahead == 'c') ADVANCE(84); + if (lookahead == 'e') ADVANCE(131); + if (lookahead == 'f') ADVANCE(73); + if (lookahead == 'i') ADVANCE(71); + if (lookahead == 'o') ADVANCE(94); + if (lookahead == 'p') ADVANCE(127); + if (lookahead == 't') ADVANCE(133); + if (lookahead == '{') ADVANCE(170); + if (lookahead == '}') ADVANCE(171); END_STATE(); case 148: if (lookahead == '\t' || lookahead == '\n' || lookahead == ' ') SKIP(148) if (lookahead == '\r') SKIP(148) - if (lookahead == ')') ADVANCE(188); - if (lookahead == ',') ADVANCE(181); + if (lookahead == '!') ADVANCE(12); + if (lookahead == '&') ADVANCE(1); + if (lookahead == ',') ADVANCE(184); + if (lookahead == '-') ADVANCE(14); if (lookahead == '/') ADVANCE(7); - if (lookahead == ':') ADVANCE(193); - if (lookahead == ']') ADVANCE(190); - if (lookahead == '_') ADVANCE(299); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + if (lookahead == '<') ADVANCE(219); + if (lookahead == '=') ADVANCE(13); + if (lookahead == '>') ADVANCE(223); + if (lookahead == 'a') ADVANCE(107); + if (lookahead == 'i') ADVANCE(49); + if (lookahead == '|') ADVANCE(243); END_STATE(); case 149: if (lookahead == '\t' || lookahead == '\n' || lookahead == ' ') SKIP(149) if (lookahead == '\r') SKIP(149) - if (lookahead == '(') ADVANCE(187); - if (lookahead == ')') ADVANCE(188); - if (lookahead == '-') ADVANCE(194); + if (lookahead == '#') ADVANCE(189); + if (lookahead == ')') ADVANCE(191); if (lookahead == '/') ADVANCE(7); - if (lookahead == '0') ADVANCE(258); - if (lookahead == '}') ADVANCE(168); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(259); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(442); - if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + if (lookahead == '_') ADVANCE(303); + if (lookahead == 'f') ADVANCE(374); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(446); END_STATE(); case 150: if (lookahead == '\t' || lookahead == '\n' || lookahead == ' ') SKIP(150) if (lookahead == '\r') SKIP(150) - if (lookahead == '!') ADVANCE(245); - if (lookahead == '"') ADVANCE(250); - if (lookahead == '#') ADVANCE(186); - if (lookahead == '%') ADVANCE(232); - if (lookahead == '&') ADVANCE(1); - if (lookahead == '(') ADVANCE(187); - if (lookahead == ')') ADVANCE(188); - if (lookahead == '*') ADVANCE(229); - if (lookahead == '+') ADVANCE(226); - if (lookahead == ',') ADVANCE(181); + if (lookahead == '(') ADVANCE(190); + if (lookahead == ')') ADVANCE(191); + if (lookahead == ',') ADVANCE(184); + if (lookahead == '-') ADVANCE(14); + if (lookahead == '.') ADVANCE(179); + if (lookahead == '/') ADVANCE(7); + if (lookahead == ':') ADVANCE(196); + if (lookahead == '<') ADVANCE(4); + if (lookahead == '=') ADVANCE(187); + if (lookahead == '>') ADVANCE(15); + if (lookahead == ']') ADVANCE(193); + if (lookahead == 'a') ADVANCE(107); + if (lookahead == 'i') ADVANCE(49); + if (lookahead == '|') ADVANCE(241); + END_STATE(); + case 151: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') SKIP(151) + if (lookahead == '\r') SKIP(151) + if (lookahead == ')') ADVANCE(191); + if (lookahead == ',') ADVANCE(184); + if (lookahead == '/') ADVANCE(7); + if (lookahead == ':') ADVANCE(196); + if (lookahead == ']') ADVANCE(193); + if (lookahead == '_') ADVANCE(303); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); + END_STATE(); + case 152: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') SKIP(152) + if (lookahead == '\r') SKIP(152) + if (lookahead == '(') ADVANCE(190); + if (lookahead == ')') ADVANCE(191); if (lookahead == '-') ADVANCE(197); - if (lookahead == '.') ADVANCE(175); - if (lookahead == '/') ADVANCE(179); - if (lookahead == '0') ADVANCE(256); - if (lookahead == ':') ADVANCE(193); - if (lookahead == '<') ADVANCE(214); + if (lookahead == '/') ADVANCE(7); + if (lookahead == '0') ADVANCE(262); + if (lookahead == '}') ADVANCE(171); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(263); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(446); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); + END_STATE(); + case 153: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') SKIP(153) + if (lookahead == '\r') SKIP(153) + if (lookahead == '!') ADVANCE(249); + if (lookahead == '"') ADVANCE(254); + if (lookahead == '#') ADVANCE(189); + if (lookahead == '%') ADVANCE(235); + if (lookahead == '&') ADVANCE(1); + if (lookahead == '(') ADVANCE(190); + if (lookahead == ')') ADVANCE(191); + if (lookahead == '*') ADVANCE(232); + if (lookahead == '+') ADVANCE(229); + if (lookahead == ',') ADVANCE(184); + if (lookahead == '-') ADVANCE(200); + if (lookahead == '.') ADVANCE(178); + if (lookahead == '/') ADVANCE(182); + if (lookahead == '0') ADVANCE(260); + if (lookahead == ':') ADVANCE(196); + if (lookahead == '<') ADVANCE(217); if (lookahead == '=') ADVANCE(13); - if (lookahead == '>') ADVANCE(221); - if (lookahead == '[') ADVANCE(189); - if (lookahead == ']') ADVANCE(190); - if (lookahead == '_') ADVANCE(300); - if (lookahead == 'a') ADVANCE(417); - if (lookahead == 'c') ADVANCE(308); - if (lookahead == 'f') ADVANCE(370); - if (lookahead == 'l') ADVANCE(339); - if (lookahead == 'p') ADVANCE(310); - if (lookahead == 't') ADVANCE(383); - if (lookahead == 'u') ADVANCE(410); - if (lookahead == '{') ADVANCE(167); + if (lookahead == '>') ADVANCE(224); + if (lookahead == '[') ADVANCE(192); + if (lookahead == ']') ADVANCE(193); + if (lookahead == '_') ADVANCE(304); + if (lookahead == 'a') ADVANCE(421); + if (lookahead == 'c') ADVANCE(312); + if (lookahead == 'f') ADVANCE(374); + if (lookahead == 'l') ADVANCE(343); + if (lookahead == 'p') ADVANCE(314); + if (lookahead == 't') ADVANCE(387); + if (lookahead == 'u') ADVANCE(414); + if (lookahead == '{') ADVANCE(170); if (lookahead == '|') ADVANCE(16); - if (lookahead == '}') ADVANCE(168); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(257); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(441); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(442); + if (lookahead == '}') ADVANCE(171); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(261); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(445); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(446); END_STATE(); - case 151: + case 154: if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(261); + lookahead == '_') ADVANCE(265); END_STATE(); - case 152: + case 155: if (lookahead == '"' || lookahead == '\\' || lookahead == 'e' || lookahead == 'f' || lookahead == 'n' || lookahead == 'r' || - lookahead == 't') ADVANCE(252); + lookahead == 't') ADVANCE(256); END_STATE(); - case 153: + case 156: if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(260); + lookahead == '_') ADVANCE(264); END_STATE(); - case 154: + case 157: if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(254); + lookahead == '_') ADVANCE(258); END_STATE(); - case 155: + case 158: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(255); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(259); END_STATE(); - case 156: - if (eof) ADVANCE(159); + case 159: + if (eof) ADVANCE(162); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') SKIP(156) - if (lookahead == '\r') SKIP(156) - if (lookahead == '!') ADVANCE(245); - if (lookahead == '"') ADVANCE(250); - if (lookahead == '#') ADVANCE(186); - if (lookahead == '%') ADVANCE(232); + lookahead == ' ') SKIP(159) + if (lookahead == '\r') SKIP(159) + if (lookahead == '!') ADVANCE(249); + if (lookahead == '"') ADVANCE(254); + if (lookahead == '#') ADVANCE(189); + if (lookahead == '%') ADVANCE(235); if (lookahead == '&') ADVANCE(1); - if (lookahead == '(') ADVANCE(187); - if (lookahead == ')') ADVANCE(188); - if (lookahead == '*') ADVANCE(229); - if (lookahead == '+') ADVANCE(226); - if (lookahead == ',') ADVANCE(181); - if (lookahead == '-') ADVANCE(196); - if (lookahead == '.') ADVANCE(176); - if (lookahead == '/') ADVANCE(179); - if (lookahead == '0') ADVANCE(256); - if (lookahead == ':') ADVANCE(193); - if (lookahead == '<') ADVANCE(214); - if (lookahead == '=') ADVANCE(185); - if (lookahead == '>') ADVANCE(221); - if (lookahead == '[') ADVANCE(189); - if (lookahead == ']') ADVANCE(190); - if (lookahead == '_') ADVANCE(298); - if (lookahead == 'a') ADVANCE(409); - if (lookahead == 'b') ADVANCE(355); - if (lookahead == 'c') ADVANCE(307); - if (lookahead == 'e') ADVANCE(402); - if (lookahead == 'f') ADVANCE(366); - if (lookahead == 'i') ADVANCE(346); - if (lookahead == 'j') ADVANCE(305); - if (lookahead == 'l') ADVANCE(338); - if (lookahead == 'n') ADVANCE(315); - if (lookahead == 'o') ADVANCE(395); - if (lookahead == 'p') ADVANCE(309); - if (lookahead == 's') ADVANCE(356); - if (lookahead == 't') ADVANCE(382); - if (lookahead == 'u') ADVANCE(371); - if (lookahead == '{') ADVANCE(167); - if (lookahead == '|') ADVANCE(239); - if (lookahead == '}') ADVANCE(168); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(257); - if (('d' <= lookahead && lookahead <= 'z')) ADVANCE(441); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(442); + if (lookahead == '(') ADVANCE(190); + if (lookahead == ')') ADVANCE(191); + if (lookahead == '*') ADVANCE(232); + if (lookahead == '+') ADVANCE(229); + if (lookahead == ',') ADVANCE(184); + if (lookahead == '-') ADVANCE(199); + if (lookahead == '.') ADVANCE(179); + if (lookahead == '/') ADVANCE(182); + if (lookahead == '0') ADVANCE(260); + if (lookahead == ':') ADVANCE(196); + if (lookahead == '<') ADVANCE(217); + if (lookahead == '=') ADVANCE(188); + if (lookahead == '>') ADVANCE(224); + if (lookahead == '[') ADVANCE(192); + if (lookahead == ']') ADVANCE(193); + if (lookahead == '_') ADVANCE(302); + if (lookahead == 'a') ADVANCE(413); + if (lookahead == 'b') ADVANCE(359); + if (lookahead == 'c') ADVANCE(311); + if (lookahead == 'e') ADVANCE(406); + if (lookahead == 'f') ADVANCE(370); + if (lookahead == 'i') ADVANCE(350); + if (lookahead == 'j') ADVANCE(309); + if (lookahead == 'l') ADVANCE(342); + if (lookahead == 'n') ADVANCE(319); + if (lookahead == 'o') ADVANCE(399); + if (lookahead == 'p') ADVANCE(313); + if (lookahead == 's') ADVANCE(360); + if (lookahead == 't') ADVANCE(386); + if (lookahead == 'u') ADVANCE(375); + if (lookahead == '{') ADVANCE(170); + if (lookahead == '|') ADVANCE(242); + if (lookahead == '}') ADVANCE(171); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(261); + if (('d' <= lookahead && lookahead <= 'z')) ADVANCE(445); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(446); END_STATE(); - case 157: - if (eof) ADVANCE(159); + case 160: + if (eof) ADVANCE(162); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') SKIP(157) - if (lookahead == '\r') SKIP(157) - if (lookahead == '!') ADVANCE(245); - if (lookahead == '"') ADVANCE(250); - if (lookahead == '#') ADVANCE(186); - if (lookahead == '%') ADVANCE(232); + lookahead == ' ') SKIP(160) + if (lookahead == '\r') SKIP(160) + if (lookahead == '!') ADVANCE(249); + if (lookahead == '"') ADVANCE(254); + if (lookahead == '#') ADVANCE(189); + if (lookahead == '%') ADVANCE(235); if (lookahead == '&') ADVANCE(1); - if (lookahead == '(') ADVANCE(187); - if (lookahead == '*') ADVANCE(229); - if (lookahead == '+') ADVANCE(226); - if (lookahead == '-') ADVANCE(197); - if (lookahead == '.') ADVANCE(175); - if (lookahead == '/') ADVANCE(179); - if (lookahead == '0') ADVANCE(256); - if (lookahead == '<') ADVANCE(214); + if (lookahead == '(') ADVANCE(190); + if (lookahead == '*') ADVANCE(232); + if (lookahead == '+') ADVANCE(229); + if (lookahead == '-') ADVANCE(200); + if (lookahead == '.') ADVANCE(178); + if (lookahead == '/') ADVANCE(182); + if (lookahead == '0') ADVANCE(260); + if (lookahead == '<') ADVANCE(217); if (lookahead == '=') ADVANCE(13); - if (lookahead == '>') ADVANCE(220); - if (lookahead == '[') ADVANCE(189); - if (lookahead == '_') ADVANCE(300); - if (lookahead == 'a') ADVANCE(417); - if (lookahead == 'c') ADVANCE(307); - if (lookahead == 'e') ADVANCE(438); - if (lookahead == 'f') ADVANCE(370); - if (lookahead == 'i') ADVANCE(347); - if (lookahead == 'l') ADVANCE(339); - if (lookahead == 'o') ADVANCE(395); - if (lookahead == 'p') ADVANCE(309); - if (lookahead == 't') ADVANCE(382); - if (lookahead == 'u') ADVANCE(410); - if (lookahead == '{') ADVANCE(167); + if (lookahead == '>') ADVANCE(223); + if (lookahead == '[') ADVANCE(192); + if (lookahead == '_') ADVANCE(304); + if (lookahead == 'a') ADVANCE(421); + if (lookahead == 'c') ADVANCE(311); + if (lookahead == 'e') ADVANCE(442); + if (lookahead == 'f') ADVANCE(374); + if (lookahead == 'i') ADVANCE(351); + if (lookahead == 'l') ADVANCE(343); + if (lookahead == 'o') ADVANCE(399); + if (lookahead == 'p') ADVANCE(313); + if (lookahead == 't') ADVANCE(386); + if (lookahead == 'u') ADVANCE(414); + if (lookahead == '{') ADVANCE(170); if (lookahead == '|') ADVANCE(16); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(257); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(441); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(442); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(261); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(445); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(446); END_STATE(); - case 158: - if (eof) ADVANCE(159); + case 161: + if (eof) ADVANCE(162); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') SKIP(158) - if (lookahead == '\r') SKIP(158) - if (lookahead == '!') ADVANCE(244); - if (lookahead == '"') ADVANCE(250); - if (lookahead == '#') ADVANCE(186); - if (lookahead == '-') ADVANCE(199); - if (lookahead == '.') ADVANCE(175); - if (lookahead == '/') ADVANCE(180); - if (lookahead == '0') ADVANCE(256); + lookahead == ' ') SKIP(161) + if (lookahead == '\r') SKIP(161) + if (lookahead == '!') ADVANCE(248); + if (lookahead == '"') ADVANCE(254); + if (lookahead == '#') ADVANCE(189); + if (lookahead == '-') ADVANCE(202); + if (lookahead == '.') ADVANCE(178); + if (lookahead == '/') ADVANCE(183); + if (lookahead == '0') ADVANCE(260); if (lookahead == '<') ADVANCE(11); - if (lookahead == '[') ADVANCE(189); - if (lookahead == '_') ADVANCE(300); - if (lookahead == 'a') ADVANCE(409); - if (lookahead == 'c') ADVANCE(307); - if (lookahead == 'e') ADVANCE(438); - if (lookahead == 'f') ADVANCE(370); - if (lookahead == 'i') ADVANCE(347); - if (lookahead == 'l') ADVANCE(339); - if (lookahead == 'o') ADVANCE(395); - if (lookahead == 'p') ADVANCE(309); - if (lookahead == 't') ADVANCE(382); - if (lookahead == 'u') ADVANCE(410); - if (lookahead == '{') ADVANCE(167); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(257); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(441); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(442); + if (lookahead == '[') ADVANCE(192); + if (lookahead == '_') ADVANCE(304); + if (lookahead == 'a') ADVANCE(413); + if (lookahead == 'c') ADVANCE(311); + if (lookahead == 'e') ADVANCE(442); + if (lookahead == 'f') ADVANCE(374); + if (lookahead == 'i') ADVANCE(351); + if (lookahead == 'l') ADVANCE(343); + if (lookahead == 'o') ADVANCE(399); + if (lookahead == 'p') ADVANCE(313); + if (lookahead == 't') ADVANCE(386); + if (lookahead == 'u') ADVANCE(414); + if (lookahead == '{') ADVANCE(170); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(261); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(445); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(446); END_STATE(); - case 159: + case 162: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 160: + case 163: ACCEPT_TOKEN(sym_module_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(160); + lookahead != '\n') ADVANCE(163); END_STATE(); - case 161: + case 164: ACCEPT_TOKEN(sym_statement_comment); - if (lookahead == '/') ADVANCE(160); + if (lookahead == '/') ADVANCE(163); if (lookahead != 0 && - lookahead != '\n') ADVANCE(162); + lookahead != '\n') ADVANCE(165); END_STATE(); - case 162: + case 165: ACCEPT_TOKEN(sym_statement_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(162); + lookahead != '\n') ADVANCE(165); END_STATE(); - case 163: + case 166: ACCEPT_TOKEN(sym_comment); - if (lookahead == '/') ADVANCE(161); + if (lookahead == '/') ADVANCE(164); if (lookahead != 0 && - lookahead != '\n') ADVANCE(164); + lookahead != '\n') ADVANCE(167); END_STATE(); - case 164: + case 167: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(164); + lookahead != '\n') ADVANCE(167); END_STATE(); - case 165: + case 168: ACCEPT_TOKEN(anon_sym_if); END_STATE(); - case 166: + case 169: ACCEPT_TOKEN(anon_sym_if); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); - case 167: + case 170: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 168: + case 171: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 169: + case 172: ACCEPT_TOKEN(anon_sym_erlang); END_STATE(); - case 170: + case 173: ACCEPT_TOKEN(anon_sym_erlang); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); - case 171: + case 174: ACCEPT_TOKEN(anon_sym_javascript); END_STATE(); - case 172: + case 175: ACCEPT_TOKEN(anon_sym_javascript); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); - case 173: + case 176: ACCEPT_TOKEN(anon_sym_import); END_STATE(); - case 174: + case 177: ACCEPT_TOKEN(anon_sym_import); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); - case 175: + case 178: ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); - case 176: + case 179: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(236); + if (lookahead == '.') ADVANCE(239); END_STATE(); - case 177: + case 180: ACCEPT_TOKEN(anon_sym_as); END_STATE(); - case 178: + case 181: ACCEPT_TOKEN(anon_sym_as); - if (lookahead == 's') ADVANCE(330); + if (lookahead == 's') ADVANCE(334); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); - case 179: + case 182: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '.') ADVANCE(231); - if (lookahead == '/') ADVANCE(163); + if (lookahead == '.') ADVANCE(234); + if (lookahead == '/') ADVANCE(166); END_STATE(); - case 180: + case 183: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(163); + if (lookahead == '/') ADVANCE(166); END_STATE(); - case 181: + case 184: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 182: + case 185: ACCEPT_TOKEN(anon_sym_const); END_STATE(); - case 183: + case 186: ACCEPT_TOKEN(anon_sym_const); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); - case 184: + case 187: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 185: + case 188: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(212); + if (lookahead == '=') ADVANCE(215); END_STATE(); - case 186: + case 189: ACCEPT_TOKEN(anon_sym_POUND); END_STATE(); - case 187: + case 190: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 188: + case 191: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 189: + case 192: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 190: + case 193: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 191: + case 194: ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); - case 192: + case 195: ACCEPT_TOKEN(anon_sym_GT_GT); END_STATE(); - case 193: + case 196: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 194: + case 197: ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); - case 195: + case 198: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(228); + if (lookahead == '.') ADVANCE(231); END_STATE(); - case 196: + case 199: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(228); - if (lookahead == '>') ADVANCE(204); + if (lookahead == '.') ADVANCE(231); + if (lookahead == '>') ADVANCE(207); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_') ADVANCE(6); END_STATE(); - case 197: + case 200: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(228); + if (lookahead == '.') ADVANCE(231); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_') ADVANCE(6); END_STATE(); - case 198: + case 201: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '>') ADVANCE(204); + if (lookahead == '>') ADVANCE(207); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_') ADVANCE(6); END_STATE(); - case 199: + case 202: ACCEPT_TOKEN(anon_sym_DASH); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_') ADVANCE(6); END_STATE(); - case 200: + case 203: ACCEPT_TOKEN(anon_sym_size); END_STATE(); - case 201: + case 204: ACCEPT_TOKEN(anon_sym_size); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); - case 202: + case 205: ACCEPT_TOKEN(anon_sym_fn); END_STATE(); - case 203: + case 206: ACCEPT_TOKEN(anon_sym_fn); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); - case 204: + case 207: ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); - case 205: + case 208: ACCEPT_TOKEN(anon_sym_external); END_STATE(); - case 206: + case 209: ACCEPT_TOKEN(anon_sym_external); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); - case 207: + case 210: ACCEPT_TOKEN(anon_sym_type); END_STATE(); - case 208: + case 211: ACCEPT_TOKEN(anon_sym_type); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); - case 209: + case 212: ACCEPT_TOKEN(anon_sym_try); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); - case 210: + case 213: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); - case 211: + case 214: ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); - case 212: + case 215: ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); - case 213: + case 216: ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); - case 214: + case 217: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '.') ADVANCE(218); - if (lookahead == '<') ADVANCE(191); - if (lookahead == '=') ADVANCE(217); - if (lookahead == '>') ADVANCE(233); + if (lookahead == '.') ADVANCE(221); + if (lookahead == '<') ADVANCE(194); + if (lookahead == '=') ADVANCE(220); + if (lookahead == '>') ADVANCE(236); END_STATE(); - case 215: + case 218: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '.') ADVANCE(218); - if (lookahead == '=') ADVANCE(217); + if (lookahead == '.') ADVANCE(221); + if (lookahead == '=') ADVANCE(220); END_STATE(); - case 216: + case 219: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '.') ADVANCE(218); - if (lookahead == '=') ADVANCE(217); - if (lookahead == '>') ADVANCE(233); + if (lookahead == '.') ADVANCE(221); + if (lookahead == '=') ADVANCE(220); + if (lookahead == '>') ADVANCE(236); END_STATE(); - case 217: + case 220: ACCEPT_TOKEN(anon_sym_LT_EQ); - if (lookahead == '.') ADVANCE(219); + if (lookahead == '.') ADVANCE(222); END_STATE(); - case 218: + case 221: ACCEPT_TOKEN(anon_sym_LT_DOT); END_STATE(); - case 219: + case 222: ACCEPT_TOKEN(anon_sym_LT_EQ_DOT); END_STATE(); - case 220: + case 223: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '.') ADVANCE(223); - if (lookahead == '=') ADVANCE(222); + if (lookahead == '.') ADVANCE(226); + if (lookahead == '=') ADVANCE(225); END_STATE(); - case 221: + case 224: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '.') ADVANCE(223); - if (lookahead == '=') ADVANCE(222); - if (lookahead == '>') ADVANCE(192); + if (lookahead == '.') ADVANCE(226); + if (lookahead == '=') ADVANCE(225); + if (lookahead == '>') ADVANCE(195); END_STATE(); - case 222: + case 225: ACCEPT_TOKEN(anon_sym_GT_EQ); - if (lookahead == '.') ADVANCE(224); + if (lookahead == '.') ADVANCE(227); END_STATE(); - case 223: + case 226: ACCEPT_TOKEN(anon_sym_GT_DOT); END_STATE(); - case 224: + case 227: ACCEPT_TOKEN(anon_sym_GT_EQ_DOT); END_STATE(); - case 225: + case 228: ACCEPT_TOKEN(anon_sym_PIPE_GT); END_STATE(); - case 226: + case 229: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '.') ADVANCE(227); + if (lookahead == '.') ADVANCE(230); END_STATE(); - case 227: + case 230: ACCEPT_TOKEN(anon_sym_PLUS_DOT); END_STATE(); - case 228: + case 231: ACCEPT_TOKEN(anon_sym_DASH_DOT); END_STATE(); - case 229: + case 232: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '.') ADVANCE(230); + if (lookahead == '.') ADVANCE(233); END_STATE(); - case 230: + case 233: ACCEPT_TOKEN(anon_sym_STAR_DOT); END_STATE(); - case 231: + case 234: ACCEPT_TOKEN(anon_sym_SLASH_DOT); END_STATE(); - case 232: + case 235: ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); - case 233: + case 236: ACCEPT_TOKEN(anon_sym_LT_GT); END_STATE(); - case 234: + case 237: ACCEPT_TOKEN(anon_sym_todo); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); - case 235: + case 238: ACCEPT_TOKEN(anon_sym_panic); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); - case 236: + case 239: ACCEPT_TOKEN(anon_sym_DOT_DOT); END_STATE(); - case 237: + case 240: ACCEPT_TOKEN(anon_sym_case); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); - case 238: + case 241: ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); - case 239: + case 242: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '>') ADVANCE(225); - if (lookahead == '|') ADVANCE(210); + if (lookahead == '>') ADVANCE(228); + if (lookahead == '|') ADVANCE(213); END_STATE(); - case 240: + case 243: + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '|') ADVANCE(213); + END_STATE(); + case 244: ACCEPT_TOKEN(anon_sym_let); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); - case 241: + case 245: ACCEPT_TOKEN(anon_sym_assert); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); - case 242: + case 246: ACCEPT_TOKEN(anon_sym_use); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); - case 243: + case 247: ACCEPT_TOKEN(anon_sym_LT_DASH); END_STATE(); - case 244: + case 248: ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); - case 245: + case 249: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(213); + if (lookahead == '=') ADVANCE(216); END_STATE(); - case 246: + case 250: ACCEPT_TOKEN(sym_visibility_modifier); END_STATE(); - case 247: + case 251: ACCEPT_TOKEN(sym_visibility_modifier); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); - case 248: + case 252: ACCEPT_TOKEN(sym_opacity_modifier); END_STATE(); - case 249: + case 253: ACCEPT_TOKEN(sym_opacity_modifier); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); - case 250: + case 254: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 251: + case 255: ACCEPT_TOKEN(anon_sym_DQUOTE2); END_STATE(); - case 252: + case 256: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 253: + case 257: ACCEPT_TOKEN(sym_float); if (lookahead == 'e') ADVANCE(2); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(253); + lookahead == '_') ADVANCE(257); END_STATE(); - case 254: + case 258: ACCEPT_TOKEN(sym_float); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(254); + lookahead == '_') ADVANCE(258); END_STATE(); - case 255: + case 259: ACCEPT_TOKEN(sym__hex); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(255); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(259); END_STATE(); - case 256: + case 260: ACCEPT_TOKEN(sym__decimal); - if (lookahead == '.') ADVANCE(253); + if (lookahead == '.') ADVANCE(257); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(151); + lookahead == 'b') ADVANCE(154); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(153); + lookahead == 'o') ADVANCE(156); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(155); + lookahead == 'x') ADVANCE(158); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(257); + lookahead == '_') ADVANCE(261); END_STATE(); - case 257: + case 261: ACCEPT_TOKEN(sym__decimal); - if (lookahead == '.') ADVANCE(253); + if (lookahead == '.') ADVANCE(257); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(257); + lookahead == '_') ADVANCE(261); END_STATE(); - case 258: + case 262: ACCEPT_TOKEN(sym__decimal); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(151); + lookahead == 'b') ADVANCE(154); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(153); + lookahead == 'o') ADVANCE(156); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(155); + lookahead == 'x') ADVANCE(158); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(259); + lookahead == '_') ADVANCE(263); END_STATE(); - case 259: + case 263: ACCEPT_TOKEN(sym__decimal); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(259); + lookahead == '_') ADVANCE(263); END_STATE(); - case 260: + case 264: ACCEPT_TOKEN(sym__octal); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(260); + lookahead == '_') ADVANCE(264); END_STATE(); - case 261: + case 265: ACCEPT_TOKEN(sym__binary); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(261); + lookahead == '_') ADVANCE(265); END_STATE(); - case 262: + case 266: ACCEPT_TOKEN(anon_sym_binary); END_STATE(); - case 263: + case 267: ACCEPT_TOKEN(anon_sym_binary); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); - case 264: + case 268: ACCEPT_TOKEN(anon_sym_bytes); END_STATE(); - case 265: + case 269: ACCEPT_TOKEN(anon_sym_bytes); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); - case 266: + case 270: ACCEPT_TOKEN(anon_sym_int); END_STATE(); - case 267: + case 271: ACCEPT_TOKEN(anon_sym_int); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); - case 268: + case 272: ACCEPT_TOKEN(anon_sym_float); END_STATE(); - case 269: + case 273: ACCEPT_TOKEN(anon_sym_float); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); - case 270: + case 274: ACCEPT_TOKEN(anon_sym_bit_string); END_STATE(); - case 271: + case 275: ACCEPT_TOKEN(anon_sym_bit_string); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); - case 272: + case 276: ACCEPT_TOKEN(anon_sym_bits); END_STATE(); - case 273: + case 277: ACCEPT_TOKEN(anon_sym_bits); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); - case 274: + case 278: ACCEPT_TOKEN(anon_sym_utf8); if (lookahead == '_') ADVANCE(27); END_STATE(); - case 275: + case 279: ACCEPT_TOKEN(anon_sym_utf8); - if (lookahead == '_') ADVANCE(319); + if (lookahead == '_') ADVANCE(323); if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); - case 276: + case 280: ACCEPT_TOKEN(anon_sym_utf16); if (lookahead == '_') ADVANCE(29); END_STATE(); - case 277: + case 281: ACCEPT_TOKEN(anon_sym_utf16); - if (lookahead == '_') ADVANCE(321); + if (lookahead == '_') ADVANCE(325); if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); - case 278: + case 282: ACCEPT_TOKEN(anon_sym_utf32); if (lookahead == '_') ADVANCE(30); END_STATE(); - case 279: + case 283: ACCEPT_TOKEN(anon_sym_utf32); - if (lookahead == '_') ADVANCE(322); + if (lookahead == '_') ADVANCE(326); if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); - case 280: + case 284: ACCEPT_TOKEN(anon_sym_utf8_codepoint); END_STATE(); - case 281: + case 285: ACCEPT_TOKEN(anon_sym_utf8_codepoint); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); - case 282: + case 286: ACCEPT_TOKEN(anon_sym_utf16_codepoint); END_STATE(); - case 283: + case 287: ACCEPT_TOKEN(anon_sym_utf16_codepoint); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); - case 284: + case 288: ACCEPT_TOKEN(anon_sym_utf32_codepoint); END_STATE(); - case 285: + case 289: ACCEPT_TOKEN(anon_sym_utf32_codepoint); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); - case 286: + case 290: ACCEPT_TOKEN(anon_sym_signed); END_STATE(); - case 287: + case 291: ACCEPT_TOKEN(anon_sym_signed); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); - case 288: + case 292: ACCEPT_TOKEN(anon_sym_unsigned); END_STATE(); - case 289: + case 293: ACCEPT_TOKEN(anon_sym_unsigned); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); - case 290: + case 294: ACCEPT_TOKEN(anon_sym_big); END_STATE(); - case 291: + case 295: ACCEPT_TOKEN(anon_sym_big); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); - case 292: + case 296: ACCEPT_TOKEN(anon_sym_little); END_STATE(); - case 293: + case 297: ACCEPT_TOKEN(anon_sym_little); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); - case 294: + case 298: ACCEPT_TOKEN(anon_sym_native); END_STATE(); - case 295: + case 299: ACCEPT_TOKEN(anon_sym_native); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); - case 296: + case 300: ACCEPT_TOKEN(anon_sym_unit); END_STATE(); - case 297: + case 301: ACCEPT_TOKEN(anon_sym_unit); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); - case 298: + case 302: ACCEPT_TOKEN(sym__discard_name); - if (lookahead == '.') ADVANCE(253); + if (lookahead == '.') ADVANCE(257); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(298); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(299); + lookahead == '_') ADVANCE(302); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); END_STATE(); - case 299: + case 303: ACCEPT_TOKEN(sym__discard_name); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(299); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); END_STATE(); - case 300: + case 304: ACCEPT_TOKEN(sym__name); - if (lookahead == '.') ADVANCE(253); + if (lookahead == '.') ADVANCE(257); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(300); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + lookahead == '_') ADVANCE(304); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); - case 301: + case 305: ACCEPT_TOKEN(sym__name); - if (lookahead == '1') ADVANCE(303); - if (lookahead == '3') ADVANCE(302); - if (lookahead == '8') ADVANCE(275); + if (lookahead == '1') ADVANCE(307); + if (lookahead == '3') ADVANCE(306); + if (lookahead == '8') ADVANCE(279); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); - END_STATE(); - case 302: - ACCEPT_TOKEN(sym__name); - if (lookahead == '2') ADVANCE(279); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); - END_STATE(); - case 303: - ACCEPT_TOKEN(sym__name); - if (lookahead == '6') ADVANCE(277); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); - END_STATE(); - case 304: - ACCEPT_TOKEN(sym__name); - if (lookahead == '_') ADVANCE(416); - if (lookahead == 's') ADVANCE(273); - if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); - END_STATE(); - case 305: - ACCEPT_TOKEN(sym__name); - if (lookahead == 'a') ADVANCE(436); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 306: ACCEPT_TOKEN(sym__name); - if (lookahead == 'a') ADVANCE(401); + if (lookahead == '2') ADVANCE(283); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 307: ACCEPT_TOKEN(sym__name); - if (lookahead == 'a') ADVANCE(414); - if (lookahead == 'o') ADVANCE(373); + if (lookahead == '6') ADVANCE(281); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 308: ACCEPT_TOKEN(sym__name); - if (lookahead == 'a') ADVANCE(414); + if (lookahead == '_') ADVANCE(420); + if (lookahead == 's') ADVANCE(277); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 309: ACCEPT_TOKEN(sym__name); - if (lookahead == 'a') ADVANCE(374); - if (lookahead == 'u') ADVANCE(317); + if (lookahead == 'a') ADVANCE(440); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 310: ACCEPT_TOKEN(sym__name); - if (lookahead == 'a') ADVANCE(374); + if (lookahead == 'a') ADVANCE(405); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 311: ACCEPT_TOKEN(sym__name); - if (lookahead == 'a') ADVANCE(403); + if (lookahead == 'a') ADVANCE(418); + if (lookahead == 'o') ADVANCE(377); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 312: ACCEPT_TOKEN(sym__name); - if (lookahead == 'a') ADVANCE(367); + if (lookahead == 'a') ADVANCE(418); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 313: ACCEPT_TOKEN(sym__name); - if (lookahead == 'a') ADVANCE(372); + if (lookahead == 'a') ADVANCE(378); + if (lookahead == 'u') ADVANCE(321); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 314: ACCEPT_TOKEN(sym__name); - if (lookahead == 'a') ADVANCE(413); + if (lookahead == 'a') ADVANCE(378); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 315: ACCEPT_TOKEN(sym__name); - if (lookahead == 'a') ADVANCE(429); + if (lookahead == 'a') ADVANCE(407); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 316: ACCEPT_TOKEN(sym__name); - if (lookahead == 'a') ADVANCE(422); + if (lookahead == 'a') ADVANCE(371); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 317: ACCEPT_TOKEN(sym__name); - if (lookahead == 'b') ADVANCE(247); + if (lookahead == 'a') ADVANCE(376); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 318: ACCEPT_TOKEN(sym__name); - if (lookahead == 'c') ADVANCE(235); + if (lookahead == 'a') ADVANCE(417); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 319: ACCEPT_TOKEN(sym__name); - if (lookahead == 'c') ADVANCE(386); + if (lookahead == 'a') ADVANCE(433); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 320: ACCEPT_TOKEN(sym__name); - if (lookahead == 'c') ADVANCE(406); + if (lookahead == 'a') ADVANCE(426); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 321: ACCEPT_TOKEN(sym__name); - if (lookahead == 'c') ADVANCE(392); + if (lookahead == 'b') ADVANCE(251); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 322: ACCEPT_TOKEN(sym__name); - if (lookahead == 'c') ADVANCE(393); + if (lookahead == 'c') ADVANCE(238); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 323: ACCEPT_TOKEN(sym__name); - if (lookahead == 'd') ADVANCE(287); + if (lookahead == 'c') ADVANCE(390); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 324: ACCEPT_TOKEN(sym__name); - if (lookahead == 'd') ADVANCE(289); + if (lookahead == 'c') ADVANCE(410); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 325: ACCEPT_TOKEN(sym__name); - if (lookahead == 'd') ADVANCE(385); + if (lookahead == 'c') ADVANCE(396); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 326: ACCEPT_TOKEN(sym__name); - if (lookahead == 'd') ADVANCE(343); + if (lookahead == 'c') ADVANCE(397); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 327: ACCEPT_TOKEN(sym__name); - if (lookahead == 'd') ADVANCE(344); + if (lookahead == 'd') ADVANCE(291); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 328: ACCEPT_TOKEN(sym__name); - if (lookahead == 'd') ADVANCE(345); + if (lookahead == 'd') ADVANCE(293); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 329: ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(242); + if (lookahead == 'd') ADVANCE(389); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 330: ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(407); + if (lookahead == 'd') ADVANCE(347); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 331: ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(237); + if (lookahead == 'd') ADVANCE(348); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 332: ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(201); + if (lookahead == 'd') ADVANCE(349); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 333: ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(208); + if (lookahead == 'e') ADVANCE(246); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 334: ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(293); + if (lookahead == 'e') ADVANCE(411); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 335: ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(295); + if (lookahead == 'e') ADVANCE(240); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 336: ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(249); + if (lookahead == 'e') ADVANCE(204); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 337: ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(323); + if (lookahead == 'e') ADVANCE(211); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 338: ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(419); - if (lookahead == 'i') ADVANCE(434); + if (lookahead == 'e') ADVANCE(297); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 339: ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(419); + if (lookahead == 'e') ADVANCE(299); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 340: ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(324); + if (lookahead == 'e') ADVANCE(253); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 341: ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(405); + if (lookahead == 'e') ADVANCE(327); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 342: ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(411); + if (lookahead == 'e') ADVANCE(423); + if (lookahead == 'i') ADVANCE(438); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 343: ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(396); + if (lookahead == 'e') ADVANCE(423); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 344: ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(399); + if (lookahead == 'e') ADVANCE(328); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 345: ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(400); + if (lookahead == 'e') ADVANCE(409); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 346: ACCEPT_TOKEN(sym__name); - if (lookahead == 'f') ADVANCE(166); - if (lookahead == 'm') ADVANCE(394); - if (lookahead == 'n') ADVANCE(418); + if (lookahead == 'e') ADVANCE(415); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 347: ACCEPT_TOKEN(sym__name); - if (lookahead == 'f') ADVANCE(166); - if (lookahead == 'm') ADVANCE(394); + if (lookahead == 'e') ADVANCE(400); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 348: ACCEPT_TOKEN(sym__name); - if (lookahead == 'f') ADVANCE(166); + if (lookahead == 'e') ADVANCE(403); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 349: ACCEPT_TOKEN(sym__name); - if (lookahead == 'f') ADVANCE(301); + if (lookahead == 'e') ADVANCE(404); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 350: ACCEPT_TOKEN(sym__name); - if (lookahead == 'g') ADVANCE(291); - if (lookahead == 'n') ADVANCE(311); - if (lookahead == 't') ADVANCE(304); + if (lookahead == 'f') ADVANCE(169); + if (lookahead == 'm') ADVANCE(398); + if (lookahead == 'n') ADVANCE(422); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 351: ACCEPT_TOKEN(sym__name); - if (lookahead == 'g') ADVANCE(170); + if (lookahead == 'f') ADVANCE(169); + if (lookahead == 'm') ADVANCE(398); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 352: ACCEPT_TOKEN(sym__name); - if (lookahead == 'g') ADVANCE(271); + if (lookahead == 'f') ADVANCE(169); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 353: ACCEPT_TOKEN(sym__name); - if (lookahead == 'g') ADVANCE(377); - if (lookahead == 'z') ADVANCE(332); + if (lookahead == 'f') ADVANCE(305); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'y')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 354: ACCEPT_TOKEN(sym__name); - if (lookahead == 'g') ADVANCE(378); + if (lookahead == 'g') ADVANCE(295); + if (lookahead == 'n') ADVANCE(315); + if (lookahead == 't') ADVANCE(308); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 355: ACCEPT_TOKEN(sym__name); - if (lookahead == 'i') ADVANCE(350); - if (lookahead == 'y') ADVANCE(431); + if (lookahead == 'g') ADVANCE(173); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 356: ACCEPT_TOKEN(sym__name); - if (lookahead == 'i') ADVANCE(353); + if (lookahead == 'g') ADVANCE(275); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 357: ACCEPT_TOKEN(sym__name); - if (lookahead == 'i') ADVANCE(318); + if (lookahead == 'g') ADVANCE(381); + if (lookahead == 'z') ADVANCE(336); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'y')) ADVANCE(445); END_STATE(); case 358: ACCEPT_TOKEN(sym__name); - if (lookahead == 'i') ADVANCE(354); + if (lookahead == 'g') ADVANCE(382); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 359: ACCEPT_TOKEN(sym__name); - if (lookahead == 'i') ADVANCE(437); + if (lookahead == 'i') ADVANCE(354); + if (lookahead == 'y') ADVANCE(435); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 360: ACCEPT_TOKEN(sym__name); - if (lookahead == 'i') ADVANCE(398); + if (lookahead == 'i') ADVANCE(357); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 361: ACCEPT_TOKEN(sym__name); - if (lookahead == 'i') ADVANCE(375); + if (lookahead == 'i') ADVANCE(322); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 362: ACCEPT_TOKEN(sym__name); - if (lookahead == 'i') ADVANCE(420); - if (lookahead == 's') ADVANCE(358); + if (lookahead == 'i') ADVANCE(358); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 363: ACCEPT_TOKEN(sym__name); - if (lookahead == 'i') ADVANCE(379); + if (lookahead == 'i') ADVANCE(441); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 364: ACCEPT_TOKEN(sym__name); - if (lookahead == 'i') ADVANCE(380); + if (lookahead == 'i') ADVANCE(402); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 365: ACCEPT_TOKEN(sym__name); - if (lookahead == 'i') ADVANCE(381); + if (lookahead == 'i') ADVANCE(379); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 366: ACCEPT_TOKEN(sym__name); - if (lookahead == 'l') ADVANCE(388); - if (lookahead == 'n') ADVANCE(203); + if (lookahead == 'i') ADVANCE(424); + if (lookahead == 's') ADVANCE(362); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 367: ACCEPT_TOKEN(sym__name); - if (lookahead == 'l') ADVANCE(206); + if (lookahead == 'i') ADVANCE(383); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 368: ACCEPT_TOKEN(sym__name); - if (lookahead == 'l') ADVANCE(313); + if (lookahead == 'i') ADVANCE(384); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 369: ACCEPT_TOKEN(sym__name); - if (lookahead == 'l') ADVANCE(334); + if (lookahead == 'i') ADVANCE(385); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 370: ACCEPT_TOKEN(sym__name); - if (lookahead == 'n') ADVANCE(203); + if (lookahead == 'l') ADVANCE(392); + if (lookahead == 'n') ADVANCE(206); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 371: ACCEPT_TOKEN(sym__name); - if (lookahead == 'n') ADVANCE(362); - if (lookahead == 's') ADVANCE(329); - if (lookahead == 't') ADVANCE(349); + if (lookahead == 'l') ADVANCE(209); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 372: ACCEPT_TOKEN(sym__name); - if (lookahead == 'n') ADVANCE(351); + if (lookahead == 'l') ADVANCE(317); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 373: ACCEPT_TOKEN(sym__name); - if (lookahead == 'n') ADVANCE(415); + if (lookahead == 'l') ADVANCE(338); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 374: ACCEPT_TOKEN(sym__name); - if (lookahead == 'n') ADVANCE(357); + if (lookahead == 'n') ADVANCE(206); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 375: ACCEPT_TOKEN(sym__name); - if (lookahead == 'n') ADVANCE(352); + if (lookahead == 'n') ADVANCE(366); + if (lookahead == 's') ADVANCE(333); + if (lookahead == 't') ADVANCE(353); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 376: ACCEPT_TOKEN(sym__name); - if (lookahead == 'n') ADVANCE(312); + if (lookahead == 'n') ADVANCE(355); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 377: ACCEPT_TOKEN(sym__name); - if (lookahead == 'n') ADVANCE(337); + if (lookahead == 'n') ADVANCE(419); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 378: ACCEPT_TOKEN(sym__name); - if (lookahead == 'n') ADVANCE(340); + if (lookahead == 'n') ADVANCE(361); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 379: ACCEPT_TOKEN(sym__name); - if (lookahead == 'n') ADVANCE(426); + if (lookahead == 'n') ADVANCE(356); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 380: ACCEPT_TOKEN(sym__name); - if (lookahead == 'n') ADVANCE(427); + if (lookahead == 'n') ADVANCE(316); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 381: ACCEPT_TOKEN(sym__name); - if (lookahead == 'n') ADVANCE(428); + if (lookahead == 'n') ADVANCE(341); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 382: ACCEPT_TOKEN(sym__name); - if (lookahead == 'o') ADVANCE(325); - if (lookahead == 'r') ADVANCE(439); - if (lookahead == 'y') ADVANCE(397); + if (lookahead == 'n') ADVANCE(344); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 383: ACCEPT_TOKEN(sym__name); - if (lookahead == 'o') ADVANCE(325); - if (lookahead == 'r') ADVANCE(439); + if (lookahead == 'n') ADVANCE(430); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 384: ACCEPT_TOKEN(sym__name); - if (lookahead == 'o') ADVANCE(325); + if (lookahead == 'n') ADVANCE(431); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 385: ACCEPT_TOKEN(sym__name); - if (lookahead == 'o') ADVANCE(234); + if (lookahead == 'n') ADVANCE(432); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 386: ACCEPT_TOKEN(sym__name); - if (lookahead == 'o') ADVANCE(326); + if (lookahead == 'o') ADVANCE(329); + if (lookahead == 'r') ADVANCE(443); + if (lookahead == 'y') ADVANCE(401); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 387: ACCEPT_TOKEN(sym__name); - if (lookahead == 'o') ADVANCE(408); + if (lookahead == 'o') ADVANCE(329); + if (lookahead == 'r') ADVANCE(443); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 388: ACCEPT_TOKEN(sym__name); - if (lookahead == 'o') ADVANCE(316); + if (lookahead == 'o') ADVANCE(329); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 389: ACCEPT_TOKEN(sym__name); - if (lookahead == 'o') ADVANCE(363); + if (lookahead == 'o') ADVANCE(237); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 390: ACCEPT_TOKEN(sym__name); - if (lookahead == 'o') ADVANCE(364); + if (lookahead == 'o') ADVANCE(330); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 391: ACCEPT_TOKEN(sym__name); - if (lookahead == 'o') ADVANCE(365); + if (lookahead == 'o') ADVANCE(412); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 392: ACCEPT_TOKEN(sym__name); - if (lookahead == 'o') ADVANCE(327); + if (lookahead == 'o') ADVANCE(320); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 393: ACCEPT_TOKEN(sym__name); - if (lookahead == 'o') ADVANCE(328); + if (lookahead == 'o') ADVANCE(367); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 394: ACCEPT_TOKEN(sym__name); - if (lookahead == 'p') ADVANCE(387); + if (lookahead == 'o') ADVANCE(368); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 395: ACCEPT_TOKEN(sym__name); - if (lookahead == 'p') ADVANCE(306); + if (lookahead == 'o') ADVANCE(369); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 396: ACCEPT_TOKEN(sym__name); - if (lookahead == 'p') ADVANCE(389); + if (lookahead == 'o') ADVANCE(331); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 397: ACCEPT_TOKEN(sym__name); - if (lookahead == 'p') ADVANCE(333); + if (lookahead == 'o') ADVANCE(332); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 398: ACCEPT_TOKEN(sym__name); - if (lookahead == 'p') ADVANCE(425); + if (lookahead == 'p') ADVANCE(391); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 399: ACCEPT_TOKEN(sym__name); - if (lookahead == 'p') ADVANCE(390); + if (lookahead == 'p') ADVANCE(310); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 400: ACCEPT_TOKEN(sym__name); - if (lookahead == 'p') ADVANCE(391); + if (lookahead == 'p') ADVANCE(393); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 401: ACCEPT_TOKEN(sym__name); - if (lookahead == 'q') ADVANCE(435); + if (lookahead == 'p') ADVANCE(337); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 402: ACCEPT_TOKEN(sym__name); - if (lookahead == 'r') ADVANCE(368); - if (lookahead == 'x') ADVANCE(433); + if (lookahead == 'p') ADVANCE(429); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 403: ACCEPT_TOKEN(sym__name); - if (lookahead == 'r') ADVANCE(440); + if (lookahead == 'p') ADVANCE(394); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 404: ACCEPT_TOKEN(sym__name); - if (lookahead == 'r') ADVANCE(361); + if (lookahead == 'p') ADVANCE(395); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 405: ACCEPT_TOKEN(sym__name); - if (lookahead == 'r') ADVANCE(376); + if (lookahead == 'q') ADVANCE(439); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 406: ACCEPT_TOKEN(sym__name); - if (lookahead == 'r') ADVANCE(360); + if (lookahead == 'r') ADVANCE(372); + if (lookahead == 'x') ADVANCE(437); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 407: ACCEPT_TOKEN(sym__name); - if (lookahead == 'r') ADVANCE(423); + if (lookahead == 'r') ADVANCE(444); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 408: ACCEPT_TOKEN(sym__name); - if (lookahead == 'r') ADVANCE(424); + if (lookahead == 'r') ADVANCE(365); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 409: ACCEPT_TOKEN(sym__name); - if (lookahead == 's') ADVANCE(178); + if (lookahead == 'r') ADVANCE(380); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 410: ACCEPT_TOKEN(sym__name); - if (lookahead == 's') ADVANCE(329); + if (lookahead == 'r') ADVANCE(364); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 411: ACCEPT_TOKEN(sym__name); - if (lookahead == 's') ADVANCE(265); + if (lookahead == 'r') ADVANCE(427); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 412: ACCEPT_TOKEN(sym__name); - if (lookahead == 's') ADVANCE(330); + if (lookahead == 'r') ADVANCE(428); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 413: ACCEPT_TOKEN(sym__name); - if (lookahead == 's') ADVANCE(320); + if (lookahead == 's') ADVANCE(181); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 414: ACCEPT_TOKEN(sym__name); - if (lookahead == 's') ADVANCE(331); + if (lookahead == 's') ADVANCE(333); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 415: ACCEPT_TOKEN(sym__name); - if (lookahead == 's') ADVANCE(421); + if (lookahead == 's') ADVANCE(269); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 416: ACCEPT_TOKEN(sym__name); - if (lookahead == 's') ADVANCE(432); + if (lookahead == 's') ADVANCE(334); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 417: ACCEPT_TOKEN(sym__name); - if (lookahead == 's') ADVANCE(412); + if (lookahead == 's') ADVANCE(324); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 418: ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(267); + if (lookahead == 's') ADVANCE(335); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 419: ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(240); + if (lookahead == 's') ADVANCE(425); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 420: ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(297); + if (lookahead == 's') ADVANCE(436); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 421: ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(183); + if (lookahead == 's') ADVANCE(416); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 422: ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(269); + if (lookahead == 't') ADVANCE(271); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 423: ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(241); + if (lookahead == 't') ADVANCE(244); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 424: ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(174); + if (lookahead == 't') ADVANCE(301); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 425: ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(172); + if (lookahead == 't') ADVANCE(186); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 426: ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(281); + if (lookahead == 't') ADVANCE(273); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 427: ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(283); + if (lookahead == 't') ADVANCE(245); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 428: ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(285); + if (lookahead == 't') ADVANCE(177); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 429: ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(359); + if (lookahead == 't') ADVANCE(175); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 430: ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(369); + if (lookahead == 't') ADVANCE(285); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 431: ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(342); + if (lookahead == 't') ADVANCE(287); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 432: ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(404); + if (lookahead == 't') ADVANCE(289); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 433: ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(341); + if (lookahead == 't') ADVANCE(363); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 434: ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(430); + if (lookahead == 't') ADVANCE(373); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 435: ACCEPT_TOKEN(sym__name); - if (lookahead == 'u') ADVANCE(336); + if (lookahead == 't') ADVANCE(346); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 436: ACCEPT_TOKEN(sym__name); - if (lookahead == 'v') ADVANCE(314); + if (lookahead == 't') ADVANCE(408); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 437: ACCEPT_TOKEN(sym__name); - if (lookahead == 'v') ADVANCE(335); + if (lookahead == 't') ADVANCE(345); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 438: ACCEPT_TOKEN(sym__name); - if (lookahead == 'x') ADVANCE(433); + if (lookahead == 't') ADVANCE(434); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 439: ACCEPT_TOKEN(sym__name); - if (lookahead == 'y') ADVANCE(209); + if (lookahead == 'u') ADVANCE(340); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 440: ACCEPT_TOKEN(sym__name); - if (lookahead == 'y') ADVANCE(263); + if (lookahead == 'v') ADVANCE(318); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 441: ACCEPT_TOKEN(sym__name); + if (lookahead == 'v') ADVANCE(339); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(441); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); END_STATE(); case 442: + ACCEPT_TOKEN(sym__name); + if (lookahead == 'x') ADVANCE(437); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); + END_STATE(); + case 443: + ACCEPT_TOKEN(sym__name); + if (lookahead == 'y') ADVANCE(212); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); + END_STATE(); + case 444: + ACCEPT_TOKEN(sym__name); + if (lookahead == 'y') ADVANCE(267); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); + END_STATE(); + case 445: + ACCEPT_TOKEN(sym__name); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(445); + END_STATE(); + case 446: ACCEPT_TOKEN(sym__upname); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(442); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(446); END_STATE(); default: return false; @@ -5030,317 +5080,317 @@ 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 = 157}, - [2] = {.lex_state = 157}, - [3] = {.lex_state = 157}, - [4] = {.lex_state = 157}, - [5] = {.lex_state = 157}, - [6] = {.lex_state = 134}, - [7] = {.lex_state = 134}, - [8] = {.lex_state = 134}, - [9] = {.lex_state = 134}, - [10] = {.lex_state = 134}, - [11] = {.lex_state = 134}, - [12] = {.lex_state = 134}, - [13] = {.lex_state = 134}, - [14] = {.lex_state = 134}, - [15] = {.lex_state = 134}, - [16] = {.lex_state = 134}, - [17] = {.lex_state = 134}, - [18] = {.lex_state = 134}, - [19] = {.lex_state = 134}, - [20] = {.lex_state = 134}, - [21] = {.lex_state = 134}, - [22] = {.lex_state = 134}, - [23] = {.lex_state = 134}, - [24] = {.lex_state = 134}, - [25] = {.lex_state = 134}, - [26] = {.lex_state = 134}, - [27] = {.lex_state = 134}, - [28] = {.lex_state = 134}, - [29] = {.lex_state = 157}, - [30] = {.lex_state = 134}, - [31] = {.lex_state = 134}, - [32] = {.lex_state = 134}, - [33] = {.lex_state = 134}, - [34] = {.lex_state = 134}, - [35] = {.lex_state = 134}, - [36] = {.lex_state = 134}, - [37] = {.lex_state = 134}, - [38] = {.lex_state = 157}, - [39] = {.lex_state = 157}, - [40] = {.lex_state = 157}, - [41] = {.lex_state = 134}, - [42] = {.lex_state = 157}, - [43] = {.lex_state = 134}, - [44] = {.lex_state = 134}, - [45] = {.lex_state = 157}, - [46] = {.lex_state = 134}, - [47] = {.lex_state = 157}, - [48] = {.lex_state = 157}, - [49] = {.lex_state = 157}, - [50] = {.lex_state = 157}, - [51] = {.lex_state = 134}, - [52] = {.lex_state = 134}, - [53] = {.lex_state = 157}, - [54] = {.lex_state = 157}, - [55] = {.lex_state = 134}, - [56] = {.lex_state = 134}, - [57] = {.lex_state = 134}, - [58] = {.lex_state = 157}, - [59] = {.lex_state = 134}, - [60] = {.lex_state = 157}, - [61] = {.lex_state = 157}, - [62] = {.lex_state = 157}, - [63] = {.lex_state = 134}, - [64] = {.lex_state = 157}, - [65] = {.lex_state = 157}, - [66] = {.lex_state = 157}, - [67] = {.lex_state = 157}, - [68] = {.lex_state = 157}, - [69] = {.lex_state = 157}, - [70] = {.lex_state = 157}, - [71] = {.lex_state = 157}, - [72] = {.lex_state = 157}, - [73] = {.lex_state = 157}, - [74] = {.lex_state = 157}, - [75] = {.lex_state = 157}, - [76] = {.lex_state = 157}, - [77] = {.lex_state = 157}, - [78] = {.lex_state = 157}, - [79] = {.lex_state = 157}, - [80] = {.lex_state = 157}, - [81] = {.lex_state = 157}, - [82] = {.lex_state = 157}, - [83] = {.lex_state = 157}, - [84] = {.lex_state = 157}, - [85] = {.lex_state = 157}, - [86] = {.lex_state = 157}, - [87] = {.lex_state = 157}, - [88] = {.lex_state = 157}, - [89] = {.lex_state = 157}, - [90] = {.lex_state = 157}, - [91] = {.lex_state = 150}, - [92] = {.lex_state = 157}, - [93] = {.lex_state = 150}, - [94] = {.lex_state = 157}, - [95] = {.lex_state = 150}, - [96] = {.lex_state = 157}, - [97] = {.lex_state = 157}, - [98] = {.lex_state = 157}, - [99] = {.lex_state = 157}, - [100] = {.lex_state = 157}, - [101] = {.lex_state = 157}, - [102] = {.lex_state = 157}, - [103] = {.lex_state = 150}, - [104] = {.lex_state = 157}, - [105] = {.lex_state = 150}, - [106] = {.lex_state = 157}, - [107] = {.lex_state = 157}, - [108] = {.lex_state = 157}, - [109] = {.lex_state = 157}, - [110] = {.lex_state = 157}, - [111] = {.lex_state = 157}, - [112] = {.lex_state = 157}, - [113] = {.lex_state = 157}, - [114] = {.lex_state = 157}, - [115] = {.lex_state = 157}, - [116] = {.lex_state = 157}, - [117] = {.lex_state = 135}, - [118] = {.lex_state = 135}, - [119] = {.lex_state = 150}, - [120] = {.lex_state = 135}, - [121] = {.lex_state = 135}, - [122] = {.lex_state = 135}, - [123] = {.lex_state = 150}, - [124] = {.lex_state = 135}, - [125] = {.lex_state = 135}, - [126] = {.lex_state = 135}, - [127] = {.lex_state = 135}, - [128] = {.lex_state = 150}, - [129] = {.lex_state = 135}, - [130] = {.lex_state = 150}, - [131] = {.lex_state = 135}, - [132] = {.lex_state = 135}, - [133] = {.lex_state = 150}, - [134] = {.lex_state = 150}, - [135] = {.lex_state = 135}, - [136] = {.lex_state = 150}, - [137] = {.lex_state = 150}, - [138] = {.lex_state = 150}, - [139] = {.lex_state = 150}, - [140] = {.lex_state = 150}, - [141] = {.lex_state = 135}, - [142] = {.lex_state = 150}, - [143] = {.lex_state = 150}, - [144] = {.lex_state = 150}, - [145] = {.lex_state = 135}, - [146] = {.lex_state = 135}, - [147] = {.lex_state = 150}, - [148] = {.lex_state = 150}, - [149] = {.lex_state = 150}, - [150] = {.lex_state = 150}, - [151] = {.lex_state = 150}, - [152] = {.lex_state = 135}, - [153] = {.lex_state = 150}, - [154] = {.lex_state = 150}, - [155] = {.lex_state = 150}, - [156] = {.lex_state = 150}, - [157] = {.lex_state = 150}, - [158] = {.lex_state = 150}, - [159] = {.lex_state = 150}, - [160] = {.lex_state = 150}, - [161] = {.lex_state = 150}, - [162] = {.lex_state = 150}, - [163] = {.lex_state = 150}, - [164] = {.lex_state = 150}, - [165] = {.lex_state = 150}, - [166] = {.lex_state = 150}, - [167] = {.lex_state = 150}, - [168] = {.lex_state = 150}, - [169] = {.lex_state = 150}, - [170] = {.lex_state = 150}, - [171] = {.lex_state = 150}, - [172] = {.lex_state = 150}, - [173] = {.lex_state = 150}, - [174] = {.lex_state = 150}, + [1] = {.lex_state = 160}, + [2] = {.lex_state = 160}, + [3] = {.lex_state = 160}, + [4] = {.lex_state = 160}, + [5] = {.lex_state = 160}, + [6] = {.lex_state = 135}, + [7] = {.lex_state = 135}, + [8] = {.lex_state = 135}, + [9] = {.lex_state = 135}, + [10] = {.lex_state = 135}, + [11] = {.lex_state = 135}, + [12] = {.lex_state = 135}, + [13] = {.lex_state = 135}, + [14] = {.lex_state = 135}, + [15] = {.lex_state = 135}, + [16] = {.lex_state = 135}, + [17] = {.lex_state = 135}, + [18] = {.lex_state = 135}, + [19] = {.lex_state = 135}, + [20] = {.lex_state = 135}, + [21] = {.lex_state = 135}, + [22] = {.lex_state = 135}, + [23] = {.lex_state = 135}, + [24] = {.lex_state = 135}, + [25] = {.lex_state = 135}, + [26] = {.lex_state = 135}, + [27] = {.lex_state = 135}, + [28] = {.lex_state = 135}, + [29] = {.lex_state = 135}, + [30] = {.lex_state = 135}, + [31] = {.lex_state = 135}, + [32] = {.lex_state = 135}, + [33] = {.lex_state = 135}, + [34] = {.lex_state = 135}, + [35] = {.lex_state = 135}, + [36] = {.lex_state = 135}, + [37] = {.lex_state = 135}, + [38] = {.lex_state = 135}, + [39] = {.lex_state = 160}, + [40] = {.lex_state = 135}, + [41] = {.lex_state = 135}, + [42] = {.lex_state = 135}, + [43] = {.lex_state = 135}, + [44] = {.lex_state = 135}, + [45] = {.lex_state = 135}, + [46] = {.lex_state = 135}, + [47] = {.lex_state = 135}, + [48] = {.lex_state = 160}, + [49] = {.lex_state = 135}, + [50] = {.lex_state = 160}, + [51] = {.lex_state = 160}, + [52] = {.lex_state = 160}, + [53] = {.lex_state = 160}, + [54] = {.lex_state = 160}, + [55] = {.lex_state = 160}, + [56] = {.lex_state = 160}, + [57] = {.lex_state = 160}, + [58] = {.lex_state = 160}, + [59] = {.lex_state = 160}, + [60] = {.lex_state = 160}, + [61] = {.lex_state = 160}, + [62] = {.lex_state = 160}, + [63] = {.lex_state = 160}, + [64] = {.lex_state = 160}, + [65] = {.lex_state = 160}, + [66] = {.lex_state = 160}, + [67] = {.lex_state = 160}, + [68] = {.lex_state = 160}, + [69] = {.lex_state = 160}, + [70] = {.lex_state = 160}, + [71] = {.lex_state = 160}, + [72] = {.lex_state = 160}, + [73] = {.lex_state = 160}, + [74] = {.lex_state = 160}, + [75] = {.lex_state = 160}, + [76] = {.lex_state = 160}, + [77] = {.lex_state = 160}, + [78] = {.lex_state = 160}, + [79] = {.lex_state = 153}, + [80] = {.lex_state = 160}, + [81] = {.lex_state = 160}, + [82] = {.lex_state = 160}, + [83] = {.lex_state = 160}, + [84] = {.lex_state = 160}, + [85] = {.lex_state = 160}, + [86] = {.lex_state = 160}, + [87] = {.lex_state = 160}, + [88] = {.lex_state = 160}, + [89] = {.lex_state = 160}, + [90] = {.lex_state = 160}, + [91] = {.lex_state = 136}, + [92] = {.lex_state = 160}, + [93] = {.lex_state = 160}, + [94] = {.lex_state = 160}, + [95] = {.lex_state = 160}, + [96] = {.lex_state = 160}, + [97] = {.lex_state = 160}, + [98] = {.lex_state = 160}, + [99] = {.lex_state = 160}, + [100] = {.lex_state = 160}, + [101] = {.lex_state = 153}, + [102] = {.lex_state = 136}, + [103] = {.lex_state = 136}, + [104] = {.lex_state = 160}, + [105] = {.lex_state = 136}, + [106] = {.lex_state = 160}, + [107] = {.lex_state = 160}, + [108] = {.lex_state = 160}, + [109] = {.lex_state = 160}, + [110] = {.lex_state = 160}, + [111] = {.lex_state = 160}, + [112] = {.lex_state = 160}, + [113] = {.lex_state = 153}, + [114] = {.lex_state = 160}, + [115] = {.lex_state = 160}, + [116] = {.lex_state = 160}, + [117] = {.lex_state = 160}, + [118] = {.lex_state = 160}, + [119] = {.lex_state = 160}, + [120] = {.lex_state = 160}, + [121] = {.lex_state = 153}, + [122] = {.lex_state = 136}, + [123] = {.lex_state = 136}, + [124] = {.lex_state = 136}, + [125] = {.lex_state = 136}, + [126] = {.lex_state = 136}, + [127] = {.lex_state = 153}, + [128] = {.lex_state = 136}, + [129] = {.lex_state = 136}, + [130] = {.lex_state = 136}, + [131] = {.lex_state = 136}, + [132] = {.lex_state = 136}, + [133] = {.lex_state = 136}, + [134] = {.lex_state = 136}, + [135] = {.lex_state = 153}, + [136] = {.lex_state = 153}, + [137] = {.lex_state = 153}, + [138] = {.lex_state = 153}, + [139] = {.lex_state = 153}, + [140] = {.lex_state = 153}, + [141] = {.lex_state = 153}, + [142] = {.lex_state = 153}, + [143] = {.lex_state = 153}, + [144] = {.lex_state = 136}, + [145] = {.lex_state = 153}, + [146] = {.lex_state = 153}, + [147] = {.lex_state = 153}, + [148] = {.lex_state = 153}, + [149] = {.lex_state = 153}, + [150] = {.lex_state = 153}, + [151] = {.lex_state = 153}, + [152] = {.lex_state = 153}, + [153] = {.lex_state = 153}, + [154] = {.lex_state = 153}, + [155] = {.lex_state = 153}, + [156] = {.lex_state = 153}, + [157] = {.lex_state = 153}, + [158] = {.lex_state = 153}, + [159] = {.lex_state = 153}, + [160] = {.lex_state = 153}, + [161] = {.lex_state = 153}, + [162] = {.lex_state = 137}, + [163] = {.lex_state = 153}, + [164] = {.lex_state = 153}, + [165] = {.lex_state = 153}, + [166] = {.lex_state = 153}, + [167] = {.lex_state = 153}, + [168] = {.lex_state = 137}, + [169] = {.lex_state = 137}, + [170] = {.lex_state = 137}, + [171] = {.lex_state = 137}, + [172] = {.lex_state = 153}, + [173] = {.lex_state = 153}, + [174] = {.lex_state = 153}, [175] = {.lex_state = 136}, - [176] = {.lex_state = 136}, - [177] = {.lex_state = 136}, - [178] = {.lex_state = 136}, - [179] = {.lex_state = 136}, - [180] = {.lex_state = 136}, - [181] = {.lex_state = 136}, - [182] = {.lex_state = 136}, - [183] = {.lex_state = 135}, - [184] = {.lex_state = 136}, - [185] = {.lex_state = 136}, - [186] = {.lex_state = 136}, - [187] = {.lex_state = 136}, - [188] = {.lex_state = 136}, - [189] = {.lex_state = 136}, - [190] = {.lex_state = 136}, - [191] = {.lex_state = 136}, - [192] = {.lex_state = 136}, - [193] = {.lex_state = 136}, - [194] = {.lex_state = 136}, - [195] = {.lex_state = 136}, - [196] = {.lex_state = 136}, - [197] = {.lex_state = 136}, - [198] = {.lex_state = 136}, - [199] = {.lex_state = 136}, - [200] = {.lex_state = 136}, - [201] = {.lex_state = 136}, - [202] = {.lex_state = 136}, - [203] = {.lex_state = 136}, - [204] = {.lex_state = 150}, - [205] = {.lex_state = 136}, - [206] = {.lex_state = 136}, - [207] = {.lex_state = 136}, - [208] = {.lex_state = 136}, - [209] = {.lex_state = 136}, - [210] = {.lex_state = 136}, - [211] = {.lex_state = 136}, - [212] = {.lex_state = 136}, - [213] = {.lex_state = 136}, - [214] = {.lex_state = 136}, - [215] = {.lex_state = 136}, - [216] = {.lex_state = 136}, - [217] = {.lex_state = 136}, - [218] = {.lex_state = 136}, - [219] = {.lex_state = 150}, - [220] = {.lex_state = 136}, - [221] = {.lex_state = 136}, - [222] = {.lex_state = 136}, - [223] = {.lex_state = 150}, - [224] = {.lex_state = 136}, - [225] = {.lex_state = 150}, - [226] = {.lex_state = 150}, - [227] = {.lex_state = 136}, - [228] = {.lex_state = 150}, - [229] = {.lex_state = 136}, - [230] = {.lex_state = 136}, - [231] = {.lex_state = 136}, - [232] = {.lex_state = 136}, - [233] = {.lex_state = 136}, - [234] = {.lex_state = 136}, - [235] = {.lex_state = 136}, - [236] = {.lex_state = 136}, - [237] = {.lex_state = 136}, - [238] = {.lex_state = 136}, - [239] = {.lex_state = 150}, - [240] = {.lex_state = 136}, - [241] = {.lex_state = 136}, - [242] = {.lex_state = 150}, - [243] = {.lex_state = 136}, - [244] = {.lex_state = 136}, - [245] = {.lex_state = 150}, - [246] = {.lex_state = 136}, - [247] = {.lex_state = 136}, - [248] = {.lex_state = 136}, - [249] = {.lex_state = 136}, - [250] = {.lex_state = 136}, - [251] = {.lex_state = 136}, - [252] = {.lex_state = 136}, - [253] = {.lex_state = 136}, - [254] = {.lex_state = 136}, - [255] = {.lex_state = 150}, - [256] = {.lex_state = 150}, - [257] = {.lex_state = 150}, - [258] = {.lex_state = 150}, - [259] = {.lex_state = 150}, - [260] = {.lex_state = 136}, - [261] = {.lex_state = 150}, - [262] = {.lex_state = 136}, - [263] = {.lex_state = 136}, - [264] = {.lex_state = 150}, - [265] = {.lex_state = 136}, - [266] = {.lex_state = 136}, - [267] = {.lex_state = 136}, - [268] = {.lex_state = 136}, - [269] = {.lex_state = 136}, - [270] = {.lex_state = 136}, - [271] = {.lex_state = 136}, - [272] = {.lex_state = 136}, - [273] = {.lex_state = 136}, - [274] = {.lex_state = 136}, - [275] = {.lex_state = 136}, - [276] = {.lex_state = 136}, - [277] = {.lex_state = 136}, - [278] = {.lex_state = 136}, - [279] = {.lex_state = 136}, - [280] = {.lex_state = 136}, - [281] = {.lex_state = 136}, - [282] = {.lex_state = 136}, - [283] = {.lex_state = 136}, - [284] = {.lex_state = 136}, - [285] = {.lex_state = 136}, - [286] = {.lex_state = 136}, - [287] = {.lex_state = 136}, - [288] = {.lex_state = 136}, - [289] = {.lex_state = 136}, - [290] = {.lex_state = 136}, - [291] = {.lex_state = 136}, - [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 = 136}, - [300] = {.lex_state = 136}, - [301] = {.lex_state = 136}, - [302] = {.lex_state = 136}, - [303] = {.lex_state = 150}, - [304] = {.lex_state = 136}, - [305] = {.lex_state = 136}, - [306] = {.lex_state = 136}, - [307] = {.lex_state = 136}, - [308] = {.lex_state = 136}, - [309] = {.lex_state = 136}, - [310] = {.lex_state = 136}, - [311] = {.lex_state = 136}, + [176] = {.lex_state = 153}, + [177] = {.lex_state = 137}, + [178] = {.lex_state = 153}, + [179] = {.lex_state = 153}, + [180] = {.lex_state = 153}, + [181] = {.lex_state = 137}, + [182] = {.lex_state = 153}, + [183] = {.lex_state = 137}, + [184] = {.lex_state = 153}, + [185] = {.lex_state = 153}, + [186] = {.lex_state = 153}, + [187] = {.lex_state = 137}, + [188] = {.lex_state = 137}, + [189] = {.lex_state = 137}, + [190] = {.lex_state = 137}, + [191] = {.lex_state = 137}, + [192] = {.lex_state = 137}, + [193] = {.lex_state = 137}, + [194] = {.lex_state = 137}, + [195] = {.lex_state = 137}, + [196] = {.lex_state = 137}, + [197] = {.lex_state = 137}, + [198] = {.lex_state = 137}, + [199] = {.lex_state = 137}, + [200] = {.lex_state = 137}, + [201] = {.lex_state = 137}, + [202] = {.lex_state = 137}, + [203] = {.lex_state = 153}, + [204] = {.lex_state = 137}, + [205] = {.lex_state = 137}, + [206] = {.lex_state = 137}, + [207] = {.lex_state = 137}, + [208] = {.lex_state = 137}, + [209] = {.lex_state = 137}, + [210] = {.lex_state = 137}, + [211] = {.lex_state = 137}, + [212] = {.lex_state = 137}, + [213] = {.lex_state = 137}, + [214] = {.lex_state = 137}, + [215] = {.lex_state = 137}, + [216] = {.lex_state = 137}, + [217] = {.lex_state = 137}, + [218] = {.lex_state = 137}, + [219] = {.lex_state = 137}, + [220] = {.lex_state = 137}, + [221] = {.lex_state = 137}, + [222] = {.lex_state = 137}, + [223] = {.lex_state = 137}, + [224] = {.lex_state = 137}, + [225] = {.lex_state = 137}, + [226] = {.lex_state = 137}, + [227] = {.lex_state = 137}, + [228] = {.lex_state = 137}, + [229] = {.lex_state = 137}, + [230] = {.lex_state = 137}, + [231] = {.lex_state = 137}, + [232] = {.lex_state = 137}, + [233] = {.lex_state = 137}, + [234] = {.lex_state = 137}, + [235] = {.lex_state = 137}, + [236] = {.lex_state = 137}, + [237] = {.lex_state = 137}, + [238] = {.lex_state = 137}, + [239] = {.lex_state = 137}, + [240] = {.lex_state = 137}, + [241] = {.lex_state = 137}, + [242] = {.lex_state = 137}, + [243] = {.lex_state = 137}, + [244] = {.lex_state = 137}, + [245] = {.lex_state = 137}, + [246] = {.lex_state = 137}, + [247] = {.lex_state = 137}, + [248] = {.lex_state = 137}, + [249] = {.lex_state = 137}, + [250] = {.lex_state = 137}, + [251] = {.lex_state = 137}, + [252] = {.lex_state = 137}, + [253] = {.lex_state = 137}, + [254] = {.lex_state = 137}, + [255] = {.lex_state = 137}, + [256] = {.lex_state = 137}, + [257] = {.lex_state = 137}, + [258] = {.lex_state = 137}, + [259] = {.lex_state = 137}, + [260] = {.lex_state = 137}, + [261] = {.lex_state = 137}, + [262] = {.lex_state = 137}, + [263] = {.lex_state = 137}, + [264] = {.lex_state = 137}, + [265] = {.lex_state = 137}, + [266] = {.lex_state = 137}, + [267] = {.lex_state = 137}, + [268] = {.lex_state = 137}, + [269] = {.lex_state = 137}, + [270] = {.lex_state = 137}, + [271] = {.lex_state = 137}, + [272] = {.lex_state = 137}, + [273] = {.lex_state = 137}, + [274] = {.lex_state = 137}, + [275] = {.lex_state = 137}, + [276] = {.lex_state = 137}, + [277] = {.lex_state = 137}, + [278] = {.lex_state = 137}, + [279] = {.lex_state = 137}, + [280] = {.lex_state = 137}, + [281] = {.lex_state = 137}, + [282] = {.lex_state = 137}, + [283] = {.lex_state = 137}, + [284] = {.lex_state = 137}, + [285] = {.lex_state = 137}, + [286] = {.lex_state = 137}, + [287] = {.lex_state = 137}, + [288] = {.lex_state = 137}, + [289] = {.lex_state = 137}, + [290] = {.lex_state = 137}, + [291] = {.lex_state = 137}, + [292] = {.lex_state = 137}, + [293] = {.lex_state = 153}, + [294] = {.lex_state = 137}, + [295] = {.lex_state = 153}, + [296] = {.lex_state = 153}, + [297] = {.lex_state = 153}, + [298] = {.lex_state = 153}, + [299] = {.lex_state = 153}, + [300] = {.lex_state = 153}, + [301] = {.lex_state = 153}, + [302] = {.lex_state = 153}, + [303] = {.lex_state = 153}, + [304] = {.lex_state = 153}, + [305] = {.lex_state = 153}, + [306] = {.lex_state = 153}, + [307] = {.lex_state = 153}, + [308] = {.lex_state = 153}, + [309] = {.lex_state = 153}, + [310] = {.lex_state = 153}, + [311] = {.lex_state = 137}, [312] = {.lex_state = 137}, [313] = {.lex_state = 137}, [314] = {.lex_state = 137}, @@ -5348,710 +5398,710 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [316] = {.lex_state = 137}, [317] = {.lex_state = 137}, [318] = {.lex_state = 137}, - [319] = {.lex_state = 139}, - [320] = {.lex_state = 140}, - [321] = {.lex_state = 140}, - [322] = {.lex_state = 140}, - [323] = {.lex_state = 140}, - [324] = {.lex_state = 140}, + [319] = {.lex_state = 137}, + [320] = {.lex_state = 137}, + [321] = {.lex_state = 138}, + [322] = {.lex_state = 138}, + [323] = {.lex_state = 138}, + [324] = {.lex_state = 138}, [325] = {.lex_state = 140}, - [326] = {.lex_state = 140}, - [327] = {.lex_state = 140}, - [328] = {.lex_state = 140}, - [329] = {.lex_state = 140}, - [330] = {.lex_state = 140}, - [331] = {.lex_state = 140}, - [332] = {.lex_state = 140}, - [333] = {.lex_state = 140}, - [334] = {.lex_state = 140}, - [335] = {.lex_state = 140}, - [336] = {.lex_state = 140}, - [337] = {.lex_state = 140}, - [338] = {.lex_state = 140}, - [339] = {.lex_state = 140}, - [340] = {.lex_state = 140}, - [341] = {.lex_state = 140}, - [342] = {.lex_state = 140}, - [343] = {.lex_state = 140}, - [344] = {.lex_state = 140}, - [345] = {.lex_state = 140}, - [346] = {.lex_state = 140}, - [347] = {.lex_state = 140}, - [348] = {.lex_state = 140}, - [349] = {.lex_state = 140}, - [350] = {.lex_state = 140}, - [351] = {.lex_state = 140}, - [352] = {.lex_state = 140}, - [353] = {.lex_state = 140}, - [354] = {.lex_state = 140}, - [355] = {.lex_state = 140}, - [356] = {.lex_state = 140}, - [357] = {.lex_state = 140}, - [358] = {.lex_state = 140}, - [359] = {.lex_state = 140}, - [360] = {.lex_state = 140}, - [361] = {.lex_state = 140}, - [362] = {.lex_state = 140}, - [363] = {.lex_state = 140}, - [364] = {.lex_state = 140}, - [365] = {.lex_state = 140}, - [366] = {.lex_state = 140}, - [367] = {.lex_state = 140}, - [368] = {.lex_state = 140}, - [369] = {.lex_state = 140}, - [370] = {.lex_state = 140}, - [371] = {.lex_state = 140}, - [372] = {.lex_state = 140}, - [373] = {.lex_state = 140}, - [374] = {.lex_state = 140}, - [375] = {.lex_state = 140}, - [376] = {.lex_state = 140}, - [377] = {.lex_state = 140}, - [378] = {.lex_state = 158}, - [379] = {.lex_state = 158}, - [380] = {.lex_state = 158}, - [381] = {.lex_state = 139}, - [382] = {.lex_state = 158}, - [383] = {.lex_state = 158}, - [384] = {.lex_state = 139}, - [385] = {.lex_state = 157}, - [386] = {.lex_state = 139}, - [387] = {.lex_state = 139}, - [388] = {.lex_state = 139}, - [389] = {.lex_state = 139}, - [390] = {.lex_state = 139}, - [391] = {.lex_state = 139}, - [392] = {.lex_state = 139}, - [393] = {.lex_state = 139}, - [394] = {.lex_state = 139}, - [395] = {.lex_state = 139}, - [396] = {.lex_state = 157}, - [397] = {.lex_state = 157}, + [326] = {.lex_state = 138}, + [327] = {.lex_state = 138}, + [328] = {.lex_state = 141}, + [329] = {.lex_state = 141}, + [330] = {.lex_state = 141}, + [331] = {.lex_state = 141}, + [332] = {.lex_state = 141}, + [333] = {.lex_state = 141}, + [334] = {.lex_state = 141}, + [335] = {.lex_state = 141}, + [336] = {.lex_state = 141}, + [337] = {.lex_state = 141}, + [338] = {.lex_state = 141}, + [339] = {.lex_state = 141}, + [340] = {.lex_state = 141}, + [341] = {.lex_state = 141}, + [342] = {.lex_state = 141}, + [343] = {.lex_state = 141}, + [344] = {.lex_state = 141}, + [345] = {.lex_state = 141}, + [346] = {.lex_state = 141}, + [347] = {.lex_state = 141}, + [348] = {.lex_state = 141}, + [349] = {.lex_state = 141}, + [350] = {.lex_state = 141}, + [351] = {.lex_state = 141}, + [352] = {.lex_state = 141}, + [353] = {.lex_state = 141}, + [354] = {.lex_state = 141}, + [355] = {.lex_state = 141}, + [356] = {.lex_state = 141}, + [357] = {.lex_state = 141}, + [358] = {.lex_state = 141}, + [359] = {.lex_state = 141}, + [360] = {.lex_state = 141}, + [361] = {.lex_state = 141}, + [362] = {.lex_state = 141}, + [363] = {.lex_state = 141}, + [364] = {.lex_state = 141}, + [365] = {.lex_state = 141}, + [366] = {.lex_state = 141}, + [367] = {.lex_state = 141}, + [368] = {.lex_state = 141}, + [369] = {.lex_state = 141}, + [370] = {.lex_state = 141}, + [371] = {.lex_state = 141}, + [372] = {.lex_state = 141}, + [373] = {.lex_state = 141}, + [374] = {.lex_state = 141}, + [375] = {.lex_state = 141}, + [376] = {.lex_state = 141}, + [377] = {.lex_state = 141}, + [378] = {.lex_state = 141}, + [379] = {.lex_state = 141}, + [380] = {.lex_state = 141}, + [381] = {.lex_state = 141}, + [382] = {.lex_state = 141}, + [383] = {.lex_state = 141}, + [384] = {.lex_state = 141}, + [385] = {.lex_state = 141}, + [386] = {.lex_state = 141}, + [387] = {.lex_state = 141}, + [388] = {.lex_state = 161}, + [389] = {.lex_state = 161}, + [390] = {.lex_state = 161}, + [391] = {.lex_state = 161}, + [392] = {.lex_state = 140}, + [393] = {.lex_state = 140}, + [394] = {.lex_state = 140}, + [395] = {.lex_state = 140}, + [396] = {.lex_state = 140}, + [397] = {.lex_state = 140}, [398] = {.lex_state = 140}, [399] = {.lex_state = 140}, - [400] = {.lex_state = 158}, - [401] = {.lex_state = 139}, - [402] = {.lex_state = 157}, - [403] = {.lex_state = 157}, - [404] = {.lex_state = 140}, - [405] = {.lex_state = 140}, - [406] = {.lex_state = 158}, - [407] = {.lex_state = 157}, - [408] = {.lex_state = 139}, - [409] = {.lex_state = 140}, - [410] = {.lex_state = 139}, - [411] = {.lex_state = 137}, - [412] = {.lex_state = 137}, - [413] = {.lex_state = 139}, - [414] = {.lex_state = 139}, - [415] = {.lex_state = 140}, - [416] = {.lex_state = 137}, + [400] = {.lex_state = 161}, + [401] = {.lex_state = 140}, + [402] = {.lex_state = 140}, + [403] = {.lex_state = 140}, + [404] = {.lex_state = 160}, + [405] = {.lex_state = 160}, + [406] = {.lex_state = 140}, + [407] = {.lex_state = 140}, + [408] = {.lex_state = 160}, + [409] = {.lex_state = 141}, + [410] = {.lex_state = 141}, + [411] = {.lex_state = 138}, + [412] = {.lex_state = 138}, + [413] = {.lex_state = 161}, + [414] = {.lex_state = 141}, + [415] = {.lex_state = 160}, + [416] = {.lex_state = 140}, [417] = {.lex_state = 140}, - [418] = {.lex_state = 139}, - [419] = {.lex_state = 158}, - [420] = {.lex_state = 139}, - [421] = {.lex_state = 139}, - [422] = {.lex_state = 137}, - [423] = {.lex_state = 137}, - [424] = {.lex_state = 139}, - [425] = {.lex_state = 139}, - [426] = {.lex_state = 137}, - [427] = {.lex_state = 140}, - [428] = {.lex_state = 139}, - [429] = {.lex_state = 140}, - [430] = {.lex_state = 157}, - [431] = {.lex_state = 158}, - [432] = {.lex_state = 139}, - [433] = {.lex_state = 158}, - [434] = {.lex_state = 139}, - [435] = {.lex_state = 139}, - [436] = {.lex_state = 139}, - [437] = {.lex_state = 157}, - [438] = {.lex_state = 139}, - [439] = {.lex_state = 139}, - [440] = {.lex_state = 139}, - [441] = {.lex_state = 139}, - [442] = {.lex_state = 139}, - [443] = {.lex_state = 157}, - [444] = {.lex_state = 157}, - [445] = {.lex_state = 157}, - [446] = {.lex_state = 139}, - [447] = {.lex_state = 137}, - [448] = {.lex_state = 157}, - [449] = {.lex_state = 157}, - [450] = {.lex_state = 137}, - [451] = {.lex_state = 139}, - [452] = {.lex_state = 157}, - [453] = {.lex_state = 139}, - [454] = {.lex_state = 157}, - [455] = {.lex_state = 157}, - [456] = {.lex_state = 157}, - [457] = {.lex_state = 157}, - [458] = {.lex_state = 139}, - [459] = {.lex_state = 157}, - [460] = {.lex_state = 157}, - [461] = {.lex_state = 157}, - [462] = {.lex_state = 157}, - [463] = {.lex_state = 157}, - [464] = {.lex_state = 157}, - [465] = {.lex_state = 157}, - [466] = {.lex_state = 157}, - [467] = {.lex_state = 157}, - [468] = {.lex_state = 157}, - [469] = {.lex_state = 157}, - [470] = {.lex_state = 157}, - [471] = {.lex_state = 137}, - [472] = {.lex_state = 157}, - [473] = {.lex_state = 157}, - [474] = {.lex_state = 139}, - [475] = {.lex_state = 157}, - [476] = {.lex_state = 157}, - [477] = {.lex_state = 139}, - [478] = {.lex_state = 157}, - [479] = {.lex_state = 139}, - [480] = {.lex_state = 157}, - [481] = {.lex_state = 157}, - [482] = {.lex_state = 139}, - [483] = {.lex_state = 139}, - [484] = {.lex_state = 157}, - [485] = {.lex_state = 139}, - [486] = {.lex_state = 139}, - [487] = {.lex_state = 157}, - [488] = {.lex_state = 157}, - [489] = {.lex_state = 139}, - [490] = {.lex_state = 157}, - [491] = {.lex_state = 157}, - [492] = {.lex_state = 157}, - [493] = {.lex_state = 157}, - [494] = {.lex_state = 157}, - [495] = {.lex_state = 157}, - [496] = {.lex_state = 157}, - [497] = {.lex_state = 139}, - [498] = {.lex_state = 157}, - [499] = {.lex_state = 157}, - [500] = {.lex_state = 139}, - [501] = {.lex_state = 157}, - [502] = {.lex_state = 157}, - [503] = {.lex_state = 139}, - [504] = {.lex_state = 157}, - [505] = {.lex_state = 157}, - [506] = {.lex_state = 157}, - [507] = {.lex_state = 139}, - [508] = {.lex_state = 139}, - [509] = {.lex_state = 157}, - [510] = {.lex_state = 157}, - [511] = {.lex_state = 157}, - [512] = {.lex_state = 157}, - [513] = {.lex_state = 157}, - [514] = {.lex_state = 157}, - [515] = {.lex_state = 157}, - [516] = {.lex_state = 157}, - [517] = {.lex_state = 157}, - [518] = {.lex_state = 157}, - [519] = {.lex_state = 157}, - [520] = {.lex_state = 157}, - [521] = {.lex_state = 157}, - [522] = {.lex_state = 157}, - [523] = {.lex_state = 157}, - [524] = {.lex_state = 157}, - [525] = {.lex_state = 157}, - [526] = {.lex_state = 157}, + [418] = {.lex_state = 141}, + [419] = {.lex_state = 140}, + [420] = {.lex_state = 141}, + [421] = {.lex_state = 140}, + [422] = {.lex_state = 140}, + [423] = {.lex_state = 138}, + [424] = {.lex_state = 140}, + [425] = {.lex_state = 141}, + [426] = {.lex_state = 141}, + [427] = {.lex_state = 138}, + [428] = {.lex_state = 161}, + [429] = {.lex_state = 138}, + [430] = {.lex_state = 140}, + [431] = {.lex_state = 140}, + [432] = {.lex_state = 161}, + [433] = {.lex_state = 160}, + [434] = {.lex_state = 160}, + [435] = {.lex_state = 141}, + [436] = {.lex_state = 140}, + [437] = {.lex_state = 161}, + [438] = {.lex_state = 140}, + [439] = {.lex_state = 140}, + [440] = {.lex_state = 140}, + [441] = {.lex_state = 141}, + [442] = {.lex_state = 161}, + [443] = {.lex_state = 138}, + [444] = {.lex_state = 160}, + [445] = {.lex_state = 140}, + [446] = {.lex_state = 140}, + [447] = {.lex_state = 160}, + [448] = {.lex_state = 160}, + [449] = {.lex_state = 160}, + [450] = {.lex_state = 160}, + [451] = {.lex_state = 160}, + [452] = {.lex_state = 160}, + [453] = {.lex_state = 160}, + [454] = {.lex_state = 160}, + [455] = {.lex_state = 138}, + [456] = {.lex_state = 160}, + [457] = {.lex_state = 160}, + [458] = {.lex_state = 160}, + [459] = {.lex_state = 160}, + [460] = {.lex_state = 160}, + [461] = {.lex_state = 160}, + [462] = {.lex_state = 160}, + [463] = {.lex_state = 160}, + [464] = {.lex_state = 160}, + [465] = {.lex_state = 160}, + [466] = {.lex_state = 160}, + [467] = {.lex_state = 160}, + [468] = {.lex_state = 160}, + [469] = {.lex_state = 160}, + [470] = {.lex_state = 160}, + [471] = {.lex_state = 160}, + [472] = {.lex_state = 160}, + [473] = {.lex_state = 138}, + [474] = {.lex_state = 160}, + [475] = {.lex_state = 160}, + [476] = {.lex_state = 160}, + [477] = {.lex_state = 160}, + [478] = {.lex_state = 160}, + [479] = {.lex_state = 160}, + [480] = {.lex_state = 140}, + [481] = {.lex_state = 140}, + [482] = {.lex_state = 140}, + [483] = {.lex_state = 140}, + [484] = {.lex_state = 140}, + [485] = {.lex_state = 140}, + [486] = {.lex_state = 140}, + [487] = {.lex_state = 160}, + [488] = {.lex_state = 160}, + [489] = {.lex_state = 160}, + [490] = {.lex_state = 160}, + [491] = {.lex_state = 160}, + [492] = {.lex_state = 160}, + [493] = {.lex_state = 160}, + [494] = {.lex_state = 160}, + [495] = {.lex_state = 160}, + [496] = {.lex_state = 160}, + [497] = {.lex_state = 160}, + [498] = {.lex_state = 160}, + [499] = {.lex_state = 160}, + [500] = {.lex_state = 140}, + [501] = {.lex_state = 160}, + [502] = {.lex_state = 140}, + [503] = {.lex_state = 160}, + [504] = {.lex_state = 160}, + [505] = {.lex_state = 138}, + [506] = {.lex_state = 160}, + [507] = {.lex_state = 140}, + [508] = {.lex_state = 140}, + [509] = {.lex_state = 160}, + [510] = {.lex_state = 140}, + [511] = {.lex_state = 140}, + [512] = {.lex_state = 140}, + [513] = {.lex_state = 160}, + [514] = {.lex_state = 160}, + [515] = {.lex_state = 160}, + [516] = {.lex_state = 140}, + [517] = {.lex_state = 140}, + [518] = {.lex_state = 160}, + [519] = {.lex_state = 140}, + [520] = {.lex_state = 160}, + [521] = {.lex_state = 140}, + [522] = {.lex_state = 140}, + [523] = {.lex_state = 140}, + [524] = {.lex_state = 140}, + [525] = {.lex_state = 160}, + [526] = {.lex_state = 140}, [527] = {.lex_state = 140}, - [528] = {.lex_state = 137}, - [529] = {.lex_state = 141}, - [530] = {.lex_state = 141}, - [531] = {.lex_state = 140}, - [532] = {.lex_state = 137}, - [533] = {.lex_state = 137}, - [534] = {.lex_state = 141}, - [535] = {.lex_state = 140}, - [536] = {.lex_state = 141}, - [537] = {.lex_state = 142}, - [538] = {.lex_state = 142}, - [539] = {.lex_state = 142}, + [528] = {.lex_state = 140}, + [529] = {.lex_state = 160}, + [530] = {.lex_state = 160}, + [531] = {.lex_state = 160}, + [532] = {.lex_state = 160}, + [533] = {.lex_state = 160}, + [534] = {.lex_state = 160}, + [535] = {.lex_state = 160}, + [536] = {.lex_state = 160}, + [537] = {.lex_state = 160}, + [538] = {.lex_state = 140}, + [539] = {.lex_state = 160}, [540] = {.lex_state = 142}, - [541] = {.lex_state = 140}, - [542] = {.lex_state = 142}, - [543] = {.lex_state = 143}, - [544] = {.lex_state = 140}, - [545] = {.lex_state = 139}, - [546] = {.lex_state = 144}, - [547] = {.lex_state = 144}, - [548] = {.lex_state = 142}, - [549] = {.lex_state = 140}, - [550] = {.lex_state = 140}, - [551] = {.lex_state = 142}, - [552] = {.lex_state = 142}, - [553] = {.lex_state = 142}, - [554] = {.lex_state = 142}, - [555] = {.lex_state = 140}, - [556] = {.lex_state = 140}, - [557] = {.lex_state = 139}, - [558] = {.lex_state = 140}, - [559] = {.lex_state = 140}, - [560] = {.lex_state = 145}, - [561] = {.lex_state = 145}, - [562] = {.lex_state = 139}, - [563] = {.lex_state = 140}, - [564] = {.lex_state = 145}, + [541] = {.lex_state = 142}, + [542] = {.lex_state = 141}, + [543] = {.lex_state = 138}, + [544] = {.lex_state = 141}, + [545] = {.lex_state = 142}, + [546] = {.lex_state = 138}, + [547] = {.lex_state = 142}, + [548] = {.lex_state = 141}, + [549] = {.lex_state = 138}, + [550] = {.lex_state = 143}, + [551] = {.lex_state = 143}, + [552] = {.lex_state = 143}, + [553] = {.lex_state = 143}, + [554] = {.lex_state = 141}, + [555] = {.lex_state = 144}, + [556] = {.lex_state = 141}, + [557] = {.lex_state = 141}, + [558] = {.lex_state = 144}, + [559] = {.lex_state = 141}, + [560] = {.lex_state = 143}, + [561] = {.lex_state = 143}, + [562] = {.lex_state = 143}, + [563] = {.lex_state = 143}, + [564] = {.lex_state = 143}, [565] = {.lex_state = 140}, - [566] = {.lex_state = 139}, - [567] = {.lex_state = 140}, - [568] = {.lex_state = 145}, - [569] = {.lex_state = 140}, - [570] = {.lex_state = 145}, - [571] = {.lex_state = 140}, - [572] = {.lex_state = 145}, + [566] = {.lex_state = 145}, + [567] = {.lex_state = 143}, + [568] = {.lex_state = 141}, + [569] = {.lex_state = 146}, + [570] = {.lex_state = 141}, + [571] = {.lex_state = 141}, + [572] = {.lex_state = 141}, [573] = {.lex_state = 140}, - [574] = {.lex_state = 140}, - [575] = {.lex_state = 139}, + [574] = {.lex_state = 141}, + [575] = {.lex_state = 141}, [576] = {.lex_state = 140}, - [577] = {.lex_state = 140}, - [578] = {.lex_state = 143}, - [579] = {.lex_state = 140}, - [580] = {.lex_state = 139}, - [581] = {.lex_state = 139}, - [582] = {.lex_state = 143}, - [583] = {.lex_state = 143}, - [584] = {.lex_state = 143}, - [585] = {.lex_state = 139}, - [586] = {.lex_state = 140}, - [587] = {.lex_state = 143}, - [588] = {.lex_state = 143}, - [589] = {.lex_state = 143}, - [590] = {.lex_state = 143}, - [591] = {.lex_state = 143}, + [577] = {.lex_state = 141}, + [578] = {.lex_state = 146}, + [579] = {.lex_state = 141}, + [580] = {.lex_state = 140}, + [581] = {.lex_state = 146}, + [582] = {.lex_state = 141}, + [583] = {.lex_state = 141}, + [584] = {.lex_state = 146}, + [585] = {.lex_state = 141}, + [586] = {.lex_state = 146}, + [587] = {.lex_state = 146}, + [588] = {.lex_state = 140}, + [589] = {.lex_state = 141}, + [590] = {.lex_state = 145}, + [591] = {.lex_state = 140}, [592] = {.lex_state = 143}, - [593] = {.lex_state = 142}, - [594] = {.lex_state = 142}, - [595] = {.lex_state = 143}, - [596] = {.lex_state = 139}, - [597] = {.lex_state = 143}, - [598] = {.lex_state = 143}, + [593] = {.lex_state = 145}, + [594] = {.lex_state = 145}, + [595] = {.lex_state = 145}, + [596] = {.lex_state = 145}, + [597] = {.lex_state = 145}, + [598] = {.lex_state = 145}, [599] = {.lex_state = 143}, - [600] = {.lex_state = 142}, - [601] = {.lex_state = 143}, - [602] = {.lex_state = 142}, - [603] = {.lex_state = 142}, - [604] = {.lex_state = 139}, - [605] = {.lex_state = 142}, - [606] = {.lex_state = 140}, - [607] = {.lex_state = 143}, - [608] = {.lex_state = 143}, - [609] = {.lex_state = 140}, - [610] = {.lex_state = 143}, - [611] = {.lex_state = 142}, - [612] = {.lex_state = 140}, - [613] = {.lex_state = 142}, - [614] = {.lex_state = 140}, - [615] = {.lex_state = 139}, - [616] = {.lex_state = 142}, - [617] = {.lex_state = 142}, - [618] = {.lex_state = 139}, - [619] = {.lex_state = 142}, - [620] = {.lex_state = 139}, - [621] = {.lex_state = 142}, - [622] = {.lex_state = 142}, - [623] = {.lex_state = 142}, - [624] = {.lex_state = 139}, - [625] = {.lex_state = 142}, - [626] = {.lex_state = 139}, - [627] = {.lex_state = 142}, - [628] = {.lex_state = 139}, - [629] = {.lex_state = 142}, - [630] = {.lex_state = 139}, - [631] = {.lex_state = 139}, - [632] = {.lex_state = 139}, - [633] = {.lex_state = 142}, - [634] = {.lex_state = 139}, - [635] = {.lex_state = 142}, - [636] = {.lex_state = 142}, - [637] = {.lex_state = 142}, - [638] = {.lex_state = 139}, - [639] = {.lex_state = 142}, - [640] = {.lex_state = 139}, - [641] = {.lex_state = 142}, - [642] = {.lex_state = 142}, - [643] = {.lex_state = 139}, - [644] = {.lex_state = 139}, - [645] = {.lex_state = 139}, - [646] = {.lex_state = 142}, - [647] = {.lex_state = 139}, - [648] = {.lex_state = 142}, - [649] = {.lex_state = 139}, - [650] = {.lex_state = 139}, - [651] = {.lex_state = 139}, - [652] = {.lex_state = 139}, - [653] = {.lex_state = 142}, - [654] = {.lex_state = 142}, - [655] = {.lex_state = 142}, - [656] = {.lex_state = 134}, - [657] = {.lex_state = 142}, - [658] = {.lex_state = 142}, - [659] = {.lex_state = 142}, - [660] = {.lex_state = 142}, - [661] = {.lex_state = 134}, - [662] = {.lex_state = 142}, - [663] = {.lex_state = 142}, - [664] = {.lex_state = 134}, - [665] = {.lex_state = 142}, - [666] = {.lex_state = 146}, - [667] = {.lex_state = 137}, - [668] = {.lex_state = 137}, - [669] = {.lex_state = 146}, - [670] = {.lex_state = 146}, - [671] = {.lex_state = 137}, - [672] = {.lex_state = 146}, - [673] = {.lex_state = 146}, - [674] = {.lex_state = 146}, - [675] = {.lex_state = 146}, - [676] = {.lex_state = 146}, - [677] = {.lex_state = 146}, - [678] = {.lex_state = 146}, - [679] = {.lex_state = 146}, - [680] = {.lex_state = 146}, - [681] = {.lex_state = 146}, - [682] = {.lex_state = 147}, - [683] = {.lex_state = 146}, - [684] = {.lex_state = 146}, - [685] = {.lex_state = 146}, - [686] = {.lex_state = 146}, - [687] = {.lex_state = 146}, - [688] = {.lex_state = 146}, - [689] = {.lex_state = 146}, - [690] = {.lex_state = 146}, - [691] = {.lex_state = 146}, - [692] = {.lex_state = 146}, - [693] = {.lex_state = 146}, - [694] = {.lex_state = 146}, - [695] = {.lex_state = 146}, - [696] = {.lex_state = 146}, - [697] = {.lex_state = 146}, - [698] = {.lex_state = 146}, - [699] = {.lex_state = 146}, - [700] = {.lex_state = 143}, - [701] = {.lex_state = 143}, - [702] = {.lex_state = 143}, - [703] = {.lex_state = 146}, - [704] = {.lex_state = 146}, - [705] = {.lex_state = 143}, - [706] = {.lex_state = 146}, - [707] = {.lex_state = 147}, - [708] = {.lex_state = 147}, - [709] = {.lex_state = 146}, - [710] = {.lex_state = 139}, - [711] = {.lex_state = 146}, - [712] = {.lex_state = 146}, - [713] = {.lex_state = 146}, - [714] = {.lex_state = 146}, - [715] = {.lex_state = 146}, - [716] = {.lex_state = 146}, - [717] = {.lex_state = 146}, - [718] = {.lex_state = 146}, - [719] = {.lex_state = 143}, - [720] = {.lex_state = 143}, - [721] = {.lex_state = 146}, - [722] = {.lex_state = 143}, - [723] = {.lex_state = 143}, - [724] = {.lex_state = 146}, - [725] = {.lex_state = 146}, - [726] = {.lex_state = 146}, - [727] = {.lex_state = 146}, - [728] = {.lex_state = 146}, - [729] = {.lex_state = 143}, - [730] = {.lex_state = 146}, - [731] = {.lex_state = 146}, - [732] = {.lex_state = 146}, - [733] = {.lex_state = 146}, - [734] = {.lex_state = 146}, - [735] = {.lex_state = 146}, - [736] = {.lex_state = 147}, - [737] = {.lex_state = 146}, - [738] = {.lex_state = 146}, - [739] = {.lex_state = 146}, - [740] = {.lex_state = 146}, - [741] = {.lex_state = 146}, - [742] = {.lex_state = 146}, - [743] = {.lex_state = 147}, - [744] = {.lex_state = 139}, - [745] = {.lex_state = 147}, - [746] = {.lex_state = 146}, - [747] = {.lex_state = 143}, - [748] = {.lex_state = 147}, - [749] = {.lex_state = 143}, - [750] = {.lex_state = 143}, - [751] = {.lex_state = 143}, - [752] = {.lex_state = 147}, - [753] = {.lex_state = 139}, - [754] = {.lex_state = 147}, - [755] = {.lex_state = 147}, - [756] = {.lex_state = 147}, - [757] = {.lex_state = 147}, - [758] = {.lex_state = 147}, - [759] = {.lex_state = 143}, - [760] = {.lex_state = 139}, - [761] = {.lex_state = 147}, - [762] = {.lex_state = 147}, - [763] = {.lex_state = 147}, - [764] = {.lex_state = 147}, - [765] = {.lex_state = 143}, - [766] = {.lex_state = 143}, - [767] = {.lex_state = 147}, - [768] = {.lex_state = 147}, - [769] = {.lex_state = 147}, - [770] = {.lex_state = 147}, - [771] = {.lex_state = 146}, - [772] = {.lex_state = 147}, - [773] = {.lex_state = 147}, - [774] = {.lex_state = 147}, - [775] = {.lex_state = 139}, - [776] = {.lex_state = 147}, - [777] = {.lex_state = 147}, - [778] = {.lex_state = 146}, - [779] = {.lex_state = 143}, - [780] = {.lex_state = 147}, - [781] = {.lex_state = 147}, - [782] = {.lex_state = 147}, - [783] = {.lex_state = 147}, - [784] = {.lex_state = 147}, - [785] = {.lex_state = 146}, - [786] = {.lex_state = 143}, - [787] = {.lex_state = 147}, - [788] = {.lex_state = 147}, - [789] = {.lex_state = 147}, - [790] = {.lex_state = 147}, - [791] = {.lex_state = 147}, - [792] = {.lex_state = 147}, - [793] = {.lex_state = 137}, + [600] = {.lex_state = 143}, + [601] = {.lex_state = 140}, + [602] = {.lex_state = 141}, + [603] = {.lex_state = 145}, + [604] = {.lex_state = 141}, + [605] = {.lex_state = 141}, + [606] = {.lex_state = 145}, + [607] = {.lex_state = 145}, + [608] = {.lex_state = 145}, + [609] = {.lex_state = 145}, + [610] = {.lex_state = 145}, + [611] = {.lex_state = 140}, + [612] = {.lex_state = 145}, + [613] = {.lex_state = 143}, + [614] = {.lex_state = 141}, + [615] = {.lex_state = 141}, + [616] = {.lex_state = 145}, + [617] = {.lex_state = 143}, + [618] = {.lex_state = 145}, + [619] = {.lex_state = 143}, + [620] = {.lex_state = 145}, + [621] = {.lex_state = 145}, + [622] = {.lex_state = 141}, + [623] = {.lex_state = 140}, + [624] = {.lex_state = 140}, + [625] = {.lex_state = 140}, + [626] = {.lex_state = 141}, + [627] = {.lex_state = 141}, + [628] = {.lex_state = 143}, + [629] = {.lex_state = 140}, + [630] = {.lex_state = 141}, + [631] = {.lex_state = 140}, + [632] = {.lex_state = 143}, + [633] = {.lex_state = 143}, + [634] = {.lex_state = 143}, + [635] = {.lex_state = 143}, + [636] = {.lex_state = 143}, + [637] = {.lex_state = 143}, + [638] = {.lex_state = 140}, + [639] = {.lex_state = 143}, + [640] = {.lex_state = 140}, + [641] = {.lex_state = 143}, + [642] = {.lex_state = 140}, + [643] = {.lex_state = 140}, + [644] = {.lex_state = 140}, + [645] = {.lex_state = 143}, + [646] = {.lex_state = 143}, + [647] = {.lex_state = 140}, + [648] = {.lex_state = 140}, + [649] = {.lex_state = 140}, + [650] = {.lex_state = 143}, + [651] = {.lex_state = 140}, + [652] = {.lex_state = 143}, + [653] = {.lex_state = 143}, + [654] = {.lex_state = 143}, + [655] = {.lex_state = 140}, + [656] = {.lex_state = 140}, + [657] = {.lex_state = 143}, + [658] = {.lex_state = 140}, + [659] = {.lex_state = 140}, + [660] = {.lex_state = 140}, + [661] = {.lex_state = 143}, + [662] = {.lex_state = 140}, + [663] = {.lex_state = 140}, + [664] = {.lex_state = 143}, + [665] = {.lex_state = 143}, + [666] = {.lex_state = 140}, + [667] = {.lex_state = 143}, + [668] = {.lex_state = 143}, + [669] = {.lex_state = 143}, + [670] = {.lex_state = 135}, + [671] = {.lex_state = 143}, + [672] = {.lex_state = 143}, + [673] = {.lex_state = 143}, + [674] = {.lex_state = 135}, + [675] = {.lex_state = 143}, + [676] = {.lex_state = 143}, + [677] = {.lex_state = 143}, + [678] = {.lex_state = 143}, + [679] = {.lex_state = 135}, + [680] = {.lex_state = 143}, + [681] = {.lex_state = 147}, + [682] = {.lex_state = 148}, + [683] = {.lex_state = 149}, + [684] = {.lex_state = 138}, + [685] = {.lex_state = 149}, + [686] = {.lex_state = 138}, + [687] = {.lex_state = 149}, + [688] = {.lex_state = 138}, + [689] = {.lex_state = 149}, + [690] = {.lex_state = 149}, + [691] = {.lex_state = 149}, + [692] = {.lex_state = 149}, + [693] = {.lex_state = 149}, + [694] = {.lex_state = 149}, + [695] = {.lex_state = 149}, + [696] = {.lex_state = 149}, + [697] = {.lex_state = 149}, + [698] = {.lex_state = 149}, + [699] = {.lex_state = 149}, + [700] = {.lex_state = 149}, + [701] = {.lex_state = 149}, + [702] = {.lex_state = 150}, + [703] = {.lex_state = 149}, + [704] = {.lex_state = 149}, + [705] = {.lex_state = 149}, + [706] = {.lex_state = 149}, + [707] = {.lex_state = 149}, + [708] = {.lex_state = 149}, + [709] = {.lex_state = 149}, + [710] = {.lex_state = 149}, + [711] = {.lex_state = 149}, + [712] = {.lex_state = 149}, + [713] = {.lex_state = 149}, + [714] = {.lex_state = 147}, + [715] = {.lex_state = 149}, + [716] = {.lex_state = 145}, + [717] = {.lex_state = 147}, + [718] = {.lex_state = 149}, + [719] = {.lex_state = 149}, + [720] = {.lex_state = 147}, + [721] = {.lex_state = 149}, + [722] = {.lex_state = 149}, + [723] = {.lex_state = 149}, + [724] = {.lex_state = 149}, + [725] = {.lex_state = 149}, + [726] = {.lex_state = 149}, + [727] = {.lex_state = 149}, + [728] = {.lex_state = 149}, + [729] = {.lex_state = 149}, + [730] = {.lex_state = 149}, + [731] = {.lex_state = 149}, + [732] = {.lex_state = 149}, + [733] = {.lex_state = 149}, + [734] = {.lex_state = 145}, + [735] = {.lex_state = 149}, + [736] = {.lex_state = 149}, + [737] = {.lex_state = 145}, + [738] = {.lex_state = 149}, + [739] = {.lex_state = 149}, + [740] = {.lex_state = 145}, + [741] = {.lex_state = 149}, + [742] = {.lex_state = 140}, + [743] = {.lex_state = 145}, + [744] = {.lex_state = 145}, + [745] = {.lex_state = 145}, + [746] = {.lex_state = 145}, + [747] = {.lex_state = 149}, + [748] = {.lex_state = 149}, + [749] = {.lex_state = 149}, + [750] = {.lex_state = 149}, + [751] = {.lex_state = 149}, + [752] = {.lex_state = 149}, + [753] = {.lex_state = 149}, + [754] = {.lex_state = 149}, + [755] = {.lex_state = 149}, + [756] = {.lex_state = 145}, + [757] = {.lex_state = 149}, + [758] = {.lex_state = 149}, + [759] = {.lex_state = 149}, + [760] = {.lex_state = 150}, + [761] = {.lex_state = 140}, + [762] = {.lex_state = 150}, + [763] = {.lex_state = 150}, + [764] = {.lex_state = 150}, + [765] = {.lex_state = 150}, + [766] = {.lex_state = 150}, + [767] = {.lex_state = 150}, + [768] = {.lex_state = 145}, + [769] = {.lex_state = 150}, + [770] = {.lex_state = 145}, + [771] = {.lex_state = 150}, + [772] = {.lex_state = 150}, + [773] = {.lex_state = 150}, + [774] = {.lex_state = 150}, + [775] = {.lex_state = 150}, + [776] = {.lex_state = 145}, + [777] = {.lex_state = 150}, + [778] = {.lex_state = 150}, + [779] = {.lex_state = 149}, + [780] = {.lex_state = 145}, + [781] = {.lex_state = 150}, + [782] = {.lex_state = 150}, + [783] = {.lex_state = 150}, + [784] = {.lex_state = 150}, + [785] = {.lex_state = 150}, + [786] = {.lex_state = 150}, + [787] = {.lex_state = 150}, + [788] = {.lex_state = 150}, + [789] = {.lex_state = 145}, + [790] = {.lex_state = 150}, + [791] = {.lex_state = 140}, + [792] = {.lex_state = 150}, + [793] = {.lex_state = 145}, [794] = {.lex_state = 147}, - [795] = {.lex_state = 147}, - [796] = {.lex_state = 147}, - [797] = {.lex_state = 137}, - [798] = {.lex_state = 147}, - [799] = {.lex_state = 147}, - [800] = {.lex_state = 147}, - [801] = {.lex_state = 137}, - [802] = {.lex_state = 147}, - [803] = {.lex_state = 147}, - [804] = {.lex_state = 147}, - [805] = {.lex_state = 148}, - [806] = {.lex_state = 148}, + [795] = {.lex_state = 145}, + [796] = {.lex_state = 140}, + [797] = {.lex_state = 150}, + [798] = {.lex_state = 149}, + [799] = {.lex_state = 149}, + [800] = {.lex_state = 149}, + [801] = {.lex_state = 150}, + [802] = {.lex_state = 145}, + [803] = {.lex_state = 150}, + [804] = {.lex_state = 140}, + [805] = {.lex_state = 138}, + [806] = {.lex_state = 138}, [807] = {.lex_state = 147}, - [808] = {.lex_state = 137}, - [809] = {.lex_state = 148}, + [808] = {.lex_state = 147}, + [809] = {.lex_state = 147}, [810] = {.lex_state = 147}, - [811] = {.lex_state = 137}, + [811] = {.lex_state = 147}, [812] = {.lex_state = 147}, [813] = {.lex_state = 147}, - [814] = {.lex_state = 149}, - [815] = {.lex_state = 147}, + [814] = {.lex_state = 147}, + [815] = {.lex_state = 138}, [816] = {.lex_state = 147}, - [817] = {.lex_state = 148}, - [818] = {.lex_state = 149}, + [817] = {.lex_state = 147}, + [818] = {.lex_state = 147}, [819] = {.lex_state = 147}, - [820] = {.lex_state = 137}, - [821] = {.lex_state = 149}, - [822] = {.lex_state = 137}, - [823] = {.lex_state = 137}, - [824] = {.lex_state = 137}, - [825] = {.lex_state = 137}, + [820] = {.lex_state = 147}, + [821] = {.lex_state = 151}, + [822] = {.lex_state = 138}, + [823] = {.lex_state = 151}, + [824] = {.lex_state = 150}, + [825] = {.lex_state = 151}, [826] = {.lex_state = 147}, - [827] = {.lex_state = 137}, - [828] = {.lex_state = 147}, - [829] = {.lex_state = 137}, - [830] = {.lex_state = 137}, - [831] = {.lex_state = 137}, + [827] = {.lex_state = 152}, + [828] = {.lex_state = 138}, + [829] = {.lex_state = 147}, + [830] = {.lex_state = 147}, + [831] = {.lex_state = 151}, [832] = {.lex_state = 147}, - [833] = {.lex_state = 148}, - [834] = {.lex_state = 137}, - [835] = {.lex_state = 137}, - [836] = {.lex_state = 137}, - [837] = {.lex_state = 137}, - [838] = {.lex_state = 137}, - [839] = {.lex_state = 137}, - [840] = {.lex_state = 137}, - [841] = {.lex_state = 137}, - [842] = {.lex_state = 137}, - [843] = {.lex_state = 137}, - [844] = {.lex_state = 137}, - [845] = {.lex_state = 137}, - [846] = {.lex_state = 137}, - [847] = {.lex_state = 148}, - [848] = {.lex_state = 137}, - [849] = {.lex_state = 137}, - [850] = {.lex_state = 137}, - [851] = {.lex_state = 137}, - [852] = {.lex_state = 148}, - [853] = {.lex_state = 147}, - [854] = {.lex_state = 137}, - [855] = {.lex_state = 137}, - [856] = {.lex_state = 137}, - [857] = {.lex_state = 137}, - [858] = {.lex_state = 147}, - [859] = {.lex_state = 137}, - [860] = {.lex_state = 147}, - [861] = {.lex_state = 148}, - [862] = {.lex_state = 147}, - [863] = {.lex_state = 147}, - [864] = {.lex_state = 147}, - [865] = {.lex_state = 147}, - [866] = {.lex_state = 147}, - [867] = {.lex_state = 137}, - [868] = {.lex_state = 0}, - [869] = {.lex_state = 149}, - [870] = {.lex_state = 137}, - [871] = {.lex_state = 149}, - [872] = {.lex_state = 149}, - [873] = {.lex_state = 137}, - [874] = {.lex_state = 149}, - [875] = {.lex_state = 149}, - [876] = {.lex_state = 149}, - [877] = {.lex_state = 137}, - [878] = {.lex_state = 149}, - [879] = {.lex_state = 149}, - [880] = {.lex_state = 149}, - [881] = {.lex_state = 137}, - [882] = {.lex_state = 149}, - [883] = {.lex_state = 149}, - [884] = {.lex_state = 149}, - [885] = {.lex_state = 137}, - [886] = {.lex_state = 149}, - [887] = {.lex_state = 149}, - [888] = {.lex_state = 147}, - [889] = {.lex_state = 149}, - [890] = {.lex_state = 149}, - [891] = {.lex_state = 0}, - [892] = {.lex_state = 137}, + [833] = {.lex_state = 147}, + [834] = {.lex_state = 147}, + [835] = {.lex_state = 152}, + [836] = {.lex_state = 138}, + [837] = {.lex_state = 147}, + [838] = {.lex_state = 152}, + [839] = {.lex_state = 138}, + [840] = {.lex_state = 138}, + [841] = {.lex_state = 138}, + [842] = {.lex_state = 138}, + [843] = {.lex_state = 138}, + [844] = {.lex_state = 138}, + [845] = {.lex_state = 138}, + [846] = {.lex_state = 150}, + [847] = {.lex_state = 151}, + [848] = {.lex_state = 138}, + [849] = {.lex_state = 151}, + [850] = {.lex_state = 138}, + [851] = {.lex_state = 138}, + [852] = {.lex_state = 138}, + [853] = {.lex_state = 138}, + [854] = {.lex_state = 150}, + [855] = {.lex_state = 138}, + [856] = {.lex_state = 151}, + [857] = {.lex_state = 138}, + [858] = {.lex_state = 138}, + [859] = {.lex_state = 138}, + [860] = {.lex_state = 138}, + [861] = {.lex_state = 150}, + [862] = {.lex_state = 138}, + [863] = {.lex_state = 138}, + [864] = {.lex_state = 138}, + [865] = {.lex_state = 138}, + [866] = {.lex_state = 138}, + [867] = {.lex_state = 138}, + [868] = {.lex_state = 138}, + [869] = {.lex_state = 138}, + [870] = {.lex_state = 138}, + [871] = {.lex_state = 138}, + [872] = {.lex_state = 150}, + [873] = {.lex_state = 150}, + [874] = {.lex_state = 138}, + [875] = {.lex_state = 138}, + [876] = {.lex_state = 138}, + [877] = {.lex_state = 150}, + [878] = {.lex_state = 150}, + [879] = {.lex_state = 151}, + [880] = {.lex_state = 150}, + [881] = {.lex_state = 138}, + [882] = {.lex_state = 152}, + [883] = {.lex_state = 138}, + [884] = {.lex_state = 0}, + [885] = {.lex_state = 152}, + [886] = {.lex_state = 152}, + [887] = {.lex_state = 138}, + [888] = {.lex_state = 152}, + [889] = {.lex_state = 152}, + [890] = {.lex_state = 138}, + [891] = {.lex_state = 138}, + [892] = {.lex_state = 152}, [893] = {.lex_state = 0}, - [894] = {.lex_state = 147}, - [895] = {.lex_state = 0}, - [896] = {.lex_state = 0}, - [897] = {.lex_state = 148}, - [898] = {.lex_state = 0}, - [899] = {.lex_state = 0}, - [900] = {.lex_state = 148}, - [901] = {.lex_state = 0}, - [902] = {.lex_state = 0}, - [903] = {.lex_state = 0}, - [904] = {.lex_state = 0}, - [905] = {.lex_state = 137}, - [906] = {.lex_state = 147}, - [907] = {.lex_state = 135}, - [908] = {.lex_state = 0}, + [894] = {.lex_state = 152}, + [895] = {.lex_state = 152}, + [896] = {.lex_state = 152}, + [897] = {.lex_state = 152}, + [898] = {.lex_state = 152}, + [899] = {.lex_state = 152}, + [900] = {.lex_state = 152}, + [901] = {.lex_state = 150}, + [902] = {.lex_state = 152}, + [903] = {.lex_state = 152}, + [904] = {.lex_state = 138}, + [905] = {.lex_state = 152}, + [906] = {.lex_state = 138}, + [907] = {.lex_state = 0}, + [908] = {.lex_state = 152}, [909] = {.lex_state = 0}, [910] = {.lex_state = 0}, [911] = {.lex_state = 0}, - [912] = {.lex_state = 149}, - [913] = {.lex_state = 0}, - [914] = {.lex_state = 137}, - [915] = {.lex_state = 137}, - [916] = {.lex_state = 149}, - [917] = {.lex_state = 149}, - [918] = {.lex_state = 149}, - [919] = {.lex_state = 137, .external_lex_state = 1}, - [920] = {.lex_state = 149}, - [921] = {.lex_state = 137}, - [922] = {.lex_state = 147}, - [923] = {.lex_state = 137}, - [924] = {.lex_state = 137, .external_lex_state = 1}, - [925] = {.lex_state = 137, .external_lex_state = 1}, - [926] = {.lex_state = 137}, - [927] = {.lex_state = 137, .external_lex_state = 1}, - [928] = {.lex_state = 137, .external_lex_state = 1}, - [929] = {.lex_state = 137}, - [930] = {.lex_state = 149}, - [931] = {.lex_state = 149}, - [932] = {.lex_state = 0}, - [933] = {.lex_state = 137, .external_lex_state = 1}, - [934] = {.lex_state = 137}, - [935] = {.lex_state = 137, .external_lex_state = 1}, - [936] = {.lex_state = 137}, - [937] = {.lex_state = 0}, - [938] = {.lex_state = 137, .external_lex_state = 1}, - [939] = {.lex_state = 0}, - [940] = {.lex_state = 137, .external_lex_state = 1}, - [941] = {.lex_state = 0}, - [942] = {.lex_state = 0}, + [912] = {.lex_state = 138}, + [913] = {.lex_state = 136}, + [914] = {.lex_state = 150}, + [915] = {.lex_state = 0}, + [916] = {.lex_state = 0}, + [917] = {.lex_state = 0}, + [918] = {.lex_state = 151}, + [919] = {.lex_state = 0}, + [920] = {.lex_state = 150}, + [921] = {.lex_state = 0}, + [922] = {.lex_state = 151}, + [923] = {.lex_state = 0}, + [924] = {.lex_state = 0}, + [925] = {.lex_state = 138}, + [926] = {.lex_state = 0}, + [927] = {.lex_state = 150}, + [928] = {.lex_state = 0}, + [929] = {.lex_state = 0}, + [930] = {.lex_state = 138}, + [931] = {.lex_state = 150}, + [932] = {.lex_state = 138}, + [933] = {.lex_state = 152}, + [934] = {.lex_state = 138, .external_lex_state = 1}, + [935] = {.lex_state = 138, .external_lex_state = 1}, + [936] = {.lex_state = 0}, + [937] = {.lex_state = 150}, + [938] = {.lex_state = 138, .external_lex_state = 1}, + [939] = {.lex_state = 138}, + [940] = {.lex_state = 138}, + [941] = {.lex_state = 138, .external_lex_state = 1}, + [942] = {.lex_state = 138, .external_lex_state = 1}, [943] = {.lex_state = 0}, - [944] = {.lex_state = 148}, - [945] = {.lex_state = 137}, - [946] = {.lex_state = 137}, - [947] = {.lex_state = 0}, - [948] = {.lex_state = 149}, - [949] = {.lex_state = 137, .external_lex_state = 1}, - [950] = {.lex_state = 0}, - [951] = {.lex_state = 137}, + [944] = {.lex_state = 138}, + [945] = {.lex_state = 138}, + [946] = {.lex_state = 152}, + [947] = {.lex_state = 138, .external_lex_state = 1}, + [948] = {.lex_state = 138}, + [949] = {.lex_state = 138, .external_lex_state = 1}, + [950] = {.lex_state = 138}, + [951] = {.lex_state = 0}, [952] = {.lex_state = 0}, - [953] = {.lex_state = 147}, - [954] = {.lex_state = 0}, - [955] = {.lex_state = 0}, - [956] = {.lex_state = 137}, + [953] = {.lex_state = 0}, + [954] = {.lex_state = 152}, + [955] = {.lex_state = 138, .external_lex_state = 1}, + [956] = {.lex_state = 138}, [957] = {.lex_state = 0}, [958] = {.lex_state = 0}, - [959] = {.lex_state = 137, .external_lex_state = 1}, - [960] = {.lex_state = 149}, - [961] = {.lex_state = 137, .external_lex_state = 1}, - [962] = {.lex_state = 137}, - [963] = {.lex_state = 137}, - [964] = {.lex_state = 137, .external_lex_state = 1}, - [965] = {.lex_state = 137}, - [966] = {.lex_state = 149}, - [967] = {.lex_state = 147}, - [968] = {.lex_state = 149}, - [969] = {.lex_state = 0}, + [959] = {.lex_state = 138, .external_lex_state = 1}, + [960] = {.lex_state = 0}, + [961] = {.lex_state = 138}, + [962] = {.lex_state = 138}, + [963] = {.lex_state = 138, .external_lex_state = 1}, + [964] = {.lex_state = 150}, + [965] = {.lex_state = 138, .external_lex_state = 1}, + [966] = {.lex_state = 152}, + [967] = {.lex_state = 152}, + [968] = {.lex_state = 0}, + [969] = {.lex_state = 147}, [970] = {.lex_state = 0}, - [971] = {.lex_state = 0}, - [972] = {.lex_state = 0}, - [973] = {.lex_state = 143}, - [974] = {.lex_state = 135}, + [971] = {.lex_state = 138}, + [972] = {.lex_state = 151}, + [973] = {.lex_state = 0}, + [974] = {.lex_state = 0}, [975] = {.lex_state = 0}, - [976] = {.lex_state = 0}, - [977] = {.lex_state = 0}, - [978] = {.lex_state = 0}, - [979] = {.lex_state = 137}, - [980] = {.lex_state = 149}, - [981] = {.lex_state = 0}, - [982] = {.lex_state = 0}, - [983] = {.lex_state = 0}, - [984] = {.lex_state = 135}, - [985] = {.lex_state = 0}, - [986] = {.lex_state = 157}, + [976] = {.lex_state = 138}, + [977] = {.lex_state = 138}, + [978] = {.lex_state = 152}, + [979] = {.lex_state = 152}, + [980] = {.lex_state = 138, .external_lex_state = 1}, + [981] = {.lex_state = 138, .external_lex_state = 1}, + [982] = {.lex_state = 138}, + [983] = {.lex_state = 152}, + [984] = {.lex_state = 152}, + [985] = {.lex_state = 152}, + [986] = {.lex_state = 0}, [987] = {.lex_state = 0}, - [988] = {.lex_state = 137}, - [989] = {.lex_state = 149}, - [990] = {.lex_state = 137}, + [988] = {.lex_state = 0}, + [989] = {.lex_state = 0}, + [990] = {.lex_state = 0}, [991] = {.lex_state = 0}, [992] = {.lex_state = 0}, - [993] = {.lex_state = 0}, - [994] = {.lex_state = 157}, - [995] = {.lex_state = 137}, + [993] = {.lex_state = 136}, + [994] = {.lex_state = 0}, + [995] = {.lex_state = 0}, [996] = {.lex_state = 0}, - [997] = {.lex_state = 135}, - [998] = {.lex_state = 135}, - [999] = {.lex_state = 135}, - [1000] = {.lex_state = 135}, + [997] = {.lex_state = 0}, + [998] = {.lex_state = 152}, + [999] = {.lex_state = 0}, + [1000] = {.lex_state = 0}, [1001] = {.lex_state = 0}, [1002] = {.lex_state = 0}, - [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 = 0}, + [1003] = {.lex_state = 136}, + [1004] = {.lex_state = 138}, + [1005] = {.lex_state = 136}, + [1006] = {.lex_state = 136}, + [1007] = {.lex_state = 136}, + [1008] = {.lex_state = 136}, + [1009] = {.lex_state = 138}, [1010] = {.lex_state = 0}, [1011] = {.lex_state = 0}, [1012] = {.lex_state = 0}, [1013] = {.lex_state = 0}, - [1014] = {.lex_state = 137}, + [1014] = {.lex_state = 0}, [1015] = {.lex_state = 0}, - [1016] = {.lex_state = 135}, - [1017] = {.lex_state = 135}, + [1016] = {.lex_state = 0}, + [1017] = {.lex_state = 0}, [1018] = {.lex_state = 0}, - [1019] = {.lex_state = 0}, + [1019] = {.lex_state = 160}, [1020] = {.lex_state = 0}, [1021] = {.lex_state = 0}, - [1022] = {.lex_state = 135}, + [1022] = {.lex_state = 0}, [1023] = {.lex_state = 0}, [1024] = {.lex_state = 0}, [1025] = {.lex_state = 0}, @@ -6060,254 +6110,254 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1028] = {.lex_state = 0}, [1029] = {.lex_state = 0}, [1030] = {.lex_state = 0}, - [1031] = {.lex_state = 135}, - [1032] = {.lex_state = 0}, - [1033] = {.lex_state = 0}, - [1034] = {.lex_state = 137}, - [1035] = {.lex_state = 135}, - [1036] = {.lex_state = 0}, - [1037] = {.lex_state = 0}, - [1038] = {.lex_state = 0}, + [1031] = {.lex_state = 0}, + [1032] = {.lex_state = 138}, + [1033] = {.lex_state = 138}, + [1034] = {.lex_state = 0}, + [1035] = {.lex_state = 0}, + [1036] = {.lex_state = 136}, + [1037] = {.lex_state = 136}, + [1038] = {.lex_state = 136}, [1039] = {.lex_state = 0}, - [1040] = {.lex_state = 135}, - [1041] = {.lex_state = 149}, - [1042] = {.lex_state = 135}, + [1040] = {.lex_state = 0}, + [1041] = {.lex_state = 138}, + [1042] = {.lex_state = 0}, [1043] = {.lex_state = 0}, - [1044] = {.lex_state = 0}, + [1044] = {.lex_state = 136}, [1045] = {.lex_state = 0}, [1046] = {.lex_state = 0}, [1047] = {.lex_state = 0}, - [1048] = {.lex_state = 0}, - [1049] = {.lex_state = 137}, + [1048] = {.lex_state = 136}, + [1049] = {.lex_state = 0}, [1050] = {.lex_state = 0}, [1051] = {.lex_state = 0}, - [1052] = {.lex_state = 0}, - [1053] = {.lex_state = 137}, - [1054] = {.lex_state = 137}, - [1055] = {.lex_state = 135}, - [1056] = {.lex_state = 137}, - [1057] = {.lex_state = 135}, + [1052] = {.lex_state = 145}, + [1053] = {.lex_state = 136}, + [1054] = {.lex_state = 136}, + [1055] = {.lex_state = 0}, + [1056] = {.lex_state = 0}, + [1057] = {.lex_state = 0}, [1058] = {.lex_state = 0}, - [1059] = {.lex_state = 135}, - [1060] = {.lex_state = 135}, - [1061] = {.lex_state = 135}, + [1059] = {.lex_state = 0}, + [1060] = {.lex_state = 0}, + [1061] = {.lex_state = 152}, [1062] = {.lex_state = 0}, [1063] = {.lex_state = 0}, - [1064] = {.lex_state = 137}, + [1064] = {.lex_state = 0}, [1065] = {.lex_state = 0}, [1066] = {.lex_state = 0}, - [1067] = {.lex_state = 157}, + [1067] = {.lex_state = 136}, [1068] = {.lex_state = 0}, [1069] = {.lex_state = 0}, - [1070] = {.lex_state = 135}, - [1071] = {.lex_state = 0}, - [1072] = {.lex_state = 135}, + [1070] = {.lex_state = 136}, + [1071] = {.lex_state = 136}, + [1072] = {.lex_state = 0}, [1073] = {.lex_state = 0}, - [1074] = {.lex_state = 0}, + [1074] = {.lex_state = 138}, [1075] = {.lex_state = 0}, - [1076] = {.lex_state = 0}, - [1077] = {.lex_state = 135}, - [1078] = {.lex_state = 0}, - [1079] = {.lex_state = 0}, - [1080] = {.lex_state = 135}, - [1081] = {.lex_state = 135}, + [1076] = {.lex_state = 138}, + [1077] = {.lex_state = 0}, + [1078] = {.lex_state = 152}, + [1079] = {.lex_state = 136}, + [1080] = {.lex_state = 150}, + [1081] = {.lex_state = 0}, [1082] = {.lex_state = 0}, [1083] = {.lex_state = 0}, - [1084] = {.lex_state = 0}, - [1085] = {.lex_state = 135}, + [1084] = {.lex_state = 160}, + [1085] = {.lex_state = 0}, [1086] = {.lex_state = 0}, - [1087] = {.lex_state = 157}, - [1088] = {.lex_state = 0}, + [1087] = {.lex_state = 136}, + [1088] = {.lex_state = 136}, [1089] = {.lex_state = 0}, - [1090] = {.lex_state = 0}, - [1091] = {.lex_state = 0}, - [1092] = {.lex_state = 149}, + [1090] = {.lex_state = 136}, + [1091] = {.lex_state = 136}, + [1092] = {.lex_state = 0}, [1093] = {.lex_state = 0}, - [1094] = {.lex_state = 0}, - [1095] = {.lex_state = 149}, - [1096] = {.lex_state = 149}, - [1097] = {.lex_state = 0}, + [1094] = {.lex_state = 136}, + [1095] = {.lex_state = 0}, + [1096] = {.lex_state = 0}, + [1097] = {.lex_state = 136}, [1098] = {.lex_state = 0}, - [1099] = {.lex_state = 0}, + [1099] = {.lex_state = 160}, [1100] = {.lex_state = 0}, [1101] = {.lex_state = 0}, - [1102] = {.lex_state = 135}, - [1103] = {.lex_state = 135}, + [1102] = {.lex_state = 0}, + [1103] = {.lex_state = 138}, [1104] = {.lex_state = 0}, - [1105] = {.lex_state = 0}, - [1106] = {.lex_state = 0}, - [1107] = {.lex_state = 0}, + [1105] = {.lex_state = 152}, + [1106] = {.lex_state = 138}, + [1107] = {.lex_state = 138}, [1108] = {.lex_state = 0}, - [1109] = {.lex_state = 0}, + [1109] = {.lex_state = 136}, [1110] = {.lex_state = 0}, [1111] = {.lex_state = 0}, - [1112] = {.lex_state = 0}, - [1113] = {.lex_state = 0}, - [1114] = {.lex_state = 0}, + [1112] = {.lex_state = 136}, + [1113] = {.lex_state = 136}, + [1114] = {.lex_state = 136}, [1115] = {.lex_state = 0}, - [1116] = {.lex_state = 0}, - [1117] = {.lex_state = 147}, - [1118] = {.lex_state = 0}, - [1119] = {.lex_state = 149}, + [1116] = {.lex_state = 160}, + [1117] = {.lex_state = 0}, + [1118] = {.lex_state = 152}, + [1119] = {.lex_state = 152}, [1120] = {.lex_state = 0}, [1121] = {.lex_state = 0}, [1122] = {.lex_state = 0}, [1123] = {.lex_state = 0}, [1124] = {.lex_state = 0}, [1125] = {.lex_state = 0}, - [1126] = {.lex_state = 149}, - [1127] = {.lex_state = 149}, + [1126] = {.lex_state = 0}, + [1127] = {.lex_state = 0}, [1128] = {.lex_state = 0}, [1129] = {.lex_state = 0}, - [1130] = {.lex_state = 149}, + [1130] = {.lex_state = 0}, [1131] = {.lex_state = 0}, [1132] = {.lex_state = 0}, - [1133] = {.lex_state = 149}, + [1133] = {.lex_state = 152}, [1134] = {.lex_state = 0}, - [1135] = {.lex_state = 0}, + [1135] = {.lex_state = 138}, [1136] = {.lex_state = 0}, - [1137] = {.lex_state = 149}, + [1137] = {.lex_state = 0}, [1138] = {.lex_state = 0}, [1139] = {.lex_state = 0}, [1140] = {.lex_state = 0}, [1141] = {.lex_state = 0}, [1142] = {.lex_state = 0}, - [1143] = {.lex_state = 135}, - [1144] = {.lex_state = 135}, - [1145] = {.lex_state = 0}, - [1146] = {.lex_state = 149}, + [1143] = {.lex_state = 0}, + [1144] = {.lex_state = 152}, + [1145] = {.lex_state = 136}, + [1146] = {.lex_state = 152}, [1147] = {.lex_state = 0}, - [1148] = {.lex_state = 135}, - [1149] = {.lex_state = 137}, + [1148] = {.lex_state = 0}, + [1149] = {.lex_state = 0}, [1150] = {.lex_state = 0}, - [1151] = {.lex_state = 0}, - [1152] = {.lex_state = 0}, + [1151] = {.lex_state = 152}, + [1152] = {.lex_state = 152}, [1153] = {.lex_state = 0}, [1154] = {.lex_state = 0}, [1155] = {.lex_state = 0}, - [1156] = {.lex_state = 149}, + [1156] = {.lex_state = 0}, [1157] = {.lex_state = 0}, - [1158] = {.lex_state = 0}, - [1159] = {.lex_state = 149}, + [1158] = {.lex_state = 152}, + [1159] = {.lex_state = 0}, [1160] = {.lex_state = 0}, [1161] = {.lex_state = 0}, [1162] = {.lex_state = 0}, [1163] = {.lex_state = 0}, - [1164] = {.lex_state = 0}, + [1164] = {.lex_state = 138}, [1165] = {.lex_state = 0}, [1166] = {.lex_state = 0}, - [1167] = {.lex_state = 0}, + [1167] = {.lex_state = 152}, [1168] = {.lex_state = 0}, [1169] = {.lex_state = 0}, - [1170] = {.lex_state = 0}, - [1171] = {.lex_state = 0}, + [1170] = {.lex_state = 136}, + [1171] = {.lex_state = 152}, [1172] = {.lex_state = 0}, [1173] = {.lex_state = 0}, [1174] = {.lex_state = 0}, - [1175] = {.lex_state = 149}, + [1175] = {.lex_state = 0}, [1176] = {.lex_state = 0}, - [1177] = {.lex_state = 0}, + [1177] = {.lex_state = 152}, [1178] = {.lex_state = 0}, - [1179] = {.lex_state = 137}, - [1180] = {.lex_state = 0}, + [1179] = {.lex_state = 0}, + [1180] = {.lex_state = 152}, [1181] = {.lex_state = 0}, - [1182] = {.lex_state = 157}, + [1182] = {.lex_state = 0}, [1183] = {.lex_state = 0}, [1184] = {.lex_state = 0}, - [1185] = {.lex_state = 135}, - [1186] = {.lex_state = 157}, + [1185] = {.lex_state = 0}, + [1186] = {.lex_state = 152}, [1187] = {.lex_state = 0}, [1188] = {.lex_state = 0}, - [1189] = {.lex_state = 0}, - [1190] = {.lex_state = 137}, - [1191] = {.lex_state = 135}, - [1192] = {.lex_state = 0}, - [1193] = {.lex_state = 157}, + [1189] = {.lex_state = 138}, + [1190] = {.lex_state = 0}, + [1191] = {.lex_state = 0}, + [1192] = {.lex_state = 160}, + [1193] = {.lex_state = 0}, [1194] = {.lex_state = 0}, - [1195] = {.lex_state = 0}, - [1196] = {.lex_state = 149}, - [1197] = {.lex_state = 149}, + [1195] = {.lex_state = 160}, + [1196] = {.lex_state = 152}, + [1197] = {.lex_state = 0}, [1198] = {.lex_state = 0}, - [1199] = {.lex_state = 149}, - [1200] = {.lex_state = 149}, - [1201] = {.lex_state = 149}, - [1202] = {.lex_state = 149}, - [1203] = {.lex_state = 149}, - [1204] = {.lex_state = 149}, + [1199] = {.lex_state = 136}, + [1200] = {.lex_state = 0}, + [1201] = {.lex_state = 160}, + [1202] = {.lex_state = 0}, + [1203] = {.lex_state = 152}, + [1204] = {.lex_state = 0}, [1205] = {.lex_state = 0}, [1206] = {.lex_state = 0}, [1207] = {.lex_state = 0}, - [1208] = {.lex_state = 0}, + [1208] = {.lex_state = 138}, [1209] = {.lex_state = 0}, [1210] = {.lex_state = 0}, - [1211] = {.lex_state = 0}, + [1211] = {.lex_state = 160}, [1212] = {.lex_state = 0}, [1213] = {.lex_state = 0}, - [1214] = {.lex_state = 0}, - [1215] = {.lex_state = 0}, - [1216] = {.lex_state = 0}, - [1217] = {.lex_state = 157}, + [1214] = {.lex_state = 152}, + [1215] = {.lex_state = 152}, + [1216] = {.lex_state = 152}, + [1217] = {.lex_state = 152}, [1218] = {.lex_state = 0}, [1219] = {.lex_state = 0}, - [1220] = {.lex_state = 0}, - [1221] = {.lex_state = 0}, - [1222] = {.lex_state = 149}, - [1223] = {.lex_state = 149}, - [1224] = {.lex_state = 157}, + [1220] = {.lex_state = 152}, + [1221] = {.lex_state = 136}, + [1222] = {.lex_state = 0}, + [1223] = {.lex_state = 152}, + [1224] = {.lex_state = 0}, [1225] = {.lex_state = 0}, - [1226] = {.lex_state = 0}, - [1227] = {.lex_state = 137}, + [1226] = {.lex_state = 136}, + [1227] = {.lex_state = 0}, [1228] = {.lex_state = 0}, - [1229] = {.lex_state = 149}, + [1229] = {.lex_state = 0}, [1230] = {.lex_state = 0}, - [1231] = {.lex_state = 149}, + [1231] = {.lex_state = 0}, [1232] = {.lex_state = 0}, - [1233] = {.lex_state = 0}, + [1233] = {.lex_state = 160}, [1234] = {.lex_state = 0}, [1235] = {.lex_state = 0}, - [1236] = {.lex_state = 149}, + [1236] = {.lex_state = 0}, [1237] = {.lex_state = 0}, [1238] = {.lex_state = 0}, [1239] = {.lex_state = 0}, [1240] = {.lex_state = 0}, - [1241] = {.lex_state = 149}, + [1241] = {.lex_state = 0}, [1242] = {.lex_state = 0}, - [1243] = {.lex_state = 157}, - [1244] = {.lex_state = 149}, - [1245] = {.lex_state = 135}, - [1246] = {.lex_state = 0}, - [1247] = {.lex_state = 0}, + [1243] = {.lex_state = 0}, + [1244] = {.lex_state = 0}, + [1245] = {.lex_state = 0}, + [1246] = {.lex_state = 152}, + [1247] = {.lex_state = 160}, [1248] = {.lex_state = 0}, - [1249] = {.lex_state = 149}, + [1249] = {.lex_state = 0}, [1250] = {.lex_state = 0}, [1251] = {.lex_state = 0}, - [1252] = {.lex_state = 0}, - [1253] = {.lex_state = 0}, - [1254] = {.lex_state = 135}, + [1252] = {.lex_state = 152}, + [1253] = {.lex_state = 138}, + [1254] = {.lex_state = 0}, [1255] = {.lex_state = 0}, - [1256] = {.lex_state = 0}, - [1257] = {.lex_state = 0}, + [1256] = {.lex_state = 152}, + [1257] = {.lex_state = 152}, [1258] = {.lex_state = 0}, [1259] = {.lex_state = 0}, [1260] = {.lex_state = 0}, [1261] = {.lex_state = 0}, - [1262] = {.lex_state = 0}, - [1263] = {.lex_state = 135}, + [1262] = {.lex_state = 152}, + [1263] = {.lex_state = 152}, [1264] = {.lex_state = 0}, [1265] = {.lex_state = 0}, - [1266] = {.lex_state = 0}, + [1266] = {.lex_state = 136}, [1267] = {.lex_state = 0}, - [1268] = {.lex_state = 0}, + [1268] = {.lex_state = 152}, [1269] = {.lex_state = 0}, - [1270] = {.lex_state = 0}, + [1270] = {.lex_state = 136}, [1271] = {.lex_state = 0}, - [1272] = {.lex_state = 0}, - [1273] = {.lex_state = 135}, + [1272] = {.lex_state = 136}, + [1273] = {.lex_state = 0}, [1274] = {.lex_state = 0}, [1275] = {.lex_state = 0}, [1276] = {.lex_state = 0}, [1277] = {.lex_state = 0}, - [1278] = {.lex_state = 135}, + [1278] = {.lex_state = 136}, [1279] = {.lex_state = 0}, [1280] = {.lex_state = 0}, [1281] = {.lex_state = 0}, @@ -6319,7 +6369,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1287] = {.lex_state = 0}, [1288] = {.lex_state = 0}, [1289] = {.lex_state = 0}, - [1290] = {.lex_state = 135}, + [1290] = {.lex_state = 0}, [1291] = {.lex_state = 0}, [1292] = {.lex_state = 0}, [1293] = {.lex_state = 0}, @@ -6330,74 +6380,93 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1298] = {.lex_state = 0}, [1299] = {.lex_state = 0}, [1300] = {.lex_state = 0}, - [1301] = {.lex_state = 0}, - [1302] = {.lex_state = 135}, + [1301] = {.lex_state = 136}, + [1302] = {.lex_state = 0}, [1303] = {.lex_state = 0}, [1304] = {.lex_state = 0}, - [1305] = {.lex_state = 135}, + [1305] = {.lex_state = 0}, [1306] = {.lex_state = 0}, [1307] = {.lex_state = 0}, [1308] = {.lex_state = 0}, [1309] = {.lex_state = 0}, [1310] = {.lex_state = 0}, - [1311] = {.lex_state = 135}, + [1311] = {.lex_state = 0}, [1312] = {.lex_state = 0}, [1313] = {.lex_state = 0}, [1314] = {.lex_state = 0}, [1315] = {.lex_state = 0}, [1316] = {.lex_state = 0}, [1317] = {.lex_state = 0}, - [1318] = {.lex_state = 137}, + [1318] = {.lex_state = 136}, [1319] = {.lex_state = 0}, [1320] = {.lex_state = 0}, - [1321] = {.lex_state = 137}, + [1321] = {.lex_state = 136}, [1322] = {.lex_state = 0}, [1323] = {.lex_state = 0}, - [1324] = {.lex_state = 149}, + [1324] = {.lex_state = 136}, [1325] = {.lex_state = 0}, [1326] = {.lex_state = 0}, [1327] = {.lex_state = 0}, - [1328] = {.lex_state = 135}, - [1329] = {.lex_state = 137}, - [1330] = {.lex_state = 135}, + [1328] = {.lex_state = 0}, + [1329] = {.lex_state = 0}, + [1330] = {.lex_state = 0}, [1331] = {.lex_state = 0}, [1332] = {.lex_state = 0}, - [1333] = {.lex_state = 137}, + [1333] = {.lex_state = 0}, [1334] = {.lex_state = 0}, [1335] = {.lex_state = 0}, [1336] = {.lex_state = 0}, [1337] = {.lex_state = 0}, - [1338] = {.lex_state = 135}, + [1338] = {.lex_state = 138}, [1339] = {.lex_state = 0}, [1340] = {.lex_state = 0}, - [1341] = {.lex_state = 0}, - [1342] = {.lex_state = 135}, + [1341] = {.lex_state = 138}, + [1342] = {.lex_state = 0}, [1343] = {.lex_state = 0}, [1344] = {.lex_state = 0}, - [1345] = {.lex_state = 135}, + [1345] = {.lex_state = 0}, [1346] = {.lex_state = 0}, - [1347] = {.lex_state = 0}, - [1348] = {.lex_state = 0}, - [1349] = {.lex_state = 0}, + [1347] = {.lex_state = 136}, + [1348] = {.lex_state = 136}, + [1349] = {.lex_state = 138}, [1350] = {.lex_state = 0}, [1351] = {.lex_state = 0}, [1352] = {.lex_state = 0}, - [1353] = {.lex_state = 0}, - [1354] = {.lex_state = 0}, + [1353] = {.lex_state = 138}, + [1354] = {.lex_state = 152}, [1355] = {.lex_state = 0}, [1356] = {.lex_state = 0}, - [1357] = {.lex_state = 149}, - [1358] = {.lex_state = 0}, - [1359] = {.lex_state = 135}, + [1357] = {.lex_state = 0}, + [1358] = {.lex_state = 136}, + [1359] = {.lex_state = 0}, [1360] = {.lex_state = 0}, [1361] = {.lex_state = 0}, [1362] = {.lex_state = 0}, [1363] = {.lex_state = 0}, - [1364] = {.lex_state = 0}, + [1364] = {.lex_state = 136}, [1365] = {.lex_state = 0}, [1366] = {.lex_state = 0}, - [1367] = {.lex_state = 135}, - [1368] = {.lex_state = 0}, + [1367] = {.lex_state = 0}, + [1368] = {.lex_state = 136}, + [1369] = {.lex_state = 0}, + [1370] = {.lex_state = 0}, + [1371] = {.lex_state = 0}, + [1372] = {.lex_state = 0}, + [1373] = {.lex_state = 152}, + [1374] = {.lex_state = 0}, + [1375] = {.lex_state = 0}, + [1376] = {.lex_state = 0}, + [1377] = {.lex_state = 0}, + [1378] = {.lex_state = 136}, + [1379] = {.lex_state = 0}, + [1380] = {.lex_state = 136}, + [1381] = {.lex_state = 136}, + [1382] = {.lex_state = 0}, + [1383] = {.lex_state = 0}, + [1384] = {.lex_state = 0}, + [1385] = {.lex_state = 0}, + [1386] = {.lex_state = 0}, + [1387] = {.lex_state = 0}, }; enum { @@ -6511,7 +6580,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_quoted_content] = ACTIONS(1), }, [1] = { - [sym_source_file] = STATE(1312), + [sym_source_file] = STATE(1335), [sym__module_statement] = STATE(2), [sym_target_group] = STATE(2), [sym_import] = STATE(2), @@ -6520,39 +6589,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_external_function] = STATE(2), [sym_function] = STATE(2), [aux_sym__statement_seq] = STATE(4), - [sym_try] = STATE(505), - [sym__statement] = STATE(505), - [sym__expression] = STATE(79), - [sym_binary_expression] = STATE(79), - [sym__expression_unit] = STATE(79), - [sym_record] = STATE(66), - [sym_todo] = STATE(79), - [sym_panic] = STATE(79), - [sym_tuple] = STATE(74), - [sym_list] = STATE(79), - [sym__expression_bit_string] = STATE(79), - [sym_anonymous_function] = STATE(76), - [sym_block] = STATE(64), - [sym_case] = STATE(64), - [sym_let_assert] = STATE(505), - [sym_let] = STATE(505), - [sym_use] = STATE(505), - [sym_assert] = STATE(79), - [sym_negation] = STATE(79), - [sym_record_update] = STATE(66), - [sym__maybe_tuple_expression] = STATE(1315), - [sym_tuple_access] = STATE(64), - [sym__maybe_record_expression] = STATE(1288), - [sym_field_access] = STATE(64), - [sym__maybe_function_expression] = STATE(1194), - [sym_function_call] = STATE(64), + [sym_try] = STATE(513), + [sym__statement] = STATE(513), + [sym__expression] = STATE(119), + [sym_binary_expression] = STATE(119), + [sym__expression_unit] = STATE(119), + [sym_record] = STATE(71), + [sym_todo] = STATE(119), + [sym_panic] = STATE(119), + [sym_tuple] = STATE(77), + [sym_list] = STATE(119), + [sym__expression_bit_string] = STATE(119), + [sym_anonymous_function] = STATE(75), + [sym_block] = STATE(61), + [sym_case] = STATE(61), + [sym_let_assert] = STATE(513), + [sym_let] = STATE(513), + [sym_use] = STATE(513), + [sym_assert] = STATE(119), + [sym_boolean_negation] = STATE(119), + [sym_integer_negation] = STATE(119), + [sym_record_update] = STATE(71), + [sym__maybe_tuple_expression] = STATE(1331), + [sym_tuple_access] = STATE(61), + [sym__maybe_record_expression] = STATE(1330), + [sym_field_access] = STATE(61), + [sym__maybe_function_expression] = STATE(1222), + [sym_function_call] = STATE(61), [sym_type_definition] = STATE(2), [sym_type_alias] = STATE(2), - [sym_string] = STATE(79), - [sym_integer] = STATE(79), + [sym_string] = STATE(119), + [sym_integer] = STATE(119), [sym_identifier] = STATE(50), - [sym_constructor_name] = STATE(29), - [sym_remote_constructor_name] = STATE(29), + [sym_constructor_name] = STATE(39), + [sym_remote_constructor_name] = STATE(39), [aux_sym_source_file_repeat1] = STATE(2), [ts_builtin_sym_end] = ACTIONS(7), [sym_module_comment] = ACTIONS(3), @@ -6597,39 +6667,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_external_function] = STATE(3), [sym_function] = STATE(3), [aux_sym__statement_seq] = STATE(4), - [sym_try] = STATE(505), - [sym__statement] = STATE(505), - [sym__expression] = STATE(79), - [sym_binary_expression] = STATE(79), - [sym__expression_unit] = STATE(79), - [sym_record] = STATE(66), - [sym_todo] = STATE(79), - [sym_panic] = STATE(79), - [sym_tuple] = STATE(74), - [sym_list] = STATE(79), - [sym__expression_bit_string] = STATE(79), - [sym_anonymous_function] = STATE(76), - [sym_block] = STATE(64), - [sym_case] = STATE(64), - [sym_let_assert] = STATE(505), - [sym_let] = STATE(505), - [sym_use] = STATE(505), - [sym_assert] = STATE(79), - [sym_negation] = STATE(79), - [sym_record_update] = STATE(66), - [sym__maybe_tuple_expression] = STATE(1315), - [sym_tuple_access] = STATE(64), - [sym__maybe_record_expression] = STATE(1288), - [sym_field_access] = STATE(64), - [sym__maybe_function_expression] = STATE(1194), - [sym_function_call] = STATE(64), + [sym_try] = STATE(513), + [sym__statement] = STATE(513), + [sym__expression] = STATE(119), + [sym_binary_expression] = STATE(119), + [sym__expression_unit] = STATE(119), + [sym_record] = STATE(71), + [sym_todo] = STATE(119), + [sym_panic] = STATE(119), + [sym_tuple] = STATE(77), + [sym_list] = STATE(119), + [sym__expression_bit_string] = STATE(119), + [sym_anonymous_function] = STATE(75), + [sym_block] = STATE(61), + [sym_case] = STATE(61), + [sym_let_assert] = STATE(513), + [sym_let] = STATE(513), + [sym_use] = STATE(513), + [sym_assert] = STATE(119), + [sym_boolean_negation] = STATE(119), + [sym_integer_negation] = STATE(119), + [sym_record_update] = STATE(71), + [sym__maybe_tuple_expression] = STATE(1331), + [sym_tuple_access] = STATE(61), + [sym__maybe_record_expression] = STATE(1330), + [sym_field_access] = STATE(61), + [sym__maybe_function_expression] = STATE(1222), + [sym_function_call] = STATE(61), [sym_type_definition] = STATE(3), [sym_type_alias] = STATE(3), - [sym_string] = STATE(79), - [sym_integer] = STATE(79), + [sym_string] = STATE(119), + [sym_integer] = STATE(119), [sym_identifier] = STATE(50), - [sym_constructor_name] = STATE(29), - [sym_remote_constructor_name] = STATE(29), + [sym_constructor_name] = STATE(39), + [sym_remote_constructor_name] = STATE(39), [aux_sym_source_file_repeat1] = STATE(3), [ts_builtin_sym_end] = ACTIONS(63), [sym_module_comment] = ACTIONS(3), @@ -6674,39 +6745,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_external_function] = STATE(3), [sym_function] = STATE(3), [aux_sym__statement_seq] = STATE(4), - [sym_try] = STATE(505), - [sym__statement] = STATE(505), - [sym__expression] = STATE(79), - [sym_binary_expression] = STATE(79), - [sym__expression_unit] = STATE(79), - [sym_record] = STATE(66), - [sym_todo] = STATE(79), - [sym_panic] = STATE(79), - [sym_tuple] = STATE(74), - [sym_list] = STATE(79), - [sym__expression_bit_string] = STATE(79), - [sym_anonymous_function] = STATE(76), - [sym_block] = STATE(64), - [sym_case] = STATE(64), - [sym_let_assert] = STATE(505), - [sym_let] = STATE(505), - [sym_use] = STATE(505), - [sym_assert] = STATE(79), - [sym_negation] = STATE(79), - [sym_record_update] = STATE(66), - [sym__maybe_tuple_expression] = STATE(1315), - [sym_tuple_access] = STATE(64), - [sym__maybe_record_expression] = STATE(1288), - [sym_field_access] = STATE(64), - [sym__maybe_function_expression] = STATE(1194), - [sym_function_call] = STATE(64), + [sym_try] = STATE(513), + [sym__statement] = STATE(513), + [sym__expression] = STATE(119), + [sym_binary_expression] = STATE(119), + [sym__expression_unit] = STATE(119), + [sym_record] = STATE(71), + [sym_todo] = STATE(119), + [sym_panic] = STATE(119), + [sym_tuple] = STATE(77), + [sym_list] = STATE(119), + [sym__expression_bit_string] = STATE(119), + [sym_anonymous_function] = STATE(75), + [sym_block] = STATE(61), + [sym_case] = STATE(61), + [sym_let_assert] = STATE(513), + [sym_let] = STATE(513), + [sym_use] = STATE(513), + [sym_assert] = STATE(119), + [sym_boolean_negation] = STATE(119), + [sym_integer_negation] = STATE(119), + [sym_record_update] = STATE(71), + [sym__maybe_tuple_expression] = STATE(1331), + [sym_tuple_access] = STATE(61), + [sym__maybe_record_expression] = STATE(1330), + [sym_field_access] = STATE(61), + [sym__maybe_function_expression] = STATE(1222), + [sym_function_call] = STATE(61), [sym_type_definition] = STATE(3), [sym_type_alias] = STATE(3), - [sym_string] = STATE(79), - [sym_integer] = STATE(79), + [sym_string] = STATE(119), + [sym_integer] = STATE(119), [sym_identifier] = STATE(50), - [sym_constructor_name] = STATE(29), - [sym_remote_constructor_name] = STATE(29), + [sym_constructor_name] = STATE(39), + [sym_remote_constructor_name] = STATE(39), [aux_sym_source_file_repeat1] = STATE(3), [ts_builtin_sym_end] = ACTIONS(65), [sym_module_comment] = ACTIONS(3), @@ -6744,37 +6816,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [4] = { [aux_sym__statement_seq] = STATE(5), - [sym_try] = STATE(505), - [sym__statement] = STATE(505), - [sym__expression] = STATE(79), - [sym_binary_expression] = STATE(79), - [sym__expression_unit] = STATE(79), - [sym_record] = STATE(66), - [sym_todo] = STATE(79), - [sym_panic] = STATE(79), - [sym_tuple] = STATE(74), - [sym_list] = STATE(79), - [sym__expression_bit_string] = STATE(79), - [sym_anonymous_function] = STATE(76), - [sym_block] = STATE(64), - [sym_case] = STATE(64), - [sym_let_assert] = STATE(505), - [sym_let] = STATE(505), - [sym_use] = STATE(505), - [sym_assert] = STATE(79), - [sym_negation] = STATE(79), - [sym_record_update] = STATE(66), - [sym__maybe_tuple_expression] = STATE(1315), - [sym_tuple_access] = STATE(64), - [sym__maybe_record_expression] = STATE(1288), - [sym_field_access] = STATE(64), - [sym__maybe_function_expression] = STATE(1194), - [sym_function_call] = STATE(64), - [sym_string] = STATE(79), - [sym_integer] = STATE(79), + [sym_try] = STATE(513), + [sym__statement] = STATE(513), + [sym__expression] = STATE(119), + [sym_binary_expression] = STATE(119), + [sym__expression_unit] = STATE(119), + [sym_record] = STATE(71), + [sym_todo] = STATE(119), + [sym_panic] = STATE(119), + [sym_tuple] = STATE(77), + [sym_list] = STATE(119), + [sym__expression_bit_string] = STATE(119), + [sym_anonymous_function] = STATE(75), + [sym_block] = STATE(61), + [sym_case] = STATE(61), + [sym_let_assert] = STATE(513), + [sym_let] = STATE(513), + [sym_use] = STATE(513), + [sym_assert] = STATE(119), + [sym_boolean_negation] = STATE(119), + [sym_integer_negation] = STATE(119), + [sym_record_update] = STATE(71), + [sym__maybe_tuple_expression] = STATE(1331), + [sym_tuple_access] = STATE(61), + [sym__maybe_record_expression] = STATE(1330), + [sym_field_access] = STATE(61), + [sym__maybe_function_expression] = STATE(1222), + [sym_function_call] = STATE(61), + [sym_string] = STATE(119), + [sym_integer] = STATE(119), [sym_identifier] = STATE(50), - [sym_constructor_name] = STATE(29), - [sym_remote_constructor_name] = STATE(29), + [sym_constructor_name] = STATE(39), + [sym_remote_constructor_name] = STATE(39), [ts_builtin_sym_end] = ACTIONS(148), [sym_module_comment] = ACTIONS(3), [sym_statement_comment] = ACTIONS(5), @@ -6811,37 +6884,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [5] = { [aux_sym__statement_seq] = STATE(5), - [sym_try] = STATE(505), - [sym__statement] = STATE(505), - [sym__expression] = STATE(79), - [sym_binary_expression] = STATE(79), - [sym__expression_unit] = STATE(79), - [sym_record] = STATE(66), - [sym_todo] = STATE(79), - [sym_panic] = STATE(79), - [sym_tuple] = STATE(74), - [sym_list] = STATE(79), - [sym__expression_bit_string] = STATE(79), - [sym_anonymous_function] = STATE(76), - [sym_block] = STATE(64), - [sym_case] = STATE(64), - [sym_let_assert] = STATE(505), - [sym_let] = STATE(505), - [sym_use] = STATE(505), - [sym_assert] = STATE(79), - [sym_negation] = STATE(79), - [sym_record_update] = STATE(66), - [sym__maybe_tuple_expression] = STATE(1315), - [sym_tuple_access] = STATE(64), - [sym__maybe_record_expression] = STATE(1288), - [sym_field_access] = STATE(64), - [sym__maybe_function_expression] = STATE(1194), - [sym_function_call] = STATE(64), - [sym_string] = STATE(79), - [sym_integer] = STATE(79), + [sym_try] = STATE(513), + [sym__statement] = STATE(513), + [sym__expression] = STATE(119), + [sym_binary_expression] = STATE(119), + [sym__expression_unit] = STATE(119), + [sym_record] = STATE(71), + [sym_todo] = STATE(119), + [sym_panic] = STATE(119), + [sym_tuple] = STATE(77), + [sym_list] = STATE(119), + [sym__expression_bit_string] = STATE(119), + [sym_anonymous_function] = STATE(75), + [sym_block] = STATE(61), + [sym_case] = STATE(61), + [sym_let_assert] = STATE(513), + [sym_let] = STATE(513), + [sym_use] = STATE(513), + [sym_assert] = STATE(119), + [sym_boolean_negation] = STATE(119), + [sym_integer_negation] = STATE(119), + [sym_record_update] = STATE(71), + [sym__maybe_tuple_expression] = STATE(1331), + [sym_tuple_access] = STATE(61), + [sym__maybe_record_expression] = STATE(1330), + [sym_field_access] = STATE(61), + [sym__maybe_function_expression] = STATE(1222), + [sym_function_call] = STATE(61), + [sym_string] = STATE(119), + [sym_integer] = STATE(119), [sym_identifier] = STATE(50), - [sym_constructor_name] = STATE(29), - [sym_remote_constructor_name] = STATE(29), + [sym_constructor_name] = STATE(39), + [sym_remote_constructor_name] = STATE(39), [ts_builtin_sym_end] = ACTIONS(212), [sym_module_comment] = ACTIONS(3), [sym_statement_comment] = ACTIONS(5), @@ -6882,86 +6956,181 @@ static const uint16_t ts_small_parse_table[] = { [0] = 35, ACTIONS(3), 1, sym_module_comment, + ACTIONS(212), 1, + anon_sym_RBRACE, ACTIONS(276), 1, anon_sym_LBRACE, - ACTIONS(278), 1, - anon_sym_RBRACE, - ACTIONS(280), 1, + ACTIONS(279), 1, anon_sym_POUND, ACTIONS(282), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(285), 1, anon_sym_LT_LT, - ACTIONS(286), 1, - anon_sym_DASH, ACTIONS(288), 1, + anon_sym_DASH, + ACTIONS(291), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(294), 1, anon_sym_try, - ACTIONS(292), 1, + ACTIONS(297), 1, anon_sym_todo, - ACTIONS(294), 1, + ACTIONS(300), 1, anon_sym_panic, - ACTIONS(296), 1, + ACTIONS(303), 1, anon_sym_case, - ACTIONS(298), 1, + ACTIONS(306), 1, anon_sym_let, - ACTIONS(300), 1, + ACTIONS(309), 1, anon_sym_assert, - ACTIONS(302), 1, + ACTIONS(312), 1, anon_sym_use, - ACTIONS(304), 1, + ACTIONS(315), 1, anon_sym_BANG, - ACTIONS(306), 1, + ACTIONS(318), 1, anon_sym_DQUOTE, - ACTIONS(308), 1, + ACTIONS(321), 1, sym_float, - ACTIONS(312), 1, + ACTIONS(327), 1, sym__decimal, - ACTIONS(314), 1, + ACTIONS(330), 1, sym__name, - ACTIONS(316), 1, + ACTIONS(333), 1, sym__upname, - STATE(20), 1, + STATE(6), 1, aux_sym__statement_seq, - STATE(140), 1, + STATE(141), 1, sym_identifier, - STATE(147), 1, + STATE(158), 1, + sym_anonymous_function, + STATE(160), 1, sym_tuple, + STATE(1204), 1, + sym__maybe_function_expression, + STATE(1296), 1, + sym__maybe_record_expression, + STATE(1336), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(127), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(156), 2, + sym_record, + sym_record_update, + ACTIONS(324), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(140), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(679), 5, + sym_try, + sym__statement, + sym_let_assert, + sym_let, + sym_use, + STATE(293), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [130] = 35, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(336), 1, + anon_sym_LBRACE, + ACTIONS(338), 1, + anon_sym_RBRACE, + ACTIONS(340), 1, + anon_sym_POUND, + ACTIONS(342), 1, + anon_sym_LBRACK, + ACTIONS(344), 1, + anon_sym_LT_LT, + ACTIONS(346), 1, + anon_sym_DASH, + ACTIONS(348), 1, + anon_sym_fn, + ACTIONS(350), 1, + anon_sym_try, + ACTIONS(352), 1, + anon_sym_todo, + ACTIONS(354), 1, + anon_sym_panic, + ACTIONS(356), 1, + anon_sym_case, + ACTIONS(358), 1, + anon_sym_let, + ACTIONS(360), 1, + anon_sym_assert, + ACTIONS(362), 1, + anon_sym_use, + ACTIONS(364), 1, + anon_sym_BANG, + ACTIONS(366), 1, + anon_sym_DQUOTE, + ACTIONS(368), 1, + sym_float, + ACTIONS(372), 1, + sym__decimal, + ACTIONS(374), 1, + sym__name, + ACTIONS(376), 1, + sym__upname, + STATE(6), 1, + aux_sym__statement_seq, + STATE(141), 1, + sym_identifier, STATE(158), 1, sym_anonymous_function, - STATE(1187), 1, + STATE(160), 1, + sym_tuple, + STATE(1204), 1, sym__maybe_function_expression, - STATE(1280), 1, + STATE(1296), 1, sym__maybe_record_expression, - STATE(1310), 1, + STATE(1336), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(119), 2, + STATE(127), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(157), 2, + STATE(156), 2, sym_record, sym_record_update, - ACTIONS(310), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(138), 5, + STATE(140), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(656), 5, + STATE(679), 5, sym_try, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(303), 11, + STATE(293), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -6970,92 +7139,93 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [129] = 35, + [260] = 35, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(336), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(340), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(342), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(344), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(346), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(348), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(350), 1, anon_sym_try, - ACTIONS(292), 1, + ACTIONS(352), 1, anon_sym_todo, - ACTIONS(294), 1, + ACTIONS(354), 1, anon_sym_panic, - ACTIONS(296), 1, + ACTIONS(356), 1, anon_sym_case, - ACTIONS(298), 1, + ACTIONS(358), 1, anon_sym_let, - ACTIONS(300), 1, + ACTIONS(360), 1, anon_sym_assert, - ACTIONS(302), 1, + ACTIONS(362), 1, anon_sym_use, - ACTIONS(304), 1, + ACTIONS(364), 1, anon_sym_BANG, - ACTIONS(306), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(308), 1, + ACTIONS(368), 1, sym_float, - ACTIONS(312), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(314), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(316), 1, + ACTIONS(376), 1, sym__upname, - ACTIONS(318), 1, + ACTIONS(378), 1, anon_sym_RBRACE, - STATE(25), 1, + STATE(6), 1, aux_sym__statement_seq, - STATE(140), 1, + STATE(141), 1, sym_identifier, - STATE(147), 1, - sym_tuple, STATE(158), 1, sym_anonymous_function, - STATE(1187), 1, + STATE(160), 1, + sym_tuple, + STATE(1204), 1, sym__maybe_function_expression, - STATE(1280), 1, + STATE(1296), 1, sym__maybe_record_expression, - STATE(1310), 1, + STATE(1336), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(119), 2, + STATE(127), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(157), 2, + STATE(156), 2, sym_record, sym_record_update, - ACTIONS(310), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(138), 5, + STATE(140), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(656), 5, + STATE(679), 5, sym_try, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(303), 11, + STATE(293), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -7064,92 +7234,188 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [258] = 35, + [390] = 35, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(336), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(340), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(342), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(344), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(346), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(348), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(350), 1, anon_sym_try, - ACTIONS(292), 1, + ACTIONS(352), 1, anon_sym_todo, - ACTIONS(294), 1, + ACTIONS(354), 1, anon_sym_panic, - ACTIONS(296), 1, + ACTIONS(356), 1, anon_sym_case, - ACTIONS(298), 1, + ACTIONS(358), 1, anon_sym_let, - ACTIONS(300), 1, + ACTIONS(360), 1, anon_sym_assert, - ACTIONS(302), 1, + ACTIONS(362), 1, anon_sym_use, - ACTIONS(304), 1, + ACTIONS(364), 1, anon_sym_BANG, - ACTIONS(306), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(308), 1, + ACTIONS(368), 1, sym_float, - ACTIONS(312), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(314), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(316), 1, + ACTIONS(376), 1, sym__upname, - ACTIONS(320), 1, + ACTIONS(380), 1, anon_sym_RBRACE, - STATE(20), 1, + STATE(6), 1, aux_sym__statement_seq, - STATE(140), 1, + STATE(141), 1, sym_identifier, - STATE(147), 1, + STATE(158), 1, + sym_anonymous_function, + STATE(160), 1, sym_tuple, + STATE(1204), 1, + sym__maybe_function_expression, + STATE(1296), 1, + sym__maybe_record_expression, + STATE(1336), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(127), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(156), 2, + sym_record, + sym_record_update, + ACTIONS(370), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(140), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(679), 5, + sym_try, + sym__statement, + sym_let_assert, + sym_let, + sym_use, + STATE(293), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [520] = 35, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(336), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + anon_sym_POUND, + ACTIONS(342), 1, + anon_sym_LBRACK, + ACTIONS(344), 1, + anon_sym_LT_LT, + ACTIONS(346), 1, + anon_sym_DASH, + ACTIONS(348), 1, + anon_sym_fn, + ACTIONS(350), 1, + anon_sym_try, + ACTIONS(352), 1, + anon_sym_todo, + ACTIONS(354), 1, + anon_sym_panic, + ACTIONS(356), 1, + anon_sym_case, + ACTIONS(358), 1, + anon_sym_let, + ACTIONS(360), 1, + anon_sym_assert, + ACTIONS(362), 1, + anon_sym_use, + ACTIONS(364), 1, + anon_sym_BANG, + ACTIONS(366), 1, + anon_sym_DQUOTE, + ACTIONS(368), 1, + sym_float, + ACTIONS(372), 1, + sym__decimal, + ACTIONS(374), 1, + sym__name, + ACTIONS(376), 1, + sym__upname, + ACTIONS(382), 1, + anon_sym_RBRACE, + STATE(6), 1, + aux_sym__statement_seq, + STATE(141), 1, + sym_identifier, STATE(158), 1, sym_anonymous_function, - STATE(1187), 1, + STATE(160), 1, + sym_tuple, + STATE(1204), 1, sym__maybe_function_expression, - STATE(1280), 1, + STATE(1296), 1, sym__maybe_record_expression, - STATE(1310), 1, + STATE(1336), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(119), 2, + STATE(127), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(157), 2, + STATE(156), 2, sym_record, sym_record_update, - ACTIONS(310), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(138), 5, + STATE(140), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(656), 5, + STATE(679), 5, sym_try, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(303), 11, + STATE(293), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -7158,92 +7424,93 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [387] = 35, + [650] = 35, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(336), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(340), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(342), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(344), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(346), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(348), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(350), 1, anon_sym_try, - ACTIONS(292), 1, + ACTIONS(352), 1, anon_sym_todo, - ACTIONS(294), 1, + ACTIONS(354), 1, anon_sym_panic, - ACTIONS(296), 1, + ACTIONS(356), 1, anon_sym_case, - ACTIONS(298), 1, + ACTIONS(358), 1, anon_sym_let, - ACTIONS(300), 1, + ACTIONS(360), 1, anon_sym_assert, - ACTIONS(302), 1, + ACTIONS(362), 1, anon_sym_use, - ACTIONS(304), 1, + ACTIONS(364), 1, anon_sym_BANG, - ACTIONS(306), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(308), 1, + ACTIONS(368), 1, sym_float, - ACTIONS(312), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(314), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(316), 1, + ACTIONS(376), 1, sym__upname, - ACTIONS(322), 1, + ACTIONS(384), 1, anon_sym_RBRACE, - STATE(19), 1, + STATE(6), 1, aux_sym__statement_seq, - STATE(140), 1, + STATE(141), 1, sym_identifier, - STATE(147), 1, - sym_tuple, STATE(158), 1, sym_anonymous_function, - STATE(1187), 1, + STATE(160), 1, + sym_tuple, + STATE(1204), 1, sym__maybe_function_expression, - STATE(1280), 1, + STATE(1296), 1, sym__maybe_record_expression, - STATE(1310), 1, + STATE(1336), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(119), 2, + STATE(127), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(157), 2, + STATE(156), 2, sym_record, sym_record_update, - ACTIONS(310), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(138), 5, + STATE(140), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(656), 5, + STATE(679), 5, sym_try, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(303), 11, + STATE(293), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -7252,92 +7519,93 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [516] = 35, + [780] = 35, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(336), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(340), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(342), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(344), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(346), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(348), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(350), 1, anon_sym_try, - ACTIONS(292), 1, + ACTIONS(352), 1, anon_sym_todo, - ACTIONS(294), 1, + ACTIONS(354), 1, anon_sym_panic, - ACTIONS(296), 1, + ACTIONS(356), 1, anon_sym_case, - ACTIONS(298), 1, + ACTIONS(358), 1, anon_sym_let, - ACTIONS(300), 1, + ACTIONS(360), 1, anon_sym_assert, - ACTIONS(302), 1, + ACTIONS(362), 1, anon_sym_use, - ACTIONS(304), 1, + ACTIONS(364), 1, anon_sym_BANG, - ACTIONS(306), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(308), 1, + ACTIONS(368), 1, sym_float, - ACTIONS(312), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(314), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(316), 1, + ACTIONS(376), 1, sym__upname, - ACTIONS(324), 1, + ACTIONS(386), 1, anon_sym_RBRACE, - STATE(20), 1, + STATE(6), 1, aux_sym__statement_seq, - STATE(140), 1, + STATE(141), 1, sym_identifier, - STATE(147), 1, - sym_tuple, STATE(158), 1, sym_anonymous_function, - STATE(1187), 1, + STATE(160), 1, + sym_tuple, + STATE(1204), 1, sym__maybe_function_expression, - STATE(1280), 1, + STATE(1296), 1, sym__maybe_record_expression, - STATE(1310), 1, + STATE(1336), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(119), 2, + STATE(127), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(157), 2, + STATE(156), 2, sym_record, sym_record_update, - ACTIONS(310), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(138), 5, + STATE(140), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(656), 5, + STATE(679), 5, sym_try, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(303), 11, + STATE(293), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -7346,92 +7614,188 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [645] = 35, + [910] = 35, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(336), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(340), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(342), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(344), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(346), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(348), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(350), 1, anon_sym_try, - ACTIONS(292), 1, + ACTIONS(352), 1, anon_sym_todo, - ACTIONS(294), 1, + ACTIONS(354), 1, anon_sym_panic, - ACTIONS(296), 1, + ACTIONS(356), 1, anon_sym_case, - ACTIONS(298), 1, + ACTIONS(358), 1, anon_sym_let, - ACTIONS(300), 1, + ACTIONS(360), 1, anon_sym_assert, - ACTIONS(302), 1, + ACTIONS(362), 1, anon_sym_use, - ACTIONS(304), 1, + ACTIONS(364), 1, anon_sym_BANG, - ACTIONS(306), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(308), 1, + ACTIONS(368), 1, sym_float, - ACTIONS(312), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(314), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(316), 1, + ACTIONS(376), 1, sym__upname, - ACTIONS(326), 1, + ACTIONS(388), 1, anon_sym_RBRACE, - STATE(20), 1, + STATE(6), 1, aux_sym__statement_seq, - STATE(140), 1, + STATE(141), 1, sym_identifier, - STATE(147), 1, + STATE(158), 1, + sym_anonymous_function, + STATE(160), 1, sym_tuple, + STATE(1204), 1, + sym__maybe_function_expression, + STATE(1296), 1, + sym__maybe_record_expression, + STATE(1336), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(127), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(156), 2, + sym_record, + sym_record_update, + ACTIONS(370), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(140), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(679), 5, + sym_try, + sym__statement, + sym_let_assert, + sym_let, + sym_use, + STATE(293), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [1040] = 35, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(336), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + anon_sym_POUND, + ACTIONS(342), 1, + anon_sym_LBRACK, + ACTIONS(344), 1, + anon_sym_LT_LT, + ACTIONS(346), 1, + anon_sym_DASH, + ACTIONS(348), 1, + anon_sym_fn, + ACTIONS(350), 1, + anon_sym_try, + ACTIONS(352), 1, + anon_sym_todo, + ACTIONS(354), 1, + anon_sym_panic, + ACTIONS(356), 1, + anon_sym_case, + ACTIONS(358), 1, + anon_sym_let, + ACTIONS(360), 1, + anon_sym_assert, + ACTIONS(362), 1, + anon_sym_use, + ACTIONS(364), 1, + anon_sym_BANG, + ACTIONS(366), 1, + anon_sym_DQUOTE, + ACTIONS(368), 1, + sym_float, + ACTIONS(372), 1, + sym__decimal, + ACTIONS(374), 1, + sym__name, + ACTIONS(376), 1, + sym__upname, + ACTIONS(390), 1, + anon_sym_RBRACE, + STATE(28), 1, + aux_sym__statement_seq, + STATE(141), 1, + sym_identifier, STATE(158), 1, sym_anonymous_function, - STATE(1187), 1, + STATE(160), 1, + sym_tuple, + STATE(1204), 1, sym__maybe_function_expression, - STATE(1280), 1, + STATE(1296), 1, sym__maybe_record_expression, - STATE(1310), 1, + STATE(1336), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(119), 2, + STATE(127), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(157), 2, + STATE(156), 2, sym_record, sym_record_update, - ACTIONS(310), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(138), 5, + STATE(140), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(656), 5, + STATE(679), 5, sym_try, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(303), 11, + STATE(293), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -7440,92 +7804,93 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [774] = 35, + [1170] = 35, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(336), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(340), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(342), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(344), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(346), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(348), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(350), 1, anon_sym_try, - ACTIONS(292), 1, + ACTIONS(352), 1, anon_sym_todo, - ACTIONS(294), 1, + ACTIONS(354), 1, anon_sym_panic, - ACTIONS(296), 1, + ACTIONS(356), 1, anon_sym_case, - ACTIONS(298), 1, + ACTIONS(358), 1, anon_sym_let, - ACTIONS(300), 1, + ACTIONS(360), 1, anon_sym_assert, - ACTIONS(302), 1, + ACTIONS(362), 1, anon_sym_use, - ACTIONS(304), 1, + ACTIONS(364), 1, anon_sym_BANG, - ACTIONS(306), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(308), 1, + ACTIONS(368), 1, sym_float, - ACTIONS(312), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(314), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(316), 1, + ACTIONS(376), 1, sym__upname, - ACTIONS(328), 1, + ACTIONS(392), 1, anon_sym_RBRACE, STATE(13), 1, aux_sym__statement_seq, - STATE(140), 1, + STATE(141), 1, sym_identifier, - STATE(147), 1, - sym_tuple, STATE(158), 1, sym_anonymous_function, - STATE(1187), 1, + STATE(160), 1, + sym_tuple, + STATE(1204), 1, sym__maybe_function_expression, - STATE(1280), 1, + STATE(1296), 1, sym__maybe_record_expression, - STATE(1310), 1, + STATE(1336), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(119), 2, + STATE(127), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(157), 2, + STATE(156), 2, sym_record, sym_record_update, - ACTIONS(310), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(138), 5, + STATE(140), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(656), 5, + STATE(679), 5, sym_try, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(303), 11, + STATE(293), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -7534,92 +7899,93 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [903] = 35, + [1300] = 35, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(336), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(340), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(342), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(344), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(346), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(348), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(350), 1, anon_sym_try, - ACTIONS(292), 1, + ACTIONS(352), 1, anon_sym_todo, - ACTIONS(294), 1, + ACTIONS(354), 1, anon_sym_panic, - ACTIONS(296), 1, + ACTIONS(356), 1, anon_sym_case, - ACTIONS(298), 1, + ACTIONS(358), 1, anon_sym_let, - ACTIONS(300), 1, + ACTIONS(360), 1, anon_sym_assert, - ACTIONS(302), 1, + ACTIONS(362), 1, anon_sym_use, - ACTIONS(304), 1, + ACTIONS(364), 1, anon_sym_BANG, - ACTIONS(306), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(308), 1, + ACTIONS(368), 1, sym_float, - ACTIONS(312), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(314), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(316), 1, + ACTIONS(376), 1, sym__upname, - ACTIONS(330), 1, + ACTIONS(394), 1, anon_sym_RBRACE, - STATE(20), 1, + STATE(23), 1, aux_sym__statement_seq, - STATE(140), 1, + STATE(141), 1, sym_identifier, - STATE(147), 1, - sym_tuple, STATE(158), 1, sym_anonymous_function, - STATE(1187), 1, + STATE(160), 1, + sym_tuple, + STATE(1204), 1, sym__maybe_function_expression, - STATE(1280), 1, + STATE(1296), 1, sym__maybe_record_expression, - STATE(1310), 1, + STATE(1336), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(119), 2, + STATE(127), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(157), 2, + STATE(156), 2, sym_record, sym_record_update, - ACTIONS(310), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(138), 5, + STATE(140), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(656), 5, + STATE(679), 5, sym_try, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(303), 11, + STATE(293), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -7628,92 +7994,93 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [1032] = 35, + [1430] = 35, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(336), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(340), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(342), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(344), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(346), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(348), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(350), 1, anon_sym_try, - ACTIONS(292), 1, + ACTIONS(352), 1, anon_sym_todo, - ACTIONS(294), 1, + ACTIONS(354), 1, anon_sym_panic, - ACTIONS(296), 1, + ACTIONS(356), 1, anon_sym_case, - ACTIONS(298), 1, + ACTIONS(358), 1, anon_sym_let, - ACTIONS(300), 1, + ACTIONS(360), 1, anon_sym_assert, - ACTIONS(302), 1, + ACTIONS(362), 1, anon_sym_use, - ACTIONS(304), 1, + ACTIONS(364), 1, anon_sym_BANG, - ACTIONS(306), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(308), 1, + ACTIONS(368), 1, sym_float, - ACTIONS(312), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(314), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(316), 1, + ACTIONS(376), 1, sym__upname, - ACTIONS(332), 1, + ACTIONS(396), 1, anon_sym_RBRACE, - STATE(20), 1, + STATE(9), 1, aux_sym__statement_seq, - STATE(140), 1, + STATE(141), 1, sym_identifier, - STATE(147), 1, - sym_tuple, STATE(158), 1, sym_anonymous_function, - STATE(1187), 1, + STATE(160), 1, + sym_tuple, + STATE(1204), 1, sym__maybe_function_expression, - STATE(1280), 1, + STATE(1296), 1, sym__maybe_record_expression, - STATE(1310), 1, + STATE(1336), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(119), 2, + STATE(127), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(157), 2, + STATE(156), 2, sym_record, sym_record_update, - ACTIONS(310), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(138), 5, + STATE(140), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(656), 5, + STATE(679), 5, sym_try, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(303), 11, + STATE(293), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -7722,92 +8089,93 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [1161] = 35, + [1560] = 35, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(336), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(340), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(342), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(344), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(346), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(348), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(350), 1, anon_sym_try, - ACTIONS(292), 1, + ACTIONS(352), 1, anon_sym_todo, - ACTIONS(294), 1, + ACTIONS(354), 1, anon_sym_panic, - ACTIONS(296), 1, + ACTIONS(356), 1, anon_sym_case, - ACTIONS(298), 1, + ACTIONS(358), 1, anon_sym_let, - ACTIONS(300), 1, + ACTIONS(360), 1, anon_sym_assert, - ACTIONS(302), 1, + ACTIONS(362), 1, anon_sym_use, - ACTIONS(304), 1, + ACTIONS(364), 1, anon_sym_BANG, - ACTIONS(306), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(308), 1, + ACTIONS(368), 1, sym_float, - ACTIONS(312), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(314), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(316), 1, + ACTIONS(376), 1, sym__upname, - ACTIONS(334), 1, + ACTIONS(398), 1, anon_sym_RBRACE, - STATE(30), 1, + STATE(21), 1, aux_sym__statement_seq, - STATE(140), 1, + STATE(141), 1, sym_identifier, - STATE(147), 1, - sym_tuple, STATE(158), 1, sym_anonymous_function, - STATE(1187), 1, + STATE(160), 1, + sym_tuple, + STATE(1204), 1, sym__maybe_function_expression, - STATE(1280), 1, + STATE(1296), 1, sym__maybe_record_expression, - STATE(1310), 1, + STATE(1336), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(119), 2, + STATE(127), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(157), 2, + STATE(156), 2, sym_record, sym_record_update, - ACTIONS(310), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(138), 5, + STATE(140), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(656), 5, + STATE(679), 5, sym_try, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(303), 11, + STATE(293), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -7816,92 +8184,93 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [1290] = 35, + [1690] = 35, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(336), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(340), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(342), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(344), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(346), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(348), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(350), 1, anon_sym_try, - ACTIONS(292), 1, + ACTIONS(352), 1, anon_sym_todo, - ACTIONS(294), 1, + ACTIONS(354), 1, anon_sym_panic, - ACTIONS(296), 1, + ACTIONS(356), 1, anon_sym_case, - ACTIONS(298), 1, + ACTIONS(358), 1, anon_sym_let, - ACTIONS(300), 1, + ACTIONS(360), 1, anon_sym_assert, - ACTIONS(302), 1, + ACTIONS(362), 1, anon_sym_use, - ACTIONS(304), 1, + ACTIONS(364), 1, anon_sym_BANG, - ACTIONS(306), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(308), 1, + ACTIONS(368), 1, sym_float, - ACTIONS(312), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(314), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(316), 1, + ACTIONS(376), 1, sym__upname, - ACTIONS(336), 1, + ACTIONS(400), 1, anon_sym_RBRACE, - STATE(20), 1, + STATE(6), 1, aux_sym__statement_seq, - STATE(140), 1, + STATE(141), 1, sym_identifier, - STATE(147), 1, - sym_tuple, STATE(158), 1, sym_anonymous_function, - STATE(1187), 1, + STATE(160), 1, + sym_tuple, + STATE(1204), 1, sym__maybe_function_expression, - STATE(1280), 1, + STATE(1296), 1, sym__maybe_record_expression, - STATE(1310), 1, + STATE(1336), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(119), 2, + STATE(127), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(157), 2, + STATE(156), 2, sym_record, sym_record_update, - ACTIONS(310), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(138), 5, + STATE(140), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(656), 5, + STATE(679), 5, sym_try, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(303), 11, + STATE(293), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -7910,92 +8279,93 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [1419] = 35, + [1820] = 35, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(336), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(340), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(342), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(344), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(346), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(348), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(350), 1, anon_sym_try, - ACTIONS(292), 1, + ACTIONS(352), 1, anon_sym_todo, - ACTIONS(294), 1, + ACTIONS(354), 1, anon_sym_panic, - ACTIONS(296), 1, + ACTIONS(356), 1, anon_sym_case, - ACTIONS(298), 1, + ACTIONS(358), 1, anon_sym_let, - ACTIONS(300), 1, + ACTIONS(360), 1, anon_sym_assert, - ACTIONS(302), 1, + ACTIONS(362), 1, anon_sym_use, - ACTIONS(304), 1, + ACTIONS(364), 1, anon_sym_BANG, - ACTIONS(306), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(308), 1, + ACTIONS(368), 1, sym_float, - ACTIONS(312), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(314), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(316), 1, + ACTIONS(376), 1, sym__upname, - ACTIONS(338), 1, + ACTIONS(402), 1, anon_sym_RBRACE, - STATE(20), 1, + STATE(6), 1, aux_sym__statement_seq, - STATE(140), 1, + STATE(141), 1, sym_identifier, - STATE(147), 1, - sym_tuple, STATE(158), 1, sym_anonymous_function, - STATE(1187), 1, + STATE(160), 1, + sym_tuple, + STATE(1204), 1, sym__maybe_function_expression, - STATE(1280), 1, + STATE(1296), 1, sym__maybe_record_expression, - STATE(1310), 1, + STATE(1336), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(119), 2, + STATE(127), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(157), 2, + STATE(156), 2, sym_record, sym_record_update, - ACTIONS(310), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(138), 5, + STATE(140), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(656), 5, + STATE(679), 5, sym_try, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(303), 11, + STATE(293), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -8004,92 +8374,93 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [1548] = 35, + [1950] = 35, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(336), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(340), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(342), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(344), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(346), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(348), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(350), 1, anon_sym_try, - ACTIONS(292), 1, + ACTIONS(352), 1, anon_sym_todo, - ACTIONS(294), 1, + ACTIONS(354), 1, anon_sym_panic, - ACTIONS(296), 1, + ACTIONS(356), 1, anon_sym_case, - ACTIONS(298), 1, + ACTIONS(358), 1, anon_sym_let, - ACTIONS(300), 1, + ACTIONS(360), 1, anon_sym_assert, - ACTIONS(302), 1, + ACTIONS(362), 1, anon_sym_use, - ACTIONS(304), 1, + ACTIONS(364), 1, anon_sym_BANG, - ACTIONS(306), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(308), 1, + ACTIONS(368), 1, sym_float, - ACTIONS(312), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(314), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(316), 1, + ACTIONS(376), 1, sym__upname, - ACTIONS(340), 1, + ACTIONS(404), 1, anon_sym_RBRACE, - STATE(33), 1, + STATE(6), 1, aux_sym__statement_seq, - STATE(140), 1, + STATE(141), 1, sym_identifier, - STATE(147), 1, - sym_tuple, STATE(158), 1, sym_anonymous_function, - STATE(1187), 1, + STATE(160), 1, + sym_tuple, + STATE(1204), 1, sym__maybe_function_expression, - STATE(1280), 1, + STATE(1296), 1, sym__maybe_record_expression, - STATE(1310), 1, + STATE(1336), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(119), 2, + STATE(127), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(157), 2, + STATE(156), 2, sym_record, sym_record_update, - ACTIONS(310), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(138), 5, + STATE(140), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(656), 5, + STATE(679), 5, sym_try, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(303), 11, + STATE(293), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -8098,92 +8469,93 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [1677] = 35, + [2080] = 35, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(336), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(340), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(342), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(344), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(346), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(348), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(350), 1, anon_sym_try, - ACTIONS(292), 1, + ACTIONS(352), 1, anon_sym_todo, - ACTIONS(294), 1, + ACTIONS(354), 1, anon_sym_panic, - ACTIONS(296), 1, + ACTIONS(356), 1, anon_sym_case, - ACTIONS(298), 1, + ACTIONS(358), 1, anon_sym_let, - ACTIONS(300), 1, + ACTIONS(360), 1, anon_sym_assert, - ACTIONS(302), 1, + ACTIONS(362), 1, anon_sym_use, - ACTIONS(304), 1, + ACTIONS(364), 1, anon_sym_BANG, - ACTIONS(306), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(308), 1, + ACTIONS(368), 1, sym_float, - ACTIONS(312), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(314), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(316), 1, + ACTIONS(376), 1, sym__upname, - ACTIONS(342), 1, + ACTIONS(406), 1, anon_sym_RBRACE, - STATE(20), 1, + STATE(6), 1, aux_sym__statement_seq, - STATE(140), 1, + STATE(141), 1, sym_identifier, - STATE(147), 1, - sym_tuple, STATE(158), 1, sym_anonymous_function, - STATE(1187), 1, + STATE(160), 1, + sym_tuple, + STATE(1204), 1, sym__maybe_function_expression, - STATE(1280), 1, + STATE(1296), 1, sym__maybe_record_expression, - STATE(1310), 1, + STATE(1336), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(119), 2, + STATE(127), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(157), 2, + STATE(156), 2, sym_record, sym_record_update, - ACTIONS(310), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(138), 5, + STATE(140), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(656), 5, + STATE(679), 5, sym_try, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(303), 11, + STATE(293), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -8192,92 +8564,93 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [1806] = 35, + [2210] = 35, ACTIONS(3), 1, sym_module_comment, - ACTIONS(212), 1, - anon_sym_RBRACE, - ACTIONS(344), 1, + ACTIONS(336), 1, anon_sym_LBRACE, - ACTIONS(347), 1, + ACTIONS(340), 1, anon_sym_POUND, - ACTIONS(350), 1, + ACTIONS(342), 1, anon_sym_LBRACK, - ACTIONS(353), 1, + ACTIONS(344), 1, anon_sym_LT_LT, - ACTIONS(356), 1, + ACTIONS(346), 1, anon_sym_DASH, - ACTIONS(359), 1, + ACTIONS(348), 1, anon_sym_fn, - ACTIONS(362), 1, + ACTIONS(350), 1, anon_sym_try, - ACTIONS(365), 1, + ACTIONS(352), 1, anon_sym_todo, - ACTIONS(368), 1, + ACTIONS(354), 1, anon_sym_panic, - ACTIONS(371), 1, + ACTIONS(356), 1, anon_sym_case, - ACTIONS(374), 1, + ACTIONS(358), 1, anon_sym_let, - ACTIONS(377), 1, + ACTIONS(360), 1, anon_sym_assert, - ACTIONS(380), 1, + ACTIONS(362), 1, anon_sym_use, - ACTIONS(383), 1, + ACTIONS(364), 1, anon_sym_BANG, - ACTIONS(386), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(389), 1, + ACTIONS(368), 1, sym_float, - ACTIONS(395), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(398), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(401), 1, + ACTIONS(376), 1, sym__upname, - STATE(20), 1, + ACTIONS(408), 1, + anon_sym_RBRACE, + STATE(6), 1, aux_sym__statement_seq, - STATE(140), 1, + STATE(141), 1, sym_identifier, - STATE(147), 1, - sym_tuple, STATE(158), 1, sym_anonymous_function, - STATE(1187), 1, + STATE(160), 1, + sym_tuple, + STATE(1204), 1, sym__maybe_function_expression, - STATE(1280), 1, + STATE(1296), 1, sym__maybe_record_expression, - STATE(1310), 1, + STATE(1336), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(119), 2, + STATE(127), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(157), 2, + STATE(156), 2, sym_record, sym_record_update, - ACTIONS(392), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(138), 5, + STATE(140), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(656), 5, + STATE(679), 5, sym_try, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(303), 11, + STATE(293), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -8286,92 +8659,93 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [1935] = 35, + [2340] = 35, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(336), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(340), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(342), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(344), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(346), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(348), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(350), 1, anon_sym_try, - ACTIONS(292), 1, + ACTIONS(352), 1, anon_sym_todo, - ACTIONS(294), 1, + ACTIONS(354), 1, anon_sym_panic, - ACTIONS(296), 1, + ACTIONS(356), 1, anon_sym_case, - ACTIONS(298), 1, + ACTIONS(358), 1, anon_sym_let, - ACTIONS(300), 1, + ACTIONS(360), 1, anon_sym_assert, - ACTIONS(302), 1, + ACTIONS(362), 1, anon_sym_use, - ACTIONS(304), 1, + ACTIONS(364), 1, anon_sym_BANG, - ACTIONS(306), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(308), 1, + ACTIONS(368), 1, sym_float, - ACTIONS(312), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(314), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(316), 1, + ACTIONS(376), 1, sym__upname, - ACTIONS(404), 1, + ACTIONS(410), 1, anon_sym_RBRACE, - STATE(20), 1, + STATE(6), 1, aux_sym__statement_seq, - STATE(140), 1, + STATE(141), 1, sym_identifier, - STATE(147), 1, - sym_tuple, STATE(158), 1, sym_anonymous_function, - STATE(1187), 1, + STATE(160), 1, + sym_tuple, + STATE(1204), 1, sym__maybe_function_expression, - STATE(1280), 1, + STATE(1296), 1, sym__maybe_record_expression, - STATE(1310), 1, + STATE(1336), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(119), 2, + STATE(127), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(157), 2, + STATE(156), 2, sym_record, sym_record_update, - ACTIONS(310), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(138), 5, + STATE(140), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(656), 5, + STATE(679), 5, sym_try, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(303), 11, + STATE(293), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -8380,92 +8754,93 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [2064] = 35, + [2470] = 35, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(336), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(340), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(342), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(344), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(346), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(348), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(350), 1, anon_sym_try, - ACTIONS(292), 1, + ACTIONS(352), 1, anon_sym_todo, - ACTIONS(294), 1, + ACTIONS(354), 1, anon_sym_panic, - ACTIONS(296), 1, + ACTIONS(356), 1, anon_sym_case, - ACTIONS(298), 1, + ACTIONS(358), 1, anon_sym_let, - ACTIONS(300), 1, + ACTIONS(360), 1, anon_sym_assert, - ACTIONS(302), 1, + ACTIONS(362), 1, anon_sym_use, - ACTIONS(304), 1, + ACTIONS(364), 1, anon_sym_BANG, - ACTIONS(306), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(308), 1, + ACTIONS(368), 1, sym_float, - ACTIONS(312), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(314), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(316), 1, + ACTIONS(376), 1, sym__upname, - ACTIONS(406), 1, + ACTIONS(412), 1, anon_sym_RBRACE, STATE(20), 1, aux_sym__statement_seq, - STATE(140), 1, + STATE(141), 1, sym_identifier, - STATE(147), 1, - sym_tuple, STATE(158), 1, sym_anonymous_function, - STATE(1187), 1, + STATE(160), 1, + sym_tuple, + STATE(1204), 1, sym__maybe_function_expression, - STATE(1280), 1, + STATE(1296), 1, sym__maybe_record_expression, - STATE(1310), 1, + STATE(1336), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(119), 2, + STATE(127), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(157), 2, + STATE(156), 2, sym_record, sym_record_update, - ACTIONS(310), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(138), 5, + STATE(140), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(656), 5, + STATE(679), 5, sym_try, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(303), 11, + STATE(293), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -8474,92 +8849,93 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [2193] = 35, + [2600] = 35, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(336), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(340), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(342), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(344), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(346), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(348), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(350), 1, anon_sym_try, - ACTIONS(292), 1, + ACTIONS(352), 1, anon_sym_todo, - ACTIONS(294), 1, + ACTIONS(354), 1, anon_sym_panic, - ACTIONS(296), 1, + ACTIONS(356), 1, anon_sym_case, - ACTIONS(298), 1, + ACTIONS(358), 1, anon_sym_let, - ACTIONS(300), 1, + ACTIONS(360), 1, anon_sym_assert, - ACTIONS(302), 1, + ACTIONS(362), 1, anon_sym_use, - ACTIONS(304), 1, + ACTIONS(364), 1, anon_sym_BANG, - ACTIONS(306), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(308), 1, + ACTIONS(368), 1, sym_float, - ACTIONS(312), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(314), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(316), 1, + ACTIONS(376), 1, sym__upname, - ACTIONS(408), 1, + ACTIONS(414), 1, anon_sym_RBRACE, - STATE(20), 1, + STATE(6), 1, aux_sym__statement_seq, - STATE(140), 1, + STATE(141), 1, sym_identifier, - STATE(147), 1, - sym_tuple, STATE(158), 1, sym_anonymous_function, - STATE(1187), 1, + STATE(160), 1, + sym_tuple, + STATE(1204), 1, sym__maybe_function_expression, - STATE(1280), 1, + STATE(1296), 1, sym__maybe_record_expression, - STATE(1310), 1, + STATE(1336), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(119), 2, + STATE(127), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(157), 2, + STATE(156), 2, sym_record, sym_record_update, - ACTIONS(310), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(138), 5, + STATE(140), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(656), 5, + STATE(679), 5, sym_try, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(303), 11, + STATE(293), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -8568,92 +8944,93 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [2322] = 35, + [2730] = 35, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(336), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(340), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(342), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(344), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(346), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(348), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(350), 1, anon_sym_try, - ACTIONS(292), 1, + ACTIONS(352), 1, anon_sym_todo, - ACTIONS(294), 1, + ACTIONS(354), 1, anon_sym_panic, - ACTIONS(296), 1, + ACTIONS(356), 1, anon_sym_case, - ACTIONS(298), 1, + ACTIONS(358), 1, anon_sym_let, - ACTIONS(300), 1, + ACTIONS(360), 1, anon_sym_assert, - ACTIONS(302), 1, + ACTIONS(362), 1, anon_sym_use, - ACTIONS(304), 1, + ACTIONS(364), 1, anon_sym_BANG, - ACTIONS(306), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(308), 1, + ACTIONS(368), 1, sym_float, - ACTIONS(312), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(314), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(316), 1, + ACTIONS(376), 1, sym__upname, - ACTIONS(410), 1, + ACTIONS(416), 1, anon_sym_RBRACE, - STATE(20), 1, + STATE(6), 1, aux_sym__statement_seq, - STATE(140), 1, + STATE(141), 1, sym_identifier, - STATE(147), 1, - sym_tuple, STATE(158), 1, sym_anonymous_function, - STATE(1187), 1, + STATE(160), 1, + sym_tuple, + STATE(1204), 1, sym__maybe_function_expression, - STATE(1280), 1, + STATE(1296), 1, sym__maybe_record_expression, - STATE(1310), 1, + STATE(1336), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(119), 2, + STATE(127), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(157), 2, + STATE(156), 2, sym_record, sym_record_update, - ACTIONS(310), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(138), 5, + STATE(140), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(656), 5, + STATE(679), 5, sym_try, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(303), 11, + STATE(293), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -8662,92 +9039,93 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [2451] = 35, + [2860] = 35, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(336), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(340), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(342), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(344), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(346), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(348), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(350), 1, anon_sym_try, - ACTIONS(292), 1, + ACTIONS(352), 1, anon_sym_todo, - ACTIONS(294), 1, + ACTIONS(354), 1, anon_sym_panic, - ACTIONS(296), 1, + ACTIONS(356), 1, anon_sym_case, - ACTIONS(298), 1, + ACTIONS(358), 1, anon_sym_let, - ACTIONS(300), 1, + ACTIONS(360), 1, anon_sym_assert, - ACTIONS(302), 1, + ACTIONS(362), 1, anon_sym_use, - ACTIONS(304), 1, + ACTIONS(364), 1, anon_sym_BANG, - ACTIONS(306), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(308), 1, + ACTIONS(368), 1, sym_float, - ACTIONS(312), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(314), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(316), 1, + ACTIONS(376), 1, sym__upname, - ACTIONS(412), 1, + ACTIONS(418), 1, anon_sym_RBRACE, - STATE(20), 1, + STATE(6), 1, aux_sym__statement_seq, - STATE(140), 1, + STATE(141), 1, sym_identifier, - STATE(147), 1, - sym_tuple, STATE(158), 1, sym_anonymous_function, - STATE(1187), 1, + STATE(160), 1, + sym_tuple, + STATE(1204), 1, sym__maybe_function_expression, - STATE(1280), 1, + STATE(1296), 1, sym__maybe_record_expression, - STATE(1310), 1, + STATE(1336), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(119), 2, + STATE(127), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(157), 2, + STATE(156), 2, sym_record, sym_record_update, - ACTIONS(310), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(138), 5, + STATE(140), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(656), 5, + STATE(679), 5, sym_try, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(303), 11, + STATE(293), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -8756,92 +9134,93 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [2580] = 35, + [2990] = 35, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(336), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(340), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(342), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(344), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(346), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(348), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(350), 1, anon_sym_try, - ACTIONS(292), 1, + ACTIONS(352), 1, anon_sym_todo, - ACTIONS(294), 1, + ACTIONS(354), 1, anon_sym_panic, - ACTIONS(296), 1, + ACTIONS(356), 1, anon_sym_case, - ACTIONS(298), 1, + ACTIONS(358), 1, anon_sym_let, - ACTIONS(300), 1, + ACTIONS(360), 1, anon_sym_assert, - ACTIONS(302), 1, + ACTIONS(362), 1, anon_sym_use, - ACTIONS(304), 1, + ACTIONS(364), 1, anon_sym_BANG, - ACTIONS(306), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(308), 1, + ACTIONS(368), 1, sym_float, - ACTIONS(312), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(314), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(316), 1, + ACTIONS(376), 1, sym__upname, - ACTIONS(414), 1, + ACTIONS(420), 1, anon_sym_RBRACE, - STATE(20), 1, + STATE(6), 1, aux_sym__statement_seq, - STATE(140), 1, + STATE(141), 1, sym_identifier, - STATE(147), 1, - sym_tuple, STATE(158), 1, sym_anonymous_function, - STATE(1187), 1, + STATE(160), 1, + sym_tuple, + STATE(1204), 1, sym__maybe_function_expression, - STATE(1280), 1, + STATE(1296), 1, sym__maybe_record_expression, - STATE(1310), 1, + STATE(1336), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(119), 2, + STATE(127), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(157), 2, + STATE(156), 2, sym_record, sym_record_update, - ACTIONS(310), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(138), 5, + STATE(140), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(656), 5, + STATE(679), 5, sym_try, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(303), 11, + STATE(293), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -8850,92 +9229,93 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [2709] = 35, + [3120] = 35, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(336), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(340), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(342), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(344), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(346), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(348), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(350), 1, anon_sym_try, - ACTIONS(292), 1, + ACTIONS(352), 1, anon_sym_todo, - ACTIONS(294), 1, + ACTIONS(354), 1, anon_sym_panic, - ACTIONS(296), 1, + ACTIONS(356), 1, anon_sym_case, - ACTIONS(298), 1, + ACTIONS(358), 1, anon_sym_let, - ACTIONS(300), 1, + ACTIONS(360), 1, anon_sym_assert, - ACTIONS(302), 1, + ACTIONS(362), 1, anon_sym_use, - ACTIONS(304), 1, + ACTIONS(364), 1, anon_sym_BANG, - ACTIONS(306), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(308), 1, + ACTIONS(368), 1, sym_float, - ACTIONS(312), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(314), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(316), 1, + ACTIONS(376), 1, sym__upname, - ACTIONS(416), 1, + ACTIONS(422), 1, anon_sym_RBRACE, - STATE(20), 1, + STATE(24), 1, aux_sym__statement_seq, - STATE(140), 1, + STATE(141), 1, sym_identifier, - STATE(147), 1, - sym_tuple, STATE(158), 1, sym_anonymous_function, - STATE(1187), 1, + STATE(160), 1, + sym_tuple, + STATE(1204), 1, sym__maybe_function_expression, - STATE(1280), 1, + STATE(1296), 1, sym__maybe_record_expression, - STATE(1310), 1, + STATE(1336), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(119), 2, + STATE(127), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(157), 2, + STATE(156), 2, sym_record, sym_record_update, - ACTIONS(310), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(138), 5, + STATE(140), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(656), 5, + STATE(679), 5, sym_try, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(303), 11, + STATE(293), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -8944,92 +9324,93 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [2838] = 35, + [3250] = 35, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(336), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(340), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(342), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(344), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(346), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(348), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(350), 1, anon_sym_try, - ACTIONS(292), 1, + ACTIONS(352), 1, anon_sym_todo, - ACTIONS(294), 1, + ACTIONS(354), 1, anon_sym_panic, - ACTIONS(296), 1, + ACTIONS(356), 1, anon_sym_case, - ACTIONS(298), 1, + ACTIONS(358), 1, anon_sym_let, - ACTIONS(300), 1, + ACTIONS(360), 1, anon_sym_assert, - ACTIONS(302), 1, + ACTIONS(362), 1, anon_sym_use, - ACTIONS(304), 1, + ACTIONS(364), 1, anon_sym_BANG, - ACTIONS(306), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(308), 1, + ACTIONS(368), 1, sym_float, - ACTIONS(312), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(314), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(316), 1, + ACTIONS(376), 1, sym__upname, - ACTIONS(418), 1, + ACTIONS(424), 1, anon_sym_RBRACE, - STATE(20), 1, + STATE(6), 1, aux_sym__statement_seq, - STATE(140), 1, + STATE(141), 1, sym_identifier, - STATE(147), 1, - sym_tuple, STATE(158), 1, sym_anonymous_function, - STATE(1187), 1, + STATE(160), 1, + sym_tuple, + STATE(1204), 1, sym__maybe_function_expression, - STATE(1280), 1, + STATE(1296), 1, sym__maybe_record_expression, - STATE(1310), 1, + STATE(1336), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(119), 2, + STATE(127), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(157), 2, + STATE(156), 2, sym_record, sym_record_update, - ACTIONS(310), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(138), 5, + STATE(140), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(656), 5, + STATE(679), 5, sym_try, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(303), 11, + STATE(293), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -9038,157 +9419,93 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [2967] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(424), 1, - anon_sym_LPAREN, - STATE(73), 1, - sym_arguments, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(422), 26, - 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_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(420), 27, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [3038] = 35, + [3380] = 35, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(336), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(340), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(342), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(344), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(346), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(348), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(350), 1, anon_sym_try, - ACTIONS(292), 1, + ACTIONS(352), 1, anon_sym_todo, - ACTIONS(294), 1, + ACTIONS(354), 1, anon_sym_panic, - ACTIONS(296), 1, + ACTIONS(356), 1, anon_sym_case, - ACTIONS(298), 1, + ACTIONS(358), 1, anon_sym_let, - ACTIONS(300), 1, + ACTIONS(360), 1, anon_sym_assert, - ACTIONS(302), 1, + ACTIONS(362), 1, anon_sym_use, - ACTIONS(304), 1, + ACTIONS(364), 1, anon_sym_BANG, - ACTIONS(306), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(308), 1, + ACTIONS(368), 1, sym_float, - ACTIONS(312), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(314), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(316), 1, + ACTIONS(376), 1, sym__upname, ACTIONS(426), 1, anon_sym_RBRACE, - STATE(20), 1, + STATE(6), 1, aux_sym__statement_seq, - STATE(140), 1, + STATE(141), 1, sym_identifier, - STATE(147), 1, - sym_tuple, STATE(158), 1, sym_anonymous_function, - STATE(1187), 1, + STATE(160), 1, + sym_tuple, + STATE(1204), 1, sym__maybe_function_expression, - STATE(1280), 1, + STATE(1296), 1, sym__maybe_record_expression, - STATE(1310), 1, + STATE(1336), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(119), 2, + STATE(127), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(157), 2, + STATE(156), 2, sym_record, sym_record_update, - ACTIONS(310), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(138), 5, + STATE(140), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(656), 5, + STATE(679), 5, sym_try, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(303), 11, + STATE(293), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -9197,92 +9514,93 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [3167] = 35, + [3510] = 35, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(336), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(340), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(342), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(344), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(346), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(348), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(350), 1, anon_sym_try, - ACTIONS(292), 1, + ACTIONS(352), 1, anon_sym_todo, - ACTIONS(294), 1, + ACTIONS(354), 1, anon_sym_panic, - ACTIONS(296), 1, + ACTIONS(356), 1, anon_sym_case, - ACTIONS(298), 1, + ACTIONS(358), 1, anon_sym_let, - ACTIONS(300), 1, + ACTIONS(360), 1, anon_sym_assert, - ACTIONS(302), 1, + ACTIONS(362), 1, anon_sym_use, - ACTIONS(304), 1, + ACTIONS(364), 1, anon_sym_BANG, - ACTIONS(306), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(308), 1, + ACTIONS(368), 1, sym_float, - ACTIONS(312), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(314), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(316), 1, + ACTIONS(376), 1, sym__upname, ACTIONS(428), 1, anon_sym_RBRACE, - STATE(20), 1, + STATE(31), 1, aux_sym__statement_seq, - STATE(140), 1, + STATE(141), 1, sym_identifier, - STATE(147), 1, - sym_tuple, STATE(158), 1, sym_anonymous_function, - STATE(1187), 1, + STATE(160), 1, + sym_tuple, + STATE(1204), 1, sym__maybe_function_expression, - STATE(1280), 1, + STATE(1296), 1, sym__maybe_record_expression, - STATE(1310), 1, + STATE(1336), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(119), 2, + STATE(127), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(157), 2, + STATE(156), 2, sym_record, sym_record_update, - ACTIONS(310), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(138), 5, + STATE(140), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(656), 5, + STATE(679), 5, sym_try, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(303), 11, + STATE(293), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -9291,92 +9609,93 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [3296] = 35, + [3640] = 35, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(336), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(340), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(342), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(344), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(346), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(348), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(350), 1, anon_sym_try, - ACTIONS(292), 1, + ACTIONS(352), 1, anon_sym_todo, - ACTIONS(294), 1, + ACTIONS(354), 1, anon_sym_panic, - ACTIONS(296), 1, + ACTIONS(356), 1, anon_sym_case, - ACTIONS(298), 1, + ACTIONS(358), 1, anon_sym_let, - ACTIONS(300), 1, + ACTIONS(360), 1, anon_sym_assert, - ACTIONS(302), 1, + ACTIONS(362), 1, anon_sym_use, - ACTIONS(304), 1, + ACTIONS(364), 1, anon_sym_BANG, - ACTIONS(306), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(308), 1, + ACTIONS(368), 1, sym_float, - ACTIONS(312), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(314), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(316), 1, + ACTIONS(376), 1, sym__upname, ACTIONS(430), 1, anon_sym_RBRACE, - STATE(31), 1, + STATE(6), 1, aux_sym__statement_seq, - STATE(140), 1, + STATE(141), 1, sym_identifier, - STATE(147), 1, - sym_tuple, STATE(158), 1, sym_anonymous_function, - STATE(1187), 1, + STATE(160), 1, + sym_tuple, + STATE(1204), 1, sym__maybe_function_expression, - STATE(1280), 1, + STATE(1296), 1, sym__maybe_record_expression, - STATE(1310), 1, + STATE(1336), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(119), 2, + STATE(127), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(157), 2, + STATE(156), 2, sym_record, sym_record_update, - ACTIONS(310), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(138), 5, + STATE(140), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(656), 5, + STATE(679), 5, sym_try, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(303), 11, + STATE(293), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -9385,92 +9704,91 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [3425] = 35, + [3770] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(336), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(340), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(342), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(344), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(346), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(348), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(350), 1, anon_sym_try, - ACTIONS(292), 1, + ACTIONS(352), 1, anon_sym_todo, - ACTIONS(294), 1, + ACTIONS(354), 1, anon_sym_panic, - ACTIONS(296), 1, + ACTIONS(356), 1, anon_sym_case, - ACTIONS(298), 1, + ACTIONS(358), 1, anon_sym_let, - ACTIONS(300), 1, + ACTIONS(360), 1, anon_sym_assert, - ACTIONS(302), 1, + ACTIONS(362), 1, anon_sym_use, - ACTIONS(304), 1, + ACTIONS(364), 1, anon_sym_BANG, - ACTIONS(306), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(308), 1, + ACTIONS(368), 1, sym_float, - ACTIONS(312), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(314), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(316), 1, + ACTIONS(376), 1, sym__upname, - ACTIONS(432), 1, - anon_sym_RBRACE, - STATE(20), 1, + STATE(22), 1, aux_sym__statement_seq, - STATE(140), 1, + STATE(141), 1, sym_identifier, - STATE(147), 1, - sym_tuple, STATE(158), 1, sym_anonymous_function, - STATE(1187), 1, + STATE(160), 1, + sym_tuple, + STATE(1204), 1, sym__maybe_function_expression, - STATE(1280), 1, + STATE(1296), 1, sym__maybe_record_expression, - STATE(1310), 1, + STATE(1336), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(119), 2, + STATE(127), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(157), 2, + STATE(156), 2, sym_record, sym_record_update, - ACTIONS(310), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(138), 5, + STATE(140), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(656), 5, + STATE(679), 5, sym_try, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(303), 11, + STATE(293), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -9479,92 +9797,91 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [3554] = 35, + [3897] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(336), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(340), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(342), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(344), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(346), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(348), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(350), 1, anon_sym_try, - ACTIONS(292), 1, + ACTIONS(352), 1, anon_sym_todo, - ACTIONS(294), 1, + ACTIONS(354), 1, anon_sym_panic, - ACTIONS(296), 1, + ACTIONS(356), 1, anon_sym_case, - ACTIONS(298), 1, + ACTIONS(358), 1, anon_sym_let, - ACTIONS(300), 1, + ACTIONS(360), 1, anon_sym_assert, - ACTIONS(302), 1, + ACTIONS(362), 1, anon_sym_use, - ACTIONS(304), 1, + ACTIONS(364), 1, anon_sym_BANG, - ACTIONS(306), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(308), 1, + ACTIONS(368), 1, sym_float, - ACTIONS(312), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(314), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(316), 1, + ACTIONS(376), 1, sym__upname, - ACTIONS(434), 1, - anon_sym_RBRACE, - STATE(22), 1, + STATE(29), 1, aux_sym__statement_seq, - STATE(140), 1, + STATE(141), 1, sym_identifier, - STATE(147), 1, - sym_tuple, STATE(158), 1, sym_anonymous_function, - STATE(1187), 1, + STATE(160), 1, + sym_tuple, + STATE(1204), 1, sym__maybe_function_expression, - STATE(1280), 1, + STATE(1296), 1, sym__maybe_record_expression, - STATE(1310), 1, + STATE(1336), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(119), 2, + STATE(127), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(157), 2, + STATE(156), 2, sym_record, sym_record_update, - ACTIONS(310), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(138), 5, + STATE(140), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(656), 5, + STATE(679), 5, sym_try, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(303), 11, + STATE(293), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -9573,92 +9890,91 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [3683] = 35, + [4024] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(336), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(340), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(342), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(344), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(346), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(348), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(350), 1, anon_sym_try, - ACTIONS(292), 1, + ACTIONS(352), 1, anon_sym_todo, - ACTIONS(294), 1, + ACTIONS(354), 1, anon_sym_panic, - ACTIONS(296), 1, + ACTIONS(356), 1, anon_sym_case, - ACTIONS(298), 1, + ACTIONS(358), 1, anon_sym_let, - ACTIONS(300), 1, + ACTIONS(360), 1, anon_sym_assert, - ACTIONS(302), 1, + ACTIONS(362), 1, anon_sym_use, - ACTIONS(304), 1, + ACTIONS(364), 1, anon_sym_BANG, - ACTIONS(306), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(308), 1, + ACTIONS(368), 1, sym_float, - ACTIONS(312), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(314), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(316), 1, + ACTIONS(376), 1, sym__upname, - ACTIONS(436), 1, - anon_sym_RBRACE, - STATE(6), 1, + STATE(11), 1, aux_sym__statement_seq, - STATE(140), 1, + STATE(141), 1, sym_identifier, - STATE(147), 1, - sym_tuple, STATE(158), 1, sym_anonymous_function, - STATE(1187), 1, + STATE(160), 1, + sym_tuple, + STATE(1204), 1, sym__maybe_function_expression, - STATE(1280), 1, + STATE(1296), 1, sym__maybe_record_expression, - STATE(1310), 1, + STATE(1336), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(119), 2, + STATE(127), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(157), 2, + STATE(156), 2, sym_record, sym_record_update, - ACTIONS(310), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(138), 5, + STATE(140), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(656), 5, + STATE(679), 5, sym_try, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(303), 11, + STATE(293), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -9667,182 +9983,91 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [3812] = 34, + [4151] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(336), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(340), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(342), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(344), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(346), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(348), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(350), 1, anon_sym_try, - ACTIONS(292), 1, + ACTIONS(352), 1, anon_sym_todo, - ACTIONS(294), 1, + ACTIONS(354), 1, anon_sym_panic, - ACTIONS(296), 1, + ACTIONS(356), 1, anon_sym_case, - ACTIONS(298), 1, + ACTIONS(358), 1, anon_sym_let, - ACTIONS(300), 1, + ACTIONS(360), 1, anon_sym_assert, - ACTIONS(302), 1, + ACTIONS(362), 1, anon_sym_use, - ACTIONS(304), 1, + ACTIONS(364), 1, anon_sym_BANG, - ACTIONS(306), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(308), 1, + ACTIONS(368), 1, sym_float, - ACTIONS(312), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(314), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(316), 1, + ACTIONS(376), 1, sym__upname, - STATE(8), 1, + STATE(32), 1, aux_sym__statement_seq, - STATE(140), 1, + STATE(141), 1, sym_identifier, - STATE(147), 1, - sym_tuple, STATE(158), 1, sym_anonymous_function, - STATE(1187), 1, - sym__maybe_function_expression, - STATE(1280), 1, - sym__maybe_record_expression, - STATE(1310), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(119), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(157), 2, - sym_record, - sym_record_update, - ACTIONS(310), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(138), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(656), 5, - sym_try, - sym__statement, - sym_let_assert, - sym_let, - sym_use, - STATE(303), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [3938] = 34, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(276), 1, - anon_sym_LBRACE, - ACTIONS(280), 1, - anon_sym_POUND, - ACTIONS(282), 1, - anon_sym_LBRACK, - ACTIONS(284), 1, - anon_sym_LT_LT, - ACTIONS(286), 1, - anon_sym_DASH, - ACTIONS(288), 1, - anon_sym_fn, - ACTIONS(290), 1, - anon_sym_try, - ACTIONS(292), 1, - anon_sym_todo, - ACTIONS(294), 1, - anon_sym_panic, - ACTIONS(296), 1, - anon_sym_case, - ACTIONS(298), 1, - anon_sym_let, - ACTIONS(300), 1, - anon_sym_assert, - ACTIONS(302), 1, - anon_sym_use, - ACTIONS(304), 1, - anon_sym_BANG, - ACTIONS(306), 1, - anon_sym_DQUOTE, - ACTIONS(308), 1, - sym_float, - ACTIONS(312), 1, - sym__decimal, - ACTIONS(314), 1, - sym__name, - ACTIONS(316), 1, - sym__upname, - STATE(14), 1, - aux_sym__statement_seq, - STATE(140), 1, - sym_identifier, - STATE(147), 1, + STATE(160), 1, sym_tuple, - STATE(158), 1, - sym_anonymous_function, - STATE(1187), 1, + STATE(1204), 1, sym__maybe_function_expression, - STATE(1280), 1, + STATE(1296), 1, sym__maybe_record_expression, - STATE(1310), 1, + STATE(1336), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(119), 2, + STATE(127), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(157), 2, + STATE(156), 2, sym_record, sym_record_update, - ACTIONS(310), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(138), 5, + STATE(140), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(656), 5, + STATE(679), 5, sym_try, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(303), 11, + STATE(293), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -9851,140 +10076,21 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [4064] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(440), 26, - 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_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(438), 28, - 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_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [4130] = 4, + [4278] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(444), 26, - 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_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(442), 28, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_POUND, + ACTIONS(436), 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_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [4196] = 4, - ACTIONS(3), 1, - sym_module_comment, + STATE(74), 1, + sym_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(448), 26, + ACTIONS(434), 26, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -10011,12 +10117,11 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(446), 28, + ACTIONS(432), 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, @@ -10040,87 +10145,87 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [4262] = 34, + [4349] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(336), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(340), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(342), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(344), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(346), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(348), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(350), 1, anon_sym_try, - ACTIONS(292), 1, + ACTIONS(352), 1, anon_sym_todo, - ACTIONS(294), 1, + ACTIONS(354), 1, anon_sym_panic, - ACTIONS(296), 1, + ACTIONS(356), 1, anon_sym_case, - ACTIONS(298), 1, + ACTIONS(358), 1, anon_sym_let, - ACTIONS(300), 1, + ACTIONS(360), 1, anon_sym_assert, - ACTIONS(302), 1, + ACTIONS(362), 1, anon_sym_use, - ACTIONS(304), 1, + ACTIONS(364), 1, anon_sym_BANG, - ACTIONS(306), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(308), 1, + ACTIONS(368), 1, sym_float, - ACTIONS(312), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(314), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(316), 1, + ACTIONS(376), 1, sym__upname, - STATE(24), 1, + STATE(7), 1, aux_sym__statement_seq, - STATE(140), 1, + STATE(141), 1, sym_identifier, - STATE(147), 1, - sym_tuple, STATE(158), 1, sym_anonymous_function, - STATE(1187), 1, + STATE(160), 1, + sym_tuple, + STATE(1204), 1, sym__maybe_function_expression, - STATE(1280), 1, + STATE(1296), 1, sym__maybe_record_expression, - STATE(1310), 1, + STATE(1336), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(119), 2, + STATE(127), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(157), 2, + STATE(156), 2, sym_record, sym_record_update, - ACTIONS(310), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(138), 5, + STATE(140), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(656), 5, + STATE(679), 5, sym_try, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(303), 11, + STATE(293), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -10129,152 +10234,91 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [4388] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(452), 26, - 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_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(450), 28, - 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_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [4454] = 34, + [4476] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(336), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(340), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(342), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(344), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(346), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(348), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(350), 1, anon_sym_try, - ACTIONS(292), 1, + ACTIONS(352), 1, anon_sym_todo, - ACTIONS(294), 1, + ACTIONS(354), 1, anon_sym_panic, - ACTIONS(296), 1, + ACTIONS(356), 1, anon_sym_case, - ACTIONS(298), 1, + ACTIONS(358), 1, anon_sym_let, - ACTIONS(300), 1, + ACTIONS(360), 1, anon_sym_assert, - ACTIONS(302), 1, + ACTIONS(362), 1, anon_sym_use, - ACTIONS(304), 1, + ACTIONS(364), 1, anon_sym_BANG, - ACTIONS(306), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(308), 1, + ACTIONS(368), 1, sym_float, - ACTIONS(312), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(314), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(316), 1, + ACTIONS(376), 1, sym__upname, - STATE(11), 1, + STATE(12), 1, aux_sym__statement_seq, - STATE(140), 1, + STATE(141), 1, sym_identifier, - STATE(147), 1, - sym_tuple, STATE(158), 1, sym_anonymous_function, - STATE(1187), 1, + STATE(160), 1, + sym_tuple, + STATE(1204), 1, sym__maybe_function_expression, - STATE(1280), 1, + STATE(1296), 1, sym__maybe_record_expression, - STATE(1310), 1, + STATE(1336), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(119), 2, + STATE(127), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(157), 2, + STATE(156), 2, sym_record, sym_record_update, - ACTIONS(310), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(138), 5, + STATE(140), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(656), 5, + STATE(679), 5, sym_try, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(303), 11, + STATE(293), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -10283,214 +10327,184 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [4580] = 4, + [4603] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(456), 21, - 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_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(454), 33, + ACTIONS(336), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(340), 1, anon_sym_POUND, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(342), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(344), 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_LT_GT, - anon_sym_DOT_DOT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [4646] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(460), 26, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_const, + ACTIONS(346), 1, anon_sym_DASH, + ACTIONS(348), 1, anon_sym_fn, - anon_sym_external, - anon_sym_type, + ACTIONS(350), 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(352), 1, anon_sym_todo, + ACTIONS(354), 1, anon_sym_panic, + ACTIONS(356), 1, anon_sym_case, + ACTIONS(358), 1, anon_sym_let, + ACTIONS(360), 1, anon_sym_assert, + ACTIONS(362), 1, anon_sym_use, + ACTIONS(364), 1, anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(458), 28, - 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_LT_GT, + ACTIONS(366), 1, anon_sym_DQUOTE, + ACTIONS(368), 1, sym_float, + ACTIONS(372), 1, + sym__decimal, + ACTIONS(374), 1, + sym__name, + ACTIONS(376), 1, + sym__upname, + STATE(26), 1, + aux_sym__statement_seq, + STATE(141), 1, + sym_identifier, + STATE(158), 1, + sym_anonymous_function, + STATE(160), 1, + sym_tuple, + STATE(1204), 1, + sym__maybe_function_expression, + STATE(1296), 1, + sym__maybe_record_expression, + STATE(1336), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(127), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(156), 2, + sym_record, + sym_record_update, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [4712] = 34, + STATE(140), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(679), 5, + sym_try, + sym__statement, + sym_let_assert, + sym_let, + sym_use, + STATE(293), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [4730] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(336), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(340), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(342), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(344), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(346), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(348), 1, anon_sym_fn, - ACTIONS(290), 1, + ACTIONS(350), 1, anon_sym_try, - ACTIONS(292), 1, + ACTIONS(352), 1, anon_sym_todo, - ACTIONS(294), 1, + ACTIONS(354), 1, anon_sym_panic, - ACTIONS(296), 1, + ACTIONS(356), 1, anon_sym_case, - ACTIONS(298), 1, + ACTIONS(358), 1, anon_sym_let, - ACTIONS(300), 1, + ACTIONS(360), 1, anon_sym_assert, - ACTIONS(302), 1, + ACTIONS(362), 1, anon_sym_use, - ACTIONS(304), 1, + ACTIONS(364), 1, anon_sym_BANG, - ACTIONS(306), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(308), 1, + ACTIONS(368), 1, sym_float, - ACTIONS(312), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(314), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(316), 1, + ACTIONS(376), 1, sym__upname, - STATE(16), 1, + STATE(10), 1, aux_sym__statement_seq, - STATE(140), 1, + STATE(141), 1, sym_identifier, - STATE(147), 1, - sym_tuple, STATE(158), 1, sym_anonymous_function, - STATE(1187), 1, + STATE(160), 1, + sym_tuple, + STATE(1204), 1, sym__maybe_function_expression, - STATE(1280), 1, + STATE(1296), 1, sym__maybe_record_expression, - STATE(1310), 1, + STATE(1336), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(119), 2, + STATE(127), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(157), 2, + STATE(156), 2, sym_record, sym_record_update, - ACTIONS(310), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(138), 5, + STATE(140), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(656), 5, + STATE(679), 5, sym_try, sym__statement, sym_let_assert, sym_let, sym_use, - STATE(303), 11, + STATE(293), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -10499,78 +10513,389 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [4838] = 4, + [4857] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(464), 26, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_const, + ACTIONS(336), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + anon_sym_POUND, + ACTIONS(342), 1, + anon_sym_LBRACK, + ACTIONS(344), 1, + anon_sym_LT_LT, + ACTIONS(346), 1, anon_sym_DASH, + ACTIONS(348), 1, anon_sym_fn, - anon_sym_external, - anon_sym_type, + ACTIONS(350), 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(352), 1, anon_sym_todo, + ACTIONS(354), 1, anon_sym_panic, + ACTIONS(356), 1, anon_sym_case, + ACTIONS(358), 1, anon_sym_let, + ACTIONS(360), 1, anon_sym_assert, + ACTIONS(362), 1, anon_sym_use, + ACTIONS(364), 1, anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, + ACTIONS(366), 1, + anon_sym_DQUOTE, + ACTIONS(368), 1, + sym_float, + ACTIONS(372), 1, sym__decimal, + ACTIONS(374), 1, sym__name, - ACTIONS(462), 28, - ts_builtin_sym_end, + ACTIONS(376), 1, + sym__upname, + STATE(8), 1, + aux_sym__statement_seq, + STATE(141), 1, + sym_identifier, + STATE(158), 1, + sym_anonymous_function, + STATE(160), 1, + sym_tuple, + STATE(1204), 1, + sym__maybe_function_expression, + STATE(1296), 1, + sym__maybe_record_expression, + STATE(1336), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(127), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(156), 2, + sym_record, + sym_record_update, + ACTIONS(370), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(140), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(679), 5, + sym_try, + sym__statement, + sym_let_assert, + sym_let, + sym_use, + STATE(293), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [4984] = 34, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(336), 1, anon_sym_LBRACE, - anon_sym_DOT, + ACTIONS(340), 1, anon_sym_POUND, - anon_sym_LPAREN, + ACTIONS(342), 1, anon_sym_LBRACK, + ACTIONS(344), 1, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, + ACTIONS(346), 1, + anon_sym_DASH, + ACTIONS(348), 1, + anon_sym_fn, + ACTIONS(350), 1, + anon_sym_try, + ACTIONS(352), 1, + anon_sym_todo, + ACTIONS(354), 1, + anon_sym_panic, + ACTIONS(356), 1, + anon_sym_case, + ACTIONS(358), 1, + anon_sym_let, + ACTIONS(360), 1, + anon_sym_assert, + ACTIONS(362), 1, + anon_sym_use, + ACTIONS(364), 1, + anon_sym_BANG, + ACTIONS(366), 1, + anon_sym_DQUOTE, + ACTIONS(368), 1, + sym_float, + ACTIONS(372), 1, + sym__decimal, + ACTIONS(374), 1, + sym__name, + ACTIONS(376), 1, + sym__upname, + STATE(34), 1, + aux_sym__statement_seq, + STATE(141), 1, + sym_identifier, + STATE(158), 1, + sym_anonymous_function, + STATE(160), 1, + sym_tuple, + STATE(1204), 1, + sym__maybe_function_expression, + STATE(1296), 1, + sym__maybe_record_expression, + STATE(1336), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(127), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(156), 2, + sym_record, + sym_record_update, + ACTIONS(370), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(140), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(679), 5, + sym_try, + sym__statement, + sym_let_assert, + sym_let, + sym_use, + STATE(293), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [5111] = 34, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(336), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + anon_sym_POUND, + ACTIONS(342), 1, + anon_sym_LBRACK, + ACTIONS(344), 1, + anon_sym_LT_LT, + ACTIONS(346), 1, + anon_sym_DASH, + ACTIONS(348), 1, + anon_sym_fn, + ACTIONS(350), 1, + anon_sym_try, + ACTIONS(352), 1, + anon_sym_todo, + ACTIONS(354), 1, + anon_sym_panic, + ACTIONS(356), 1, + anon_sym_case, + ACTIONS(358), 1, + anon_sym_let, + ACTIONS(360), 1, + anon_sym_assert, + ACTIONS(362), 1, + anon_sym_use, + ACTIONS(364), 1, + anon_sym_BANG, + ACTIONS(366), 1, anon_sym_DQUOTE, + ACTIONS(368), 1, sym_float, + ACTIONS(372), 1, + sym__decimal, + ACTIONS(374), 1, + sym__name, + ACTIONS(376), 1, + sym__upname, + STATE(27), 1, + aux_sym__statement_seq, + STATE(141), 1, + sym_identifier, + STATE(158), 1, + sym_anonymous_function, + STATE(160), 1, + sym_tuple, + STATE(1204), 1, + sym__maybe_function_expression, + STATE(1296), 1, + sym__maybe_record_expression, + STATE(1336), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(127), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(156), 2, + sym_record, + sym_record_update, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, + STATE(140), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(679), 5, + sym_try, + sym__statement, + sym_let_assert, + sym_let, + sym_use, + STATE(293), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [5238] = 34, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(336), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + anon_sym_POUND, + ACTIONS(342), 1, + anon_sym_LBRACK, + ACTIONS(344), 1, + anon_sym_LT_LT, + ACTIONS(346), 1, + anon_sym_DASH, + ACTIONS(348), 1, + anon_sym_fn, + ACTIONS(350), 1, + anon_sym_try, + ACTIONS(352), 1, + anon_sym_todo, + ACTIONS(354), 1, + anon_sym_panic, + ACTIONS(356), 1, + anon_sym_case, + ACTIONS(358), 1, + anon_sym_let, + ACTIONS(360), 1, + anon_sym_assert, + ACTIONS(362), 1, + anon_sym_use, + ACTIONS(364), 1, + anon_sym_BANG, + ACTIONS(366), 1, + anon_sym_DQUOTE, + ACTIONS(368), 1, + sym_float, + ACTIONS(372), 1, + sym__decimal, + ACTIONS(374), 1, + sym__name, + ACTIONS(376), 1, sym__upname, - [4904] = 4, + STATE(19), 1, + aux_sym__statement_seq, + STATE(141), 1, + sym_identifier, + STATE(158), 1, + sym_anonymous_function, + STATE(160), 1, + sym_tuple, + STATE(1204), 1, + sym__maybe_function_expression, + STATE(1296), 1, + sym__maybe_record_expression, + STATE(1336), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(127), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(156), 2, + sym_record, + sym_record_update, + ACTIONS(370), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(140), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(679), 5, + sym_try, + sym__statement, + sym_let_assert, + sym_let, + sym_use, + STATE(293), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [5365] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(468), 26, + ACTIONS(440), 26, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -10597,7 +10922,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(466), 28, + ACTIONS(438), 28, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_DOT, @@ -10626,21 +10951,18 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [4970] = 4, + [5431] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(472), 26, - anon_sym_if, - anon_sym_import, + ACTIONS(444), 21, + anon_sym_DOT, anon_sym_SLASH, - anon_sym_const, + anon_sym_EQ, anon_sym_DASH, anon_sym_fn, - anon_sym_external, - anon_sym_type, anon_sym_try, anon_sym_LT, anon_sym_LT_EQ, @@ -10655,18 +10977,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_assert, anon_sym_use, anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(470), 28, - ts_builtin_sym_end, + ACTIONS(442), 33, anon_sym_LBRACE, - anon_sym_DOT, + 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, @@ -10682,23 +11006,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, + anon_sym_DOT_DOT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [5036] = 6, + [5497] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(478), 1, + ACTIONS(450), 1, anon_sym_DOT, - ACTIONS(482), 1, + ACTIONS(454), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(474), 26, + ACTIONS(446), 26, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -10725,7 +11050,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(476), 26, + ACTIONS(448), 26, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -10752,197 +11077,137 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [5106] = 34, + [5567] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, - anon_sym_LBRACE, - ACTIONS(280), 1, - anon_sym_POUND, - ACTIONS(282), 1, - anon_sym_LBRACK, - ACTIONS(284), 1, - anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(458), 26, + anon_sym_if, + anon_sym_import, + anon_sym_SLASH, + anon_sym_const, anon_sym_DASH, - ACTIONS(288), 1, anon_sym_fn, - ACTIONS(290), 1, + anon_sym_external, + anon_sym_type, anon_sym_try, - ACTIONS(292), 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(294), 1, anon_sym_panic, - ACTIONS(296), 1, anon_sym_case, - ACTIONS(298), 1, anon_sym_let, - ACTIONS(300), 1, anon_sym_assert, - ACTIONS(302), 1, anon_sym_use, - ACTIONS(304), 1, anon_sym_BANG, - ACTIONS(306), 1, - anon_sym_DQUOTE, - ACTIONS(308), 1, - sym_float, - ACTIONS(312), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(314), 1, sym__name, - ACTIONS(316), 1, - sym__upname, - STATE(21), 1, - aux_sym__statement_seq, - STATE(140), 1, - sym_identifier, - STATE(147), 1, - sym_tuple, - STATE(158), 1, - sym_anonymous_function, - STATE(1187), 1, - sym__maybe_function_expression, - STATE(1280), 1, - sym__maybe_record_expression, - STATE(1310), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(119), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(157), 2, - sym_record, - sym_record_update, - ACTIONS(310), 3, + ACTIONS(456), 28, + 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_LT_GT, + anon_sym_DQUOTE, + sym_float, sym__hex, sym__octal, sym__binary, - STATE(138), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(656), 5, - sym_try, - sym__statement, - sym_let_assert, - sym_let, - sym_use, - STATE(303), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [5232] = 34, + sym__upname, + [5633] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, - anon_sym_LBRACE, - ACTIONS(280), 1, - anon_sym_POUND, - ACTIONS(282), 1, - anon_sym_LBRACK, - ACTIONS(284), 1, - anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(462), 26, + anon_sym_if, + anon_sym_import, + anon_sym_SLASH, + anon_sym_const, anon_sym_DASH, - ACTIONS(288), 1, anon_sym_fn, - ACTIONS(290), 1, + anon_sym_external, + anon_sym_type, anon_sym_try, - ACTIONS(292), 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(294), 1, anon_sym_panic, - ACTIONS(296), 1, anon_sym_case, - ACTIONS(298), 1, anon_sym_let, - ACTIONS(300), 1, anon_sym_assert, - ACTIONS(302), 1, anon_sym_use, - ACTIONS(304), 1, anon_sym_BANG, - ACTIONS(306), 1, - anon_sym_DQUOTE, - ACTIONS(308), 1, - sym_float, - ACTIONS(312), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(314), 1, sym__name, - ACTIONS(316), 1, - sym__upname, - STATE(26), 1, - aux_sym__statement_seq, - STATE(140), 1, - sym_identifier, - STATE(147), 1, - sym_tuple, - STATE(158), 1, - sym_anonymous_function, - STATE(1187), 1, - sym__maybe_function_expression, - STATE(1280), 1, - sym__maybe_record_expression, - STATE(1310), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(119), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(157), 2, - sym_record, - sym_record_update, - ACTIONS(310), 3, + ACTIONS(460), 28, + 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_LT_GT, + anon_sym_DQUOTE, + sym_float, sym__hex, sym__octal, sym__binary, - STATE(138), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(656), 5, - sym_try, - sym__statement, - sym_let_assert, - sym_let, - sym_use, - STATE(303), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [5358] = 4, + sym__upname, + [5699] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(486), 26, + ACTIONS(466), 26, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -10969,7 +11234,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(484), 28, + ACTIONS(464), 28, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_DOT, @@ -10998,13 +11263,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [5424] = 4, + [5765] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(490), 26, + ACTIONS(470), 26, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -11031,7 +11296,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(488), 28, + ACTIONS(468), 28, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_DOT, @@ -11060,289 +11325,75 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [5490] = 34, + [5831] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, - anon_sym_LBRACE, - ACTIONS(280), 1, - anon_sym_POUND, - ACTIONS(282), 1, - anon_sym_LBRACK, - ACTIONS(284), 1, - anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(474), 26, + anon_sym_if, + anon_sym_import, + anon_sym_SLASH, + anon_sym_const, anon_sym_DASH, - ACTIONS(288), 1, anon_sym_fn, - ACTIONS(290), 1, + anon_sym_external, + anon_sym_type, anon_sym_try, - ACTIONS(292), 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(294), 1, anon_sym_panic, - ACTIONS(296), 1, anon_sym_case, - ACTIONS(298), 1, anon_sym_let, - ACTIONS(300), 1, anon_sym_assert, - ACTIONS(302), 1, anon_sym_use, - ACTIONS(304), 1, anon_sym_BANG, - ACTIONS(306), 1, - anon_sym_DQUOTE, - ACTIONS(308), 1, - sym_float, - ACTIONS(312), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(314), 1, sym__name, - ACTIONS(316), 1, - sym__upname, - STATE(10), 1, - aux_sym__statement_seq, - STATE(140), 1, - sym_identifier, - STATE(147), 1, - sym_tuple, - STATE(158), 1, - sym_anonymous_function, - STATE(1187), 1, - sym__maybe_function_expression, - STATE(1280), 1, - sym__maybe_record_expression, - STATE(1310), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(119), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(157), 2, - sym_record, - sym_record_update, - ACTIONS(310), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(138), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(656), 5, - sym_try, - sym__statement, - sym_let_assert, - sym_let, - sym_use, - STATE(303), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [5616] = 34, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(276), 1, + ACTIONS(472), 28, + ts_builtin_sym_end, anon_sym_LBRACE, - ACTIONS(280), 1, + anon_sym_DOT, anon_sym_POUND, - ACTIONS(282), 1, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(284), 1, anon_sym_LT_LT, - ACTIONS(286), 1, - anon_sym_DASH, - ACTIONS(288), 1, - anon_sym_fn, - ACTIONS(290), 1, - anon_sym_try, - ACTIONS(292), 1, - anon_sym_todo, - ACTIONS(294), 1, - anon_sym_panic, - ACTIONS(296), 1, - anon_sym_case, - ACTIONS(298), 1, - anon_sym_let, - ACTIONS(300), 1, - anon_sym_assert, - ACTIONS(302), 1, - anon_sym_use, - ACTIONS(304), 1, - anon_sym_BANG, - ACTIONS(306), 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_LT_GT, anon_sym_DQUOTE, - ACTIONS(308), 1, sym_float, - ACTIONS(312), 1, - sym__decimal, - ACTIONS(314), 1, - sym__name, - ACTIONS(316), 1, - sym__upname, - STATE(28), 1, - aux_sym__statement_seq, - STATE(140), 1, - sym_identifier, - STATE(147), 1, - sym_tuple, - STATE(158), 1, - sym_anonymous_function, - STATE(1187), 1, - sym__maybe_function_expression, - STATE(1280), 1, - sym__maybe_record_expression, - STATE(1310), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(119), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(157), 2, - sym_record, - sym_record_update, - ACTIONS(310), 3, sym__hex, sym__octal, sym__binary, - STATE(138), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(656), 5, - sym_try, - sym__statement, - sym_let_assert, - sym_let, - sym_use, - STATE(303), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [5742] = 34, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(276), 1, - anon_sym_LBRACE, - ACTIONS(280), 1, - anon_sym_POUND, - ACTIONS(282), 1, - anon_sym_LBRACK, - ACTIONS(284), 1, - anon_sym_LT_LT, - ACTIONS(286), 1, - anon_sym_DASH, - ACTIONS(288), 1, - anon_sym_fn, - ACTIONS(290), 1, - anon_sym_try, - ACTIONS(292), 1, - anon_sym_todo, - ACTIONS(294), 1, - anon_sym_panic, - ACTIONS(296), 1, - anon_sym_case, - ACTIONS(298), 1, - anon_sym_let, - ACTIONS(300), 1, - anon_sym_assert, - ACTIONS(302), 1, - anon_sym_use, - ACTIONS(304), 1, - anon_sym_BANG, - ACTIONS(306), 1, - anon_sym_DQUOTE, - ACTIONS(308), 1, - sym_float, - ACTIONS(312), 1, - sym__decimal, - ACTIONS(314), 1, - sym__name, - ACTIONS(316), 1, sym__upname, - STATE(17), 1, - aux_sym__statement_seq, - STATE(140), 1, - sym_identifier, - STATE(147), 1, - sym_tuple, - STATE(158), 1, - sym_anonymous_function, - STATE(1187), 1, - sym__maybe_function_expression, - STATE(1280), 1, - sym__maybe_record_expression, - STATE(1310), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(119), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(157), 2, - sym_record, - sym_record_update, - ACTIONS(310), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(138), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(656), 5, - sym_try, - sym__statement, - sym_let_assert, - sym_let, - sym_use, - STATE(303), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [5868] = 4, + [5897] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(494), 26, + ACTIONS(444), 26, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -11369,7 +11420,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(492), 28, + ACTIONS(442), 28, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_DOT, @@ -11398,105 +11449,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [5934] = 34, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(276), 1, - anon_sym_LBRACE, - ACTIONS(280), 1, - anon_sym_POUND, - ACTIONS(282), 1, - anon_sym_LBRACK, - ACTIONS(284), 1, - anon_sym_LT_LT, - ACTIONS(286), 1, - anon_sym_DASH, - ACTIONS(288), 1, - anon_sym_fn, - ACTIONS(290), 1, - anon_sym_try, - ACTIONS(292), 1, - anon_sym_todo, - ACTIONS(294), 1, - anon_sym_panic, - ACTIONS(296), 1, - anon_sym_case, - ACTIONS(298), 1, - anon_sym_let, - ACTIONS(300), 1, - anon_sym_assert, - ACTIONS(302), 1, - anon_sym_use, - ACTIONS(304), 1, - anon_sym_BANG, - ACTIONS(306), 1, - anon_sym_DQUOTE, - ACTIONS(308), 1, - sym_float, - ACTIONS(312), 1, - sym__decimal, - ACTIONS(314), 1, - sym__name, - ACTIONS(316), 1, - sym__upname, - STATE(23), 1, - aux_sym__statement_seq, - STATE(140), 1, - sym_identifier, - STATE(147), 1, - sym_tuple, - STATE(158), 1, - sym_anonymous_function, - STATE(1187), 1, - sym__maybe_function_expression, - STATE(1280), 1, - sym__maybe_record_expression, - STATE(1310), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(119), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(157), 2, - sym_record, - sym_record_update, - ACTIONS(310), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(138), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(656), 5, - sym_try, - sym__statement, - sym_let_assert, - sym_let, - sym_use, - STATE(303), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [6060] = 4, + [5963] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(498), 26, + ACTIONS(478), 26, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -11523,7 +11482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(496), 28, + ACTIONS(476), 28, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_DOT, @@ -11552,13 +11511,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [6126] = 4, + [6029] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(502), 26, + ACTIONS(482), 26, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -11585,7 +11544,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(500), 28, + ACTIONS(480), 28, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_DOT, @@ -11614,13 +11573,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [6192] = 4, + [6095] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(506), 26, + ACTIONS(486), 26, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -11647,7 +11606,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(504), 28, + ACTIONS(484), 28, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_DOT, @@ -11676,109 +11635,79 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [6258] = 34, + [6161] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, - anon_sym_LBRACE, - ACTIONS(280), 1, - anon_sym_POUND, - ACTIONS(282), 1, - anon_sym_LBRACK, - ACTIONS(284), 1, - anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(490), 26, + anon_sym_if, + anon_sym_import, + anon_sym_SLASH, + anon_sym_const, anon_sym_DASH, - ACTIONS(288), 1, anon_sym_fn, - ACTIONS(290), 1, + anon_sym_external, + anon_sym_type, anon_sym_try, - ACTIONS(292), 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(294), 1, anon_sym_panic, - ACTIONS(296), 1, anon_sym_case, - ACTIONS(298), 1, anon_sym_let, - ACTIONS(300), 1, anon_sym_assert, - ACTIONS(302), 1, anon_sym_use, - ACTIONS(304), 1, anon_sym_BANG, - ACTIONS(306), 1, - anon_sym_DQUOTE, - ACTIONS(308), 1, - sym_float, - ACTIONS(312), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(314), 1, sym__name, - ACTIONS(316), 1, - sym__upname, - STATE(27), 1, - aux_sym__statement_seq, - STATE(140), 1, - sym_identifier, - STATE(147), 1, - sym_tuple, - STATE(158), 1, - sym_anonymous_function, - STATE(1187), 1, - sym__maybe_function_expression, - STATE(1280), 1, - sym__maybe_record_expression, - STATE(1310), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(119), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(157), 2, - sym_record, - sym_record_update, - ACTIONS(310), 3, + ACTIONS(488), 28, + 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_LT_GT, + anon_sym_DQUOTE, + sym_float, sym__hex, sym__octal, sym__binary, - STATE(138), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(656), 5, - sym_try, - sym__statement, - sym_let_assert, - sym_let, - sym_use, - STATE(303), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [6384] = 6, + sym__upname, + [6227] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(482), 1, + ACTIONS(454), 1, anon_sym_LPAREN, - ACTIONS(508), 1, + ACTIONS(492), 1, anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(474), 26, + ACTIONS(446), 26, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -11805,7 +11734,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(476), 26, + ACTIONS(448), 26, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -11832,13 +11761,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [6454] = 4, + [6297] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(456), 26, + ACTIONS(497), 26, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -11865,7 +11794,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(454), 28, + ACTIONS(495), 28, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_DOT, @@ -11894,75 +11823,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [6520] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(511), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(474), 26, - 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_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(476), 26, - 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_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [6587] = 4, + [6363] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(515), 26, + ACTIONS(501), 26, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -11989,11 +11856,12 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(513), 27, + ACTIONS(499), 28, 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, @@ -12017,13 +11885,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [6652] = 4, + [6429] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(519), 26, + ACTIONS(505), 26, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -12050,11 +11918,12 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(517), 27, + ACTIONS(503), 28, 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, @@ -12078,13 +11947,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [6717] = 4, + [6495] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(523), 26, + ACTIONS(509), 26, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -12111,9 +11980,10 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(521), 27, + ACTIONS(507), 28, ts_builtin_sym_end, anon_sym_LBRACE, + anon_sym_DOT, anon_sym_POUND, anon_sym_LPAREN, anon_sym_LBRACK, @@ -12139,13 +12009,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [6782] = 4, + [6561] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(527), 26, + ACTIONS(513), 26, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -12172,7 +12042,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(525), 27, + ACTIONS(511), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_DOT, @@ -12200,15 +12070,15 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [6847] = 5, + [6626] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(533), 1, + ACTIONS(519), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(529), 26, + ACTIONS(515), 26, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -12235,7 +12105,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(531), 26, + ACTIONS(517), 26, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -12262,13 +12132,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [6914] = 4, + [6693] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(537), 26, + ACTIONS(523), 26, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -12295,11 +12165,11 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(535), 27, + ACTIONS(521), 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, @@ -12323,13 +12193,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [6979] = 4, + [6758] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(541), 26, + ACTIONS(527), 26, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -12356,7 +12226,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(539), 27, + ACTIONS(525), 27, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_DOT, @@ -12384,42 +12254,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [7044] = 5, + [6823] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(543), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(474), 26, - 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_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(476), 26, + ACTIONS(531), 26, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -12446,43 +12287,45 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [7111] = 4, + ACTIONS(529), 27, + 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_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [6888] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(533), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(547), 26, - 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_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(545), 27, + ACTIONS(446), 26, ts_builtin_sym_end, anon_sym_LBRACE, - anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -12507,17 +12350,70 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [7176] = 5, + ACTIONS(448), 26, + 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_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [6955] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(482), 1, - anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(474), 26, + ACTIONS(537), 26, + 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_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + ACTIONS(535), 27, ts_builtin_sym_end, anon_sym_LBRACE, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -12542,7 +12438,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(476), 26, + [7020] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(541), 26, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -12569,13 +12471,41 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [7243] = 4, + ACTIONS(539), 27, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [7085] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(551), 26, + ACTIONS(545), 26, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -12602,11 +12532,11 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(549), 27, + ACTIONS(543), 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, @@ -12630,64 +12560,57 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [7308] = 13, + [7150] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(561), 1, - anon_sym_AMP_AMP, - ACTIONS(569), 1, - anon_sym_PIPE_GT, + ACTIONS(454), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(557), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(559), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(563), 2, + ACTIONS(446), 26, + 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, - ACTIONS(571), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(565), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(567), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(573), 4, + 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_LT_GT, - ACTIONS(553), 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(555), 18, + ACTIONS(448), 26, 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_panic, anon_sym_case, @@ -12699,65 +12622,118 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [7390] = 14, + [7217] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(561), 1, - anon_sym_AMP_AMP, - ACTIONS(569), 1, - anon_sym_PIPE_GT, - ACTIONS(579), 1, - anon_sym_PIPE_PIPE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(557), 2, + ACTIONS(549), 26, + anon_sym_if, + anon_sym_import, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(559), 2, + anon_sym_const, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(563), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(571), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(565), 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(567), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + ACTIONS(547), 27, + 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(573), 4, + 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_LT_GT, - ACTIONS(575), 11, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [7282] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(551), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(446), 26, 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_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - ACTIONS(577), 18, + ACTIONS(448), 26, 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_panic, anon_sym_case, @@ -12769,13 +12745,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [7474] = 4, + [7349] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(581), 26, + ACTIONS(553), 26, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -12802,7 +12778,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(583), 26, + ACTIONS(555), 26, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -12829,126 +12805,118 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [7538] = 14, + [7413] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(561), 1, - anon_sym_AMP_AMP, - ACTIONS(569), 1, - anon_sym_PIPE_GT, - ACTIONS(579), 1, - anon_sym_PIPE_PIPE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(557), 2, + ACTIONS(478), 19, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(559), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(563), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(571), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(565), 4, + anon_sym_fn, + anon_sym_try, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(567), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(476), 33, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_POUND, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(573), 4, + 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_LT_GT, - ACTIONS(585), 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(587), 18, - 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_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [7622] = 12, + [7477] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(569), 1, + ACTIONS(565), 1, + anon_sym_PIPE_PIPE, + ACTIONS(567), 1, + anon_sym_AMP_AMP, + ACTIONS(575), 1, anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(557), 2, + ACTIONS(561), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(559), 2, + ACTIONS(563), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(563), 2, + ACTIONS(569), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(571), 2, + ACTIONS(577), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(565), 4, + ACTIONS(571), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(567), 4, + ACTIONS(573), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(573), 4, + ACTIONS(579), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(553), 13, + ACTIONS(557), 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_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - ACTIONS(555), 18, + ACTIONS(559), 18, anon_sym_if, anon_sym_import, anon_sym_const, @@ -12967,13 +12935,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [7702] = 4, + [7561] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(589), 26, + ACTIONS(581), 26, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -13000,7 +12968,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(591), 26, + ACTIONS(583), 26, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -13027,55 +12995,58 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [7766] = 11, + [7625] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(569), 1, + ACTIONS(565), 1, + anon_sym_PIPE_PIPE, + ACTIONS(567), 1, + anon_sym_AMP_AMP, + ACTIONS(575), 1, anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(557), 2, + ACTIONS(561), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(559), 2, + ACTIONS(563), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(571), 2, + ACTIONS(569), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(577), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(565), 4, + ACTIONS(571), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(567), 4, + ACTIONS(573), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(573), 4, + ACTIONS(579), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(553), 15, + ACTIONS(585), 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_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - ACTIONS(555), 18, + ACTIONS(587), 18, anon_sym_if, anon_sym_import, anon_sym_const, @@ -13094,13 +13065,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [7844] = 4, + [7709] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(593), 26, + ACTIONS(589), 26, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -13127,7 +13098,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(595), 26, + ACTIONS(591), 26, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -13154,49 +13125,58 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [7908] = 9, + [7773] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(569), 1, + ACTIONS(565), 1, + anon_sym_PIPE_PIPE, + ACTIONS(567), 1, + anon_sym_AMP_AMP, + ACTIONS(575), 1, anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(557), 2, + ACTIONS(561), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(559), 2, + ACTIONS(563), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(571), 2, + ACTIONS(569), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(577), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, + ACTIONS(571), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, ACTIONS(573), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(579), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(553), 19, + ACTIONS(593), 11, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - ACTIONS(555), 22, + ACTIONS(595), 18, anon_sym_if, anon_sym_import, anon_sym_const, @@ -13204,10 +13184,6 @@ static const uint16_t ts_small_parse_table[] = { 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_todo, anon_sym_panic, anon_sym_case, @@ -13219,7 +13195,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [7982] = 4, + [7857] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, @@ -13279,7 +13255,7 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [8046] = 4, + [7921] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, @@ -13339,48 +13315,58 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [8110] = 8, + [7985] = 14, ACTIONS(3), 1, sym_module_comment, + ACTIONS(565), 1, + anon_sym_PIPE_PIPE, + ACTIONS(567), 1, + anon_sym_AMP_AMP, + ACTIONS(575), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(557), 2, + ACTIONS(561), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(559), 2, + ACTIONS(563), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(571), 2, + ACTIONS(569), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(577), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, + ACTIONS(571), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, ACTIONS(573), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(579), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(553), 20, + ACTIONS(605), 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_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - ACTIONS(555), 22, + ACTIONS(607), 18, anon_sym_if, anon_sym_import, anon_sym_const, @@ -13388,10 +13374,6 @@ static const uint16_t ts_small_parse_table[] = { 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_todo, anon_sym_panic, anon_sym_case, @@ -13403,13 +13385,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [8182] = 4, + [8069] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(605), 26, + ACTIONS(609), 26, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -13436,7 +13418,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(607), 26, + ACTIONS(611), 26, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -13463,45 +13445,18 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [8246] = 4, + [8133] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(490), 19, - 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_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(488), 33, + ACTIONS(613), 26, + 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, @@ -13523,13 +13478,40 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [8310] = 4, + ACTIONS(615), 26, + 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_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [8197] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(609), 26, + ACTIONS(617), 26, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -13556,7 +13538,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(611), 26, + ACTIONS(619), 26, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -13583,45 +13565,109 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [8374] = 4, + [8261] = 35, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(472), 19, - anon_sym_SLASH, + ACTIONS(621), 1, + anon_sym_LBRACE, + ACTIONS(623), 1, + anon_sym_POUND, + ACTIONS(625), 1, + anon_sym_RPAREN, + ACTIONS(627), 1, + anon_sym_LBRACK, + ACTIONS(629), 1, + anon_sym_LT_LT, + ACTIONS(631), 1, anon_sym_DASH, + ACTIONS(633), 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(635), 1, anon_sym_todo, + ACTIONS(637), 1, anon_sym_panic, + ACTIONS(639), 1, + anon_sym_DOT_DOT, + ACTIONS(641), 1, anon_sym_case, - anon_sym_let, + ACTIONS(643), 1, anon_sym_assert, - anon_sym_use, + ACTIONS(645), 1, anon_sym_BANG, + ACTIONS(647), 1, + anon_sym_DQUOTE, + ACTIONS(649), 1, + sym_float, + ACTIONS(653), 1, sym__decimal, + ACTIONS(655), 1, + sym__discard_name, + ACTIONS(657), 1, sym__name, - ACTIONS(470), 33, + ACTIONS(659), 1, + sym__upname, + STATE(406), 1, + sym_identifier, + STATE(436), 1, + sym_anonymous_function, + STATE(438), 1, + sym_tuple, + STATE(1063), 1, + sym_argument, + STATE(1159), 1, + sym_hole, + STATE(1206), 1, + sym__maybe_function_expression, + STATE(1294), 1, + sym_label, + STATE(1327), 1, + sym__maybe_record_expression, + STATE(1337), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(392), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(439), 2, + sym_record, + sym_record_update, + ACTIONS(651), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(407), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(625), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [8387] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(661), 26, + 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, @@ -13643,87 +13689,16 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [8438] = 14, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(561), 1, - anon_sym_AMP_AMP, - ACTIONS(569), 1, - anon_sym_PIPE_GT, - ACTIONS(579), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(557), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(559), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(563), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(571), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(565), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(567), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(573), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(613), 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(615), 18, + ACTIONS(663), 26, 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_todo, - anon_sym_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [8522] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(464), 19, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_try, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -13737,82 +13712,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_assert, anon_sym_use, anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(462), 33, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_POUND, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [8586] = 14, + [8451] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(561), 1, + ACTIONS(565), 1, + anon_sym_PIPE_PIPE, + ACTIONS(567), 1, anon_sym_AMP_AMP, - ACTIONS(569), 1, + ACTIONS(575), 1, anon_sym_PIPE_GT, - ACTIONS(579), 1, - anon_sym_PIPE_PIPE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(557), 2, + ACTIONS(561), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(559), 2, + ACTIONS(563), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(563), 2, + ACTIONS(569), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(571), 2, + ACTIONS(577), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(565), 4, + ACTIONS(571), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(567), 4, + ACTIONS(573), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(573), 4, + ACTIONS(579), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(617), 11, + ACTIONS(665), 11, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -13824,7 +13767,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(619), 18, + ACTIONS(667), 18, anon_sym_if, anon_sym_import, anon_sym_const, @@ -13843,46 +13786,46 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [8670] = 14, + [8535] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(561), 1, + ACTIONS(565), 1, + anon_sym_PIPE_PIPE, + ACTIONS(567), 1, anon_sym_AMP_AMP, - ACTIONS(569), 1, + ACTIONS(575), 1, anon_sym_PIPE_GT, - ACTIONS(579), 1, - anon_sym_PIPE_PIPE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(557), 2, + ACTIONS(561), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(559), 2, + ACTIONS(563), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(563), 2, + ACTIONS(569), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(571), 2, + ACTIONS(577), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(565), 4, + ACTIONS(571), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(567), 4, + ACTIONS(573), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(573), 4, + ACTIONS(579), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(621), 11, + ACTIONS(669), 11, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -13894,7 +13837,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(623), 18, + ACTIONS(671), 18, anon_sym_if, anon_sym_import, anon_sym_const, @@ -13913,65 +13856,55 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [8754] = 14, + [8619] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(561), 1, - anon_sym_AMP_AMP, - ACTIONS(569), 1, - anon_sym_PIPE_GT, - ACTIONS(579), 1, - anon_sym_PIPE_PIPE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(557), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(559), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(563), 2, + ACTIONS(673), 26, + 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, - ACTIONS(571), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(565), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(567), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(573), 4, + 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_LT_GT, - ACTIONS(625), 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(627), 18, + ACTIONS(675), 26, 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_panic, anon_sym_case, @@ -13983,13 +13916,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [8838] = 4, + [8683] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(629), 26, + ACTIONS(677), 26, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -14016,7 +13949,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(631), 26, + ACTIONS(679), 26, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -14043,13 +13976,27 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [8902] = 4, + [8747] = 8, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(633), 26, + ACTIONS(561), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(563), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(577), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(579), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(681), 20, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -14064,24 +14011,16 @@ 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_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - ACTIONS(635), 26, + ACTIONS(683), 22, anon_sym_if, anon_sym_import, - anon_sym_SLASH, anon_sym_const, - anon_sym_DASH, anon_sym_fn, anon_sym_external, anon_sym_type, @@ -14090,8 +14029,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, anon_sym_todo, anon_sym_panic, anon_sym_case, @@ -14103,65 +14040,120 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [8966] = 14, + [8819] = 9, ACTIONS(3), 1, sym_module_comment, - ACTIONS(561), 1, - anon_sym_AMP_AMP, - ACTIONS(569), 1, + ACTIONS(575), 1, anon_sym_PIPE_GT, - ACTIONS(579), 1, - anon_sym_PIPE_PIPE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(557), 2, + ACTIONS(561), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(559), 2, + ACTIONS(563), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(563), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(571), 2, + ACTIONS(577), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(565), 4, + ACTIONS(579), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(681), 19, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(683), 22, + anon_sym_if, + anon_sym_import, + anon_sym_const, + 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(567), 4, + anon_sym_todo, + anon_sym_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [8893] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(685), 26, + 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, - ACTIONS(573), 4, + 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_LT_GT, - ACTIONS(637), 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(639), 18, + ACTIONS(687), 26, 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_panic, anon_sym_case, @@ -14173,58 +14165,55 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [9050] = 14, + [8957] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(561), 1, - anon_sym_AMP_AMP, - ACTIONS(569), 1, + ACTIONS(575), 1, anon_sym_PIPE_GT, - ACTIONS(579), 1, - anon_sym_PIPE_PIPE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(557), 2, + ACTIONS(561), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(559), 2, + ACTIONS(563), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(563), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(571), 2, + ACTIONS(577), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(565), 4, + ACTIONS(571), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(567), 4, + ACTIONS(573), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(573), 4, + ACTIONS(579), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(641), 11, + ACTIONS(681), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - ACTIONS(643), 18, + ACTIONS(683), 18, anon_sym_if, anon_sym_import, anon_sym_const, @@ -14243,13 +14232,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [9134] = 4, + [9035] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(468), 19, + ACTIONS(501), 19, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -14269,7 +14258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(466), 33, + ACTIONS(499), 33, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, @@ -14303,21 +14292,224 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [9198] = 6, + [9099] = 35, ACTIONS(3), 1, sym_module_comment, + ACTIONS(621), 1, + anon_sym_LBRACE, + ACTIONS(623), 1, + anon_sym_POUND, + ACTIONS(627), 1, + anon_sym_LBRACK, + ACTIONS(629), 1, + anon_sym_LT_LT, + ACTIONS(631), 1, + anon_sym_DASH, + ACTIONS(633), 1, + anon_sym_fn, + ACTIONS(635), 1, + anon_sym_todo, + ACTIONS(637), 1, + anon_sym_panic, + ACTIONS(641), 1, + anon_sym_case, + ACTIONS(643), 1, + anon_sym_assert, + ACTIONS(645), 1, + anon_sym_BANG, + ACTIONS(647), 1, + anon_sym_DQUOTE, + ACTIONS(649), 1, + sym_float, + ACTIONS(653), 1, + sym__decimal, + ACTIONS(655), 1, + sym__discard_name, + ACTIONS(657), 1, + sym__name, + ACTIONS(659), 1, + sym__upname, + ACTIONS(689), 1, + anon_sym_RPAREN, + ACTIONS(691), 1, + anon_sym_DOT_DOT, + STATE(406), 1, + sym_identifier, + STATE(436), 1, + sym_anonymous_function, + STATE(438), 1, + sym_tuple, + STATE(986), 1, + sym_argument, + STATE(1159), 1, + sym_hole, + STATE(1206), 1, + sym__maybe_function_expression, + STATE(1294), 1, + sym_label, + STATE(1327), 1, + sym__maybe_record_expression, + STATE(1337), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(392), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(439), 2, + sym_record, + sym_record_update, + ACTIONS(651), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(407), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(625), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [9225] = 35, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(621), 1, + anon_sym_LBRACE, + ACTIONS(623), 1, + anon_sym_POUND, + ACTIONS(627), 1, + anon_sym_LBRACK, + ACTIONS(629), 1, + anon_sym_LT_LT, + ACTIONS(631), 1, + anon_sym_DASH, + ACTIONS(633), 1, + anon_sym_fn, + ACTIONS(635), 1, + anon_sym_todo, + ACTIONS(637), 1, + anon_sym_panic, + ACTIONS(641), 1, + anon_sym_case, + ACTIONS(643), 1, + anon_sym_assert, + ACTIONS(645), 1, + anon_sym_BANG, + ACTIONS(647), 1, + anon_sym_DQUOTE, + ACTIONS(649), 1, + sym_float, + ACTIONS(653), 1, + sym__decimal, + ACTIONS(655), 1, + sym__discard_name, + ACTIONS(657), 1, + sym__name, + ACTIONS(659), 1, + sym__upname, + ACTIONS(693), 1, + anon_sym_RPAREN, + ACTIONS(695), 1, + anon_sym_DOT_DOT, + STATE(406), 1, + sym_identifier, + STATE(436), 1, + sym_anonymous_function, + STATE(438), 1, + sym_tuple, + STATE(1029), 1, + sym_argument, + STATE(1159), 1, + sym_hole, + STATE(1206), 1, + sym__maybe_function_expression, + STATE(1294), 1, + sym_label, + STATE(1327), 1, + sym__maybe_record_expression, + STATE(1337), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(392), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(439), 2, + sym_record, + sym_record_update, + ACTIONS(651), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(407), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(625), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [9351] = 12, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(575), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(557), 2, + ACTIONS(561), 2, anon_sym_SLASH, anon_sym_STAR, + ACTIONS(563), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(569), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(577), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(571), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, ACTIONS(573), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(579), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(553), 22, + ACTIONS(681), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -14325,35 +14517,20 @@ 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(555), 24, + ACTIONS(683), 18, 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_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, anon_sym_todo, anon_sym_panic, anon_sym_case, @@ -14365,73 +14542,181 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [9266] = 4, + [9431] = 35, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(460), 19, - anon_sym_SLASH, + ACTIONS(621), 1, + anon_sym_LBRACE, + ACTIONS(623), 1, + anon_sym_POUND, + ACTIONS(627), 1, + anon_sym_LBRACK, + ACTIONS(629), 1, + anon_sym_LT_LT, + ACTIONS(631), 1, anon_sym_DASH, + ACTIONS(633), 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(635), 1, anon_sym_todo, + ACTIONS(637), 1, anon_sym_panic, + ACTIONS(641), 1, anon_sym_case, - anon_sym_let, + ACTIONS(643), 1, anon_sym_assert, - anon_sym_use, + ACTIONS(645), 1, anon_sym_BANG, + ACTIONS(647), 1, + anon_sym_DQUOTE, + ACTIONS(649), 1, + sym_float, + ACTIONS(653), 1, sym__decimal, + ACTIONS(655), 1, + sym__discard_name, + ACTIONS(657), 1, sym__name, - ACTIONS(458), 33, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_POUND, - anon_sym_LPAREN, + ACTIONS(659), 1, + sym__upname, + ACTIONS(697), 1, anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, + ACTIONS(699), 1, + anon_sym_DOT_DOT, + STATE(406), 1, + sym_identifier, + STATE(436), 1, + sym_anonymous_function, + STATE(438), 1, + sym_tuple, + STATE(990), 1, + sym_argument, + STATE(1159), 1, + sym_hole, + STATE(1206), 1, + sym__maybe_function_expression, + STATE(1294), 1, + sym_label, + STATE(1327), 1, + sym__maybe_record_expression, + STATE(1337), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(392), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(439), 2, + sym_record, + sym_record_update, + ACTIONS(651), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(407), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(625), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [9557] = 13, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(567), 1, anon_sym_AMP_AMP, + ACTIONS(575), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(561), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(563), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(569), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(577), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(571), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(573), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, + ACTIONS(579), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, + ACTIONS(681), 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, - [9330] = 4, + ACTIONS(683), 18, + 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_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [9639] = 6, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(645), 26, + ACTIONS(561), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(579), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(681), 22, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -14448,20 +14733,15 @@ 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_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - ACTIONS(647), 26, + ACTIONS(683), 24, anon_sym_if, anon_sym_import, - anon_sym_SLASH, anon_sym_const, anon_sym_DASH, anon_sym_fn, @@ -14473,7 +14753,6 @@ 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_panic, anon_sym_case, @@ -14485,55 +14764,65 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [9394] = 4, + [9707] = 14, ACTIONS(3), 1, sym_module_comment, + ACTIONS(565), 1, + anon_sym_PIPE_PIPE, + ACTIONS(567), 1, + anon_sym_AMP_AMP, + ACTIONS(575), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(649), 26, - 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, + ACTIONS(561), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(563), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(569), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(577), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(571), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(573), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, + ACTIONS(579), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, + ACTIONS(701), 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(651), 26, + ACTIONS(703), 18, 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_panic, anon_sym_case, @@ -14545,13 +14834,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [9458] = 4, + [9791] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(653), 26, + ACTIONS(681), 26, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -14578,7 +14867,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(655), 26, + ACTIONS(683), 26, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -14605,13 +14894,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [9522] = 4, + [9855] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(657), 26, + ACTIONS(705), 26, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -14638,7 +14927,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(659), 26, + ACTIONS(707), 26, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -14665,13 +14954,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [9586] = 4, + [9919] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(661), 26, + ACTIONS(709), 26, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -14698,7 +14987,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(663), 26, + ACTIONS(712), 26, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -14725,49 +15014,87 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [9650] = 4, + [9983] = 14, ACTIONS(3), 1, sym_module_comment, + ACTIONS(565), 1, + anon_sym_PIPE_PIPE, + ACTIONS(567), 1, + anon_sym_AMP_AMP, + ACTIONS(575), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(665), 26, - 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, + ACTIONS(561), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(563), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(569), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(577), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(571), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(573), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, + ACTIONS(579), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, + ACTIONS(715), 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(667), 26, + ACTIONS(717), 18, 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_todo, + anon_sym_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [10067] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(486), 19, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_fn, + anon_sym_try, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -14781,17 +15108,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_assert, anon_sym_use, anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, sym__decimal, sym__name, - [9714] = 4, + ACTIONS(484), 33, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_POUND, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [10131] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(669), 26, + ACTIONS(719), 26, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -14818,7 +15177,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(671), 26, + ACTIONS(721), 26, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -14845,46 +15204,46 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [9778] = 14, + [10195] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(561), 1, + ACTIONS(565), 1, + anon_sym_PIPE_PIPE, + ACTIONS(567), 1, anon_sym_AMP_AMP, - ACTIONS(569), 1, + ACTIONS(575), 1, anon_sym_PIPE_GT, - ACTIONS(579), 1, - anon_sym_PIPE_PIPE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(557), 2, + ACTIONS(561), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(559), 2, + ACTIONS(563), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(563), 2, + ACTIONS(569), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(571), 2, + ACTIONS(577), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(565), 4, + ACTIONS(571), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(567), 4, + ACTIONS(573), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(573), 4, + ACTIONS(579), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(673), 11, + ACTIONS(723), 11, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -14896,7 +15255,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(675), 18, + ACTIONS(725), 18, anon_sym_if, anon_sym_import, anon_sym_const, @@ -14915,13 +15274,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [9862] = 4, + [10279] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(677), 26, + ACTIONS(727), 26, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -14948,7 +15307,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(679), 26, + ACTIONS(729), 26, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -14975,13 +15334,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [9926] = 4, + [10343] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(553), 26, + ACTIONS(731), 26, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -15008,7 +15367,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(555), 26, + ACTIONS(733), 26, anon_sym_if, anon_sym_import, anon_sym_SLASH, @@ -15035,46 +15394,106 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [9990] = 14, + [10407] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(561), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(735), 26, + 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, - ACTIONS(569), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, anon_sym_PIPE_GT, - ACTIONS(579), 1, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(737), 26, + 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_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [10471] = 14, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(565), 1, anon_sym_PIPE_PIPE, + ACTIONS(567), 1, + anon_sym_AMP_AMP, + ACTIONS(575), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(557), 2, + ACTIONS(561), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(559), 2, + ACTIONS(563), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(563), 2, + ACTIONS(569), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(571), 2, + ACTIONS(577), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(565), 4, + ACTIONS(571), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(567), 4, + ACTIONS(573), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(573), 4, + ACTIONS(579), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(681), 11, + ACTIONS(739), 11, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -15086,7 +15505,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(683), 18, + ACTIONS(741), 18, anon_sym_if, anon_sym_import, anon_sym_const, @@ -15105,85 +15524,203 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [10074] = 35, + [10555] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(685), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(743), 26, + ts_builtin_sym_end, anon_sym_LBRACE, - ACTIONS(687), 1, anon_sym_POUND, - ACTIONS(689), 1, - anon_sym_RPAREN, - ACTIONS(691), 1, anon_sym_LBRACK, - ACTIONS(693), 1, anon_sym_LT_LT, - ACTIONS(695), 1, - anon_sym_DASH, - ACTIONS(697), 1, - anon_sym_fn, - ACTIONS(699), 1, - anon_sym_todo, - ACTIONS(701), 1, - anon_sym_panic, - ACTIONS(703), 1, - anon_sym_DOT_DOT, - ACTIONS(705), 1, - anon_sym_case, - ACTIONS(707), 1, - anon_sym_assert, - ACTIONS(709), 1, - anon_sym_BANG, - ACTIONS(711), 1, - anon_sym_DQUOTE, - ACTIONS(713), 1, - sym_float, - ACTIONS(717), 1, - sym__decimal, - ACTIONS(719), 1, - sym__discard_name, - ACTIONS(721), 1, - sym__name, - ACTIONS(723), 1, - sym__upname, - STATE(390), 1, - sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, - sym_anonymous_function, - STATE(1105), 1, - sym_argument, - STATE(1174), 1, - sym_hole, - STATE(1195), 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_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(745), 26, + 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_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [10619] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(470), 19, + 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_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(468), 33, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_POUND, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [10683] = 34, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(621), 1, + anon_sym_LBRACE, + ACTIONS(623), 1, + anon_sym_POUND, + ACTIONS(627), 1, + anon_sym_LBRACK, + ACTIONS(629), 1, + anon_sym_LT_LT, + ACTIONS(631), 1, + anon_sym_DASH, + ACTIONS(633), 1, + anon_sym_fn, + ACTIONS(635), 1, + anon_sym_todo, + ACTIONS(637), 1, + anon_sym_panic, + ACTIONS(641), 1, + anon_sym_case, + ACTIONS(643), 1, + anon_sym_assert, + ACTIONS(645), 1, + anon_sym_BANG, + ACTIONS(647), 1, + anon_sym_DQUOTE, + ACTIONS(649), 1, + sym_float, + ACTIONS(653), 1, + sym__decimal, + ACTIONS(655), 1, + sym__discard_name, + ACTIONS(657), 1, + sym__name, + ACTIONS(659), 1, + sym__upname, + ACTIONS(747), 1, + anon_sym_RPAREN, + STATE(406), 1, + sym_identifier, + STATE(436), 1, + sym_anonymous_function, + STATE(438), 1, + sym_tuple, + STATE(1159), 1, + sym_hole, + STATE(1206), 1, sym__maybe_function_expression, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, - sym__maybe_record_expression, - STATE(1351), 1, + STATE(1236), 1, + sym_argument, + STATE(1294), 1, sym_label, + STATE(1327), 1, + sym__maybe_record_expression, + STATE(1337), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(381), 2, + STATE(392), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(408), 2, + STATE(439), 2, sym_record, sym_record_update, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(392), 5, + STATE(407), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(615), 11, + STATE(625), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -15192,88 +15729,87 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [10199] = 35, + [10806] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(685), 1, + ACTIONS(621), 1, anon_sym_LBRACE, - ACTIONS(687), 1, + ACTIONS(623), 1, anon_sym_POUND, - ACTIONS(691), 1, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(693), 1, + ACTIONS(629), 1, anon_sym_LT_LT, - ACTIONS(695), 1, + ACTIONS(631), 1, anon_sym_DASH, - ACTIONS(697), 1, + ACTIONS(633), 1, anon_sym_fn, - ACTIONS(699), 1, + ACTIONS(635), 1, anon_sym_todo, - ACTIONS(701), 1, + ACTIONS(637), 1, anon_sym_panic, - ACTIONS(705), 1, + ACTIONS(641), 1, anon_sym_case, - ACTIONS(707), 1, + ACTIONS(643), 1, anon_sym_assert, - ACTIONS(709), 1, + ACTIONS(645), 1, anon_sym_BANG, - ACTIONS(711), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(713), 1, + ACTIONS(649), 1, sym_float, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(719), 1, + ACTIONS(655), 1, sym__discard_name, - ACTIONS(721), 1, + ACTIONS(657), 1, sym__name, - ACTIONS(723), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(725), 1, + ACTIONS(749), 1, anon_sym_RPAREN, - ACTIONS(727), 1, - anon_sym_DOT_DOT, - STATE(390), 1, + STATE(406), 1, sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, + STATE(436), 1, sym_anonymous_function, - STATE(981), 1, - sym_argument, - STATE(1174), 1, + STATE(438), 1, + sym_tuple, + STATE(1159), 1, sym_hole, - STATE(1195), 1, + STATE(1206), 1, sym__maybe_function_expression, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, - sym__maybe_record_expression, - STATE(1351), 1, + STATE(1236), 1, + sym_argument, + STATE(1294), 1, sym_label, + STATE(1327), 1, + sym__maybe_record_expression, + STATE(1337), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(381), 2, + STATE(392), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(408), 2, + STATE(439), 2, sym_record, sym_record_update, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(392), 5, + STATE(407), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(615), 11, + STATE(625), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -15282,149 +15818,87 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [10324] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(729), 1, - anon_sym_LPAREN, - STATE(154), 1, - sym_arguments, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(422), 19, - 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_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(420), 30, - 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_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [10391] = 35, + [10929] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(685), 1, + ACTIONS(621), 1, anon_sym_LBRACE, - ACTIONS(687), 1, + ACTIONS(623), 1, anon_sym_POUND, - ACTIONS(691), 1, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(693), 1, + ACTIONS(629), 1, anon_sym_LT_LT, - ACTIONS(695), 1, + ACTIONS(631), 1, anon_sym_DASH, - ACTIONS(697), 1, + ACTIONS(633), 1, anon_sym_fn, - ACTIONS(699), 1, + ACTIONS(635), 1, anon_sym_todo, - ACTIONS(701), 1, + ACTIONS(637), 1, anon_sym_panic, - ACTIONS(705), 1, + ACTIONS(641), 1, anon_sym_case, - ACTIONS(707), 1, + ACTIONS(643), 1, anon_sym_assert, - ACTIONS(709), 1, + ACTIONS(645), 1, anon_sym_BANG, - ACTIONS(711), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(713), 1, + ACTIONS(649), 1, sym_float, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(719), 1, + ACTIONS(655), 1, sym__discard_name, - ACTIONS(721), 1, + ACTIONS(657), 1, sym__name, - ACTIONS(723), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(731), 1, + ACTIONS(751), 1, anon_sym_RPAREN, - ACTIONS(733), 1, - anon_sym_DOT_DOT, - STATE(390), 1, + STATE(406), 1, sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, + STATE(436), 1, sym_anonymous_function, - STATE(1045), 1, - sym_argument, - STATE(1174), 1, + STATE(438), 1, + sym_tuple, + STATE(1159), 1, sym_hole, - STATE(1195), 1, + STATE(1206), 1, sym__maybe_function_expression, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, - sym__maybe_record_expression, - STATE(1351), 1, + STATE(1236), 1, + sym_argument, + STATE(1294), 1, sym_label, + STATE(1327), 1, + sym__maybe_record_expression, + STATE(1337), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(381), 2, + STATE(392), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(408), 2, + STATE(439), 2, sym_record, sym_record_update, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(392), 5, + STATE(407), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(615), 11, + STATE(625), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -15433,88 +15907,87 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [10516] = 35, + [11052] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(685), 1, + ACTIONS(621), 1, anon_sym_LBRACE, - ACTIONS(687), 1, + ACTIONS(623), 1, anon_sym_POUND, - ACTIONS(691), 1, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(693), 1, + ACTIONS(629), 1, anon_sym_LT_LT, - ACTIONS(695), 1, + ACTIONS(631), 1, anon_sym_DASH, - ACTIONS(697), 1, + ACTIONS(633), 1, anon_sym_fn, - ACTIONS(699), 1, + ACTIONS(635), 1, anon_sym_todo, - ACTIONS(701), 1, + ACTIONS(637), 1, anon_sym_panic, - ACTIONS(705), 1, + ACTIONS(641), 1, anon_sym_case, - ACTIONS(707), 1, + ACTIONS(643), 1, anon_sym_assert, - ACTIONS(709), 1, + ACTIONS(645), 1, anon_sym_BANG, - ACTIONS(711), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(713), 1, + ACTIONS(649), 1, sym_float, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(719), 1, + ACTIONS(655), 1, sym__discard_name, - ACTIONS(721), 1, + ACTIONS(657), 1, sym__name, - ACTIONS(723), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(735), 1, + ACTIONS(753), 1, anon_sym_RPAREN, - ACTIONS(737), 1, - anon_sym_DOT_DOT, - STATE(390), 1, + STATE(406), 1, sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, + STATE(436), 1, sym_anonymous_function, - STATE(1009), 1, - sym_argument, - STATE(1174), 1, + STATE(438), 1, + sym_tuple, + STATE(1159), 1, sym_hole, - STATE(1195), 1, + STATE(1206), 1, sym__maybe_function_expression, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, - sym__maybe_record_expression, - STATE(1351), 1, + STATE(1236), 1, + sym_argument, + STATE(1294), 1, sym_label, + STATE(1327), 1, + sym__maybe_record_expression, + STATE(1337), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(381), 2, + STATE(392), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(408), 2, + STATE(439), 2, sym_record, sym_record_update, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(392), 5, + STATE(407), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(615), 11, + STATE(625), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -15523,86 +15996,87 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [10641] = 34, + [11175] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(685), 1, + ACTIONS(621), 1, anon_sym_LBRACE, - ACTIONS(687), 1, + ACTIONS(623), 1, anon_sym_POUND, - ACTIONS(691), 1, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(693), 1, + ACTIONS(629), 1, anon_sym_LT_LT, - ACTIONS(695), 1, + ACTIONS(631), 1, anon_sym_DASH, - ACTIONS(697), 1, + ACTIONS(633), 1, anon_sym_fn, - ACTIONS(699), 1, + ACTIONS(635), 1, anon_sym_todo, - ACTIONS(701), 1, + ACTIONS(637), 1, anon_sym_panic, - ACTIONS(705), 1, + ACTIONS(641), 1, anon_sym_case, - ACTIONS(707), 1, + ACTIONS(643), 1, anon_sym_assert, - ACTIONS(709), 1, + ACTIONS(645), 1, anon_sym_BANG, - ACTIONS(711), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(713), 1, + ACTIONS(649), 1, sym_float, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(719), 1, + ACTIONS(655), 1, sym__discard_name, - ACTIONS(721), 1, + ACTIONS(657), 1, sym__name, - ACTIONS(723), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(739), 1, + ACTIONS(755), 1, anon_sym_RPAREN, - STATE(390), 1, + STATE(406), 1, sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, + STATE(436), 1, sym_anonymous_function, - STATE(1174), 1, + STATE(438), 1, + sym_tuple, + STATE(1159), 1, sym_hole, - STATE(1195), 1, + STATE(1206), 1, sym__maybe_function_expression, - STATE(1239), 1, + STATE(1236), 1, sym_argument, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, - sym__maybe_record_expression, - STATE(1351), 1, + STATE(1294), 1, sym_label, + STATE(1327), 1, + sym__maybe_record_expression, + STATE(1337), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(381), 2, + STATE(392), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(408), 2, + STATE(439), 2, sym_record, sym_record_update, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(392), 5, + STATE(407), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(615), 11, + STATE(625), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -15611,16 +16085,21 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [10763] = 4, + [11298] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(757), 1, + anon_sym_LPAREN, + STATE(157), 1, + sym_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(603), 19, + ACTIONS(434), 19, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -15640,14 +16119,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(601), 31, + ACTIONS(432), 30, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_DOT, 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, @@ -15672,83 +16150,83 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [10825] = 34, + [11365] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(685), 1, + ACTIONS(621), 1, anon_sym_LBRACE, - ACTIONS(687), 1, + ACTIONS(623), 1, anon_sym_POUND, - ACTIONS(691), 1, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(693), 1, + ACTIONS(629), 1, anon_sym_LT_LT, - ACTIONS(695), 1, + ACTIONS(631), 1, anon_sym_DASH, - ACTIONS(697), 1, + ACTIONS(633), 1, anon_sym_fn, - ACTIONS(699), 1, + ACTIONS(635), 1, anon_sym_todo, - ACTIONS(701), 1, + ACTIONS(637), 1, anon_sym_panic, - ACTIONS(705), 1, + ACTIONS(641), 1, anon_sym_case, - ACTIONS(707), 1, + ACTIONS(643), 1, anon_sym_assert, - ACTIONS(709), 1, + ACTIONS(645), 1, anon_sym_BANG, - ACTIONS(711), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(713), 1, + ACTIONS(649), 1, sym_float, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(719), 1, + ACTIONS(655), 1, sym__discard_name, - ACTIONS(721), 1, + ACTIONS(657), 1, sym__name, - ACTIONS(723), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(741), 1, + ACTIONS(759), 1, anon_sym_RPAREN, - STATE(390), 1, + STATE(406), 1, sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, + STATE(436), 1, sym_anonymous_function, - STATE(1174), 1, + STATE(438), 1, + sym_tuple, + STATE(1159), 1, sym_hole, - STATE(1195), 1, + STATE(1206), 1, sym__maybe_function_expression, - STATE(1239), 1, + STATE(1236), 1, sym_argument, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, - sym__maybe_record_expression, - STATE(1351), 1, + STATE(1294), 1, sym_label, + STATE(1327), 1, + sym__maybe_record_expression, + STATE(1337), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(381), 2, + STATE(392), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(408), 2, + STATE(439), 2, sym_record, sym_record_update, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(392), 5, + STATE(407), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(615), 11, + STATE(625), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -15757,86 +16235,87 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [10947] = 34, + [11488] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(685), 1, + ACTIONS(621), 1, anon_sym_LBRACE, - ACTIONS(687), 1, + ACTIONS(623), 1, anon_sym_POUND, - ACTIONS(691), 1, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(693), 1, + ACTIONS(629), 1, anon_sym_LT_LT, - ACTIONS(695), 1, + ACTIONS(631), 1, anon_sym_DASH, - ACTIONS(697), 1, + ACTIONS(633), 1, anon_sym_fn, - ACTIONS(699), 1, + ACTIONS(635), 1, anon_sym_todo, - ACTIONS(701), 1, + ACTIONS(637), 1, anon_sym_panic, - ACTIONS(705), 1, + ACTIONS(641), 1, anon_sym_case, - ACTIONS(707), 1, + ACTIONS(643), 1, anon_sym_assert, - ACTIONS(709), 1, + ACTIONS(645), 1, anon_sym_BANG, - ACTIONS(711), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(713), 1, + ACTIONS(649), 1, sym_float, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(719), 1, + ACTIONS(655), 1, sym__discard_name, - ACTIONS(721), 1, + ACTIONS(657), 1, sym__name, - ACTIONS(723), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(743), 1, + ACTIONS(761), 1, anon_sym_RPAREN, - STATE(390), 1, + STATE(406), 1, sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, + STATE(436), 1, sym_anonymous_function, - STATE(1174), 1, + STATE(438), 1, + sym_tuple, + STATE(1159), 1, sym_hole, - STATE(1195), 1, + STATE(1206), 1, sym__maybe_function_expression, - STATE(1239), 1, + STATE(1236), 1, sym_argument, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, - sym__maybe_record_expression, - STATE(1351), 1, + STATE(1294), 1, sym_label, + STATE(1327), 1, + sym__maybe_record_expression, + STATE(1337), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(381), 2, + STATE(392), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(408), 2, + STATE(439), 2, sym_record, sym_record_update, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(392), 5, + STATE(407), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(615), 11, + STATE(625), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -15845,86 +16324,87 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [11069] = 34, + [11611] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(685), 1, + ACTIONS(621), 1, anon_sym_LBRACE, - ACTIONS(687), 1, + ACTIONS(623), 1, anon_sym_POUND, - ACTIONS(689), 1, - anon_sym_RPAREN, - ACTIONS(691), 1, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(693), 1, + ACTIONS(629), 1, anon_sym_LT_LT, - ACTIONS(695), 1, + ACTIONS(631), 1, anon_sym_DASH, - ACTIONS(697), 1, + ACTIONS(633), 1, anon_sym_fn, - ACTIONS(699), 1, + ACTIONS(635), 1, anon_sym_todo, - ACTIONS(701), 1, + ACTIONS(637), 1, anon_sym_panic, - ACTIONS(705), 1, + ACTIONS(641), 1, anon_sym_case, - ACTIONS(707), 1, + ACTIONS(643), 1, anon_sym_assert, - ACTIONS(709), 1, + ACTIONS(645), 1, anon_sym_BANG, - ACTIONS(711), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(713), 1, + ACTIONS(649), 1, sym_float, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(719), 1, + ACTIONS(655), 1, sym__discard_name, - ACTIONS(721), 1, + ACTIONS(657), 1, sym__name, - ACTIONS(723), 1, + ACTIONS(659), 1, sym__upname, - STATE(390), 1, + ACTIONS(763), 1, + anon_sym_RPAREN, + STATE(406), 1, sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, + STATE(436), 1, sym_anonymous_function, - STATE(1105), 1, - sym_argument, - STATE(1174), 1, + STATE(438), 1, + sym_tuple, + STATE(1159), 1, sym_hole, - STATE(1195), 1, + STATE(1206), 1, sym__maybe_function_expression, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, - sym__maybe_record_expression, - STATE(1351), 1, + STATE(1236), 1, + sym_argument, + STATE(1294), 1, sym_label, + STATE(1327), 1, + sym__maybe_record_expression, + STATE(1337), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(381), 2, + STATE(392), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(408), 2, + STATE(439), 2, sym_record, sym_record_update, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(392), 5, + STATE(407), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(615), 11, + STATE(625), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -15933,86 +16413,87 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [11191] = 34, + [11734] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(685), 1, + ACTIONS(621), 1, anon_sym_LBRACE, - ACTIONS(687), 1, + ACTIONS(623), 1, anon_sym_POUND, - ACTIONS(691), 1, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(693), 1, + ACTIONS(629), 1, anon_sym_LT_LT, - ACTIONS(695), 1, + ACTIONS(631), 1, anon_sym_DASH, - ACTIONS(697), 1, + ACTIONS(633), 1, anon_sym_fn, - ACTIONS(699), 1, + ACTIONS(635), 1, anon_sym_todo, - ACTIONS(701), 1, + ACTIONS(637), 1, anon_sym_panic, - ACTIONS(705), 1, + ACTIONS(641), 1, anon_sym_case, - ACTIONS(707), 1, + ACTIONS(643), 1, anon_sym_assert, - ACTIONS(709), 1, + ACTIONS(645), 1, anon_sym_BANG, - ACTIONS(711), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(713), 1, + ACTIONS(649), 1, sym_float, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(719), 1, + ACTIONS(655), 1, sym__discard_name, - ACTIONS(721), 1, + ACTIONS(657), 1, sym__name, - ACTIONS(723), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(735), 1, + ACTIONS(689), 1, anon_sym_RPAREN, - STATE(390), 1, + STATE(406), 1, sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, + STATE(436), 1, sym_anonymous_function, - STATE(1009), 1, + STATE(438), 1, + sym_tuple, + STATE(986), 1, sym_argument, - STATE(1174), 1, + STATE(1159), 1, sym_hole, - STATE(1195), 1, + STATE(1206), 1, sym__maybe_function_expression, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, - sym__maybe_record_expression, - STATE(1351), 1, + STATE(1294), 1, sym_label, + STATE(1327), 1, + sym__maybe_record_expression, + STATE(1337), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(381), 2, + STATE(392), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(408), 2, + STATE(439), 2, sym_record, sym_record_update, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(392), 5, + STATE(407), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(615), 11, + STATE(625), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -16021,144 +16502,265 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [11313] = 4, + [11857] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(440), 19, - anon_sym_SLASH, + ACTIONS(621), 1, + anon_sym_LBRACE, + ACTIONS(623), 1, + anon_sym_POUND, + ACTIONS(627), 1, + anon_sym_LBRACK, + ACTIONS(629), 1, + anon_sym_LT_LT, + ACTIONS(631), 1, anon_sym_DASH, + ACTIONS(633), 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(635), 1, anon_sym_todo, + ACTIONS(637), 1, anon_sym_panic, + ACTIONS(641), 1, anon_sym_case, - anon_sym_let, + ACTIONS(643), 1, anon_sym_assert, - anon_sym_use, + ACTIONS(645), 1, anon_sym_BANG, + ACTIONS(647), 1, + anon_sym_DQUOTE, + ACTIONS(649), 1, + sym_float, + ACTIONS(653), 1, sym__decimal, + ACTIONS(655), 1, + sym__discard_name, + ACTIONS(657), 1, sym__name, - ACTIONS(438), 31, + ACTIONS(659), 1, + sym__upname, + ACTIONS(697), 1, + anon_sym_RPAREN, + STATE(406), 1, + sym_identifier, + STATE(436), 1, + sym_anonymous_function, + STATE(438), 1, + sym_tuple, + STATE(990), 1, + sym_argument, + STATE(1159), 1, + sym_hole, + STATE(1206), 1, + sym__maybe_function_expression, + STATE(1294), 1, + sym_label, + STATE(1327), 1, + sym__maybe_record_expression, + STATE(1337), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(392), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(439), 2, + sym_record, + sym_record_update, + ACTIONS(651), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(407), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(625), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [11980] = 34, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(621), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_COMMA, + ACTIONS(623), 1, anon_sym_POUND, - anon_sym_LPAREN, + ACTIONS(627), 1, anon_sym_LBRACK, + ACTIONS(629), 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_LT_GT, + ACTIONS(631), 1, + anon_sym_DASH, + ACTIONS(633), 1, + anon_sym_fn, + ACTIONS(635), 1, + anon_sym_todo, + ACTIONS(637), 1, + anon_sym_panic, + ACTIONS(641), 1, + anon_sym_case, + ACTIONS(643), 1, + anon_sym_assert, + ACTIONS(645), 1, + anon_sym_BANG, + ACTIONS(647), 1, anon_sym_DQUOTE, + ACTIONS(649), 1, sym_float, + ACTIONS(653), 1, + sym__decimal, + ACTIONS(655), 1, + sym__discard_name, + ACTIONS(657), 1, + sym__name, + ACTIONS(659), 1, + sym__upname, + ACTIONS(693), 1, + anon_sym_RPAREN, + STATE(406), 1, + sym_identifier, + STATE(436), 1, + sym_anonymous_function, + STATE(438), 1, + sym_tuple, + STATE(1029), 1, + sym_argument, + STATE(1159), 1, + sym_hole, + STATE(1206), 1, + sym__maybe_function_expression, + STATE(1294), 1, + sym_label, + STATE(1327), 1, + sym__maybe_record_expression, + STATE(1337), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(392), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(439), 2, + sym_record, + sym_record_update, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [11375] = 34, + STATE(407), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(625), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [12103] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(685), 1, + ACTIONS(621), 1, anon_sym_LBRACE, - ACTIONS(687), 1, + ACTIONS(623), 1, anon_sym_POUND, - ACTIONS(691), 1, + ACTIONS(625), 1, + anon_sym_RPAREN, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(693), 1, + ACTIONS(629), 1, anon_sym_LT_LT, - ACTIONS(695), 1, + ACTIONS(631), 1, anon_sym_DASH, - ACTIONS(697), 1, + ACTIONS(633), 1, anon_sym_fn, - ACTIONS(699), 1, + ACTIONS(635), 1, anon_sym_todo, - ACTIONS(701), 1, + ACTIONS(637), 1, anon_sym_panic, - ACTIONS(705), 1, + ACTIONS(641), 1, anon_sym_case, - ACTIONS(707), 1, + ACTIONS(643), 1, anon_sym_assert, - ACTIONS(709), 1, + ACTIONS(645), 1, anon_sym_BANG, - ACTIONS(711), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(713), 1, + ACTIONS(649), 1, sym_float, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(719), 1, + ACTIONS(655), 1, sym__discard_name, - ACTIONS(721), 1, + ACTIONS(657), 1, sym__name, - ACTIONS(723), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(745), 1, - anon_sym_RPAREN, - STATE(390), 1, + STATE(406), 1, sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, + STATE(436), 1, sym_anonymous_function, - STATE(1174), 1, + STATE(438), 1, + sym_tuple, + STATE(1063), 1, + sym_argument, + STATE(1159), 1, sym_hole, - STATE(1195), 1, + STATE(1206), 1, sym__maybe_function_expression, - STATE(1239), 1, - sym_argument, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, - sym__maybe_record_expression, - STATE(1351), 1, + STATE(1294), 1, sym_label, + STATE(1327), 1, + sym__maybe_record_expression, + STATE(1337), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(381), 2, + STATE(392), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(408), 2, + STATE(439), 2, sym_record, sym_record_update, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(392), 5, + STATE(407), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(615), 11, + STATE(625), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -16167,16 +16769,17 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [11497] = 4, + [12226] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(502), 19, + ACTIONS(497), 19, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -16196,7 +16799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(500), 31, + ACTIONS(495), 31, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, @@ -16228,189 +16831,71 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [11559] = 34, + [12288] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(685), 1, - anon_sym_LBRACE, - ACTIONS(687), 1, - anon_sym_POUND, - ACTIONS(691), 1, - anon_sym_LBRACK, - ACTIONS(693), 1, - anon_sym_LT_LT, - ACTIONS(695), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(509), 19, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(697), 1, anon_sym_fn, - ACTIONS(699), 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(701), 1, anon_sym_panic, - ACTIONS(705), 1, anon_sym_case, - ACTIONS(707), 1, + anon_sym_let, anon_sym_assert, - ACTIONS(709), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(711), 1, - anon_sym_DQUOTE, - ACTIONS(713), 1, - sym_float, - ACTIONS(717), 1, sym__decimal, - ACTIONS(719), 1, - sym__discard_name, - ACTIONS(721), 1, sym__name, - ACTIONS(723), 1, - sym__upname, - ACTIONS(747), 1, - anon_sym_RPAREN, - STATE(390), 1, - sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, - sym_anonymous_function, - STATE(1174), 1, - sym_hole, - STATE(1195), 1, - sym__maybe_function_expression, - STATE(1239), 1, - sym_argument, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, - sym__maybe_record_expression, - STATE(1351), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(381), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(408), 2, - sym_record, - sym_record_update, - ACTIONS(715), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(392), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(615), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [11681] = 34, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(685), 1, + ACTIONS(507), 31, anon_sym_LBRACE, - ACTIONS(687), 1, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_COMMA, anon_sym_POUND, - ACTIONS(691), 1, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(693), 1, anon_sym_LT_LT, - ACTIONS(695), 1, - anon_sym_DASH, - ACTIONS(697), 1, - anon_sym_fn, - ACTIONS(699), 1, - anon_sym_todo, - ACTIONS(701), 1, - anon_sym_panic, - ACTIONS(705), 1, - anon_sym_case, - ACTIONS(707), 1, - anon_sym_assert, - ACTIONS(709), 1, - anon_sym_BANG, - ACTIONS(711), 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_LT_GT, anon_sym_DQUOTE, - ACTIONS(713), 1, sym_float, - ACTIONS(717), 1, - sym__decimal, - ACTIONS(719), 1, - sym__discard_name, - ACTIONS(721), 1, - sym__name, - ACTIONS(723), 1, - sym__upname, - ACTIONS(749), 1, - anon_sym_RPAREN, - STATE(390), 1, - sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, - sym_anonymous_function, - STATE(1174), 1, - sym_hole, - STATE(1195), 1, - sym__maybe_function_expression, - STATE(1239), 1, - sym_argument, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, - sym__maybe_record_expression, - STATE(1351), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(381), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(408), 2, - sym_record, - sym_record_update, - ACTIONS(715), 3, sym__hex, sym__octal, sym__binary, - STATE(392), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(615), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [11803] = 4, + sym__upname, + [12350] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(494), 19, + ACTIONS(729), 19, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -16430,14 +16915,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(492), 31, + ACTIONS(727), 31, 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, @@ -16462,13 +16947,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [11865] = 4, + [12412] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(452), 19, + ACTIONS(474), 19, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -16488,7 +16973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(450), 31, + ACTIONS(472), 31, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, @@ -16520,101 +17005,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [11927] = 34, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(685), 1, - anon_sym_LBRACE, - ACTIONS(687), 1, - anon_sym_POUND, - ACTIONS(691), 1, - anon_sym_LBRACK, - ACTIONS(693), 1, - anon_sym_LT_LT, - ACTIONS(695), 1, - anon_sym_DASH, - ACTIONS(697), 1, - anon_sym_fn, - ACTIONS(699), 1, - anon_sym_todo, - ACTIONS(701), 1, - anon_sym_panic, - ACTIONS(705), 1, - anon_sym_case, - ACTIONS(707), 1, - anon_sym_assert, - ACTIONS(709), 1, - anon_sym_BANG, - ACTIONS(711), 1, - anon_sym_DQUOTE, - ACTIONS(713), 1, - sym_float, - ACTIONS(717), 1, - sym__decimal, - ACTIONS(719), 1, - sym__discard_name, - ACTIONS(721), 1, - sym__name, - ACTIONS(723), 1, - sym__upname, - ACTIONS(751), 1, - anon_sym_RPAREN, - STATE(390), 1, - sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, - sym_anonymous_function, - STATE(1174), 1, - sym_hole, - STATE(1195), 1, - sym__maybe_function_expression, - STATE(1239), 1, - sym_argument, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, - sym__maybe_record_expression, - STATE(1351), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(381), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(408), 2, - sym_record, - sym_record_update, - ACTIONS(715), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(392), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(615), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [12049] = 4, + [12474] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(444), 19, + ACTIONS(462), 19, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -16634,7 +17031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(442), 31, + ACTIONS(460), 31, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, @@ -16666,9 +17063,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [12111] = 4, + [12536] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(454), 1, + anon_sym_LPAREN, + ACTIONS(492), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, @@ -16692,13 +17093,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(446), 31, + ACTIONS(446), 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, @@ -16724,17 +17123,17 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [12173] = 6, + [12602] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(482), 1, + ACTIONS(454), 1, anon_sym_LPAREN, - ACTIONS(508), 1, + ACTIONS(765), 1, anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(476), 19, + ACTIONS(448), 19, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -16754,7 +17153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(474), 29, + ACTIONS(446), 29, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -16784,13 +17183,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [12239] = 4, + [12668] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(498), 19, + ACTIONS(482), 19, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -16810,7 +17209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(496), 31, + ACTIONS(480), 31, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, @@ -16842,17 +17241,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [12301] = 6, + [12730] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(482), 1, - anon_sym_LPAREN, - ACTIONS(753), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(476), 19, + ACTIONS(505), 19, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -16872,11 +17267,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(474), 29, + ACTIONS(503), 31, 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, @@ -16902,83 +17299,81 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [12367] = 34, + [12792] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(685), 1, + ACTIONS(621), 1, anon_sym_LBRACE, - ACTIONS(687), 1, + ACTIONS(623), 1, anon_sym_POUND, - ACTIONS(691), 1, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(693), 1, + ACTIONS(629), 1, anon_sym_LT_LT, - ACTIONS(695), 1, + ACTIONS(631), 1, anon_sym_DASH, - ACTIONS(697), 1, + ACTIONS(633), 1, anon_sym_fn, - ACTIONS(699), 1, + ACTIONS(635), 1, anon_sym_todo, - ACTIONS(701), 1, + ACTIONS(637), 1, anon_sym_panic, - ACTIONS(705), 1, + ACTIONS(641), 1, anon_sym_case, - ACTIONS(707), 1, + ACTIONS(643), 1, anon_sym_assert, - ACTIONS(709), 1, + ACTIONS(645), 1, anon_sym_BANG, - ACTIONS(711), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(713), 1, + ACTIONS(649), 1, sym_float, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(719), 1, + ACTIONS(655), 1, sym__discard_name, - ACTIONS(721), 1, + ACTIONS(657), 1, sym__name, - ACTIONS(723), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(757), 1, - anon_sym_RPAREN, - STATE(390), 1, + STATE(406), 1, sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, + STATE(436), 1, sym_anonymous_function, - STATE(1174), 1, + STATE(438), 1, + sym_tuple, + STATE(1159), 1, sym_hole, - STATE(1195), 1, + STATE(1206), 1, sym__maybe_function_expression, - STATE(1239), 1, + STATE(1236), 1, sym_argument, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, - sym__maybe_record_expression, - STATE(1351), 1, + STATE(1294), 1, sym_label, + STATE(1327), 1, + sym__maybe_record_expression, + STATE(1337), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(381), 2, + STATE(392), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(408), 2, + STATE(439), 2, sym_record, sym_record_update, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(392), 5, + STATE(407), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(615), 11, + STATE(625), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -16987,16 +17382,75 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [12489] = 4, + [12912] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(490), 19, + 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_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(488), 31, + 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_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [12974] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(667), 19, + ACTIONS(675), 19, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -17016,7 +17470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(665), 31, + ACTIONS(673), 31, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -17048,13 +17502,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [12551] = 4, + [13036] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(506), 19, + ACTIONS(466), 19, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -17074,7 +17528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(504), 31, + ACTIONS(464), 31, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, @@ -17106,13 +17560,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [12613] = 4, + [13098] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(486), 19, + ACTIONS(440), 19, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -17132,7 +17586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(484), 31, + ACTIONS(438), 31, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, @@ -17164,191 +17618,70 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [12675] = 34, + [13160] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(685), 1, - anon_sym_LBRACE, - ACTIONS(687), 1, - anon_sym_POUND, - ACTIONS(691), 1, - anon_sym_LBRACK, - ACTIONS(693), 1, - anon_sym_LT_LT, - ACTIONS(695), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(513), 19, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(697), 1, anon_sym_fn, - ACTIONS(699), 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(701), 1, anon_sym_panic, - ACTIONS(705), 1, anon_sym_case, - ACTIONS(707), 1, + anon_sym_let, anon_sym_assert, - ACTIONS(709), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(711), 1, - anon_sym_DQUOTE, - ACTIONS(713), 1, - sym_float, - ACTIONS(717), 1, sym__decimal, - ACTIONS(719), 1, - sym__discard_name, - ACTIONS(721), 1, sym__name, - ACTIONS(723), 1, - sym__upname, - ACTIONS(725), 1, - anon_sym_RPAREN, - STATE(390), 1, - sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, - sym_anonymous_function, - STATE(981), 1, - sym_argument, - STATE(1174), 1, - sym_hole, - STATE(1195), 1, - sym__maybe_function_expression, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, - sym__maybe_record_expression, - STATE(1351), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(381), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(408), 2, - sym_record, - sym_record_update, - ACTIONS(715), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(392), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(615), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [12797] = 34, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(685), 1, + ACTIONS(511), 30, anon_sym_LBRACE, - ACTIONS(687), 1, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_COMMA, anon_sym_POUND, - ACTIONS(691), 1, anon_sym_LBRACK, - ACTIONS(693), 1, anon_sym_LT_LT, - ACTIONS(695), 1, - anon_sym_DASH, - ACTIONS(697), 1, - anon_sym_fn, - ACTIONS(699), 1, - anon_sym_todo, - ACTIONS(701), 1, - anon_sym_panic, - ACTIONS(705), 1, - anon_sym_case, - ACTIONS(707), 1, - anon_sym_assert, - ACTIONS(709), 1, - anon_sym_BANG, - ACTIONS(711), 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_LT_GT, anon_sym_DQUOTE, - ACTIONS(713), 1, sym_float, - ACTIONS(717), 1, - sym__decimal, - ACTIONS(719), 1, - sym__discard_name, - ACTIONS(721), 1, - sym__name, - ACTIONS(723), 1, - sym__upname, - ACTIONS(731), 1, - anon_sym_RPAREN, - STATE(390), 1, - sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, - sym_anonymous_function, - STATE(1045), 1, - sym_argument, - STATE(1174), 1, - sym_hole, - STATE(1195), 1, - sym__maybe_function_expression, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, - sym__maybe_record_expression, - STATE(1351), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(381), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(408), 2, - sym_record, - sym_record_update, - ACTIONS(715), 3, sym__hex, sym__octal, sym__binary, - STATE(392), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(615), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [12919] = 5, + sym__upname, + [13221] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(543), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(476), 19, + ACTIONS(527), 19, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -17368,9 +17701,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(474), 29, + ACTIONS(525), 30, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_COMMA, anon_sym_POUND, anon_sym_LBRACK, @@ -17398,13 +17732,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [12982] = 4, + [13282] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(519), 19, + ACTIONS(523), 19, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -17424,12 +17758,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(517), 30, + ACTIONS(521), 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, @@ -17455,13 +17789,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [13043] = 4, + [13343] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(551), 19, + ACTIONS(537), 19, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -17481,12 +17815,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(549), 30, + ACTIONS(535), 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, @@ -17512,13 +17846,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [13104] = 4, + [13404] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(547), 19, + ACTIONS(549), 19, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -17538,7 +17872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(545), 30, + ACTIONS(547), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, @@ -17569,13 +17903,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [13165] = 4, + [13465] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(537), 19, + ACTIONS(531), 19, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -17595,12 +17929,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(535), 30, + ACTIONS(529), 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, @@ -17626,99 +17960,73 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [13226] = 33, + [13526] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(685), 1, - anon_sym_LBRACE, - ACTIONS(687), 1, - anon_sym_POUND, - ACTIONS(691), 1, - anon_sym_LBRACK, - ACTIONS(693), 1, - anon_sym_LT_LT, - ACTIONS(695), 1, + ACTIONS(769), 1, + anon_sym_LPAREN, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(517), 19, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(697), 1, anon_sym_fn, - ACTIONS(699), 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(701), 1, anon_sym_panic, - ACTIONS(705), 1, anon_sym_case, - ACTIONS(707), 1, + anon_sym_let, anon_sym_assert, - ACTIONS(709), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(711), 1, - anon_sym_DQUOTE, - ACTIONS(713), 1, - sym_float, - ACTIONS(717), 1, sym__decimal, - ACTIONS(719), 1, - sym__discard_name, - ACTIONS(721), 1, sym__name, - ACTIONS(723), 1, - sym__upname, - STATE(390), 1, - sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, - sym_anonymous_function, - STATE(1174), 1, - sym_hole, - STATE(1195), 1, - sym__maybe_function_expression, - STATE(1239), 1, - sym_argument, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, - sym__maybe_record_expression, - STATE(1351), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(381), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(408), 2, - sym_record, - sym_record_update, - ACTIONS(715), 3, + ACTIONS(515), 29, + 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_LT_GT, + anon_sym_DQUOTE, + sym_float, sym__hex, sym__octal, sym__binary, - STATE(392), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(615), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [13345] = 4, + sym__upname, + [13589] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(533), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(515), 19, + ACTIONS(448), 19, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -17738,10 +18046,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(513), 30, + ACTIONS(446), 29, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_COMMA, anon_sym_POUND, anon_sym_LBRACK, @@ -17769,13 +18076,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [13406] = 4, + [13652] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(541), 19, + ACTIONS(545), 19, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -17795,7 +18102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(539), 30, + ACTIONS(543), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, @@ -17826,15 +18133,15 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [13467] = 5, + [13713] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(759), 1, + ACTIONS(454), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(531), 19, + ACTIONS(448), 19, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -17854,7 +18161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(529), 29, + ACTIONS(446), 29, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -17884,13 +18191,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [13530] = 4, + [13776] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(527), 19, + ACTIONS(541), 19, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -17910,7 +18217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(525), 30, + ACTIONS(539), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, @@ -17941,15 +18248,15 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [13591] = 5, + [13837] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(511), 1, + ACTIONS(551), 1, anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(476), 19, + ACTIONS(448), 19, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -17969,7 +18276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(474), 29, + ACTIONS(446), 29, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -17999,15 +18306,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [13654] = 5, + [13900] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(482), 1, - anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(476), 19, + ACTIONS(591), 19, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -18027,7 +18332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(474), 29, + ACTIONS(589), 29, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -18057,13 +18362,96 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [13717] = 4, + [13960] = 31, ACTIONS(3), 1, sym_module_comment, + ACTIONS(621), 1, + anon_sym_LBRACE, + ACTIONS(623), 1, + anon_sym_POUND, + ACTIONS(627), 1, + anon_sym_LBRACK, + ACTIONS(629), 1, + anon_sym_LT_LT, + ACTIONS(631), 1, + anon_sym_DASH, + ACTIONS(633), 1, + anon_sym_fn, + ACTIONS(635), 1, + anon_sym_todo, + ACTIONS(637), 1, + anon_sym_panic, + ACTIONS(641), 1, + anon_sym_case, + ACTIONS(643), 1, + anon_sym_assert, + ACTIONS(645), 1, + anon_sym_BANG, + ACTIONS(647), 1, + anon_sym_DQUOTE, + ACTIONS(653), 1, + sym__decimal, + ACTIONS(659), 1, + sym__upname, + ACTIONS(771), 1, + anon_sym_RBRACK, + ACTIONS(773), 1, + anon_sym_DOT_DOT, + ACTIONS(775), 1, + sym_float, + ACTIONS(777), 1, + sym__name, + STATE(406), 1, + sym_identifier, + STATE(436), 1, + sym_anonymous_function, + STATE(438), 1, + sym_tuple, + STATE(1206), 1, + sym__maybe_function_expression, + STATE(1327), 1, + sym__maybe_record_expression, + STATE(1337), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(523), 19, + STATE(392), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(439), 2, + sym_record, + sym_record_update, + ACTIONS(651), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(407), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(565), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [14074] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(737), 19, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -18083,12 +18471,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(521), 30, + ACTIONS(735), 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, @@ -18114,13 +18501,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [13778] = 4, + [14134] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(655), 19, + ACTIONS(687), 19, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -18140,7 +18527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(653), 29, + ACTIONS(685), 29, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -18170,13 +18557,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [13838] = 4, + [14194] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(607), 19, + ACTIONS(721), 19, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -18196,7 +18583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(605), 29, + ACTIONS(719), 29, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -18226,13 +18613,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [13898] = 4, + [14254] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(679), 19, + ACTIONS(707), 19, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -18252,7 +18639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(677), 29, + ACTIONS(705), 29, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -18282,13 +18669,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [13958] = 4, + [14314] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(671), 19, + ACTIONS(733), 19, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -18308,7 +18695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(669), 29, + ACTIONS(731), 29, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -18338,69 +18725,345 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [14018] = 4, + [14374] = 31, ACTIONS(3), 1, sym_module_comment, + ACTIONS(621), 1, + anon_sym_LBRACE, + ACTIONS(623), 1, + anon_sym_POUND, + ACTIONS(627), 1, + anon_sym_LBRACK, + ACTIONS(629), 1, + anon_sym_LT_LT, + ACTIONS(631), 1, + anon_sym_DASH, + ACTIONS(633), 1, + anon_sym_fn, + ACTIONS(635), 1, + anon_sym_todo, + ACTIONS(637), 1, + anon_sym_panic, + ACTIONS(641), 1, + anon_sym_case, + ACTIONS(643), 1, + anon_sym_assert, + ACTIONS(645), 1, + anon_sym_BANG, + ACTIONS(647), 1, + anon_sym_DQUOTE, + ACTIONS(653), 1, + sym__decimal, + ACTIONS(659), 1, + sym__upname, + ACTIONS(775), 1, + sym_float, + ACTIONS(777), 1, + sym__name, + ACTIONS(779), 1, + anon_sym_RBRACK, + ACTIONS(781), 1, + anon_sym_DOT_DOT, + STATE(406), 1, + sym_identifier, + STATE(436), 1, + sym_anonymous_function, + STATE(438), 1, + sym_tuple, + STATE(1206), 1, + sym__maybe_function_expression, + STATE(1327), 1, + sym__maybe_record_expression, + STATE(1337), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(599), 19, - anon_sym_SLASH, + STATE(392), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(439), 2, + sym_record, + sym_record_update, + ACTIONS(651), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(407), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(565), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [14488] = 31, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(621), 1, + anon_sym_LBRACE, + ACTIONS(623), 1, + anon_sym_POUND, + ACTIONS(627), 1, + anon_sym_LBRACK, + ACTIONS(629), 1, + anon_sym_LT_LT, + ACTIONS(631), 1, anon_sym_DASH, + ACTIONS(633), 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(635), 1, anon_sym_todo, + ACTIONS(637), 1, anon_sym_panic, + ACTIONS(641), 1, anon_sym_case, - anon_sym_let, + ACTIONS(643), 1, anon_sym_assert, - anon_sym_use, + ACTIONS(645), 1, anon_sym_BANG, + ACTIONS(647), 1, + anon_sym_DQUOTE, + ACTIONS(653), 1, sym__decimal, + ACTIONS(659), 1, + sym__upname, + ACTIONS(775), 1, + sym_float, + ACTIONS(777), 1, sym__name, - ACTIONS(597), 29, + ACTIONS(783), 1, + anon_sym_RBRACK, + ACTIONS(785), 1, + anon_sym_DOT_DOT, + STATE(406), 1, + sym_identifier, + STATE(436), 1, + sym_anonymous_function, + STATE(438), 1, + sym_tuple, + STATE(1206), 1, + sym__maybe_function_expression, + STATE(1327), 1, + sym__maybe_record_expression, + STATE(1337), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(392), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(439), 2, + sym_record, + sym_record_update, + ACTIONS(651), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(407), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(565), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [14602] = 31, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(621), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(623), 1, anon_sym_POUND, + ACTIONS(627), 1, anon_sym_LBRACK, + ACTIONS(629), 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_LT_GT, + ACTIONS(631), 1, + anon_sym_DASH, + ACTIONS(633), 1, + anon_sym_fn, + ACTIONS(635), 1, + anon_sym_todo, + ACTIONS(637), 1, + anon_sym_panic, + ACTIONS(641), 1, + anon_sym_case, + ACTIONS(643), 1, + anon_sym_assert, + ACTIONS(645), 1, + anon_sym_BANG, + ACTIONS(647), 1, anon_sym_DQUOTE, + ACTIONS(653), 1, + sym__decimal, + ACTIONS(659), 1, + sym__upname, + ACTIONS(775), 1, sym_float, + ACTIONS(777), 1, + sym__name, + ACTIONS(787), 1, + anon_sym_RBRACK, + ACTIONS(789), 1, + anon_sym_DOT_DOT, + STATE(406), 1, + sym_identifier, + STATE(436), 1, + sym_anonymous_function, + STATE(438), 1, + sym_tuple, + STATE(1206), 1, + sym__maybe_function_expression, + STATE(1327), 1, + sym__maybe_record_expression, + STATE(1337), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(392), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(439), 2, + sym_record, + sym_record_update, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, + STATE(407), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(565), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [14716] = 31, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(621), 1, + anon_sym_LBRACE, + ACTIONS(623), 1, + anon_sym_POUND, + ACTIONS(627), 1, + anon_sym_LBRACK, + ACTIONS(629), 1, + anon_sym_LT_LT, + ACTIONS(631), 1, + anon_sym_DASH, + ACTIONS(633), 1, + anon_sym_fn, + ACTIONS(635), 1, + anon_sym_todo, + ACTIONS(637), 1, + anon_sym_panic, + ACTIONS(641), 1, + anon_sym_case, + ACTIONS(643), 1, + anon_sym_assert, + ACTIONS(645), 1, + anon_sym_BANG, + ACTIONS(647), 1, + anon_sym_DQUOTE, + ACTIONS(653), 1, + sym__decimal, + ACTIONS(659), 1, sym__upname, - [14078] = 4, + ACTIONS(775), 1, + sym_float, + ACTIONS(777), 1, + sym__name, + ACTIONS(791), 1, + anon_sym_RBRACK, + ACTIONS(793), 1, + anon_sym_DOT_DOT, + STATE(406), 1, + sym_identifier, + STATE(436), 1, + sym_anonymous_function, + STATE(438), 1, + sym_tuple, + STATE(1206), 1, + sym__maybe_function_expression, + STATE(1327), 1, + sym__maybe_record_expression, + STATE(1337), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(392), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(439), 2, + sym_record, + sym_record_update, + ACTIONS(651), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(407), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(565), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [14830] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(583), 19, + ACTIONS(599), 19, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -18420,7 +19083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(581), 29, + ACTIONS(597), 29, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -18450,13 +19113,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [14138] = 4, + [14890] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(651), 19, + ACTIONS(603), 19, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -18476,7 +19139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(649), 29, + ACTIONS(601), 29, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -18506,13 +19169,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [14198] = 4, + [14950] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(635), 19, + ACTIONS(583), 19, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -18532,7 +19195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(633), 29, + ACTIONS(581), 29, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -18562,13 +19225,96 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [14258] = 4, + [15010] = 31, ACTIONS(3), 1, sym_module_comment, + ACTIONS(621), 1, + anon_sym_LBRACE, + ACTIONS(623), 1, + anon_sym_POUND, + ACTIONS(627), 1, + anon_sym_LBRACK, + ACTIONS(629), 1, + anon_sym_LT_LT, + ACTIONS(631), 1, + anon_sym_DASH, + ACTIONS(633), 1, + anon_sym_fn, + ACTIONS(635), 1, + anon_sym_todo, + ACTIONS(637), 1, + anon_sym_panic, + ACTIONS(641), 1, + anon_sym_case, + ACTIONS(643), 1, + anon_sym_assert, + ACTIONS(645), 1, + anon_sym_BANG, + ACTIONS(647), 1, + anon_sym_DQUOTE, + ACTIONS(653), 1, + sym__decimal, + ACTIONS(655), 1, + sym__discard_name, + ACTIONS(659), 1, + sym__upname, + ACTIONS(777), 1, + sym__name, + ACTIONS(795), 1, + sym_float, + STATE(406), 1, + sym_identifier, + STATE(436), 1, + sym_anonymous_function, + STATE(438), 1, + sym_tuple, + STATE(1206), 1, + sym__maybe_function_expression, + STATE(1229), 1, + sym_hole, + STATE(1327), 1, + sym__maybe_record_expression, + STATE(1337), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(663), 19, + STATE(392), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(439), 2, + sym_record, + sym_record_update, + ACTIONS(651), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(407), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(629), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [15124] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(555), 19, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -18588,7 +19334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(661), 29, + ACTIONS(553), 29, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -18618,13 +19364,96 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [14318] = 4, + [15184] = 31, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(621), 1, + anon_sym_LBRACE, + ACTIONS(623), 1, + anon_sym_POUND, + ACTIONS(627), 1, + anon_sym_LBRACK, + ACTIONS(629), 1, + anon_sym_LT_LT, + ACTIONS(631), 1, + anon_sym_DASH, + ACTIONS(633), 1, + anon_sym_fn, + ACTIONS(635), 1, + anon_sym_todo, + ACTIONS(637), 1, + anon_sym_panic, + ACTIONS(641), 1, + anon_sym_case, + ACTIONS(643), 1, + anon_sym_assert, + ACTIONS(645), 1, + anon_sym_BANG, + ACTIONS(647), 1, + anon_sym_DQUOTE, + ACTIONS(653), 1, + sym__decimal, + ACTIONS(659), 1, + sym__upname, + ACTIONS(775), 1, + sym_float, + ACTIONS(777), 1, + sym__name, + ACTIONS(797), 1, + anon_sym_RBRACK, + ACTIONS(799), 1, + anon_sym_DOT_DOT, + STATE(406), 1, + sym_identifier, + STATE(436), 1, + sym_anonymous_function, + STATE(438), 1, + sym_tuple, + STATE(1206), 1, + sym__maybe_function_expression, + STATE(1327), 1, + sym__maybe_record_expression, + STATE(1337), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(392), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(439), 2, + sym_record, + sym_record_update, + ACTIONS(651), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(407), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(565), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [15298] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(595), 19, + ACTIONS(619), 19, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -18644,7 +19473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(593), 29, + ACTIONS(617), 29, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -18674,13 +19503,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [14378] = 4, + [15358] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(631), 19, + ACTIONS(615), 19, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -18700,7 +19529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(629), 29, + ACTIONS(613), 29, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -18730,13 +19559,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [14438] = 4, + [15418] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(647), 19, + ACTIONS(679), 19, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -18756,7 +19585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(645), 29, + ACTIONS(677), 29, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -18786,13 +19615,96 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [14498] = 4, + [15478] = 31, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(621), 1, + anon_sym_LBRACE, + ACTIONS(623), 1, + anon_sym_POUND, + ACTIONS(627), 1, + anon_sym_LBRACK, + ACTIONS(629), 1, + anon_sym_LT_LT, + ACTIONS(631), 1, + anon_sym_DASH, + ACTIONS(633), 1, + anon_sym_fn, + ACTIONS(635), 1, + anon_sym_todo, + ACTIONS(637), 1, + anon_sym_panic, + ACTIONS(641), 1, + anon_sym_case, + ACTIONS(643), 1, + anon_sym_assert, + ACTIONS(645), 1, + anon_sym_BANG, + ACTIONS(647), 1, + anon_sym_DQUOTE, + ACTIONS(653), 1, + sym__decimal, + ACTIONS(659), 1, + sym__upname, + ACTIONS(775), 1, + sym_float, + ACTIONS(777), 1, + sym__name, + ACTIONS(801), 1, + anon_sym_RBRACK, + ACTIONS(803), 1, + anon_sym_DOT_DOT, + STATE(406), 1, + sym_identifier, + STATE(436), 1, + sym_anonymous_function, + STATE(438), 1, + sym_tuple, + STATE(1206), 1, + sym__maybe_function_expression, + STATE(1327), 1, + sym__maybe_record_expression, + STATE(1337), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(392), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(439), 2, + sym_record, + sym_record_update, + ACTIONS(651), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(407), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(565), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [15592] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(659), 19, + ACTIONS(712), 19, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -18812,7 +19724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(657), 29, + ACTIONS(709), 29, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -18842,7 +19754,90 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [14558] = 4, + [15652] = 31, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(621), 1, + anon_sym_LBRACE, + ACTIONS(623), 1, + anon_sym_POUND, + ACTIONS(627), 1, + anon_sym_LBRACK, + ACTIONS(629), 1, + anon_sym_LT_LT, + ACTIONS(631), 1, + anon_sym_DASH, + ACTIONS(633), 1, + anon_sym_fn, + ACTIONS(635), 1, + anon_sym_todo, + ACTIONS(637), 1, + anon_sym_panic, + ACTIONS(641), 1, + anon_sym_case, + ACTIONS(643), 1, + anon_sym_assert, + ACTIONS(645), 1, + anon_sym_BANG, + ACTIONS(647), 1, + anon_sym_DQUOTE, + ACTIONS(653), 1, + sym__decimal, + ACTIONS(659), 1, + sym__upname, + ACTIONS(775), 1, + sym_float, + ACTIONS(777), 1, + sym__name, + ACTIONS(805), 1, + anon_sym_RBRACK, + ACTIONS(807), 1, + anon_sym_DOT_DOT, + STATE(406), 1, + sym_identifier, + STATE(436), 1, + sym_anonymous_function, + STATE(438), 1, + sym_tuple, + STATE(1206), 1, + sym__maybe_function_expression, + STATE(1327), 1, + sym__maybe_record_expression, + STATE(1337), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(392), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(439), 2, + sym_record, + sym_record_update, + ACTIONS(651), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(407), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(565), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [15766] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, @@ -18898,13 +19893,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [14618] = 4, + [15826] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(591), 19, + ACTIONS(745), 19, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -18924,7 +19919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(589), 29, + ACTIONS(743), 29, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -18954,77 +19949,131 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [14678] = 31, + [15886] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(685), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(663), 19, + 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_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(661), 29, anon_sym_LBRACE, - ACTIONS(687), 1, + anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_POUND, - ACTIONS(691), 1, anon_sym_LBRACK, - ACTIONS(693), 1, anon_sym_LT_LT, - ACTIONS(695), 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_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [15946] = 30, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(621), 1, + anon_sym_LBRACE, + ACTIONS(623), 1, + anon_sym_POUND, + ACTIONS(627), 1, + anon_sym_LBRACK, + ACTIONS(629), 1, + anon_sym_LT_LT, + ACTIONS(631), 1, anon_sym_DASH, - ACTIONS(697), 1, + ACTIONS(633), 1, anon_sym_fn, - ACTIONS(699), 1, + ACTIONS(635), 1, anon_sym_todo, - ACTIONS(701), 1, + ACTIONS(637), 1, anon_sym_panic, - ACTIONS(705), 1, + ACTIONS(641), 1, anon_sym_case, - ACTIONS(707), 1, + ACTIONS(643), 1, anon_sym_assert, - ACTIONS(709), 1, + ACTIONS(645), 1, anon_sym_BANG, - ACTIONS(711), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(723), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(761), 1, - anon_sym_RBRACK, - ACTIONS(763), 1, - anon_sym_DOT_DOT, - ACTIONS(765), 1, - sym_float, - ACTIONS(767), 1, + ACTIONS(777), 1, sym__name, - STATE(390), 1, + ACTIONS(809), 1, + anon_sym_RPAREN, + ACTIONS(811), 1, + sym_float, + STATE(406), 1, sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, + STATE(436), 1, sym_anonymous_function, - STATE(1195), 1, + STATE(438), 1, + sym_tuple, + STATE(1206), 1, sym__maybe_function_expression, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, + STATE(1327), 1, sym__maybe_record_expression, + STATE(1337), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(381), 2, + STATE(392), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(408), 2, + STATE(439), 2, sym_record, sym_record_update, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(392), 5, + STATE(407), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(545), 11, + STATE(624), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -19033,80 +20082,79 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [14791] = 31, + [16057] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(685), 1, + ACTIONS(621), 1, anon_sym_LBRACE, - ACTIONS(687), 1, + ACTIONS(623), 1, anon_sym_POUND, - ACTIONS(691), 1, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(693), 1, + ACTIONS(629), 1, anon_sym_LT_LT, - ACTIONS(695), 1, + ACTIONS(631), 1, anon_sym_DASH, - ACTIONS(697), 1, + ACTIONS(633), 1, anon_sym_fn, - ACTIONS(699), 1, + ACTIONS(635), 1, anon_sym_todo, - ACTIONS(701), 1, + ACTIONS(637), 1, anon_sym_panic, - ACTIONS(705), 1, + ACTIONS(641), 1, anon_sym_case, - ACTIONS(707), 1, + ACTIONS(643), 1, anon_sym_assert, - ACTIONS(709), 1, + ACTIONS(645), 1, anon_sym_BANG, - ACTIONS(711), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(723), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(765), 1, - sym_float, - ACTIONS(767), 1, + ACTIONS(777), 1, sym__name, - ACTIONS(769), 1, + ACTIONS(813), 1, anon_sym_RBRACK, - ACTIONS(771), 1, - anon_sym_DOT_DOT, - STATE(390), 1, + ACTIONS(815), 1, + sym_float, + STATE(406), 1, sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, + STATE(436), 1, sym_anonymous_function, - STATE(1195), 1, + STATE(438), 1, + sym_tuple, + STATE(1206), 1, sym__maybe_function_expression, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, + STATE(1327), 1, sym__maybe_record_expression, + STATE(1337), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(381), 2, + STATE(392), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(408), 2, + STATE(439), 2, sym_record, sym_record_update, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(392), 5, + STATE(407), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(545), 11, + STATE(588), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -19115,80 +20163,79 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [14904] = 31, + [16168] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(685), 1, + ACTIONS(621), 1, anon_sym_LBRACE, - ACTIONS(687), 1, + ACTIONS(623), 1, anon_sym_POUND, - ACTIONS(691), 1, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(693), 1, + ACTIONS(629), 1, anon_sym_LT_LT, - ACTIONS(695), 1, + ACTIONS(631), 1, anon_sym_DASH, - ACTIONS(697), 1, + ACTIONS(633), 1, anon_sym_fn, - ACTIONS(699), 1, + ACTIONS(635), 1, anon_sym_todo, - ACTIONS(701), 1, + ACTIONS(637), 1, anon_sym_panic, - ACTIONS(705), 1, + ACTIONS(641), 1, anon_sym_case, - ACTIONS(707), 1, + ACTIONS(643), 1, anon_sym_assert, - ACTIONS(709), 1, + ACTIONS(645), 1, anon_sym_BANG, - ACTIONS(711), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(723), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(765), 1, - sym_float, - ACTIONS(767), 1, + ACTIONS(777), 1, sym__name, - ACTIONS(773), 1, + ACTIONS(817), 1, anon_sym_RBRACK, - ACTIONS(775), 1, - anon_sym_DOT_DOT, - STATE(390), 1, + ACTIONS(819), 1, + sym_float, + STATE(406), 1, sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, + STATE(436), 1, sym_anonymous_function, - STATE(1195), 1, + STATE(438), 1, + sym_tuple, + STATE(1206), 1, sym__maybe_function_expression, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, + STATE(1327), 1, sym__maybe_record_expression, + STATE(1337), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(381), 2, + STATE(392), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(408), 2, + STATE(439), 2, sym_record, sym_record_update, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(392), 5, + STATE(407), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(545), 11, + STATE(576), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -19197,80 +20244,79 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [15017] = 31, + [16279] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(685), 1, + ACTIONS(621), 1, anon_sym_LBRACE, - ACTIONS(687), 1, + ACTIONS(623), 1, anon_sym_POUND, - ACTIONS(691), 1, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(693), 1, + ACTIONS(629), 1, anon_sym_LT_LT, - ACTIONS(695), 1, + ACTIONS(631), 1, anon_sym_DASH, - ACTIONS(697), 1, + ACTIONS(633), 1, anon_sym_fn, - ACTIONS(699), 1, + ACTIONS(635), 1, anon_sym_todo, - ACTIONS(701), 1, + ACTIONS(637), 1, anon_sym_panic, - ACTIONS(705), 1, + ACTIONS(641), 1, anon_sym_case, - ACTIONS(707), 1, + ACTIONS(643), 1, anon_sym_assert, - ACTIONS(709), 1, + ACTIONS(645), 1, anon_sym_BANG, - ACTIONS(711), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(723), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(765), 1, - sym_float, - ACTIONS(767), 1, - sym__name, ACTIONS(777), 1, - anon_sym_RBRACK, - ACTIONS(779), 1, - anon_sym_DOT_DOT, - STATE(390), 1, + sym__name, + ACTIONS(821), 1, + sym_float, + STATE(406), 1, sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, + STATE(436), 1, sym_anonymous_function, - STATE(1195), 1, + STATE(438), 1, + sym_tuple, + STATE(1206), 1, sym__maybe_function_expression, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, + STATE(1327), 1, sym__maybe_record_expression, + STATE(1337), 1, + sym__maybe_tuple_expression, + STATE(1366), 1, + sym_case_subjects, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(381), 2, + STATE(392), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(408), 2, + STATE(439), 2, sym_record, sym_record_update, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(392), 5, + STATE(407), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(545), 11, + STATE(591), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -19279,80 +20325,79 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [15130] = 31, + [16390] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(685), 1, + ACTIONS(621), 1, anon_sym_LBRACE, - ACTIONS(687), 1, + ACTIONS(623), 1, anon_sym_POUND, - ACTIONS(691), 1, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(693), 1, + ACTIONS(629), 1, anon_sym_LT_LT, - ACTIONS(695), 1, + ACTIONS(631), 1, anon_sym_DASH, - ACTIONS(697), 1, + ACTIONS(633), 1, anon_sym_fn, - ACTIONS(699), 1, + ACTIONS(635), 1, anon_sym_todo, - ACTIONS(701), 1, + ACTIONS(637), 1, anon_sym_panic, - ACTIONS(705), 1, + ACTIONS(641), 1, anon_sym_case, - ACTIONS(707), 1, + ACTIONS(643), 1, anon_sym_assert, - ACTIONS(709), 1, + ACTIONS(645), 1, anon_sym_BANG, - ACTIONS(711), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(723), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(765), 1, + ACTIONS(775), 1, sym_float, - ACTIONS(767), 1, + ACTIONS(777), 1, sym__name, - ACTIONS(781), 1, - anon_sym_RBRACK, - ACTIONS(783), 1, - anon_sym_DOT_DOT, - STATE(390), 1, + ACTIONS(823), 1, + anon_sym_RPAREN, + STATE(406), 1, sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, + STATE(436), 1, sym_anonymous_function, - STATE(1195), 1, + STATE(438), 1, + sym_tuple, + STATE(1206), 1, sym__maybe_function_expression, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, + STATE(1327), 1, sym__maybe_record_expression, + STATE(1337), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(381), 2, + STATE(392), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(408), 2, + STATE(439), 2, sym_record, sym_record_update, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(392), 5, + STATE(407), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(545), 11, + STATE(565), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -19361,80 +20406,79 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [15243] = 31, + [16501] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(685), 1, + ACTIONS(621), 1, anon_sym_LBRACE, - ACTIONS(687), 1, + ACTIONS(623), 1, anon_sym_POUND, - ACTIONS(691), 1, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(693), 1, + ACTIONS(629), 1, anon_sym_LT_LT, - ACTIONS(695), 1, + ACTIONS(631), 1, anon_sym_DASH, - ACTIONS(697), 1, + ACTIONS(633), 1, anon_sym_fn, - ACTIONS(699), 1, + ACTIONS(635), 1, anon_sym_todo, - ACTIONS(701), 1, + ACTIONS(637), 1, anon_sym_panic, - ACTIONS(705), 1, + ACTIONS(641), 1, anon_sym_case, - ACTIONS(707), 1, + ACTIONS(643), 1, anon_sym_assert, - ACTIONS(709), 1, + ACTIONS(645), 1, anon_sym_BANG, - ACTIONS(711), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(723), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(765), 1, + ACTIONS(775), 1, sym_float, - ACTIONS(767), 1, + ACTIONS(777), 1, sym__name, - ACTIONS(785), 1, - anon_sym_RBRACK, - ACTIONS(787), 1, - anon_sym_DOT_DOT, - STATE(390), 1, + ACTIONS(825), 1, + anon_sym_RPAREN, + STATE(406), 1, sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, + STATE(436), 1, sym_anonymous_function, - STATE(1195), 1, + STATE(438), 1, + sym_tuple, + STATE(1206), 1, sym__maybe_function_expression, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, + STATE(1327), 1, sym__maybe_record_expression, + STATE(1337), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(381), 2, + STATE(392), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(408), 2, + STATE(439), 2, sym_record, sym_record_update, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(392), 5, + STATE(407), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(545), 11, + STATE(565), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -19443,80 +20487,79 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [15356] = 31, + [16612] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(685), 1, + ACTIONS(621), 1, anon_sym_LBRACE, - ACTIONS(687), 1, + ACTIONS(623), 1, anon_sym_POUND, - ACTIONS(691), 1, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(693), 1, + ACTIONS(629), 1, anon_sym_LT_LT, - ACTIONS(695), 1, + ACTIONS(631), 1, anon_sym_DASH, - ACTIONS(697), 1, + ACTIONS(633), 1, anon_sym_fn, - ACTIONS(699), 1, + ACTIONS(635), 1, anon_sym_todo, - ACTIONS(701), 1, + ACTIONS(637), 1, anon_sym_panic, - ACTIONS(705), 1, + ACTIONS(641), 1, anon_sym_case, - ACTIONS(707), 1, + ACTIONS(643), 1, anon_sym_assert, - ACTIONS(709), 1, + ACTIONS(645), 1, anon_sym_BANG, - ACTIONS(711), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(723), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(765), 1, + ACTIONS(775), 1, sym_float, - ACTIONS(767), 1, + ACTIONS(777), 1, sym__name, - ACTIONS(789), 1, - anon_sym_RBRACK, - ACTIONS(791), 1, - anon_sym_DOT_DOT, - STATE(390), 1, + ACTIONS(827), 1, + anon_sym_RPAREN, + STATE(406), 1, sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, + STATE(436), 1, sym_anonymous_function, - STATE(1195), 1, + STATE(438), 1, + sym_tuple, + STATE(1206), 1, sym__maybe_function_expression, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, + STATE(1327), 1, sym__maybe_record_expression, + STATE(1337), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(381), 2, + STATE(392), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(408), 2, + STATE(439), 2, sym_record, sym_record_update, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(392), 5, + STATE(407), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(545), 11, + STATE(565), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -19525,80 +20568,79 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [15469] = 31, + [16723] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(685), 1, + ACTIONS(621), 1, anon_sym_LBRACE, - ACTIONS(687), 1, + ACTIONS(623), 1, anon_sym_POUND, - ACTIONS(691), 1, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(693), 1, + ACTIONS(629), 1, anon_sym_LT_LT, - ACTIONS(695), 1, + ACTIONS(631), 1, anon_sym_DASH, - ACTIONS(697), 1, + ACTIONS(633), 1, anon_sym_fn, - ACTIONS(699), 1, + ACTIONS(635), 1, anon_sym_todo, - ACTIONS(701), 1, + ACTIONS(637), 1, anon_sym_panic, - ACTIONS(705), 1, + ACTIONS(641), 1, anon_sym_case, - ACTIONS(707), 1, + ACTIONS(643), 1, anon_sym_assert, - ACTIONS(709), 1, + ACTIONS(645), 1, anon_sym_BANG, - ACTIONS(711), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(723), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(765), 1, - sym_float, - ACTIONS(767), 1, + ACTIONS(777), 1, sym__name, - ACTIONS(793), 1, - anon_sym_RBRACK, - ACTIONS(795), 1, - anon_sym_DOT_DOT, - STATE(390), 1, + ACTIONS(829), 1, + anon_sym_RPAREN, + ACTIONS(831), 1, + sym_float, + STATE(406), 1, sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, + STATE(436), 1, sym_anonymous_function, - STATE(1195), 1, + STATE(438), 1, + sym_tuple, + STATE(1206), 1, sym__maybe_function_expression, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, + STATE(1327), 1, sym__maybe_record_expression, + STATE(1337), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(381), 2, + STATE(392), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(408), 2, + STATE(439), 2, sym_record, sym_record_update, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(392), 5, + STATE(407), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(545), 11, + STATE(611), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -19607,80 +20649,79 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [15582] = 31, + [16834] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(685), 1, + ACTIONS(621), 1, anon_sym_LBRACE, - ACTIONS(687), 1, + ACTIONS(623), 1, anon_sym_POUND, - ACTIONS(691), 1, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(693), 1, + ACTIONS(629), 1, anon_sym_LT_LT, - ACTIONS(695), 1, + ACTIONS(631), 1, anon_sym_DASH, - ACTIONS(697), 1, + ACTIONS(633), 1, anon_sym_fn, - ACTIONS(699), 1, + ACTIONS(635), 1, anon_sym_todo, - ACTIONS(701), 1, + ACTIONS(637), 1, anon_sym_panic, - ACTIONS(705), 1, + ACTIONS(641), 1, anon_sym_case, - ACTIONS(707), 1, + ACTIONS(643), 1, anon_sym_assert, - ACTIONS(709), 1, + ACTIONS(645), 1, anon_sym_BANG, - ACTIONS(711), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(719), 1, - sym__discard_name, - ACTIONS(723), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(767), 1, + ACTIONS(777), 1, sym__name, - ACTIONS(797), 1, + ACTIONS(833), 1, + anon_sym_RBRACK, + ACTIONS(835), 1, sym_float, - STATE(390), 1, + STATE(406), 1, sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, + STATE(436), 1, sym_anonymous_function, - STATE(1195), 1, + STATE(438), 1, + sym_tuple, + STATE(1206), 1, sym__maybe_function_expression, - STATE(1250), 1, - sym_hole, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, + STATE(1327), 1, sym__maybe_record_expression, + STATE(1337), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(381), 2, + STATE(392), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(408), 2, + STATE(439), 2, sym_record, sym_record_update, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(392), 5, + STATE(407), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(618), 11, + STATE(580), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -19689,78 +20730,79 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [15695] = 30, + [16945] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(685), 1, + ACTIONS(621), 1, anon_sym_LBRACE, - ACTIONS(687), 1, + ACTIONS(623), 1, anon_sym_POUND, - ACTIONS(691), 1, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(693), 1, + ACTIONS(629), 1, anon_sym_LT_LT, - ACTIONS(695), 1, + ACTIONS(631), 1, anon_sym_DASH, - ACTIONS(697), 1, + ACTIONS(633), 1, anon_sym_fn, - ACTIONS(699), 1, + ACTIONS(635), 1, anon_sym_todo, - ACTIONS(701), 1, + ACTIONS(637), 1, anon_sym_panic, - ACTIONS(705), 1, + ACTIONS(641), 1, anon_sym_case, - ACTIONS(707), 1, + ACTIONS(643), 1, anon_sym_assert, - ACTIONS(709), 1, + ACTIONS(645), 1, anon_sym_BANG, - ACTIONS(711), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(723), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(767), 1, + ACTIONS(777), 1, sym__name, - ACTIONS(799), 1, - anon_sym_RBRACK, - ACTIONS(801), 1, + ACTIONS(821), 1, sym_float, - STATE(390), 1, + STATE(406), 1, sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, + STATE(436), 1, sym_anonymous_function, - STATE(1195), 1, + STATE(438), 1, + sym_tuple, + STATE(1206), 1, sym__maybe_function_expression, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, + STATE(1327), 1, sym__maybe_record_expression, + STATE(1337), 1, + sym__maybe_tuple_expression, + STATE(1362), 1, + sym_case_subjects, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(381), 2, + STATE(392), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(408), 2, + STATE(439), 2, sym_record, sym_record_update, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(392), 5, + STATE(407), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(566), 11, + STATE(591), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -19769,78 +20811,79 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [15805] = 30, + [17056] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(685), 1, + ACTIONS(621), 1, anon_sym_LBRACE, - ACTIONS(687), 1, + ACTIONS(623), 1, anon_sym_POUND, - ACTIONS(691), 1, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(693), 1, + ACTIONS(629), 1, anon_sym_LT_LT, - ACTIONS(695), 1, + ACTIONS(631), 1, anon_sym_DASH, - ACTIONS(697), 1, + ACTIONS(633), 1, anon_sym_fn, - ACTIONS(699), 1, + ACTIONS(635), 1, anon_sym_todo, - ACTIONS(701), 1, + ACTIONS(637), 1, anon_sym_panic, - ACTIONS(705), 1, + ACTIONS(641), 1, anon_sym_case, - ACTIONS(707), 1, + ACTIONS(643), 1, anon_sym_assert, - ACTIONS(709), 1, + ACTIONS(645), 1, anon_sym_BANG, - ACTIONS(711), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(723), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(765), 1, - sym_float, - ACTIONS(767), 1, + ACTIONS(777), 1, sym__name, - ACTIONS(803), 1, - anon_sym_RPAREN, - STATE(390), 1, + ACTIONS(821), 1, + sym_float, + STATE(406), 1, sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, + STATE(436), 1, sym_anonymous_function, - STATE(1195), 1, + STATE(438), 1, + sym_tuple, + STATE(1206), 1, sym__maybe_function_expression, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, + STATE(1327), 1, sym__maybe_record_expression, + STATE(1337), 1, + sym__maybe_tuple_expression, + STATE(1352), 1, + sym_case_subjects, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(381), 2, + STATE(392), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(408), 2, + STATE(439), 2, sym_record, sym_record_update, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(392), 5, + STATE(407), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(545), 11, + STATE(591), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -19849,78 +20892,79 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [15915] = 30, + [17167] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(685), 1, + ACTIONS(621), 1, anon_sym_LBRACE, - ACTIONS(687), 1, + ACTIONS(623), 1, anon_sym_POUND, - ACTIONS(691), 1, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(693), 1, + ACTIONS(629), 1, anon_sym_LT_LT, - ACTIONS(695), 1, + ACTIONS(631), 1, anon_sym_DASH, - ACTIONS(697), 1, + ACTIONS(633), 1, anon_sym_fn, - ACTIONS(699), 1, + ACTIONS(635), 1, anon_sym_todo, - ACTIONS(701), 1, + ACTIONS(637), 1, anon_sym_panic, - ACTIONS(705), 1, + ACTIONS(641), 1, anon_sym_case, - ACTIONS(707), 1, + ACTIONS(643), 1, anon_sym_assert, - ACTIONS(709), 1, + ACTIONS(645), 1, anon_sym_BANG, - ACTIONS(711), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(723), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(767), 1, + ACTIONS(775), 1, + sym_float, + ACTIONS(777), 1, sym__name, - ACTIONS(805), 1, + ACTIONS(837), 1, anon_sym_RPAREN, - ACTIONS(807), 1, - sym_float, - STATE(390), 1, + STATE(406), 1, sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, + STATE(436), 1, sym_anonymous_function, - STATE(1195), 1, + STATE(438), 1, + sym_tuple, + STATE(1206), 1, sym__maybe_function_expression, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, + STATE(1327), 1, sym__maybe_record_expression, + STATE(1337), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(381), 2, + STATE(392), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(408), 2, + STATE(439), 2, sym_record, sym_record_update, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(392), 5, + STATE(407), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(585), 11, + STATE(565), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -19929,78 +20973,79 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [16025] = 30, + [17278] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(685), 1, + ACTIONS(621), 1, anon_sym_LBRACE, - ACTIONS(687), 1, + ACTIONS(623), 1, anon_sym_POUND, - ACTIONS(691), 1, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(693), 1, + ACTIONS(629), 1, anon_sym_LT_LT, - ACTIONS(695), 1, + ACTIONS(631), 1, anon_sym_DASH, - ACTIONS(697), 1, + ACTIONS(633), 1, anon_sym_fn, - ACTIONS(699), 1, + ACTIONS(635), 1, anon_sym_todo, - ACTIONS(701), 1, + ACTIONS(637), 1, anon_sym_panic, - ACTIONS(705), 1, + ACTIONS(641), 1, anon_sym_case, - ACTIONS(707), 1, + ACTIONS(643), 1, anon_sym_assert, - ACTIONS(709), 1, + ACTIONS(645), 1, anon_sym_BANG, - ACTIONS(711), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(723), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(765), 1, - sym_float, - ACTIONS(767), 1, + ACTIONS(777), 1, sym__name, - ACTIONS(809), 1, + ACTIONS(839), 1, anon_sym_RPAREN, - STATE(390), 1, + ACTIONS(841), 1, + sym_float, + STATE(406), 1, sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, + STATE(436), 1, sym_anonymous_function, - STATE(1195), 1, + STATE(438), 1, + sym_tuple, + STATE(1206), 1, sym__maybe_function_expression, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, + STATE(1327), 1, sym__maybe_record_expression, + STATE(1337), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(381), 2, + STATE(392), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(408), 2, + STATE(439), 2, sym_record, sym_record_update, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(392), 5, + STATE(407), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(545), 11, + STATE(623), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -20009,78 +21054,79 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [16135] = 30, + [17389] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(685), 1, + ACTIONS(621), 1, anon_sym_LBRACE, - ACTIONS(687), 1, + ACTIONS(623), 1, anon_sym_POUND, - ACTIONS(691), 1, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(693), 1, + ACTIONS(629), 1, anon_sym_LT_LT, - ACTIONS(695), 1, + ACTIONS(631), 1, anon_sym_DASH, - ACTIONS(697), 1, + ACTIONS(633), 1, anon_sym_fn, - ACTIONS(699), 1, + ACTIONS(635), 1, anon_sym_todo, - ACTIONS(701), 1, + ACTIONS(637), 1, anon_sym_panic, - ACTIONS(705), 1, + ACTIONS(641), 1, anon_sym_case, - ACTIONS(707), 1, + ACTIONS(643), 1, anon_sym_assert, - ACTIONS(709), 1, + ACTIONS(645), 1, anon_sym_BANG, - ACTIONS(711), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(723), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(765), 1, + ACTIONS(775), 1, sym_float, - ACTIONS(767), 1, + ACTIONS(777), 1, sym__name, - ACTIONS(811), 1, + ACTIONS(843), 1, anon_sym_RPAREN, - STATE(390), 1, + STATE(406), 1, sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, + STATE(436), 1, sym_anonymous_function, - STATE(1195), 1, + STATE(438), 1, + sym_tuple, + STATE(1206), 1, sym__maybe_function_expression, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, + STATE(1327), 1, sym__maybe_record_expression, + STATE(1337), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(381), 2, + STATE(392), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(408), 2, + STATE(439), 2, sym_record, sym_record_update, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(392), 5, + STATE(407), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(545), 11, + STATE(565), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -20089,78 +21135,79 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [16245] = 30, + [17500] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(685), 1, + ACTIONS(621), 1, anon_sym_LBRACE, - ACTIONS(687), 1, + ACTIONS(623), 1, anon_sym_POUND, - ACTIONS(691), 1, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(693), 1, + ACTIONS(629), 1, anon_sym_LT_LT, - ACTIONS(695), 1, + ACTIONS(631), 1, anon_sym_DASH, - ACTIONS(697), 1, + ACTIONS(633), 1, anon_sym_fn, - ACTIONS(699), 1, + ACTIONS(635), 1, anon_sym_todo, - ACTIONS(701), 1, + ACTIONS(637), 1, anon_sym_panic, - ACTIONS(705), 1, + ACTIONS(641), 1, anon_sym_case, - ACTIONS(707), 1, + ACTIONS(643), 1, anon_sym_assert, - ACTIONS(709), 1, + ACTIONS(645), 1, anon_sym_BANG, - ACTIONS(711), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(723), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(767), 1, + ACTIONS(775), 1, + sym_float, + ACTIONS(777), 1, sym__name, - ACTIONS(813), 1, + ACTIONS(845), 1, anon_sym_RPAREN, - ACTIONS(815), 1, - sym_float, - STATE(390), 1, + STATE(406), 1, sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, + STATE(436), 1, sym_anonymous_function, - STATE(1195), 1, + STATE(438), 1, + sym_tuple, + STATE(1206), 1, sym__maybe_function_expression, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, + STATE(1327), 1, sym__maybe_record_expression, + STATE(1337), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(381), 2, + STATE(392), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(408), 2, + STATE(439), 2, sym_record, sym_record_update, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(392), 5, + STATE(407), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(580), 11, + STATE(565), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -20169,78 +21216,79 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [16355] = 30, + [17611] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(685), 1, + ACTIONS(621), 1, anon_sym_LBRACE, - ACTIONS(687), 1, + ACTIONS(623), 1, anon_sym_POUND, - ACTIONS(691), 1, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(693), 1, + ACTIONS(629), 1, anon_sym_LT_LT, - ACTIONS(695), 1, + ACTIONS(631), 1, anon_sym_DASH, - ACTIONS(697), 1, + ACTIONS(633), 1, anon_sym_fn, - ACTIONS(699), 1, + ACTIONS(635), 1, anon_sym_todo, - ACTIONS(701), 1, + ACTIONS(637), 1, anon_sym_panic, - ACTIONS(705), 1, + ACTIONS(641), 1, anon_sym_case, - ACTIONS(707), 1, + ACTIONS(643), 1, anon_sym_assert, - ACTIONS(709), 1, + ACTIONS(645), 1, anon_sym_BANG, - ACTIONS(711), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(723), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(767), 1, + ACTIONS(775), 1, + sym_float, + ACTIONS(777), 1, sym__name, - ACTIONS(817), 1, + ACTIONS(847), 1, anon_sym_RPAREN, - ACTIONS(819), 1, - sym_float, - STATE(390), 1, + STATE(406), 1, sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, + STATE(436), 1, sym_anonymous_function, - STATE(1195), 1, + STATE(438), 1, + sym_tuple, + STATE(1206), 1, sym__maybe_function_expression, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, + STATE(1327), 1, sym__maybe_record_expression, + STATE(1337), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(381), 2, + STATE(392), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(408), 2, + STATE(439), 2, sym_record, sym_record_update, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(392), 5, + STATE(407), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(596), 11, + STATE(565), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -20249,158 +21297,134 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [16465] = 30, + [17722] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(685), 1, - anon_sym_LBRACE, - ACTIONS(687), 1, - anon_sym_POUND, - ACTIONS(691), 1, - anon_sym_LBRACK, - ACTIONS(693), 1, - anon_sym_LT_LT, - ACTIONS(695), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(458), 19, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(697), 1, anon_sym_fn, - ACTIONS(699), 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(701), 1, anon_sym_panic, - ACTIONS(705), 1, anon_sym_case, - ACTIONS(707), 1, + anon_sym_let, anon_sym_assert, - ACTIONS(709), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(711), 1, - anon_sym_DQUOTE, - ACTIONS(717), 1, sym__decimal, - ACTIONS(723), 1, - sym__upname, - ACTIONS(767), 1, sym__name, - ACTIONS(821), 1, + ACTIONS(456), 28, + anon_sym_LBRACE, + 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_LT_GT, + anon_sym_DQUOTE, sym_float, - STATE(390), 1, - sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, - sym_anonymous_function, - STATE(1195), 1, - sym__maybe_function_expression, - STATE(1289), 1, - sym_case_subjects, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(381), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(408), 2, - sym_record, - sym_record_update, - ACTIONS(715), 3, sym__hex, sym__octal, sym__binary, - STATE(392), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(604), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [16575] = 30, + sym__upname, + [17781] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(685), 1, + ACTIONS(621), 1, anon_sym_LBRACE, - ACTIONS(687), 1, + ACTIONS(623), 1, anon_sym_POUND, - ACTIONS(691), 1, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(693), 1, + ACTIONS(629), 1, anon_sym_LT_LT, - ACTIONS(695), 1, + ACTIONS(631), 1, anon_sym_DASH, - ACTIONS(697), 1, + ACTIONS(633), 1, anon_sym_fn, - ACTIONS(699), 1, + ACTIONS(635), 1, anon_sym_todo, - ACTIONS(701), 1, + ACTIONS(637), 1, anon_sym_panic, - ACTIONS(705), 1, + ACTIONS(641), 1, anon_sym_case, - ACTIONS(707), 1, + ACTIONS(643), 1, anon_sym_assert, - ACTIONS(709), 1, + ACTIONS(645), 1, anon_sym_BANG, - ACTIONS(711), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(723), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(767), 1, + ACTIONS(777), 1, sym__name, - ACTIONS(821), 1, + ACTIONS(849), 1, + anon_sym_RPAREN, + ACTIONS(851), 1, sym_float, - STATE(390), 1, + STATE(406), 1, sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, + STATE(436), 1, sym_anonymous_function, - STATE(1195), 1, + STATE(438), 1, + sym_tuple, + STATE(1206), 1, sym__maybe_function_expression, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, + STATE(1327), 1, sym__maybe_record_expression, - STATE(1347), 1, - sym_case_subjects, + STATE(1337), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(381), 2, + STATE(392), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(408), 2, + STATE(439), 2, sym_record, sym_record_update, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(392), 5, + STATE(407), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(604), 11, + STATE(601), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -20409,78 +21433,79 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [16685] = 30, + [17892] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(685), 1, + ACTIONS(621), 1, anon_sym_LBRACE, - ACTIONS(687), 1, + ACTIONS(623), 1, anon_sym_POUND, - ACTIONS(691), 1, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(693), 1, + ACTIONS(629), 1, anon_sym_LT_LT, - ACTIONS(695), 1, + ACTIONS(631), 1, anon_sym_DASH, - ACTIONS(697), 1, + ACTIONS(633), 1, anon_sym_fn, - ACTIONS(699), 1, + ACTIONS(635), 1, anon_sym_todo, - ACTIONS(701), 1, + ACTIONS(637), 1, anon_sym_panic, - ACTIONS(705), 1, + ACTIONS(641), 1, anon_sym_case, - ACTIONS(707), 1, + ACTIONS(643), 1, anon_sym_assert, - ACTIONS(709), 1, + ACTIONS(645), 1, anon_sym_BANG, - ACTIONS(711), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(723), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(767), 1, + ACTIONS(777), 1, sym__name, - ACTIONS(821), 1, + ACTIONS(853), 1, + anon_sym_RBRACK, + ACTIONS(855), 1, sym_float, - STATE(390), 1, + STATE(406), 1, sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, + STATE(436), 1, sym_anonymous_function, - STATE(1195), 1, + STATE(438), 1, + sym_tuple, + STATE(1206), 1, sym__maybe_function_expression, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, + STATE(1327), 1, sym__maybe_record_expression, - STATE(1332), 1, - sym_case_subjects, + STATE(1337), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(381), 2, + STATE(392), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(408), 2, + STATE(439), 2, sym_record, sym_record_update, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(392), 5, + STATE(407), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(604), 11, + STATE(573), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -20489,78 +21514,79 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [16795] = 30, + [18003] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(685), 1, + ACTIONS(621), 1, anon_sym_LBRACE, - ACTIONS(687), 1, + ACTIONS(623), 1, anon_sym_POUND, - ACTIONS(691), 1, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(693), 1, + ACTIONS(629), 1, anon_sym_LT_LT, - ACTIONS(695), 1, + ACTIONS(631), 1, anon_sym_DASH, - ACTIONS(697), 1, + ACTIONS(633), 1, anon_sym_fn, - ACTIONS(699), 1, + ACTIONS(635), 1, anon_sym_todo, - ACTIONS(701), 1, + ACTIONS(637), 1, anon_sym_panic, - ACTIONS(705), 1, + ACTIONS(641), 1, anon_sym_case, - ACTIONS(707), 1, + ACTIONS(643), 1, anon_sym_assert, - ACTIONS(709), 1, + ACTIONS(645), 1, anon_sym_BANG, - ACTIONS(711), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(723), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(765), 1, - sym_float, - ACTIONS(767), 1, + ACTIONS(777), 1, sym__name, - ACTIONS(823), 1, - anon_sym_RPAREN, - STATE(390), 1, + ACTIONS(821), 1, + sym_float, + STATE(406), 1, sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, + STATE(436), 1, sym_anonymous_function, - STATE(1195), 1, + STATE(438), 1, + sym_tuple, + STATE(1206), 1, sym__maybe_function_expression, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, + STATE(1314), 1, + sym_case_subjects, + STATE(1327), 1, sym__maybe_record_expression, + STATE(1337), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(381), 2, + STATE(392), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(408), 2, + STATE(439), 2, sym_record, sym_record_update, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(392), 5, + STATE(407), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(545), 11, + STATE(591), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -20569,78 +21595,79 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [16905] = 30, + [18114] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(685), 1, + ACTIONS(621), 1, anon_sym_LBRACE, - ACTIONS(687), 1, + ACTIONS(623), 1, anon_sym_POUND, - ACTIONS(691), 1, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(693), 1, + ACTIONS(629), 1, anon_sym_LT_LT, - ACTIONS(695), 1, + ACTIONS(631), 1, anon_sym_DASH, - ACTIONS(697), 1, + ACTIONS(633), 1, anon_sym_fn, - ACTIONS(699), 1, + ACTIONS(635), 1, anon_sym_todo, - ACTIONS(701), 1, + ACTIONS(637), 1, anon_sym_panic, - ACTIONS(705), 1, + ACTIONS(641), 1, anon_sym_case, - ACTIONS(707), 1, + ACTIONS(643), 1, anon_sym_assert, - ACTIONS(709), 1, + ACTIONS(645), 1, anon_sym_BANG, - ACTIONS(711), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(723), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(765), 1, + ACTIONS(775), 1, sym_float, - ACTIONS(767), 1, + ACTIONS(777), 1, sym__name, - ACTIONS(825), 1, + ACTIONS(857), 1, anon_sym_RPAREN, - STATE(390), 1, + STATE(406), 1, sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, + STATE(436), 1, sym_anonymous_function, - STATE(1195), 1, + STATE(438), 1, + sym_tuple, + STATE(1206), 1, sym__maybe_function_expression, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, + STATE(1327), 1, sym__maybe_record_expression, + STATE(1337), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(381), 2, + STATE(392), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(408), 2, + STATE(439), 2, sym_record, sym_record_update, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(392), 5, + STATE(407), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(545), 11, + STATE(565), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -20649,158 +21676,158 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [17015] = 30, + [18225] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(685), 1, + ACTIONS(336), 1, anon_sym_LBRACE, - ACTIONS(687), 1, + ACTIONS(340), 1, anon_sym_POUND, - ACTIONS(691), 1, + ACTIONS(342), 1, anon_sym_LBRACK, - ACTIONS(693), 1, + ACTIONS(344), 1, anon_sym_LT_LT, - ACTIONS(695), 1, - anon_sym_DASH, - ACTIONS(697), 1, + ACTIONS(348), 1, anon_sym_fn, - ACTIONS(699), 1, + ACTIONS(352), 1, anon_sym_todo, - ACTIONS(701), 1, + ACTIONS(354), 1, anon_sym_panic, - ACTIONS(705), 1, + ACTIONS(356), 1, anon_sym_case, - ACTIONS(707), 1, - anon_sym_assert, - ACTIONS(709), 1, - anon_sym_BANG, - ACTIONS(711), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(723), 1, + ACTIONS(374), 1, + sym__name, + ACTIONS(376), 1, sym__upname, - ACTIONS(765), 1, + ACTIONS(859), 1, + anon_sym_GT_GT, + ACTIONS(861), 1, + anon_sym_DASH, + ACTIONS(863), 1, + anon_sym_assert, + ACTIONS(865), 1, + anon_sym_BANG, + ACTIONS(867), 1, sym_float, - ACTIONS(767), 1, - sym__name, - ACTIONS(827), 1, - anon_sym_RPAREN, - STATE(390), 1, + STATE(141), 1, sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, + STATE(158), 1, sym_anonymous_function, - STATE(1195), 1, + STATE(160), 1, + sym_tuple, + STATE(1073), 1, + sym_expression_bit_string_segment, + STATE(1204), 1, sym__maybe_function_expression, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, + STATE(1296), 1, sym__maybe_record_expression, + STATE(1299), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(381), 2, + STATE(127), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(408), 2, + STATE(156), 2, sym_record, sym_record_update, - ACTIONS(715), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(392), 5, + STATE(140), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(545), 11, - sym__expression, - sym_binary_expression, + STATE(1013), 10, sym__expression_unit, sym_todo, sym_panic, sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [17125] = 30, + [18337] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(685), 1, + ACTIONS(336), 1, anon_sym_LBRACE, - ACTIONS(687), 1, + ACTIONS(340), 1, anon_sym_POUND, - ACTIONS(691), 1, + ACTIONS(342), 1, anon_sym_LBRACK, - ACTIONS(693), 1, + ACTIONS(344), 1, anon_sym_LT_LT, - ACTIONS(695), 1, + ACTIONS(346), 1, anon_sym_DASH, - ACTIONS(697), 1, + ACTIONS(348), 1, anon_sym_fn, - ACTIONS(699), 1, + ACTIONS(352), 1, anon_sym_todo, - ACTIONS(701), 1, + ACTIONS(354), 1, anon_sym_panic, - ACTIONS(705), 1, + ACTIONS(356), 1, anon_sym_case, - ACTIONS(707), 1, + ACTIONS(360), 1, anon_sym_assert, - ACTIONS(709), 1, + ACTIONS(364), 1, anon_sym_BANG, - ACTIONS(711), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(723), 1, + ACTIONS(374), 1, + sym__name, + ACTIONS(376), 1, sym__upname, - ACTIONS(765), 1, + ACTIONS(869), 1, sym_float, - ACTIONS(767), 1, - sym__name, - ACTIONS(829), 1, - anon_sym_RPAREN, - STATE(390), 1, + STATE(141), 1, sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, + STATE(158), 1, sym_anonymous_function, - STATE(1195), 1, + STATE(160), 1, + sym_tuple, + STATE(1204), 1, sym__maybe_function_expression, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, + STATE(1296), 1, sym__maybe_record_expression, + STATE(1336), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(381), 2, + STATE(127), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(408), 2, + STATE(156), 2, sym_record, sym_record_update, - ACTIONS(715), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(392), 5, + STATE(140), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(545), 11, + STATE(304), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -20809,78 +21836,77 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [17235] = 30, + [18445] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(685), 1, + ACTIONS(621), 1, anon_sym_LBRACE, - ACTIONS(687), 1, + ACTIONS(623), 1, anon_sym_POUND, - ACTIONS(691), 1, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(693), 1, + ACTIONS(629), 1, anon_sym_LT_LT, - ACTIONS(695), 1, + ACTIONS(631), 1, anon_sym_DASH, - ACTIONS(697), 1, + ACTIONS(633), 1, anon_sym_fn, - ACTIONS(699), 1, + ACTIONS(635), 1, anon_sym_todo, - ACTIONS(701), 1, + ACTIONS(637), 1, anon_sym_panic, - ACTIONS(705), 1, + ACTIONS(641), 1, anon_sym_case, - ACTIONS(707), 1, + ACTIONS(643), 1, anon_sym_assert, - ACTIONS(709), 1, + ACTIONS(645), 1, anon_sym_BANG, - ACTIONS(711), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(723), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(767), 1, + ACTIONS(777), 1, sym__name, - ACTIONS(831), 1, - anon_sym_RBRACK, - ACTIONS(833), 1, + ACTIONS(871), 1, sym_float, - STATE(390), 1, + STATE(406), 1, sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, + STATE(436), 1, sym_anonymous_function, - STATE(1195), 1, + STATE(438), 1, + sym_tuple, + STATE(1206), 1, sym__maybe_function_expression, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, + STATE(1327), 1, sym__maybe_record_expression, + STATE(1337), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(381), 2, + STATE(392), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(408), 2, + STATE(439), 2, sym_record, sym_record_update, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(392), 5, + STATE(407), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(557), 11, + STATE(526), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -20889,78 +21915,77 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [17345] = 30, + [18553] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(685), 1, + ACTIONS(621), 1, anon_sym_LBRACE, - ACTIONS(687), 1, + ACTIONS(623), 1, anon_sym_POUND, - ACTIONS(691), 1, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(693), 1, + ACTIONS(629), 1, anon_sym_LT_LT, - ACTIONS(695), 1, + ACTIONS(631), 1, anon_sym_DASH, - ACTIONS(697), 1, + ACTIONS(633), 1, anon_sym_fn, - ACTIONS(699), 1, + ACTIONS(635), 1, anon_sym_todo, - ACTIONS(701), 1, + ACTIONS(637), 1, anon_sym_panic, - ACTIONS(705), 1, + ACTIONS(641), 1, anon_sym_case, - ACTIONS(707), 1, + ACTIONS(643), 1, anon_sym_assert, - ACTIONS(709), 1, + ACTIONS(645), 1, anon_sym_BANG, - ACTIONS(711), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(723), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(767), 1, + ACTIONS(777), 1, sym__name, - ACTIONS(835), 1, - anon_sym_RBRACK, - ACTIONS(837), 1, + ACTIONS(873), 1, sym_float, - STATE(390), 1, + STATE(406), 1, sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, + STATE(436), 1, sym_anonymous_function, - STATE(1195), 1, + STATE(438), 1, + sym_tuple, + STATE(1206), 1, sym__maybe_function_expression, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, + STATE(1327), 1, sym__maybe_record_expression, + STATE(1337), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(381), 2, + STATE(392), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(408), 2, + STATE(439), 2, sym_record, sym_record_update, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(392), 5, + STATE(407), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(562), 11, + STATE(659), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -20969,158 +21994,158 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [17455] = 30, + [18661] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(685), 1, + ACTIONS(336), 1, anon_sym_LBRACE, - ACTIONS(687), 1, + ACTIONS(340), 1, anon_sym_POUND, - ACTIONS(691), 1, + ACTIONS(342), 1, anon_sym_LBRACK, - ACTIONS(693), 1, + ACTIONS(344), 1, anon_sym_LT_LT, - ACTIONS(695), 1, - anon_sym_DASH, - ACTIONS(697), 1, + ACTIONS(348), 1, anon_sym_fn, - ACTIONS(699), 1, + ACTIONS(352), 1, anon_sym_todo, - ACTIONS(701), 1, + ACTIONS(354), 1, anon_sym_panic, - ACTIONS(705), 1, + ACTIONS(356), 1, anon_sym_case, - ACTIONS(707), 1, - anon_sym_assert, - ACTIONS(709), 1, - anon_sym_BANG, - ACTIONS(711), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(723), 1, - sym__upname, - ACTIONS(767), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(821), 1, + ACTIONS(376), 1, + sym__upname, + ACTIONS(861), 1, + anon_sym_DASH, + ACTIONS(863), 1, + anon_sym_assert, + ACTIONS(865), 1, + anon_sym_BANG, + ACTIONS(867), 1, sym_float, - STATE(390), 1, + ACTIONS(875), 1, + anon_sym_GT_GT, + STATE(141), 1, sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, + STATE(158), 1, sym_anonymous_function, - STATE(1195), 1, + STATE(160), 1, + sym_tuple, + STATE(1020), 1, + sym_expression_bit_string_segment, + STATE(1204), 1, sym__maybe_function_expression, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, + STATE(1296), 1, sym__maybe_record_expression, - STATE(1343), 1, - sym_case_subjects, + STATE(1299), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(381), 2, + STATE(127), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(408), 2, + STATE(156), 2, sym_record, sym_record_update, - ACTIONS(715), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(392), 5, + STATE(140), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(604), 11, - sym__expression, - sym_binary_expression, + STATE(1013), 10, sym__expression_unit, sym_todo, sym_panic, sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [17565] = 30, + [18773] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(685), 1, + ACTIONS(621), 1, anon_sym_LBRACE, - ACTIONS(687), 1, + ACTIONS(623), 1, anon_sym_POUND, - ACTIONS(691), 1, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(693), 1, + ACTIONS(629), 1, anon_sym_LT_LT, - ACTIONS(695), 1, + ACTIONS(631), 1, anon_sym_DASH, - ACTIONS(697), 1, + ACTIONS(633), 1, anon_sym_fn, - ACTIONS(699), 1, + ACTIONS(635), 1, anon_sym_todo, - ACTIONS(701), 1, + ACTIONS(637), 1, anon_sym_panic, - ACTIONS(705), 1, + ACTIONS(641), 1, anon_sym_case, - ACTIONS(707), 1, + ACTIONS(643), 1, anon_sym_assert, - ACTIONS(709), 1, + ACTIONS(645), 1, anon_sym_BANG, - ACTIONS(711), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(723), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(767), 1, + ACTIONS(777), 1, sym__name, - ACTIONS(839), 1, - anon_sym_RBRACK, - ACTIONS(841), 1, + ACTIONS(877), 1, sym_float, - STATE(390), 1, + STATE(406), 1, sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, + STATE(436), 1, sym_anonymous_function, - STATE(1195), 1, + STATE(438), 1, + sym_tuple, + STATE(1206), 1, sym__maybe_function_expression, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, + STATE(1327), 1, sym__maybe_record_expression, + STATE(1337), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(381), 2, + STATE(392), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(408), 2, + STATE(439), 2, sym_record, sym_record_update, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(392), 5, + STATE(407), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(575), 11, + STATE(655), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -21129,78 +22154,77 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [17675] = 30, + [18881] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(685), 1, + ACTIONS(621), 1, anon_sym_LBRACE, - ACTIONS(687), 1, + ACTIONS(623), 1, anon_sym_POUND, - ACTIONS(691), 1, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(693), 1, + ACTIONS(629), 1, anon_sym_LT_LT, - ACTIONS(695), 1, + ACTIONS(631), 1, anon_sym_DASH, - ACTIONS(697), 1, + ACTIONS(633), 1, anon_sym_fn, - ACTIONS(699), 1, + ACTIONS(635), 1, anon_sym_todo, - ACTIONS(701), 1, + ACTIONS(637), 1, anon_sym_panic, - ACTIONS(705), 1, + ACTIONS(641), 1, anon_sym_case, - ACTIONS(707), 1, + ACTIONS(643), 1, anon_sym_assert, - ACTIONS(709), 1, + ACTIONS(645), 1, anon_sym_BANG, - ACTIONS(711), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(723), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(765), 1, - sym_float, - ACTIONS(767), 1, + ACTIONS(777), 1, sym__name, - ACTIONS(843), 1, - anon_sym_RPAREN, - STATE(390), 1, + ACTIONS(879), 1, + sym_float, + STATE(406), 1, sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, + STATE(436), 1, sym_anonymous_function, - STATE(1195), 1, + STATE(438), 1, + sym_tuple, + STATE(1206), 1, sym__maybe_function_expression, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, + STATE(1327), 1, sym__maybe_record_expression, + STATE(1337), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(381), 2, + STATE(392), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(408), 2, + STATE(439), 2, sym_record, sym_record_update, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(392), 5, + STATE(407), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(545), 11, + STATE(521), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -21209,78 +22233,77 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [17785] = 30, + [18989] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(685), 1, + ACTIONS(621), 1, anon_sym_LBRACE, - ACTIONS(687), 1, + ACTIONS(623), 1, anon_sym_POUND, - ACTIONS(691), 1, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(693), 1, + ACTIONS(629), 1, anon_sym_LT_LT, - ACTIONS(695), 1, + ACTIONS(631), 1, anon_sym_DASH, - ACTIONS(697), 1, + ACTIONS(633), 1, anon_sym_fn, - ACTIONS(699), 1, + ACTIONS(635), 1, anon_sym_todo, - ACTIONS(701), 1, + ACTIONS(637), 1, anon_sym_panic, - ACTIONS(705), 1, + ACTIONS(641), 1, anon_sym_case, - ACTIONS(707), 1, + ACTIONS(643), 1, anon_sym_assert, - ACTIONS(709), 1, + ACTIONS(645), 1, anon_sym_BANG, - ACTIONS(711), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(723), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(767), 1, + ACTIONS(777), 1, sym__name, - ACTIONS(845), 1, - anon_sym_RPAREN, - ACTIONS(847), 1, + ACTIONS(881), 1, sym_float, - STATE(390), 1, + STATE(406), 1, sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, + STATE(436), 1, sym_anonymous_function, - STATE(1195), 1, + STATE(438), 1, + sym_tuple, + STATE(1206), 1, sym__maybe_function_expression, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, + STATE(1327), 1, sym__maybe_record_expression, + STATE(1337), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(381), 2, + STATE(392), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(408), 2, + STATE(439), 2, sym_record, sym_record_update, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(392), 5, + STATE(407), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(581), 11, + STATE(512), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -21289,131 +22312,77 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [17895] = 6, + [19097] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(849), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(851), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(555), 17, - anon_sym_DASH, - anon_sym_fn, - anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_todo, - anon_sym_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(553), 22, + ACTIONS(621), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(623), 1, anon_sym_POUND, + ACTIONS(627), 1, anon_sym_LBRACK, + ACTIONS(629), 1, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [17956] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(276), 1, - anon_sym_LBRACE, - ACTIONS(280), 1, - anon_sym_POUND, - ACTIONS(282), 1, - anon_sym_LBRACK, - ACTIONS(284), 1, - anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(631), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(633), 1, anon_sym_fn, - ACTIONS(292), 1, + ACTIONS(635), 1, anon_sym_todo, - ACTIONS(294), 1, + ACTIONS(637), 1, anon_sym_panic, - ACTIONS(296), 1, + ACTIONS(641), 1, anon_sym_case, - ACTIONS(300), 1, + ACTIONS(643), 1, anon_sym_assert, - ACTIONS(304), 1, + ACTIONS(645), 1, anon_sym_BANG, - ACTIONS(306), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(312), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(314), 1, - sym__name, - ACTIONS(316), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(853), 1, + ACTIONS(777), 1, + sym__name, + ACTIONS(883), 1, sym_float, - STATE(140), 1, + STATE(406), 1, sym_identifier, - STATE(147), 1, - sym_tuple, - STATE(158), 1, + STATE(436), 1, sym_anonymous_function, - STATE(1187), 1, + STATE(438), 1, + sym_tuple, + STATE(1206), 1, sym__maybe_function_expression, - STATE(1280), 1, + STATE(1327), 1, sym__maybe_record_expression, - STATE(1310), 1, + STATE(1337), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(119), 2, + STATE(392), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(157), 2, + STATE(439), 2, sym_record, sym_record_update, - ACTIONS(310), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(138), 5, + STATE(407), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(259), 11, + STATE(511), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -21422,76 +22391,77 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [18063] = 29, + [19205] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(685), 1, + ACTIONS(621), 1, anon_sym_LBRACE, - ACTIONS(687), 1, + ACTIONS(623), 1, anon_sym_POUND, - ACTIONS(691), 1, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(693), 1, + ACTIONS(629), 1, anon_sym_LT_LT, - ACTIONS(695), 1, + ACTIONS(631), 1, anon_sym_DASH, - ACTIONS(697), 1, + ACTIONS(633), 1, anon_sym_fn, - ACTIONS(699), 1, + ACTIONS(635), 1, anon_sym_todo, - ACTIONS(701), 1, + ACTIONS(637), 1, anon_sym_panic, - ACTIONS(705), 1, + ACTIONS(641), 1, anon_sym_case, - ACTIONS(707), 1, + ACTIONS(643), 1, anon_sym_assert, - ACTIONS(709), 1, + ACTIONS(645), 1, anon_sym_BANG, - ACTIONS(711), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(723), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(767), 1, + ACTIONS(777), 1, sym__name, - ACTIONS(855), 1, + ACTIONS(885), 1, sym_float, - STATE(390), 1, + STATE(406), 1, sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, + STATE(436), 1, sym_anonymous_function, - STATE(1195), 1, + STATE(438), 1, + sym_tuple, + STATE(1206), 1, sym__maybe_function_expression, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, + STATE(1327), 1, sym__maybe_record_expression, + STATE(1337), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(381), 2, + STATE(392), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(408), 2, + STATE(439), 2, sym_record, sym_record_update, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(392), 5, + STATE(407), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(474), 11, + STATE(510), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -21500,76 +22470,77 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [18170] = 29, + [19313] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(685), 1, + ACTIONS(621), 1, anon_sym_LBRACE, - ACTIONS(687), 1, + ACTIONS(623), 1, anon_sym_POUND, - ACTIONS(691), 1, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(693), 1, + ACTIONS(629), 1, anon_sym_LT_LT, - ACTIONS(695), 1, + ACTIONS(631), 1, anon_sym_DASH, - ACTIONS(697), 1, + ACTIONS(633), 1, anon_sym_fn, - ACTIONS(699), 1, + ACTIONS(635), 1, anon_sym_todo, - ACTIONS(701), 1, + ACTIONS(637), 1, anon_sym_panic, - ACTIONS(705), 1, + ACTIONS(641), 1, anon_sym_case, - ACTIONS(707), 1, + ACTIONS(643), 1, anon_sym_assert, - ACTIONS(709), 1, + ACTIONS(645), 1, anon_sym_BANG, - ACTIONS(711), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(723), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(767), 1, + ACTIONS(777), 1, sym__name, - ACTIONS(857), 1, + ACTIONS(887), 1, sym_float, - STATE(390), 1, + STATE(406), 1, sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, + STATE(436), 1, sym_anonymous_function, - STATE(1195), 1, + STATE(438), 1, + sym_tuple, + STATE(1206), 1, sym__maybe_function_expression, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, + STATE(1327), 1, sym__maybe_record_expression, + STATE(1337), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(381), 2, + STATE(392), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(408), 2, + STATE(439), 2, sym_record, sym_record_update, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(392), 5, + STATE(407), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(477), 11, + STATE(508), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -21578,76 +22549,77 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [18277] = 29, + [19421] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(685), 1, + ACTIONS(621), 1, anon_sym_LBRACE, - ACTIONS(687), 1, + ACTIONS(623), 1, anon_sym_POUND, - ACTIONS(691), 1, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(693), 1, + ACTIONS(629), 1, anon_sym_LT_LT, - ACTIONS(695), 1, + ACTIONS(631), 1, anon_sym_DASH, - ACTIONS(697), 1, + ACTIONS(633), 1, anon_sym_fn, - ACTIONS(699), 1, + ACTIONS(635), 1, anon_sym_todo, - ACTIONS(701), 1, + ACTIONS(637), 1, anon_sym_panic, - ACTIONS(705), 1, + ACTIONS(641), 1, anon_sym_case, - ACTIONS(707), 1, + ACTIONS(643), 1, anon_sym_assert, - ACTIONS(709), 1, + ACTIONS(645), 1, anon_sym_BANG, - ACTIONS(711), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(723), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(767), 1, + ACTIONS(777), 1, sym__name, - ACTIONS(859), 1, + ACTIONS(889), 1, sym_float, - STATE(390), 1, + STATE(406), 1, sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, + STATE(436), 1, sym_anonymous_function, - STATE(1195), 1, + STATE(438), 1, + sym_tuple, + STATE(1206), 1, sym__maybe_function_expression, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, + STATE(1327), 1, sym__maybe_record_expression, + STATE(1337), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(381), 2, + STATE(392), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(408), 2, + STATE(439), 2, sym_record, sym_record_update, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(392), 5, + STATE(407), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(479), 11, + STATE(507), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -21656,76 +22628,77 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [18384] = 29, + [19529] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(685), 1, + ACTIONS(621), 1, anon_sym_LBRACE, - ACTIONS(687), 1, + ACTIONS(623), 1, anon_sym_POUND, - ACTIONS(691), 1, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(693), 1, + ACTIONS(629), 1, anon_sym_LT_LT, - ACTIONS(695), 1, + ACTIONS(631), 1, anon_sym_DASH, - ACTIONS(697), 1, + ACTIONS(633), 1, anon_sym_fn, - ACTIONS(699), 1, + ACTIONS(635), 1, anon_sym_todo, - ACTIONS(701), 1, + ACTIONS(637), 1, anon_sym_panic, - ACTIONS(705), 1, + ACTIONS(641), 1, anon_sym_case, - ACTIONS(707), 1, + ACTIONS(643), 1, anon_sym_assert, - ACTIONS(709), 1, + ACTIONS(645), 1, anon_sym_BANG, - ACTIONS(711), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(723), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(767), 1, + ACTIONS(777), 1, sym__name, - ACTIONS(861), 1, + ACTIONS(891), 1, sym_float, - STATE(390), 1, + STATE(406), 1, sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, + STATE(436), 1, sym_anonymous_function, - STATE(1195), 1, + STATE(438), 1, + sym_tuple, + STATE(1206), 1, sym__maybe_function_expression, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, + STATE(1327), 1, sym__maybe_record_expression, + STATE(1337), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(381), 2, + STATE(392), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(408), 2, + STATE(439), 2, sym_record, sym_record_update, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(392), 5, + STATE(407), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(482), 11, + STATE(446), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -21734,76 +22707,77 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [18491] = 29, + [19637] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(685), 1, + ACTIONS(621), 1, anon_sym_LBRACE, - ACTIONS(687), 1, + ACTIONS(623), 1, anon_sym_POUND, - ACTIONS(691), 1, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(693), 1, + ACTIONS(629), 1, anon_sym_LT_LT, - ACTIONS(695), 1, + ACTIONS(631), 1, anon_sym_DASH, - ACTIONS(697), 1, + ACTIONS(633), 1, anon_sym_fn, - ACTIONS(699), 1, + ACTIONS(635), 1, anon_sym_todo, - ACTIONS(701), 1, + ACTIONS(637), 1, anon_sym_panic, - ACTIONS(705), 1, + ACTIONS(641), 1, anon_sym_case, - ACTIONS(707), 1, + ACTIONS(643), 1, anon_sym_assert, - ACTIONS(709), 1, + ACTIONS(645), 1, anon_sym_BANG, - ACTIONS(711), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(723), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(767), 1, + ACTIONS(777), 1, sym__name, - ACTIONS(863), 1, + ACTIONS(893), 1, sym_float, - STATE(390), 1, + STATE(406), 1, sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, + STATE(436), 1, sym_anonymous_function, - STATE(1195), 1, + STATE(438), 1, + sym_tuple, + STATE(1206), 1, sym__maybe_function_expression, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, + STATE(1327), 1, sym__maybe_record_expression, + STATE(1337), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(381), 2, + STATE(392), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(408), 2, + STATE(439), 2, sym_record, sym_record_update, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(392), 5, + STATE(407), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(483), 11, + STATE(502), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -21812,76 +22786,77 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [18598] = 29, + [19745] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(685), 1, + ACTIONS(895), 1, anon_sym_LBRACE, - ACTIONS(687), 1, + ACTIONS(897), 1, anon_sym_POUND, - ACTIONS(691), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(693), 1, + ACTIONS(901), 1, anon_sym_LT_LT, - ACTIONS(695), 1, + ACTIONS(903), 1, anon_sym_DASH, - ACTIONS(697), 1, + ACTIONS(905), 1, anon_sym_fn, - ACTIONS(699), 1, + ACTIONS(907), 1, anon_sym_todo, - ACTIONS(701), 1, + ACTIONS(909), 1, anon_sym_panic, - ACTIONS(705), 1, + ACTIONS(911), 1, anon_sym_case, - ACTIONS(707), 1, + ACTIONS(913), 1, anon_sym_assert, - ACTIONS(709), 1, + ACTIONS(915), 1, anon_sym_BANG, - ACTIONS(711), 1, + ACTIONS(917), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(919), 1, + sym_float, + ACTIONS(923), 1, sym__decimal, - ACTIONS(723), 1, - sym__upname, - ACTIONS(767), 1, + ACTIONS(925), 1, sym__name, - ACTIONS(865), 1, - sym_float, - STATE(390), 1, + ACTIONS(927), 1, + sym__upname, + STATE(331), 1, sym_identifier, - STATE(410), 1, + STATE(351), 1, sym_tuple, - STATE(413), 1, + STATE(353), 1, sym_anonymous_function, - STATE(1195), 1, + STATE(1248), 1, sym__maybe_function_expression, - STATE(1307), 1, + STATE(1283), 1, sym__maybe_tuple_expression, - STATE(1309), 1, + STATE(1340), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(381), 2, + STATE(328), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(408), 2, + STATE(350), 2, sym_record, sym_record_update, - ACTIONS(715), 3, + ACTIONS(921), 3, sym__hex, sym__octal, sym__binary, - STATE(392), 5, + STATE(332), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(435), 11, + STATE(362), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -21890,76 +22865,77 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [18705] = 29, + [19853] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(685), 1, + ACTIONS(621), 1, anon_sym_LBRACE, - ACTIONS(687), 1, + ACTIONS(623), 1, anon_sym_POUND, - ACTIONS(691), 1, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(693), 1, + ACTIONS(629), 1, anon_sym_LT_LT, - ACTIONS(695), 1, + ACTIONS(631), 1, anon_sym_DASH, - ACTIONS(697), 1, + ACTIONS(633), 1, anon_sym_fn, - ACTIONS(699), 1, + ACTIONS(635), 1, anon_sym_todo, - ACTIONS(701), 1, + ACTIONS(637), 1, anon_sym_panic, - ACTIONS(705), 1, + ACTIONS(641), 1, anon_sym_case, - ACTIONS(707), 1, + ACTIONS(643), 1, anon_sym_assert, - ACTIONS(709), 1, + ACTIONS(645), 1, anon_sym_BANG, - ACTIONS(711), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(723), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(767), 1, + ACTIONS(777), 1, sym__name, - ACTIONS(867), 1, + ACTIONS(929), 1, sym_float, - STATE(390), 1, + STATE(406), 1, sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, + STATE(436), 1, sym_anonymous_function, - STATE(1195), 1, + STATE(438), 1, + sym_tuple, + STATE(1206), 1, sym__maybe_function_expression, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, + STATE(1327), 1, sym__maybe_record_expression, + STATE(1337), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(381), 2, + STATE(392), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(408), 2, + STATE(439), 2, sym_record, sym_record_update, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(392), 5, + STATE(407), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(486), 11, + STATE(662), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -21968,76 +22944,77 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [18812] = 29, + [19961] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(685), 1, + ACTIONS(621), 1, anon_sym_LBRACE, - ACTIONS(687), 1, + ACTIONS(623), 1, anon_sym_POUND, - ACTIONS(691), 1, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(693), 1, + ACTIONS(629), 1, anon_sym_LT_LT, - ACTIONS(695), 1, + ACTIONS(631), 1, anon_sym_DASH, - ACTIONS(697), 1, + ACTIONS(633), 1, anon_sym_fn, - ACTIONS(699), 1, + ACTIONS(635), 1, anon_sym_todo, - ACTIONS(701), 1, + ACTIONS(637), 1, anon_sym_panic, - ACTIONS(705), 1, + ACTIONS(641), 1, anon_sym_case, - ACTIONS(707), 1, + ACTIONS(643), 1, anon_sym_assert, - ACTIONS(709), 1, + ACTIONS(645), 1, anon_sym_BANG, - ACTIONS(711), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(723), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(767), 1, + ACTIONS(777), 1, sym__name, - ACTIONS(869), 1, + ACTIONS(931), 1, sym_float, - STATE(390), 1, + STATE(406), 1, sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, + STATE(436), 1, sym_anonymous_function, - STATE(1195), 1, + STATE(438), 1, + sym_tuple, + STATE(1206), 1, sym__maybe_function_expression, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, + STATE(1327), 1, sym__maybe_record_expression, + STATE(1337), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(381), 2, + STATE(392), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(408), 2, + STATE(439), 2, sym_record, sym_record_update, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(392), 5, + STATE(407), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(651), 11, + STATE(656), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -22046,156 +23023,235 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [18919] = 31, + [20069] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(621), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(623), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(629), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(631), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(633), 1, anon_sym_fn, - ACTIONS(292), 1, + ACTIONS(635), 1, anon_sym_todo, - ACTIONS(294), 1, + ACTIONS(637), 1, anon_sym_panic, - ACTIONS(296), 1, + ACTIONS(641), 1, anon_sym_case, - ACTIONS(306), 1, + ACTIONS(643), 1, + anon_sym_assert, + ACTIONS(645), 1, + anon_sym_BANG, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(312), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(314), 1, - sym__name, - ACTIONS(316), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(871), 1, - anon_sym_GT_GT, - ACTIONS(873), 1, + ACTIONS(777), 1, + sym__name, + ACTIONS(933), 1, + sym_float, + STATE(406), 1, + sym_identifier, + STATE(436), 1, + sym_anonymous_function, + STATE(438), 1, + sym_tuple, + STATE(1206), 1, + sym__maybe_function_expression, + STATE(1327), 1, + sym__maybe_record_expression, + STATE(1337), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(392), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(439), 2, + sym_record, + sym_record_update, + ACTIONS(651), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(407), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(638), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [20177] = 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_panic, + ACTIONS(37), 1, + anon_sym_case, + ACTIONS(41), 1, anon_sym_assert, - ACTIONS(875), 1, + ACTIONS(45), 1, anon_sym_BANG, - ACTIONS(877), 1, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(57), 1, + sym__decimal, + ACTIONS(59), 1, + sym__name, + ACTIONS(61), 1, + sym__upname, + ACTIONS(935), 1, + anon_sym_fn, + ACTIONS(937), 1, sym_float, - STATE(140), 1, + STATE(50), 1, sym_identifier, - STATE(147), 1, - sym_tuple, - STATE(158), 1, + STATE(75), 1, sym_anonymous_function, - STATE(1004), 1, - sym_expression_bit_string_segment, - STATE(1187), 1, + STATE(77), 1, + sym_tuple, + STATE(1222), 1, sym__maybe_function_expression, - STATE(1280), 1, + STATE(1330), 1, sym__maybe_record_expression, - STATE(1310), 1, + STATE(1331), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(119), 2, + STATE(39), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(157), 2, + STATE(71), 2, sym_record, sym_record_update, - ACTIONS(310), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(138), 5, + STATE(61), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1003), 9, + STATE(80), 12, + sym__expression, + sym_binary_expression, sym__expression_unit, sym_todo, sym_panic, sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [19030] = 29, + [20285] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(685), 1, + ACTIONS(621), 1, anon_sym_LBRACE, - ACTIONS(687), 1, + ACTIONS(623), 1, anon_sym_POUND, - ACTIONS(691), 1, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(693), 1, + ACTIONS(629), 1, anon_sym_LT_LT, - ACTIONS(695), 1, + ACTIONS(631), 1, anon_sym_DASH, - ACTIONS(697), 1, + ACTIONS(633), 1, anon_sym_fn, - ACTIONS(699), 1, + ACTIONS(635), 1, anon_sym_todo, - ACTIONS(701), 1, + ACTIONS(637), 1, anon_sym_panic, - ACTIONS(705), 1, + ACTIONS(641), 1, anon_sym_case, - ACTIONS(707), 1, + ACTIONS(643), 1, anon_sym_assert, - ACTIONS(709), 1, + ACTIONS(645), 1, anon_sym_BANG, - ACTIONS(711), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(723), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(767), 1, + ACTIONS(777), 1, sym__name, - ACTIONS(879), 1, + ACTIONS(939), 1, sym_float, - STATE(390), 1, + STATE(406), 1, sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, + STATE(436), 1, sym_anonymous_function, - STATE(1195), 1, + STATE(438), 1, + sym_tuple, + STATE(1206), 1, sym__maybe_function_expression, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, + STATE(1327), 1, sym__maybe_record_expression, + STATE(1337), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(381), 2, + STATE(392), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(408), 2, + STATE(439), 2, sym_record, sym_record_update, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(392), 5, + STATE(407), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(645), 11, + STATE(649), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -22204,76 +23260,77 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [19137] = 29, + [20393] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(685), 1, + ACTIONS(621), 1, anon_sym_LBRACE, - ACTIONS(687), 1, + ACTIONS(623), 1, anon_sym_POUND, - ACTIONS(691), 1, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(693), 1, + ACTIONS(629), 1, anon_sym_LT_LT, - ACTIONS(695), 1, + ACTIONS(631), 1, anon_sym_DASH, - ACTIONS(697), 1, + ACTIONS(633), 1, anon_sym_fn, - ACTIONS(699), 1, + ACTIONS(635), 1, anon_sym_todo, - ACTIONS(701), 1, + ACTIONS(637), 1, anon_sym_panic, - ACTIONS(705), 1, + ACTIONS(641), 1, anon_sym_case, - ACTIONS(707), 1, + ACTIONS(643), 1, anon_sym_assert, - ACTIONS(709), 1, + ACTIONS(645), 1, anon_sym_BANG, - ACTIONS(711), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(723), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(767), 1, + ACTIONS(777), 1, sym__name, - ACTIONS(881), 1, + ACTIONS(941), 1, sym_float, - STATE(390), 1, + STATE(406), 1, sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, + STATE(436), 1, sym_anonymous_function, - STATE(1195), 1, + STATE(438), 1, + sym_tuple, + STATE(1206), 1, sym__maybe_function_expression, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, + STATE(1327), 1, sym__maybe_record_expression, + STATE(1337), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(381), 2, + STATE(392), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(408), 2, + STATE(439), 2, sym_record, sym_record_update, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(392), 5, + STATE(407), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(632), 11, + STATE(666), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -22282,76 +23339,77 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [19244] = 29, + [20501] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(685), 1, + ACTIONS(621), 1, anon_sym_LBRACE, - ACTIONS(687), 1, + ACTIONS(623), 1, anon_sym_POUND, - ACTIONS(691), 1, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(693), 1, + ACTIONS(629), 1, anon_sym_LT_LT, - ACTIONS(695), 1, + ACTIONS(631), 1, anon_sym_DASH, - ACTIONS(697), 1, + ACTIONS(633), 1, anon_sym_fn, - ACTIONS(699), 1, + ACTIONS(635), 1, anon_sym_todo, - ACTIONS(701), 1, + ACTIONS(637), 1, anon_sym_panic, - ACTIONS(705), 1, + ACTIONS(641), 1, anon_sym_case, - ACTIONS(707), 1, + ACTIONS(643), 1, anon_sym_assert, - ACTIONS(709), 1, + ACTIONS(645), 1, anon_sym_BANG, - ACTIONS(711), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(723), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(765), 1, + ACTIONS(775), 1, sym_float, - ACTIONS(767), 1, + ACTIONS(777), 1, sym__name, - STATE(390), 1, + STATE(406), 1, sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, + STATE(436), 1, sym_anonymous_function, - STATE(1195), 1, + STATE(438), 1, + sym_tuple, + STATE(1206), 1, sym__maybe_function_expression, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, + STATE(1327), 1, sym__maybe_record_expression, + STATE(1337), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(381), 2, + STATE(392), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(408), 2, + STATE(439), 2, sym_record, sym_record_update, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(392), 5, + STATE(407), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(545), 11, + STATE(565), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -22360,76 +23418,77 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [19351] = 29, + [20609] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(685), 1, + ACTIONS(336), 1, anon_sym_LBRACE, - ACTIONS(687), 1, + ACTIONS(340), 1, anon_sym_POUND, - ACTIONS(691), 1, + ACTIONS(342), 1, anon_sym_LBRACK, - ACTIONS(693), 1, + ACTIONS(344), 1, anon_sym_LT_LT, - ACTIONS(695), 1, + ACTIONS(346), 1, anon_sym_DASH, - ACTIONS(697), 1, + ACTIONS(348), 1, anon_sym_fn, - ACTIONS(699), 1, + ACTIONS(352), 1, anon_sym_todo, - ACTIONS(701), 1, + ACTIONS(354), 1, anon_sym_panic, - ACTIONS(705), 1, + ACTIONS(356), 1, anon_sym_case, - ACTIONS(707), 1, + ACTIONS(360), 1, anon_sym_assert, - ACTIONS(709), 1, + ACTIONS(364), 1, anon_sym_BANG, - ACTIONS(711), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(723), 1, - sym__upname, - ACTIONS(767), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(883), 1, + ACTIONS(376), 1, + sym__upname, + ACTIONS(943), 1, sym_float, - STATE(390), 1, + STATE(141), 1, sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, + STATE(158), 1, sym_anonymous_function, - STATE(1195), 1, + STATE(160), 1, + sym_tuple, + STATE(1204), 1, sym__maybe_function_expression, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, + STATE(1296), 1, sym__maybe_record_expression, + STATE(1336), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(381), 2, + STATE(127), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(408), 2, + STATE(156), 2, sym_record, sym_record_update, - ACTIONS(715), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(392), 5, + STATE(140), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(638), 11, + STATE(295), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -22438,139 +23497,77 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [19458] = 14, + [20717] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(887), 1, - anon_sym_PIPE_PIPE, - ACTIONS(889), 1, - anon_sym_AMP_AMP, - ACTIONS(897), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(849), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(885), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(891), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(899), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(851), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(893), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(895), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(621), 11, - anon_sym_LBRACE, - 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, - ACTIONS(623), 11, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - [19535] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(685), 1, + ACTIONS(621), 1, anon_sym_LBRACE, - ACTIONS(687), 1, + ACTIONS(623), 1, anon_sym_POUND, - ACTIONS(691), 1, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(693), 1, + ACTIONS(629), 1, anon_sym_LT_LT, - ACTIONS(695), 1, + ACTIONS(631), 1, anon_sym_DASH, - ACTIONS(697), 1, + ACTIONS(633), 1, anon_sym_fn, - ACTIONS(699), 1, + ACTIONS(635), 1, anon_sym_todo, - ACTIONS(701), 1, + ACTIONS(637), 1, anon_sym_panic, - ACTIONS(705), 1, + ACTIONS(641), 1, anon_sym_case, - ACTIONS(707), 1, + ACTIONS(643), 1, anon_sym_assert, - ACTIONS(709), 1, + ACTIONS(645), 1, anon_sym_BANG, - ACTIONS(711), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(723), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(767), 1, + ACTIONS(777), 1, sym__name, - ACTIONS(901), 1, + ACTIONS(945), 1, sym_float, - STATE(390), 1, + STATE(406), 1, sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, + STATE(436), 1, sym_anonymous_function, - STATE(1195), 1, + STATE(438), 1, + sym_tuple, + STATE(1206), 1, sym__maybe_function_expression, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, + STATE(1327), 1, sym__maybe_record_expression, + STATE(1337), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(381), 2, + STATE(392), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(408), 2, + STATE(439), 2, sym_record, sym_record_update, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(392), 5, + STATE(407), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(644), 11, + STATE(663), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -22579,76 +23576,77 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [19642] = 29, + [20825] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(685), 1, + ACTIONS(621), 1, anon_sym_LBRACE, - ACTIONS(687), 1, + ACTIONS(623), 1, anon_sym_POUND, - ACTIONS(691), 1, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(693), 1, + ACTIONS(629), 1, anon_sym_LT_LT, - ACTIONS(695), 1, + ACTIONS(631), 1, anon_sym_DASH, - ACTIONS(697), 1, + ACTIONS(633), 1, anon_sym_fn, - ACTIONS(699), 1, + ACTIONS(635), 1, anon_sym_todo, - ACTIONS(701), 1, + ACTIONS(637), 1, anon_sym_panic, - ACTIONS(705), 1, + ACTIONS(641), 1, anon_sym_case, - ACTIONS(707), 1, + ACTIONS(643), 1, anon_sym_assert, - ACTIONS(709), 1, + ACTIONS(645), 1, anon_sym_BANG, - ACTIONS(711), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(723), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(767), 1, + ACTIONS(777), 1, sym__name, - ACTIONS(903), 1, + ACTIONS(947), 1, sym_float, - STATE(390), 1, + STATE(406), 1, sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, + STATE(436), 1, sym_anonymous_function, - STATE(1195), 1, + STATE(438), 1, + sym_tuple, + STATE(1206), 1, sym__maybe_function_expression, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, + STATE(1327), 1, sym__maybe_record_expression, + STATE(1337), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(381), 2, + STATE(392), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(408), 2, + STATE(439), 2, sym_record, sym_record_update, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(392), 5, + STATE(407), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(626), 11, + STATE(651), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -22657,76 +23655,77 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [19749] = 29, + [20933] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(685), 1, + ACTIONS(621), 1, anon_sym_LBRACE, - ACTIONS(687), 1, + ACTIONS(623), 1, anon_sym_POUND, - ACTIONS(691), 1, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(693), 1, + ACTIONS(629), 1, anon_sym_LT_LT, - ACTIONS(695), 1, + ACTIONS(631), 1, anon_sym_DASH, - ACTIONS(697), 1, + ACTIONS(633), 1, anon_sym_fn, - ACTIONS(699), 1, + ACTIONS(635), 1, anon_sym_todo, - ACTIONS(701), 1, + ACTIONS(637), 1, anon_sym_panic, - ACTIONS(705), 1, + ACTIONS(641), 1, anon_sym_case, - ACTIONS(707), 1, + ACTIONS(643), 1, anon_sym_assert, - ACTIONS(709), 1, + ACTIONS(645), 1, anon_sym_BANG, - ACTIONS(711), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(723), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(767), 1, + ACTIONS(777), 1, sym__name, - ACTIONS(905), 1, + ACTIONS(949), 1, sym_float, - STATE(390), 1, + STATE(406), 1, sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, + STATE(436), 1, sym_anonymous_function, - STATE(1195), 1, + STATE(438), 1, + sym_tuple, + STATE(1206), 1, sym__maybe_function_expression, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, + STATE(1327), 1, sym__maybe_record_expression, + STATE(1337), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(381), 2, + STATE(392), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(408), 2, + STATE(439), 2, sym_record, sym_record_update, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(392), 5, + STATE(407), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(630), 11, + STATE(642), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -22735,343 +23734,237 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [19856] = 14, + [21041] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(887), 1, - anon_sym_PIPE_PIPE, - ACTIONS(889), 1, - anon_sym_AMP_AMP, - ACTIONS(897), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(849), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(885), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(891), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(899), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(851), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(893), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(895), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(613), 11, + ACTIONS(336), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(340), 1, anon_sym_POUND, + ACTIONS(342), 1, anon_sym_LBRACK, + ACTIONS(344), 1, anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(615), 11, + ACTIONS(348), 1, anon_sym_fn, - anon_sym_try, + ACTIONS(352), 1, anon_sym_todo, + ACTIONS(354), 1, anon_sym_panic, + ACTIONS(356), 1, anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, + ACTIONS(366), 1, + anon_sym_DQUOTE, + ACTIONS(372), 1, sym__decimal, + ACTIONS(374), 1, sym__name, - [19933] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(276), 1, - anon_sym_LBRACE, - ACTIONS(280), 1, - anon_sym_POUND, - ACTIONS(282), 1, - anon_sym_LBRACK, - ACTIONS(284), 1, - anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(376), 1, + sym__upname, + ACTIONS(861), 1, anon_sym_DASH, - ACTIONS(288), 1, - anon_sym_fn, - ACTIONS(292), 1, - anon_sym_todo, - ACTIONS(294), 1, - anon_sym_panic, - ACTIONS(296), 1, - anon_sym_case, - ACTIONS(300), 1, + ACTIONS(863), 1, anon_sym_assert, - ACTIONS(304), 1, + ACTIONS(865), 1, anon_sym_BANG, - ACTIONS(306), 1, - anon_sym_DQUOTE, - ACTIONS(312), 1, - sym__decimal, - ACTIONS(314), 1, - sym__name, - ACTIONS(316), 1, - sym__upname, - ACTIONS(907), 1, + ACTIONS(867), 1, sym_float, - STATE(140), 1, + ACTIONS(951), 1, + anon_sym_GT_GT, + STATE(141), 1, sym_identifier, - STATE(147), 1, - sym_tuple, STATE(158), 1, sym_anonymous_function, - STATE(1187), 1, + STATE(160), 1, + sym_tuple, + STATE(1204), 1, sym__maybe_function_expression, - STATE(1280), 1, + STATE(1224), 1, + sym_expression_bit_string_segment, + STATE(1296), 1, sym__maybe_record_expression, - STATE(1310), 1, + STATE(1299), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(119), 2, + STATE(127), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(157), 2, + STATE(156), 2, sym_record, sym_record_update, - ACTIONS(310), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(138), 5, + STATE(140), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(219), 11, - sym__expression, - sym_binary_expression, + STATE(1013), 10, sym__expression_unit, sym_todo, sym_panic, sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [20040] = 14, + [21153] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(887), 1, - anon_sym_PIPE_PIPE, - ACTIONS(889), 1, - anon_sym_AMP_AMP, - ACTIONS(897), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(849), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(885), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(891), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(899), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(851), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(893), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(895), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(637), 11, + ACTIONS(621), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(623), 1, anon_sym_POUND, + ACTIONS(627), 1, anon_sym_LBRACK, + ACTIONS(629), 1, anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(639), 11, + ACTIONS(631), 1, + anon_sym_DASH, + ACTIONS(633), 1, anon_sym_fn, - anon_sym_try, + ACTIONS(635), 1, anon_sym_todo, + ACTIONS(637), 1, anon_sym_panic, + ACTIONS(641), 1, anon_sym_case, - anon_sym_let, + ACTIONS(643), 1, anon_sym_assert, - anon_sym_use, + ACTIONS(645), 1, anon_sym_BANG, + ACTIONS(647), 1, + anon_sym_DQUOTE, + ACTIONS(653), 1, sym__decimal, + ACTIONS(659), 1, + sym__upname, + ACTIONS(777), 1, sym__name, - [20117] = 14, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(887), 1, - anon_sym_PIPE_PIPE, - ACTIONS(889), 1, - anon_sym_AMP_AMP, - ACTIONS(897), 1, - anon_sym_PIPE_GT, + ACTIONS(953), 1, + sym_float, + STATE(406), 1, + sym_identifier, + STATE(436), 1, + sym_anonymous_function, + STATE(438), 1, + sym_tuple, + STATE(1206), 1, + sym__maybe_function_expression, + STATE(1327), 1, + sym__maybe_record_expression, + STATE(1337), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(849), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(885), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(891), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(899), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(851), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(893), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(895), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(641), 11, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, + STATE(392), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(439), 2, + sym_record, + sym_record_update, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - ACTIONS(643), 11, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - [20194] = 29, + STATE(407), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(647), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [21261] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(685), 1, + ACTIONS(621), 1, anon_sym_LBRACE, - ACTIONS(687), 1, + ACTIONS(623), 1, anon_sym_POUND, - ACTIONS(691), 1, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(693), 1, + ACTIONS(629), 1, anon_sym_LT_LT, - ACTIONS(695), 1, + ACTIONS(631), 1, anon_sym_DASH, - ACTIONS(697), 1, + ACTIONS(633), 1, anon_sym_fn, - ACTIONS(699), 1, + ACTIONS(635), 1, anon_sym_todo, - ACTIONS(701), 1, + ACTIONS(637), 1, anon_sym_panic, - ACTIONS(705), 1, + ACTIONS(641), 1, anon_sym_case, - ACTIONS(707), 1, + ACTIONS(643), 1, anon_sym_assert, - ACTIONS(709), 1, + ACTIONS(645), 1, anon_sym_BANG, - ACTIONS(711), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(723), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(767), 1, + ACTIONS(777), 1, sym__name, - ACTIONS(909), 1, + ACTIONS(955), 1, sym_float, - STATE(390), 1, + STATE(406), 1, sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, + STATE(436), 1, sym_anonymous_function, - STATE(1195), 1, + STATE(438), 1, + sym_tuple, + STATE(1206), 1, sym__maybe_function_expression, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, + STATE(1327), 1, sym__maybe_record_expression, + STATE(1337), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(381), 2, + STATE(392), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(408), 2, + STATE(439), 2, sym_record, sym_record_update, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(392), 5, + STATE(407), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(649), 11, + STATE(658), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -23080,139 +23973,77 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [20301] = 14, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(887), 1, - anon_sym_PIPE_PIPE, - ACTIONS(889), 1, - anon_sym_AMP_AMP, - ACTIONS(897), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(849), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(885), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(891), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(899), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(851), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(893), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(895), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(673), 11, - anon_sym_LBRACE, - 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, - ACTIONS(675), 11, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - [20378] = 29, + [21369] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(685), 1, + ACTIONS(621), 1, anon_sym_LBRACE, - ACTIONS(687), 1, + ACTIONS(623), 1, anon_sym_POUND, - ACTIONS(691), 1, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(693), 1, + ACTIONS(629), 1, anon_sym_LT_LT, - ACTIONS(695), 1, + ACTIONS(631), 1, anon_sym_DASH, - ACTIONS(697), 1, + ACTIONS(633), 1, anon_sym_fn, - ACTIONS(699), 1, + ACTIONS(635), 1, anon_sym_todo, - ACTIONS(701), 1, + ACTIONS(637), 1, anon_sym_panic, - ACTIONS(705), 1, + ACTIONS(641), 1, anon_sym_case, - ACTIONS(707), 1, + ACTIONS(643), 1, anon_sym_assert, - ACTIONS(709), 1, + ACTIONS(645), 1, anon_sym_BANG, - ACTIONS(711), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(723), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(767), 1, + ACTIONS(777), 1, sym__name, - ACTIONS(911), 1, + ACTIONS(957), 1, sym_float, - STATE(390), 1, + STATE(406), 1, sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, + STATE(436), 1, sym_anonymous_function, - STATE(1195), 1, + STATE(438), 1, + sym_tuple, + STATE(1206), 1, sym__maybe_function_expression, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, + STATE(1327), 1, sym__maybe_record_expression, + STATE(1337), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(381), 2, + STATE(392), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(408), 2, + STATE(439), 2, sym_record, sym_record_update, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(392), 5, + STATE(407), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(631), 11, + STATE(640), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -23221,76 +24052,77 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [20485] = 29, + [21477] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(685), 1, + ACTIONS(621), 1, anon_sym_LBRACE, - ACTIONS(687), 1, + ACTIONS(623), 1, anon_sym_POUND, - ACTIONS(691), 1, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(693), 1, + ACTIONS(629), 1, anon_sym_LT_LT, - ACTIONS(695), 1, + ACTIONS(631), 1, anon_sym_DASH, - ACTIONS(697), 1, + ACTIONS(633), 1, anon_sym_fn, - ACTIONS(699), 1, + ACTIONS(635), 1, anon_sym_todo, - ACTIONS(701), 1, + ACTIONS(637), 1, anon_sym_panic, - ACTIONS(705), 1, + ACTIONS(641), 1, anon_sym_case, - ACTIONS(707), 1, + ACTIONS(643), 1, anon_sym_assert, - ACTIONS(709), 1, + ACTIONS(645), 1, anon_sym_BANG, - ACTIONS(711), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(723), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(767), 1, + ACTIONS(777), 1, sym__name, - ACTIONS(913), 1, + ACTIONS(959), 1, sym_float, - STATE(390), 1, + STATE(406), 1, sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, + STATE(436), 1, sym_anonymous_function, - STATE(1195), 1, + STATE(438), 1, + sym_tuple, + STATE(1206), 1, sym__maybe_function_expression, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, + STATE(1327), 1, sym__maybe_record_expression, + STATE(1337), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(381), 2, + STATE(392), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(408), 2, + STATE(439), 2, sym_record, sym_record_update, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(392), 5, + STATE(407), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(650), 11, + STATE(643), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -23299,234 +24131,239 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [20592] = 31, + [21585] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(336), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(340), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(342), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(344), 1, anon_sym_LT_LT, - ACTIONS(286), 1, - anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(348), 1, anon_sym_fn, - ACTIONS(292), 1, + ACTIONS(352), 1, anon_sym_todo, - ACTIONS(294), 1, + ACTIONS(354), 1, anon_sym_panic, - ACTIONS(296), 1, + ACTIONS(356), 1, anon_sym_case, - ACTIONS(306), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(312), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(314), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(316), 1, + ACTIONS(376), 1, sym__upname, - ACTIONS(873), 1, + ACTIONS(861), 1, + anon_sym_DASH, + ACTIONS(863), 1, anon_sym_assert, - ACTIONS(875), 1, + ACTIONS(865), 1, anon_sym_BANG, - ACTIONS(877), 1, + ACTIONS(867), 1, sym_float, - ACTIONS(915), 1, + ACTIONS(961), 1, anon_sym_GT_GT, - STATE(140), 1, + STATE(141), 1, sym_identifier, - STATE(147), 1, - sym_tuple, STATE(158), 1, sym_anonymous_function, - STATE(1187), 1, + STATE(160), 1, + sym_tuple, + STATE(1204), 1, sym__maybe_function_expression, - STATE(1225), 1, + STATE(1224), 1, sym_expression_bit_string_segment, - STATE(1280), 1, + STATE(1296), 1, sym__maybe_record_expression, - STATE(1310), 1, + STATE(1299), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(119), 2, + STATE(127), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(157), 2, + STATE(156), 2, sym_record, sym_record_update, - ACTIONS(310), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(138), 5, + STATE(140), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1003), 9, + STATE(1013), 10, sym__expression_unit, sym_todo, sym_panic, sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [20703] = 29, + [21697] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(685), 1, + ACTIONS(336), 1, anon_sym_LBRACE, - ACTIONS(687), 1, + ACTIONS(340), 1, anon_sym_POUND, - ACTIONS(691), 1, + ACTIONS(342), 1, anon_sym_LBRACK, - ACTIONS(693), 1, + ACTIONS(344), 1, anon_sym_LT_LT, - ACTIONS(695), 1, - anon_sym_DASH, - ACTIONS(697), 1, + ACTIONS(348), 1, anon_sym_fn, - ACTIONS(699), 1, + ACTIONS(352), 1, anon_sym_todo, - ACTIONS(701), 1, + ACTIONS(354), 1, anon_sym_panic, - ACTIONS(705), 1, + ACTIONS(356), 1, anon_sym_case, - ACTIONS(707), 1, - anon_sym_assert, - ACTIONS(709), 1, - anon_sym_BANG, - ACTIONS(711), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(723), 1, - sym__upname, - ACTIONS(767), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(917), 1, + ACTIONS(376), 1, + sym__upname, + ACTIONS(861), 1, + anon_sym_DASH, + ACTIONS(863), 1, + anon_sym_assert, + ACTIONS(865), 1, + anon_sym_BANG, + ACTIONS(867), 1, sym_float, - STATE(390), 1, + ACTIONS(963), 1, + anon_sym_GT_GT, + STATE(141), 1, sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, + STATE(158), 1, sym_anonymous_function, - STATE(1195), 1, + STATE(160), 1, + sym_tuple, + STATE(1204), 1, sym__maybe_function_expression, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, + STATE(1224), 1, + sym_expression_bit_string_segment, + STATE(1296), 1, sym__maybe_record_expression, + STATE(1299), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(381), 2, + STATE(127), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(408), 2, + STATE(156), 2, sym_record, sym_record_update, - ACTIONS(715), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(392), 5, + STATE(140), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(442), 11, - sym__expression, - sym_binary_expression, + STATE(1013), 10, sym__expression_unit, sym_todo, sym_panic, sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [20810] = 29, + [21809] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(919), 1, + ACTIONS(895), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(897), 1, anon_sym_POUND, - ACTIONS(923), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(925), 1, + ACTIONS(901), 1, anon_sym_LT_LT, - ACTIONS(927), 1, + ACTIONS(903), 1, anon_sym_DASH, - ACTIONS(929), 1, + ACTIONS(905), 1, anon_sym_fn, - ACTIONS(931), 1, + ACTIONS(907), 1, anon_sym_todo, - ACTIONS(933), 1, + ACTIONS(909), 1, anon_sym_panic, - ACTIONS(935), 1, + ACTIONS(911), 1, anon_sym_case, - ACTIONS(937), 1, + ACTIONS(913), 1, anon_sym_assert, - ACTIONS(939), 1, + ACTIONS(915), 1, anon_sym_BANG, - ACTIONS(941), 1, + ACTIONS(917), 1, anon_sym_DQUOTE, - ACTIONS(943), 1, - sym_float, - ACTIONS(947), 1, + ACTIONS(923), 1, sym__decimal, - ACTIONS(949), 1, + ACTIONS(925), 1, sym__name, - ACTIONS(951), 1, + ACTIONS(927), 1, sym__upname, - STATE(330), 1, + ACTIONS(965), 1, + sym_float, + STATE(331), 1, sym_identifier, - STATE(347), 1, + STATE(351), 1, sym_tuple, - STATE(348), 1, + STATE(353), 1, sym_anonymous_function, - STATE(1234), 1, + STATE(1248), 1, sym__maybe_function_expression, - STATE(1270), 1, + STATE(1283), 1, sym__maybe_tuple_expression, - STATE(1320), 1, + STATE(1340), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(320), 2, + STATE(328), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(344), 2, + STATE(350), 2, sym_record, sym_record_update, - ACTIONS(945), 3, + ACTIONS(921), 3, sym__hex, sym__octal, sym__binary, - STATE(331), 5, + STATE(332), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(359), 11, + STATE(365), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -23535,232 +24372,239 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [20917] = 29, + [21917] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(685), 1, + ACTIONS(336), 1, anon_sym_LBRACE, - ACTIONS(687), 1, + ACTIONS(340), 1, anon_sym_POUND, - ACTIONS(691), 1, + ACTIONS(342), 1, anon_sym_LBRACK, - ACTIONS(693), 1, + ACTIONS(344), 1, anon_sym_LT_LT, - ACTIONS(695), 1, - anon_sym_DASH, - ACTIONS(697), 1, + ACTIONS(348), 1, anon_sym_fn, - ACTIONS(699), 1, + ACTIONS(352), 1, anon_sym_todo, - ACTIONS(701), 1, + ACTIONS(354), 1, anon_sym_panic, - ACTIONS(705), 1, + ACTIONS(356), 1, anon_sym_case, - ACTIONS(707), 1, - anon_sym_assert, - ACTIONS(709), 1, - anon_sym_BANG, - ACTIONS(711), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(723), 1, - sym__upname, - ACTIONS(767), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(953), 1, + ACTIONS(376), 1, + sym__upname, + ACTIONS(861), 1, + anon_sym_DASH, + ACTIONS(863), 1, + anon_sym_assert, + ACTIONS(865), 1, + anon_sym_BANG, + ACTIONS(867), 1, sym_float, - STATE(390), 1, + ACTIONS(967), 1, + anon_sym_GT_GT, + STATE(141), 1, sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, + STATE(158), 1, sym_anonymous_function, - STATE(1195), 1, + STATE(160), 1, + sym_tuple, + STATE(1050), 1, + sym_expression_bit_string_segment, + STATE(1204), 1, sym__maybe_function_expression, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, + STATE(1296), 1, sym__maybe_record_expression, + STATE(1299), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(381), 2, + STATE(127), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(408), 2, + STATE(156), 2, sym_record, sym_record_update, - ACTIONS(715), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(392), 5, + STATE(140), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(652), 11, - sym__expression, - sym_binary_expression, + STATE(1013), 10, sym__expression_unit, sym_todo, sym_panic, sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [21024] = 29, + [22029] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(685), 1, + ACTIONS(336), 1, anon_sym_LBRACE, - ACTIONS(687), 1, + ACTIONS(340), 1, anon_sym_POUND, - ACTIONS(691), 1, + ACTIONS(342), 1, anon_sym_LBRACK, - ACTIONS(693), 1, + ACTIONS(344), 1, anon_sym_LT_LT, - ACTIONS(695), 1, - anon_sym_DASH, - ACTIONS(697), 1, + ACTIONS(348), 1, anon_sym_fn, - ACTIONS(699), 1, + ACTIONS(352), 1, anon_sym_todo, - ACTIONS(701), 1, + ACTIONS(354), 1, anon_sym_panic, - ACTIONS(705), 1, + ACTIONS(356), 1, anon_sym_case, - ACTIONS(707), 1, - anon_sym_assert, - ACTIONS(709), 1, - anon_sym_BANG, - ACTIONS(711), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(723), 1, - sym__upname, - ACTIONS(767), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(955), 1, + ACTIONS(376), 1, + sym__upname, + ACTIONS(861), 1, + anon_sym_DASH, + ACTIONS(863), 1, + anon_sym_assert, + ACTIONS(865), 1, + anon_sym_BANG, + ACTIONS(867), 1, sym_float, - STATE(390), 1, + ACTIONS(969), 1, + anon_sym_GT_GT, + STATE(141), 1, sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, + STATE(158), 1, sym_anonymous_function, - STATE(1195), 1, + STATE(160), 1, + sym_tuple, + STATE(1204), 1, sym__maybe_function_expression, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, + STATE(1224), 1, + sym_expression_bit_string_segment, + STATE(1296), 1, sym__maybe_record_expression, + STATE(1299), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(381), 2, + STATE(127), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(408), 2, + STATE(156), 2, sym_record, sym_record_update, - ACTIONS(715), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(392), 5, + STATE(140), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(647), 11, - sym__expression, - sym_binary_expression, + STATE(1013), 10, sym__expression_unit, sym_todo, sym_panic, sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [21131] = 29, + [22141] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(11), 1, + ACTIONS(336), 1, anon_sym_LBRACE, - ACTIONS(17), 1, + ACTIONS(340), 1, anon_sym_POUND, - ACTIONS(19), 1, + ACTIONS(342), 1, anon_sym_LBRACK, - ACTIONS(21), 1, + ACTIONS(344), 1, anon_sym_LT_LT, - ACTIONS(23), 1, + ACTIONS(346), 1, anon_sym_DASH, - ACTIONS(33), 1, + ACTIONS(348), 1, + anon_sym_fn, + ACTIONS(352), 1, anon_sym_todo, - ACTIONS(35), 1, + ACTIONS(354), 1, anon_sym_panic, - ACTIONS(37), 1, + ACTIONS(356), 1, anon_sym_case, - ACTIONS(41), 1, + ACTIONS(360), 1, anon_sym_assert, - ACTIONS(45), 1, + ACTIONS(364), 1, anon_sym_BANG, - ACTIONS(51), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(57), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(59), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(61), 1, + ACTIONS(376), 1, sym__upname, - ACTIONS(957), 1, - anon_sym_fn, - ACTIONS(959), 1, + ACTIONS(971), 1, sym_float, - STATE(50), 1, + STATE(141), 1, sym_identifier, - STATE(74), 1, - sym_tuple, - STATE(76), 1, + STATE(158), 1, sym_anonymous_function, - STATE(1194), 1, + STATE(160), 1, + sym_tuple, + STATE(1204), 1, sym__maybe_function_expression, - STATE(1288), 1, + STATE(1296), 1, sym__maybe_record_expression, - STATE(1315), 1, + STATE(1336), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(29), 2, + STATE(127), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(66), 2, + STATE(156), 2, sym_record, sym_record_update, - ACTIONS(55), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(64), 5, + STATE(140), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(97), 11, + STATE(296), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -23769,154 +24613,158 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [21238] = 29, + [22249] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(336), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(340), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(342), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(344), 1, anon_sym_LT_LT, - ACTIONS(286), 1, - anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(348), 1, anon_sym_fn, - ACTIONS(292), 1, + ACTIONS(352), 1, anon_sym_todo, - ACTIONS(294), 1, + ACTIONS(354), 1, anon_sym_panic, - ACTIONS(296), 1, + ACTIONS(356), 1, anon_sym_case, - ACTIONS(300), 1, - anon_sym_assert, - ACTIONS(304), 1, - anon_sym_BANG, - ACTIONS(306), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(312), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(314), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(316), 1, + ACTIONS(376), 1, sym__upname, - ACTIONS(961), 1, + ACTIONS(861), 1, + anon_sym_DASH, + ACTIONS(863), 1, + anon_sym_assert, + ACTIONS(865), 1, + anon_sym_BANG, + ACTIONS(867), 1, sym_float, - STATE(140), 1, + ACTIONS(973), 1, + anon_sym_GT_GT, + STATE(141), 1, sym_identifier, - STATE(147), 1, - sym_tuple, STATE(158), 1, sym_anonymous_function, - STATE(1187), 1, + STATE(160), 1, + sym_tuple, + STATE(1204), 1, sym__maybe_function_expression, - STATE(1280), 1, + STATE(1224), 1, + sym_expression_bit_string_segment, + STATE(1296), 1, sym__maybe_record_expression, - STATE(1310), 1, + STATE(1299), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(119), 2, + STATE(127), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(157), 2, + STATE(156), 2, sym_record, sym_record_update, - ACTIONS(310), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(138), 5, + STATE(140), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(223), 11, - sym__expression, - sym_binary_expression, + STATE(1013), 10, sym__expression_unit, sym_todo, sym_panic, sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [21345] = 29, + [22361] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(685), 1, + ACTIONS(336), 1, anon_sym_LBRACE, - ACTIONS(687), 1, + ACTIONS(340), 1, anon_sym_POUND, - ACTIONS(691), 1, + ACTIONS(342), 1, anon_sym_LBRACK, - ACTIONS(693), 1, + ACTIONS(344), 1, anon_sym_LT_LT, - ACTIONS(695), 1, + ACTIONS(346), 1, anon_sym_DASH, - ACTIONS(697), 1, + ACTIONS(348), 1, anon_sym_fn, - ACTIONS(699), 1, + ACTIONS(352), 1, anon_sym_todo, - ACTIONS(701), 1, + ACTIONS(354), 1, anon_sym_panic, - ACTIONS(705), 1, + ACTIONS(356), 1, anon_sym_case, - ACTIONS(707), 1, + ACTIONS(360), 1, anon_sym_assert, - ACTIONS(709), 1, + ACTIONS(364), 1, anon_sym_BANG, - ACTIONS(711), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(723), 1, - sym__upname, - ACTIONS(767), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(963), 1, + ACTIONS(376), 1, + sym__upname, + ACTIONS(975), 1, sym_float, - STATE(390), 1, + STATE(141), 1, sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, + STATE(158), 1, sym_anonymous_function, - STATE(1195), 1, + STATE(160), 1, + sym_tuple, + STATE(1204), 1, sym__maybe_function_expression, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, + STATE(1296), 1, sym__maybe_record_expression, + STATE(1336), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(381), 2, + STATE(127), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(408), 2, + STATE(156), 2, sym_record, sym_record_update, - ACTIONS(715), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(392), 5, + STATE(140), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(628), 11, + STATE(297), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -23925,139 +24773,77 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [21452] = 14, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(887), 1, - anon_sym_PIPE_PIPE, - ACTIONS(889), 1, - anon_sym_AMP_AMP, - ACTIONS(897), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(849), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(885), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(891), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(899), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(851), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(893), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(895), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(585), 11, - anon_sym_LBRACE, - 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, - ACTIONS(587), 11, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - [21529] = 29, + [22469] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(336), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(340), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(342), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(344), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(346), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(348), 1, anon_sym_fn, - ACTIONS(292), 1, + ACTIONS(352), 1, anon_sym_todo, - ACTIONS(294), 1, + ACTIONS(354), 1, anon_sym_panic, - ACTIONS(296), 1, + ACTIONS(356), 1, anon_sym_case, - ACTIONS(300), 1, + ACTIONS(360), 1, anon_sym_assert, - ACTIONS(304), 1, + ACTIONS(364), 1, anon_sym_BANG, - ACTIONS(306), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(312), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(314), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(316), 1, + ACTIONS(376), 1, sym__upname, - ACTIONS(965), 1, + ACTIONS(977), 1, sym_float, - STATE(140), 1, + STATE(141), 1, sym_identifier, - STATE(147), 1, - sym_tuple, STATE(158), 1, sym_anonymous_function, - STATE(1187), 1, + STATE(160), 1, + sym_tuple, + STATE(1204), 1, sym__maybe_function_expression, - STATE(1280), 1, + STATE(1296), 1, sym__maybe_record_expression, - STATE(1310), 1, + STATE(1336), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(119), 2, + STATE(127), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(157), 2, + STATE(156), 2, sym_record, sym_record_update, - ACTIONS(310), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(138), 5, + STATE(140), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(225), 11, + STATE(298), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -24066,76 +24852,77 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [21636] = 29, + [22577] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(11), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(17), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(19), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(21), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(23), 1, anon_sym_DASH, - ACTIONS(288), 1, - anon_sym_fn, - ACTIONS(292), 1, + ACTIONS(33), 1, anon_sym_todo, - ACTIONS(294), 1, + ACTIONS(35), 1, anon_sym_panic, - ACTIONS(296), 1, + ACTIONS(37), 1, anon_sym_case, - ACTIONS(300), 1, + ACTIONS(41), 1, anon_sym_assert, - ACTIONS(304), 1, + ACTIONS(45), 1, anon_sym_BANG, - ACTIONS(306), 1, + ACTIONS(51), 1, anon_sym_DQUOTE, - ACTIONS(312), 1, + ACTIONS(57), 1, sym__decimal, - ACTIONS(314), 1, + ACTIONS(59), 1, sym__name, - ACTIONS(316), 1, + ACTIONS(61), 1, sym__upname, - ACTIONS(967), 1, + ACTIONS(935), 1, + anon_sym_fn, + ACTIONS(979), 1, sym_float, - STATE(140), 1, + STATE(50), 1, sym_identifier, - STATE(147), 1, - sym_tuple, - STATE(158), 1, + STATE(75), 1, sym_anonymous_function, - STATE(1187), 1, + STATE(77), 1, + sym_tuple, + STATE(1222), 1, sym__maybe_function_expression, - STATE(1280), 1, + STATE(1330), 1, sym__maybe_record_expression, - STATE(1310), 1, + STATE(1331), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(119), 2, + STATE(39), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(157), 2, + STATE(71), 2, sym_record, sym_record_update, - ACTIONS(310), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(138), 5, + STATE(61), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(226), 11, + STATE(108), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -24144,139 +24931,77 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [21743] = 14, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(887), 1, - anon_sym_PIPE_PIPE, - ACTIONS(889), 1, - anon_sym_AMP_AMP, - ACTIONS(897), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(849), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(885), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(891), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(899), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(851), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(893), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(895), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(625), 11, - anon_sym_LBRACE, - 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, - ACTIONS(627), 11, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - [21820] = 29, + [22685] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(685), 1, + ACTIONS(895), 1, anon_sym_LBRACE, - ACTIONS(687), 1, + ACTIONS(897), 1, anon_sym_POUND, - ACTIONS(691), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(693), 1, + ACTIONS(901), 1, anon_sym_LT_LT, - ACTIONS(695), 1, + ACTIONS(903), 1, anon_sym_DASH, - ACTIONS(697), 1, + ACTIONS(905), 1, anon_sym_fn, - ACTIONS(699), 1, + ACTIONS(907), 1, anon_sym_todo, - ACTIONS(701), 1, + ACTIONS(909), 1, anon_sym_panic, - ACTIONS(705), 1, + ACTIONS(911), 1, anon_sym_case, - ACTIONS(707), 1, + ACTIONS(913), 1, anon_sym_assert, - ACTIONS(709), 1, + ACTIONS(915), 1, anon_sym_BANG, - ACTIONS(711), 1, + ACTIONS(917), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(923), 1, sym__decimal, - ACTIONS(723), 1, - sym__upname, - ACTIONS(767), 1, + ACTIONS(925), 1, sym__name, - ACTIONS(969), 1, + ACTIONS(927), 1, + sym__upname, + ACTIONS(981), 1, sym_float, - STATE(390), 1, + STATE(331), 1, sym_identifier, - STATE(410), 1, + STATE(351), 1, sym_tuple, - STATE(413), 1, + STATE(353), 1, sym_anonymous_function, - STATE(1195), 1, + STATE(1248), 1, sym__maybe_function_expression, - STATE(1307), 1, + STATE(1283), 1, sym__maybe_tuple_expression, - STATE(1309), 1, + STATE(1340), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(381), 2, + STATE(328), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(408), 2, + STATE(350), 2, sym_record, sym_record_update, - ACTIONS(715), 3, + ACTIONS(921), 3, sym__hex, sym__octal, sym__binary, - STATE(392), 5, + STATE(332), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(643), 11, + STATE(378), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -24285,76 +25010,77 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [21927] = 29, + [22793] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(336), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(340), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(342), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(344), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(346), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(348), 1, anon_sym_fn, - ACTIONS(292), 1, + ACTIONS(352), 1, anon_sym_todo, - ACTIONS(294), 1, + ACTIONS(354), 1, anon_sym_panic, - ACTIONS(296), 1, + ACTIONS(356), 1, anon_sym_case, - ACTIONS(300), 1, + ACTIONS(360), 1, anon_sym_assert, - ACTIONS(304), 1, + ACTIONS(364), 1, anon_sym_BANG, - ACTIONS(306), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(312), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(314), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(316), 1, + ACTIONS(376), 1, sym__upname, - ACTIONS(971), 1, + ACTIONS(983), 1, sym_float, - STATE(140), 1, + STATE(141), 1, sym_identifier, - STATE(147), 1, - sym_tuple, STATE(158), 1, sym_anonymous_function, - STATE(1187), 1, + STATE(160), 1, + sym_tuple, + STATE(1204), 1, sym__maybe_function_expression, - STATE(1280), 1, + STATE(1296), 1, sym__maybe_record_expression, - STATE(1310), 1, + STATE(1336), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(119), 2, + STATE(127), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(157), 2, + STATE(156), 2, sym_record, sym_record_update, - ACTIONS(310), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(138), 5, + STATE(140), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(228), 11, + STATE(299), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -24363,139 +25089,77 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [22034] = 14, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(887), 1, - anon_sym_PIPE_PIPE, - ACTIONS(889), 1, - anon_sym_AMP_AMP, - ACTIONS(897), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(849), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(885), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(891), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(899), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(851), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(893), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(895), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(617), 11, - anon_sym_LBRACE, - 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, - ACTIONS(619), 11, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - [22111] = 29, + [22901] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(685), 1, + ACTIONS(11), 1, anon_sym_LBRACE, - ACTIONS(687), 1, + ACTIONS(17), 1, anon_sym_POUND, - ACTIONS(691), 1, + ACTIONS(19), 1, anon_sym_LBRACK, - ACTIONS(693), 1, + ACTIONS(21), 1, anon_sym_LT_LT, - ACTIONS(695), 1, + ACTIONS(23), 1, anon_sym_DASH, - ACTIONS(697), 1, - anon_sym_fn, - ACTIONS(699), 1, + ACTIONS(33), 1, anon_sym_todo, - ACTIONS(701), 1, + ACTIONS(35), 1, anon_sym_panic, - ACTIONS(705), 1, + ACTIONS(37), 1, anon_sym_case, - ACTIONS(707), 1, + ACTIONS(41), 1, anon_sym_assert, - ACTIONS(709), 1, + ACTIONS(45), 1, anon_sym_BANG, - ACTIONS(711), 1, + ACTIONS(51), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(57), 1, sym__decimal, - ACTIONS(723), 1, - sym__upname, - ACTIONS(767), 1, + ACTIONS(59), 1, sym__name, - ACTIONS(973), 1, + ACTIONS(61), 1, + sym__upname, + ACTIONS(935), 1, + anon_sym_fn, + ACTIONS(985), 1, sym_float, - STATE(390), 1, + STATE(50), 1, sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, + STATE(75), 1, sym_anonymous_function, - STATE(1195), 1, + STATE(77), 1, + sym_tuple, + STATE(1222), 1, sym__maybe_function_expression, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, + STATE(1330), 1, sym__maybe_record_expression, + STATE(1331), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(381), 2, + STATE(39), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(408), 2, + STATE(71), 2, sym_record, sym_record_update, - ACTIONS(715), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(392), 5, + STATE(61), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(624), 11, + STATE(109), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -24504,156 +25168,156 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [22218] = 31, + [23009] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(895), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(897), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(901), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(903), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(905), 1, anon_sym_fn, - ACTIONS(292), 1, + ACTIONS(907), 1, anon_sym_todo, - ACTIONS(294), 1, + ACTIONS(909), 1, anon_sym_panic, - ACTIONS(296), 1, + ACTIONS(911), 1, anon_sym_case, - ACTIONS(306), 1, + ACTIONS(913), 1, + anon_sym_assert, + ACTIONS(915), 1, + anon_sym_BANG, + ACTIONS(917), 1, anon_sym_DQUOTE, - ACTIONS(312), 1, + ACTIONS(923), 1, sym__decimal, - ACTIONS(314), 1, + ACTIONS(925), 1, sym__name, - ACTIONS(316), 1, + ACTIONS(927), 1, sym__upname, - ACTIONS(873), 1, - anon_sym_assert, - ACTIONS(875), 1, - anon_sym_BANG, - ACTIONS(877), 1, + ACTIONS(987), 1, sym_float, - ACTIONS(975), 1, - anon_sym_GT_GT, - STATE(140), 1, + STATE(331), 1, sym_identifier, - STATE(147), 1, + STATE(351), 1, sym_tuple, - STATE(158), 1, + STATE(353), 1, sym_anonymous_function, - STATE(1187), 1, + STATE(1248), 1, sym__maybe_function_expression, - STATE(1225), 1, - sym_expression_bit_string_segment, - STATE(1280), 1, - sym__maybe_record_expression, - STATE(1310), 1, + STATE(1283), 1, sym__maybe_tuple_expression, + STATE(1340), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(119), 2, + STATE(328), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(157), 2, + STATE(350), 2, sym_record, sym_record_update, - ACTIONS(310), 3, + ACTIONS(921), 3, sym__hex, sym__octal, sym__binary, - STATE(138), 5, + STATE(332), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1003), 9, + STATE(373), 12, + sym__expression, + sym_binary_expression, sym__expression_unit, sym_todo, sym_panic, sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [22329] = 29, + [23117] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(919), 1, + ACTIONS(895), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(897), 1, anon_sym_POUND, - ACTIONS(923), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(925), 1, + ACTIONS(901), 1, anon_sym_LT_LT, - ACTIONS(927), 1, + ACTIONS(903), 1, anon_sym_DASH, - ACTIONS(929), 1, + ACTIONS(905), 1, anon_sym_fn, - ACTIONS(931), 1, + ACTIONS(907), 1, anon_sym_todo, - ACTIONS(933), 1, + ACTIONS(909), 1, anon_sym_panic, - ACTIONS(935), 1, + ACTIONS(911), 1, anon_sym_case, - ACTIONS(937), 1, + ACTIONS(913), 1, anon_sym_assert, - ACTIONS(939), 1, + ACTIONS(915), 1, anon_sym_BANG, - ACTIONS(941), 1, + ACTIONS(917), 1, anon_sym_DQUOTE, - ACTIONS(947), 1, + ACTIONS(923), 1, sym__decimal, - ACTIONS(949), 1, + ACTIONS(925), 1, sym__name, - ACTIONS(951), 1, + ACTIONS(927), 1, sym__upname, - ACTIONS(977), 1, + ACTIONS(989), 1, sym_float, - STATE(330), 1, + STATE(331), 1, sym_identifier, - STATE(347), 1, + STATE(351), 1, sym_tuple, - STATE(348), 1, + STATE(353), 1, sym_anonymous_function, - STATE(1234), 1, + STATE(1248), 1, sym__maybe_function_expression, - STATE(1270), 1, + STATE(1283), 1, sym__maybe_tuple_expression, - STATE(1320), 1, + STATE(1340), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(320), 2, + STATE(328), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(344), 2, + STATE(350), 2, sym_record, sym_record_update, - ACTIONS(945), 3, + ACTIONS(921), 3, sym__hex, sym__octal, sym__binary, - STATE(331), 5, + STATE(332), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(358), 11, + STATE(387), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -24662,76 +25326,77 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [22436] = 29, + [23225] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(919), 1, + ACTIONS(895), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(897), 1, anon_sym_POUND, - ACTIONS(923), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(925), 1, + ACTIONS(901), 1, anon_sym_LT_LT, - ACTIONS(927), 1, + ACTIONS(903), 1, anon_sym_DASH, - ACTIONS(929), 1, + ACTIONS(905), 1, anon_sym_fn, - ACTIONS(931), 1, + ACTIONS(907), 1, anon_sym_todo, - ACTIONS(933), 1, + ACTIONS(909), 1, anon_sym_panic, - ACTIONS(935), 1, + ACTIONS(911), 1, anon_sym_case, - ACTIONS(937), 1, + ACTIONS(913), 1, anon_sym_assert, - ACTIONS(939), 1, + ACTIONS(915), 1, anon_sym_BANG, - ACTIONS(941), 1, + ACTIONS(917), 1, anon_sym_DQUOTE, - ACTIONS(947), 1, + ACTIONS(923), 1, sym__decimal, - ACTIONS(949), 1, + ACTIONS(925), 1, sym__name, - ACTIONS(951), 1, + ACTIONS(927), 1, sym__upname, - ACTIONS(979), 1, + ACTIONS(991), 1, sym_float, - STATE(330), 1, + STATE(331), 1, sym_identifier, - STATE(347), 1, + STATE(351), 1, sym_tuple, - STATE(348), 1, + STATE(353), 1, sym_anonymous_function, - STATE(1234), 1, + STATE(1248), 1, sym__maybe_function_expression, - STATE(1270), 1, + STATE(1283), 1, sym__maybe_tuple_expression, - STATE(1320), 1, + STATE(1340), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(320), 2, + STATE(328), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(344), 2, + STATE(350), 2, sym_record, sym_record_update, - ACTIONS(945), 3, + ACTIONS(921), 3, sym__hex, sym__octal, sym__binary, - STATE(331), 5, + STATE(332), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(360), 11, + STATE(386), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -24740,76 +25405,156 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [22543] = 29, + [23333] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(919), 1, + ACTIONS(895), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(897), 1, anon_sym_POUND, - ACTIONS(923), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(925), 1, + ACTIONS(901), 1, anon_sym_LT_LT, + ACTIONS(903), 1, + anon_sym_DASH, + ACTIONS(905), 1, + anon_sym_fn, + ACTIONS(907), 1, + anon_sym_todo, + ACTIONS(909), 1, + anon_sym_panic, + ACTIONS(911), 1, + anon_sym_case, + ACTIONS(913), 1, + anon_sym_assert, + ACTIONS(915), 1, + anon_sym_BANG, + ACTIONS(917), 1, + anon_sym_DQUOTE, + ACTIONS(923), 1, + sym__decimal, + ACTIONS(925), 1, + sym__name, ACTIONS(927), 1, + sym__upname, + ACTIONS(993), 1, + sym_float, + STATE(331), 1, + sym_identifier, + STATE(351), 1, + sym_tuple, + STATE(353), 1, + sym_anonymous_function, + STATE(1248), 1, + sym__maybe_function_expression, + STATE(1283), 1, + sym__maybe_tuple_expression, + STATE(1340), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(328), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(350), 2, + sym_record, + sym_record_update, + ACTIONS(921), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(332), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(385), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [23441] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(895), 1, + anon_sym_LBRACE, + ACTIONS(897), 1, + anon_sym_POUND, + ACTIONS(899), 1, + anon_sym_LBRACK, + ACTIONS(901), 1, + anon_sym_LT_LT, + ACTIONS(903), 1, anon_sym_DASH, - ACTIONS(929), 1, + ACTIONS(905), 1, anon_sym_fn, - ACTIONS(931), 1, + ACTIONS(907), 1, anon_sym_todo, - ACTIONS(933), 1, + ACTIONS(909), 1, anon_sym_panic, - ACTIONS(935), 1, + ACTIONS(911), 1, anon_sym_case, - ACTIONS(937), 1, + ACTIONS(913), 1, anon_sym_assert, - ACTIONS(939), 1, + ACTIONS(915), 1, anon_sym_BANG, - ACTIONS(941), 1, + ACTIONS(917), 1, anon_sym_DQUOTE, - ACTIONS(947), 1, + ACTIONS(923), 1, sym__decimal, - ACTIONS(949), 1, + ACTIONS(925), 1, sym__name, - ACTIONS(951), 1, + ACTIONS(927), 1, sym__upname, - ACTIONS(981), 1, + ACTIONS(995), 1, sym_float, - STATE(330), 1, + STATE(331), 1, sym_identifier, - STATE(347), 1, + STATE(351), 1, sym_tuple, - STATE(348), 1, + STATE(353), 1, sym_anonymous_function, - STATE(1234), 1, + STATE(1248), 1, sym__maybe_function_expression, - STATE(1270), 1, + STATE(1283), 1, sym__maybe_tuple_expression, - STATE(1320), 1, + STATE(1340), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(320), 2, + STATE(328), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(344), 2, + STATE(350), 2, sym_record, sym_record_update, - ACTIONS(945), 3, + ACTIONS(921), 3, sym__hex, sym__octal, sym__binary, - STATE(331), 5, + STATE(332), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(361), 11, + STATE(384), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -24818,10 +25563,11 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [22650] = 29, + [23549] = 29, ACTIONS(3), 1, sym_module_comment, ACTIONS(11), 1, @@ -24852,42 +25598,42 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(61), 1, sym__upname, - ACTIONS(957), 1, + ACTIONS(935), 1, anon_sym_fn, - ACTIONS(983), 1, + ACTIONS(997), 1, sym_float, STATE(50), 1, sym_identifier, - STATE(74), 1, - sym_tuple, - STATE(76), 1, + STATE(75), 1, sym_anonymous_function, - STATE(1194), 1, + STATE(77), 1, + sym_tuple, + STATE(1222), 1, sym__maybe_function_expression, - STATE(1288), 1, + STATE(1330), 1, sym__maybe_record_expression, - STATE(1315), 1, + STATE(1331), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(29), 2, + STATE(39), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(66), 2, + STATE(71), 2, sym_record, sym_record_update, ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(64), 5, + STATE(61), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(81), 11, + STATE(87), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -24896,76 +25642,77 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [22757] = 29, + [23657] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(919), 1, + ACTIONS(895), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(897), 1, anon_sym_POUND, - ACTIONS(923), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(925), 1, + ACTIONS(901), 1, anon_sym_LT_LT, - ACTIONS(927), 1, + ACTIONS(903), 1, anon_sym_DASH, - ACTIONS(929), 1, + ACTIONS(905), 1, anon_sym_fn, - ACTIONS(931), 1, + ACTIONS(907), 1, anon_sym_todo, - ACTIONS(933), 1, + ACTIONS(909), 1, anon_sym_panic, - ACTIONS(935), 1, + ACTIONS(911), 1, anon_sym_case, - ACTIONS(937), 1, + ACTIONS(913), 1, anon_sym_assert, - ACTIONS(939), 1, + ACTIONS(915), 1, anon_sym_BANG, - ACTIONS(941), 1, + ACTIONS(917), 1, anon_sym_DQUOTE, - ACTIONS(947), 1, + ACTIONS(923), 1, sym__decimal, - ACTIONS(949), 1, + ACTIONS(925), 1, sym__name, - ACTIONS(951), 1, + ACTIONS(927), 1, sym__upname, - ACTIONS(985), 1, + ACTIONS(999), 1, sym_float, - STATE(330), 1, + STATE(331), 1, sym_identifier, - STATE(347), 1, + STATE(351), 1, sym_tuple, - STATE(348), 1, + STATE(353), 1, sym_anonymous_function, - STATE(1234), 1, + STATE(1248), 1, sym__maybe_function_expression, - STATE(1270), 1, + STATE(1283), 1, sym__maybe_tuple_expression, - STATE(1320), 1, + STATE(1340), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(320), 2, + STATE(328), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(344), 2, + STATE(350), 2, sym_record, sym_record_update, - ACTIONS(945), 3, + ACTIONS(921), 3, sym__hex, sym__octal, sym__binary, - STATE(331), 5, + STATE(332), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(362), 11, + STATE(383), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -24974,76 +25721,77 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [22864] = 29, + [23765] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(919), 1, + ACTIONS(11), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(17), 1, anon_sym_POUND, - ACTIONS(923), 1, + ACTIONS(19), 1, anon_sym_LBRACK, - ACTIONS(925), 1, + ACTIONS(21), 1, anon_sym_LT_LT, - ACTIONS(927), 1, + ACTIONS(23), 1, anon_sym_DASH, - ACTIONS(929), 1, - anon_sym_fn, - ACTIONS(931), 1, + ACTIONS(33), 1, anon_sym_todo, - ACTIONS(933), 1, + ACTIONS(35), 1, anon_sym_panic, - ACTIONS(935), 1, + ACTIONS(37), 1, anon_sym_case, - ACTIONS(937), 1, + ACTIONS(41), 1, anon_sym_assert, - ACTIONS(939), 1, + ACTIONS(45), 1, anon_sym_BANG, - ACTIONS(941), 1, + ACTIONS(51), 1, anon_sym_DQUOTE, - ACTIONS(947), 1, + ACTIONS(57), 1, sym__decimal, - ACTIONS(949), 1, + ACTIONS(59), 1, sym__name, - ACTIONS(951), 1, + ACTIONS(61), 1, sym__upname, - ACTIONS(987), 1, + ACTIONS(935), 1, + anon_sym_fn, + ACTIONS(1001), 1, sym_float, - STATE(330), 1, + STATE(50), 1, sym_identifier, - STATE(347), 1, - sym_tuple, - STATE(348), 1, + STATE(75), 1, sym_anonymous_function, - STATE(1234), 1, + STATE(77), 1, + sym_tuple, + STATE(1222), 1, sym__maybe_function_expression, - STATE(1270), 1, - sym__maybe_tuple_expression, - STATE(1320), 1, + STATE(1330), 1, sym__maybe_record_expression, + STATE(1331), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(320), 2, + STATE(39), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(344), 2, + STATE(71), 2, sym_record, sym_record_update, - ACTIONS(945), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(331), 5, + STATE(61), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(364), 11, + STATE(107), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -25052,10 +25800,11 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [22971] = 29, + [23873] = 29, ACTIONS(3), 1, sym_module_comment, ACTIONS(11), 1, @@ -25086,42 +25835,42 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(61), 1, sym__upname, - ACTIONS(957), 1, + ACTIONS(935), 1, anon_sym_fn, - ACTIONS(989), 1, + ACTIONS(1003), 1, sym_float, STATE(50), 1, sym_identifier, - STATE(74), 1, - sym_tuple, - STATE(76), 1, + STATE(75), 1, sym_anonymous_function, - STATE(1194), 1, + STATE(77), 1, + sym_tuple, + STATE(1222), 1, sym__maybe_function_expression, - STATE(1288), 1, + STATE(1330), 1, sym__maybe_record_expression, - STATE(1315), 1, + STATE(1331), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(29), 2, + STATE(39), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(66), 2, + STATE(71), 2, sym_record, sym_record_update, ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(64), 5, + STATE(61), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(98), 11, + STATE(84), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -25130,374 +25879,393 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [23078] = 8, + [23981] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(849), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(885), 2, + 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_PLUS, - ACTIONS(899), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(851), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(555), 15, - anon_sym_fn, - anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, + ACTIONS(33), 1, anon_sym_todo, + ACTIONS(35), 1, anon_sym_panic, + ACTIONS(37), 1, anon_sym_case, - anon_sym_let, + ACTIONS(41), 1, anon_sym_assert, - anon_sym_use, + ACTIONS(45), 1, anon_sym_BANG, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(57), 1, sym__decimal, + ACTIONS(59), 1, sym__name, - ACTIONS(553), 20, - 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, + ACTIONS(61), 1, + sym__upname, + ACTIONS(935), 1, + anon_sym_fn, + ACTIONS(1005), 1, sym_float, + STATE(50), 1, + sym_identifier, + STATE(75), 1, + sym_anonymous_function, + STATE(77), 1, + sym_tuple, + STATE(1222), 1, + sym__maybe_function_expression, + STATE(1330), 1, + sym__maybe_record_expression, + STATE(1331), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(39), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(71), 2, + sym_record, + sym_record_update, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [23143] = 9, + STATE(61), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(106), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [24089] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(897), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(849), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(885), 2, + 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_PLUS, - ACTIONS(899), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(851), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(555), 15, - anon_sym_fn, - anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, + ACTIONS(33), 1, anon_sym_todo, + ACTIONS(35), 1, anon_sym_panic, + ACTIONS(37), 1, anon_sym_case, - anon_sym_let, + ACTIONS(41), 1, anon_sym_assert, - anon_sym_use, + ACTIONS(45), 1, anon_sym_BANG, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(57), 1, sym__decimal, + ACTIONS(59), 1, sym__name, - ACTIONS(553), 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, + ACTIONS(61), 1, + sym__upname, + ACTIONS(935), 1, + anon_sym_fn, + ACTIONS(1007), 1, sym_float, + STATE(50), 1, + sym_identifier, + STATE(75), 1, + sym_anonymous_function, + STATE(77), 1, + sym_tuple, + STATE(1222), 1, + sym__maybe_function_expression, + STATE(1330), 1, + sym__maybe_record_expression, + STATE(1331), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(39), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(71), 2, + sym_record, + sym_record_update, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [23210] = 11, + STATE(61), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(104), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [24197] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(897), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(849), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(885), 2, + ACTIONS(621), 1, + anon_sym_LBRACE, + ACTIONS(623), 1, + anon_sym_POUND, + ACTIONS(627), 1, + anon_sym_LBRACK, + ACTIONS(629), 1, + anon_sym_LT_LT, + ACTIONS(631), 1, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(899), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(851), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(893), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(895), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(555), 11, + ACTIONS(633), 1, anon_sym_fn, - anon_sym_try, + ACTIONS(635), 1, anon_sym_todo, + ACTIONS(637), 1, anon_sym_panic, + ACTIONS(641), 1, anon_sym_case, - anon_sym_let, + ACTIONS(643), 1, anon_sym_assert, - anon_sym_use, + ACTIONS(645), 1, anon_sym_BANG, + ACTIONS(647), 1, + anon_sym_DQUOTE, + ACTIONS(653), 1, sym__decimal, + ACTIONS(659), 1, + sym__upname, + ACTIONS(777), 1, sym__name, - ACTIONS(553), 15, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DQUOTE, + ACTIONS(1009), 1, sym_float, + STATE(406), 1, + sym_identifier, + STATE(436), 1, + sym_anonymous_function, + STATE(438), 1, + sym_tuple, + STATE(1206), 1, + sym__maybe_function_expression, + STATE(1327), 1, + sym__maybe_record_expression, + STATE(1337), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(392), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(439), 2, + sym_record, + sym_record_update, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [23281] = 12, + STATE(407), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(631), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [24305] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(897), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(849), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(885), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(891), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(899), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(851), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(893), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(895), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(555), 11, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(553), 13, + ACTIONS(11), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(17), 1, anon_sym_POUND, + ACTIONS(19), 1, anon_sym_LBRACK, + ACTIONS(21), 1, 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, - [23354] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(889), 1, - anon_sym_AMP_AMP, - ACTIONS(897), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(849), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(885), 2, + ACTIONS(23), 1, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(891), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(899), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(851), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(893), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(895), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(555), 11, - anon_sym_fn, - anon_sym_try, + ACTIONS(33), 1, anon_sym_todo, + ACTIONS(35), 1, anon_sym_panic, + ACTIONS(37), 1, anon_sym_case, - anon_sym_let, + ACTIONS(41), 1, anon_sym_assert, - anon_sym_use, + ACTIONS(45), 1, anon_sym_BANG, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(57), 1, sym__decimal, + ACTIONS(59), 1, sym__name, - ACTIONS(553), 12, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_DQUOTE, + ACTIONS(61), 1, + sym__upname, + ACTIONS(935), 1, + anon_sym_fn, + ACTIONS(1011), 1, sym_float, + STATE(50), 1, + sym_identifier, + STATE(75), 1, + sym_anonymous_function, + STATE(77), 1, + sym_tuple, + STATE(1222), 1, + sym__maybe_function_expression, + STATE(1330), 1, + sym__maybe_record_expression, + STATE(1331), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(39), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(71), 2, + sym_record, + sym_record_update, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [23429] = 29, + STATE(61), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(100), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_list, + sym__expression_bit_string, + sym_assert, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [24413] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(919), 1, + ACTIONS(11), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(17), 1, anon_sym_POUND, - ACTIONS(923), 1, + ACTIONS(19), 1, anon_sym_LBRACK, - ACTIONS(925), 1, + ACTIONS(21), 1, anon_sym_LT_LT, - ACTIONS(927), 1, + ACTIONS(23), 1, anon_sym_DASH, - ACTIONS(929), 1, - anon_sym_fn, - ACTIONS(931), 1, + ACTIONS(33), 1, anon_sym_todo, - ACTIONS(933), 1, + ACTIONS(35), 1, anon_sym_panic, - ACTIONS(935), 1, + ACTIONS(37), 1, anon_sym_case, - ACTIONS(937), 1, + ACTIONS(41), 1, anon_sym_assert, - ACTIONS(939), 1, + ACTIONS(45), 1, anon_sym_BANG, - ACTIONS(941), 1, + ACTIONS(51), 1, anon_sym_DQUOTE, - ACTIONS(947), 1, + ACTIONS(57), 1, sym__decimal, - ACTIONS(949), 1, + ACTIONS(59), 1, sym__name, - ACTIONS(951), 1, + ACTIONS(61), 1, sym__upname, - ACTIONS(991), 1, + ACTIONS(935), 1, + anon_sym_fn, + ACTIONS(1013), 1, sym_float, - STATE(330), 1, + STATE(50), 1, sym_identifier, - STATE(347), 1, - sym_tuple, - STATE(348), 1, + STATE(75), 1, sym_anonymous_function, - STATE(1234), 1, + STATE(77), 1, + sym_tuple, + STATE(1222), 1, sym__maybe_function_expression, - STATE(1270), 1, - sym__maybe_tuple_expression, - STATE(1320), 1, + STATE(1330), 1, sym__maybe_record_expression, + STATE(1331), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(320), 2, + STATE(39), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(344), 2, + STATE(71), 2, sym_record, sym_record_update, - ACTIONS(945), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(331), 5, + STATE(61), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(365), 11, + STATE(98), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -25506,129 +26274,77 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [23536] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(555), 19, - 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_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(553), 26, - 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_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [23593] = 29, + [24521] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(919), 1, + ACTIONS(11), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(17), 1, anon_sym_POUND, - ACTIONS(923), 1, + ACTIONS(19), 1, anon_sym_LBRACK, - ACTIONS(925), 1, + ACTIONS(21), 1, anon_sym_LT_LT, - ACTIONS(927), 1, + ACTIONS(23), 1, anon_sym_DASH, - ACTIONS(929), 1, - anon_sym_fn, - ACTIONS(931), 1, + ACTIONS(33), 1, anon_sym_todo, - ACTIONS(933), 1, + ACTIONS(35), 1, anon_sym_panic, - ACTIONS(935), 1, + ACTIONS(37), 1, anon_sym_case, - ACTIONS(937), 1, + ACTIONS(41), 1, anon_sym_assert, - ACTIONS(939), 1, + ACTIONS(45), 1, anon_sym_BANG, - ACTIONS(941), 1, + ACTIONS(51), 1, anon_sym_DQUOTE, - ACTIONS(947), 1, + ACTIONS(57), 1, sym__decimal, - ACTIONS(949), 1, + ACTIONS(59), 1, sym__name, - ACTIONS(951), 1, + ACTIONS(61), 1, sym__upname, - ACTIONS(993), 1, + ACTIONS(935), 1, + anon_sym_fn, + ACTIONS(1015), 1, sym_float, - STATE(330), 1, + STATE(50), 1, sym_identifier, - STATE(347), 1, - sym_tuple, - STATE(348), 1, + STATE(75), 1, sym_anonymous_function, - STATE(1234), 1, + STATE(77), 1, + sym_tuple, + STATE(1222), 1, sym__maybe_function_expression, - STATE(1270), 1, - sym__maybe_tuple_expression, - STATE(1320), 1, + STATE(1330), 1, sym__maybe_record_expression, + STATE(1331), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(320), 2, + STATE(39), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(344), 2, + STATE(71), 2, sym_record, sym_record_update, - ACTIONS(945), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(331), 5, + STATE(61), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(367), 11, + STATE(97), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -25637,76 +26353,77 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [23700] = 29, + [24629] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(621), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(623), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(629), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(631), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(633), 1, anon_sym_fn, - ACTIONS(292), 1, + ACTIONS(635), 1, anon_sym_todo, - ACTIONS(294), 1, + ACTIONS(637), 1, anon_sym_panic, - ACTIONS(296), 1, + ACTIONS(641), 1, anon_sym_case, - ACTIONS(300), 1, + ACTIONS(643), 1, anon_sym_assert, - ACTIONS(304), 1, + ACTIONS(645), 1, anon_sym_BANG, - ACTIONS(306), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(312), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(314), 1, - sym__name, - ACTIONS(316), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(995), 1, + ACTIONS(777), 1, + sym__name, + ACTIONS(1017), 1, sym_float, - STATE(140), 1, + STATE(406), 1, sym_identifier, - STATE(147), 1, - sym_tuple, - STATE(158), 1, + STATE(436), 1, sym_anonymous_function, - STATE(1187), 1, + STATE(438), 1, + sym_tuple, + STATE(1206), 1, sym__maybe_function_expression, - STATE(1280), 1, + STATE(1327), 1, sym__maybe_record_expression, - STATE(1310), 1, + STATE(1337), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(119), 2, + STATE(392), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(157), 2, + STATE(439), 2, sym_record, sym_record_update, - ACTIONS(310), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(138), 5, + STATE(407), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(239), 11, + STATE(648), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -25715,217 +26432,158 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [23807] = 14, + [24737] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(887), 1, - anon_sym_PIPE_PIPE, - ACTIONS(889), 1, - anon_sym_AMP_AMP, - ACTIONS(897), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(849), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(885), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(891), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(899), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(851), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(893), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(895), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(681), 11, + ACTIONS(336), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(340), 1, anon_sym_POUND, + ACTIONS(342), 1, anon_sym_LBRACK, + ACTIONS(344), 1, anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(683), 11, + ACTIONS(348), 1, anon_sym_fn, - anon_sym_try, + ACTIONS(352), 1, anon_sym_todo, + ACTIONS(354), 1, anon_sym_panic, + ACTIONS(356), 1, anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - anon_sym_BANG, + ACTIONS(366), 1, + anon_sym_DQUOTE, + ACTIONS(372), 1, sym__decimal, + ACTIONS(374), 1, sym__name, - [23884] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(276), 1, - anon_sym_LBRACE, - ACTIONS(280), 1, - anon_sym_POUND, - ACTIONS(282), 1, - anon_sym_LBRACK, - ACTIONS(284), 1, - anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(376), 1, + sym__upname, + ACTIONS(861), 1, anon_sym_DASH, - ACTIONS(288), 1, - anon_sym_fn, - ACTIONS(292), 1, - anon_sym_todo, - ACTIONS(294), 1, - anon_sym_panic, - ACTIONS(296), 1, - anon_sym_case, - ACTIONS(300), 1, + ACTIONS(863), 1, anon_sym_assert, - ACTIONS(304), 1, + ACTIONS(865), 1, anon_sym_BANG, - ACTIONS(306), 1, - anon_sym_DQUOTE, - ACTIONS(312), 1, - sym__decimal, - ACTIONS(314), 1, - sym__name, - ACTIONS(316), 1, - sym__upname, - ACTIONS(997), 1, + ACTIONS(867), 1, sym_float, - STATE(140), 1, + ACTIONS(1019), 1, + anon_sym_GT_GT, + STATE(141), 1, sym_identifier, - STATE(147), 1, - sym_tuple, STATE(158), 1, sym_anonymous_function, - STATE(1187), 1, + STATE(160), 1, + sym_tuple, + STATE(1204), 1, sym__maybe_function_expression, - STATE(1280), 1, + STATE(1224), 1, + sym_expression_bit_string_segment, + STATE(1296), 1, sym__maybe_record_expression, - STATE(1310), 1, + STATE(1299), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(119), 2, + STATE(127), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(157), 2, + STATE(156), 2, sym_record, sym_record_update, - ACTIONS(310), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(138), 5, + STATE(140), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(242), 11, - sym__expression, - sym_binary_expression, + STATE(1013), 10, sym__expression_unit, sym_todo, sym_panic, sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [23991] = 29, + [24849] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(336), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(340), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(342), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(344), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(346), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(348), 1, anon_sym_fn, - ACTIONS(292), 1, + ACTIONS(352), 1, anon_sym_todo, - ACTIONS(294), 1, + ACTIONS(354), 1, anon_sym_panic, - ACTIONS(296), 1, + ACTIONS(356), 1, anon_sym_case, - ACTIONS(300), 1, + ACTIONS(360), 1, anon_sym_assert, - ACTIONS(304), 1, + ACTIONS(364), 1, anon_sym_BANG, - ACTIONS(306), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(312), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(314), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(316), 1, + ACTIONS(376), 1, sym__upname, - ACTIONS(999), 1, + ACTIONS(1021), 1, sym_float, - STATE(140), 1, + STATE(141), 1, sym_identifier, - STATE(147), 1, - sym_tuple, STATE(158), 1, sym_anonymous_function, - STATE(1187), 1, + STATE(160), 1, + sym_tuple, + STATE(1204), 1, sym__maybe_function_expression, - STATE(1280), 1, + STATE(1296), 1, sym__maybe_record_expression, - STATE(1310), 1, + STATE(1336), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(119), 2, + STATE(127), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(157), 2, + STATE(156), 2, sym_record, sym_record_update, - ACTIONS(310), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(138), 5, + STATE(140), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(245), 11, + STATE(300), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -25934,156 +26592,158 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [24098] = 31, + [24957] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(336), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(340), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(342), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(344), 1, anon_sym_LT_LT, - ACTIONS(286), 1, - anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(348), 1, anon_sym_fn, - ACTIONS(292), 1, + ACTIONS(352), 1, anon_sym_todo, - ACTIONS(294), 1, + ACTIONS(354), 1, anon_sym_panic, - ACTIONS(296), 1, + ACTIONS(356), 1, anon_sym_case, - ACTIONS(306), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(312), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(314), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(316), 1, + ACTIONS(376), 1, sym__upname, - ACTIONS(873), 1, + ACTIONS(861), 1, + anon_sym_DASH, + ACTIONS(863), 1, anon_sym_assert, - ACTIONS(875), 1, + ACTIONS(865), 1, anon_sym_BANG, - ACTIONS(877), 1, + ACTIONS(867), 1, sym_float, - ACTIONS(1001), 1, + ACTIONS(1023), 1, anon_sym_GT_GT, - STATE(140), 1, + STATE(141), 1, sym_identifier, - STATE(147), 1, - sym_tuple, STATE(158), 1, sym_anonymous_function, - STATE(1187), 1, + STATE(160), 1, + sym_tuple, + STATE(1204), 1, sym__maybe_function_expression, - STATE(1225), 1, + STATE(1224), 1, sym_expression_bit_string_segment, - STATE(1280), 1, + STATE(1296), 1, sym__maybe_record_expression, - STATE(1310), 1, + STATE(1299), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(119), 2, + STATE(127), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(157), 2, + STATE(156), 2, sym_record, sym_record_update, - ACTIONS(310), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(138), 5, + STATE(140), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1003), 9, + STATE(1013), 10, sym__expression_unit, sym_todo, sym_panic, sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [24209] = 29, + [25069] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(687), 1, + ACTIONS(336), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, anon_sym_POUND, - ACTIONS(691), 1, + ACTIONS(342), 1, anon_sym_LBRACK, - ACTIONS(693), 1, + ACTIONS(344), 1, anon_sym_LT_LT, - ACTIONS(695), 1, + ACTIONS(346), 1, anon_sym_DASH, - ACTIONS(697), 1, + ACTIONS(348), 1, anon_sym_fn, - ACTIONS(699), 1, + ACTIONS(352), 1, anon_sym_todo, - ACTIONS(701), 1, + ACTIONS(354), 1, anon_sym_panic, - ACTIONS(705), 1, + ACTIONS(356), 1, anon_sym_case, - ACTIONS(707), 1, + ACTIONS(360), 1, anon_sym_assert, - ACTIONS(709), 1, + ACTIONS(364), 1, anon_sym_BANG, - ACTIONS(711), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(723), 1, + ACTIONS(374), 1, + sym__name, + ACTIONS(376), 1, sym__upname, - ACTIONS(765), 1, + ACTIONS(1025), 1, sym_float, - ACTIONS(767), 1, - sym__name, - ACTIONS(1003), 1, - anon_sym_LBRACE, - STATE(390), 1, + STATE(141), 1, sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, + STATE(158), 1, sym_anonymous_function, - STATE(1195), 1, + STATE(160), 1, + sym_tuple, + STATE(1204), 1, sym__maybe_function_expression, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, + STATE(1296), 1, sym__maybe_record_expression, + STATE(1336), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(381), 2, + STATE(127), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(408), 2, + STATE(156), 2, sym_record, sym_record_update, - ACTIONS(715), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(392), 5, + STATE(140), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(545), 11, + STATE(301), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -26092,316 +26752,316 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [24316] = 31, + [25177] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(336), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(340), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(342), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(344), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(346), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(348), 1, anon_sym_fn, - ACTIONS(292), 1, + ACTIONS(352), 1, anon_sym_todo, - ACTIONS(294), 1, + ACTIONS(354), 1, anon_sym_panic, - ACTIONS(296), 1, + ACTIONS(356), 1, anon_sym_case, - ACTIONS(306), 1, + ACTIONS(360), 1, + anon_sym_assert, + ACTIONS(364), 1, + anon_sym_BANG, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(312), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(314), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(316), 1, + ACTIONS(376), 1, sym__upname, - ACTIONS(873), 1, - anon_sym_assert, - ACTIONS(875), 1, - anon_sym_BANG, - ACTIONS(877), 1, + ACTIONS(1027), 1, sym_float, - ACTIONS(1006), 1, - anon_sym_GT_GT, - STATE(140), 1, + STATE(141), 1, sym_identifier, - STATE(147), 1, - sym_tuple, STATE(158), 1, sym_anonymous_function, - STATE(1018), 1, - sym_expression_bit_string_segment, - STATE(1187), 1, + STATE(160), 1, + sym_tuple, + STATE(1204), 1, sym__maybe_function_expression, - STATE(1280), 1, + STATE(1296), 1, sym__maybe_record_expression, - STATE(1310), 1, + STATE(1336), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(119), 2, + STATE(127), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(157), 2, + STATE(156), 2, sym_record, sym_record_update, - ACTIONS(310), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(138), 5, + STATE(140), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1003), 9, + STATE(302), 12, + sym__expression, + sym_binary_expression, sym__expression_unit, sym_todo, sym_panic, sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [24427] = 31, + [25285] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(336), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(340), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(342), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(344), 1, anon_sym_LT_LT, - ACTIONS(286), 1, - anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(348), 1, anon_sym_fn, - ACTIONS(292), 1, + ACTIONS(352), 1, anon_sym_todo, - ACTIONS(294), 1, + ACTIONS(354), 1, anon_sym_panic, - ACTIONS(296), 1, + ACTIONS(356), 1, anon_sym_case, - ACTIONS(306), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(312), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(314), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(316), 1, + ACTIONS(376), 1, sym__upname, - ACTIONS(873), 1, + ACTIONS(861), 1, + anon_sym_DASH, + ACTIONS(863), 1, anon_sym_assert, - ACTIONS(875), 1, + ACTIONS(865), 1, anon_sym_BANG, - ACTIONS(877), 1, + ACTIONS(867), 1, sym_float, - ACTIONS(1008), 1, + ACTIONS(1029), 1, anon_sym_GT_GT, - STATE(140), 1, + STATE(141), 1, sym_identifier, - STATE(147), 1, - sym_tuple, STATE(158), 1, sym_anonymous_function, - STATE(1187), 1, + STATE(160), 1, + sym_tuple, + STATE(1204), 1, sym__maybe_function_expression, - STATE(1225), 1, + STATE(1224), 1, sym_expression_bit_string_segment, - STATE(1280), 1, + STATE(1296), 1, sym__maybe_record_expression, - STATE(1310), 1, + STATE(1299), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(119), 2, + STATE(127), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(157), 2, + STATE(156), 2, sym_record, sym_record_update, - ACTIONS(310), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(138), 5, + STATE(140), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1003), 9, + STATE(1013), 10, sym__expression_unit, sym_todo, sym_panic, sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [24538] = 31, + [25397] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(621), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(623), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(629), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(631), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(633), 1, anon_sym_fn, - ACTIONS(292), 1, + ACTIONS(635), 1, anon_sym_todo, - ACTIONS(294), 1, + ACTIONS(637), 1, anon_sym_panic, - ACTIONS(296), 1, + ACTIONS(641), 1, anon_sym_case, - ACTIONS(306), 1, + ACTIONS(643), 1, + anon_sym_assert, + ACTIONS(645), 1, + anon_sym_BANG, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(312), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(314), 1, - sym__name, - ACTIONS(316), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(873), 1, - anon_sym_assert, - ACTIONS(875), 1, - anon_sym_BANG, - ACTIONS(877), 1, + ACTIONS(777), 1, + sym__name, + ACTIONS(1031), 1, sym_float, - ACTIONS(1010), 1, - anon_sym_GT_GT, - STATE(140), 1, + STATE(406), 1, sym_identifier, - STATE(147), 1, - sym_tuple, - STATE(158), 1, + STATE(436), 1, sym_anonymous_function, - STATE(1187), 1, + STATE(438), 1, + sym_tuple, + STATE(1206), 1, sym__maybe_function_expression, - STATE(1225), 1, - sym_expression_bit_string_segment, - STATE(1280), 1, + STATE(1327), 1, sym__maybe_record_expression, - STATE(1310), 1, + STATE(1337), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(119), 2, + STATE(392), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(157), 2, + STATE(439), 2, sym_record, sym_record_update, - ACTIONS(310), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(138), 5, + STATE(407), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1003), 9, + STATE(660), 12, + sym__expression, + sym_binary_expression, sym__expression_unit, sym_todo, sym_panic, sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [24649] = 29, + [25505] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(919), 1, - anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(623), 1, anon_sym_POUND, - ACTIONS(923), 1, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(925), 1, + ACTIONS(629), 1, anon_sym_LT_LT, - ACTIONS(927), 1, + ACTIONS(631), 1, anon_sym_DASH, - ACTIONS(929), 1, + ACTIONS(633), 1, anon_sym_fn, - ACTIONS(931), 1, + ACTIONS(635), 1, anon_sym_todo, - ACTIONS(933), 1, + ACTIONS(637), 1, anon_sym_panic, - ACTIONS(935), 1, + ACTIONS(641), 1, anon_sym_case, - ACTIONS(937), 1, + ACTIONS(643), 1, anon_sym_assert, - ACTIONS(939), 1, + ACTIONS(645), 1, anon_sym_BANG, - ACTIONS(941), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(947), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(949), 1, - sym__name, - ACTIONS(951), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(1012), 1, + ACTIONS(775), 1, sym_float, - STATE(330), 1, + ACTIONS(777), 1, + sym__name, + ACTIONS(1033), 1, + anon_sym_LBRACE, + STATE(406), 1, sym_identifier, - STATE(347), 1, - sym_tuple, - STATE(348), 1, + STATE(436), 1, sym_anonymous_function, - STATE(1234), 1, + STATE(438), 1, + sym_tuple, + STATE(1206), 1, sym__maybe_function_expression, - STATE(1270), 1, - sym__maybe_tuple_expression, - STATE(1320), 1, + STATE(1327), 1, sym__maybe_record_expression, + STATE(1337), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(320), 2, + STATE(392), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(344), 2, + STATE(439), 2, sym_record, sym_record_update, - ACTIONS(945), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(331), 5, + STATE(407), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(377), 11, + STATE(565), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -26410,154 +27070,158 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [24756] = 29, + [25613] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(336), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(340), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(342), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(344), 1, anon_sym_LT_LT, - ACTIONS(286), 1, - anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(348), 1, anon_sym_fn, - ACTIONS(292), 1, + ACTIONS(352), 1, anon_sym_todo, - ACTIONS(294), 1, + ACTIONS(354), 1, anon_sym_panic, - ACTIONS(296), 1, + ACTIONS(356), 1, anon_sym_case, - ACTIONS(300), 1, - anon_sym_assert, - ACTIONS(304), 1, - anon_sym_BANG, - ACTIONS(306), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(312), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(314), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(316), 1, + ACTIONS(376), 1, sym__upname, - ACTIONS(1014), 1, + ACTIONS(861), 1, + anon_sym_DASH, + ACTIONS(863), 1, + anon_sym_assert, + ACTIONS(865), 1, + anon_sym_BANG, + ACTIONS(867), 1, sym_float, - STATE(140), 1, + ACTIONS(1036), 1, + anon_sym_GT_GT, + STATE(141), 1, sym_identifier, - STATE(147), 1, - sym_tuple, STATE(158), 1, sym_anonymous_function, - STATE(1187), 1, + STATE(160), 1, + sym_tuple, + STATE(1082), 1, + sym_expression_bit_string_segment, + STATE(1204), 1, sym__maybe_function_expression, - STATE(1280), 1, + STATE(1296), 1, sym__maybe_record_expression, - STATE(1310), 1, + STATE(1299), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(119), 2, + STATE(127), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(157), 2, + STATE(156), 2, sym_record, sym_record_update, - ACTIONS(310), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(138), 5, + STATE(140), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(255), 11, - sym__expression, - sym_binary_expression, + STATE(1013), 10, sym__expression_unit, sym_todo, sym_panic, sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [24863] = 29, + [25725] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(895), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(897), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(901), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(903), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(905), 1, anon_sym_fn, - ACTIONS(292), 1, + ACTIONS(907), 1, anon_sym_todo, - ACTIONS(294), 1, + ACTIONS(909), 1, anon_sym_panic, - ACTIONS(296), 1, + ACTIONS(911), 1, anon_sym_case, - ACTIONS(300), 1, + ACTIONS(913), 1, anon_sym_assert, - ACTIONS(304), 1, + ACTIONS(915), 1, anon_sym_BANG, - ACTIONS(306), 1, + ACTIONS(917), 1, anon_sym_DQUOTE, - ACTIONS(312), 1, + ACTIONS(923), 1, sym__decimal, - ACTIONS(314), 1, + ACTIONS(925), 1, sym__name, - ACTIONS(316), 1, + ACTIONS(927), 1, sym__upname, - ACTIONS(1016), 1, + ACTIONS(1038), 1, sym_float, - STATE(140), 1, + STATE(331), 1, sym_identifier, - STATE(147), 1, + STATE(351), 1, sym_tuple, - STATE(158), 1, + STATE(353), 1, sym_anonymous_function, - STATE(1187), 1, + STATE(1248), 1, sym__maybe_function_expression, - STATE(1280), 1, - sym__maybe_record_expression, - STATE(1310), 1, + STATE(1283), 1, sym__maybe_tuple_expression, + STATE(1340), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(119), 2, + STATE(328), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(157), 2, + STATE(350), 2, sym_record, sym_record_update, - ACTIONS(310), 3, + ACTIONS(921), 3, sym__hex, sym__octal, sym__binary, - STATE(138), 5, + STATE(332), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(256), 11, + STATE(377), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -26566,76 +27230,77 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [24970] = 29, + [25833] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(11), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(17), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(19), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(21), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(23), 1, anon_sym_DASH, - ACTIONS(288), 1, - anon_sym_fn, - ACTIONS(292), 1, + ACTIONS(33), 1, anon_sym_todo, - ACTIONS(294), 1, + ACTIONS(35), 1, anon_sym_panic, - ACTIONS(296), 1, + ACTIONS(37), 1, anon_sym_case, - ACTIONS(300), 1, + ACTIONS(41), 1, anon_sym_assert, - ACTIONS(304), 1, + ACTIONS(45), 1, anon_sym_BANG, - ACTIONS(306), 1, + ACTIONS(51), 1, anon_sym_DQUOTE, - ACTIONS(312), 1, + ACTIONS(57), 1, sym__decimal, - ACTIONS(314), 1, + ACTIONS(59), 1, sym__name, - ACTIONS(316), 1, + ACTIONS(61), 1, sym__upname, - ACTIONS(1018), 1, + ACTIONS(935), 1, + anon_sym_fn, + ACTIONS(1040), 1, sym_float, - STATE(140), 1, + STATE(50), 1, sym_identifier, - STATE(147), 1, - sym_tuple, - STATE(158), 1, + STATE(75), 1, sym_anonymous_function, - STATE(1187), 1, + STATE(77), 1, + sym_tuple, + STATE(1222), 1, sym__maybe_function_expression, - STATE(1280), 1, + STATE(1330), 1, sym__maybe_record_expression, - STATE(1310), 1, + STATE(1331), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(119), 2, + STATE(39), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(157), 2, + STATE(71), 2, sym_record, sym_record_update, - ACTIONS(310), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(138), 5, + STATE(61), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(257), 11, + STATE(93), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -26644,76 +27309,77 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [25077] = 29, + [25941] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(11), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(17), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(19), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(21), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(23), 1, anon_sym_DASH, - ACTIONS(288), 1, - anon_sym_fn, - ACTIONS(292), 1, + ACTIONS(33), 1, anon_sym_todo, - ACTIONS(294), 1, + ACTIONS(35), 1, anon_sym_panic, - ACTIONS(296), 1, + ACTIONS(37), 1, anon_sym_case, - ACTIONS(300), 1, + ACTIONS(41), 1, anon_sym_assert, - ACTIONS(304), 1, + ACTIONS(45), 1, anon_sym_BANG, - ACTIONS(306), 1, + ACTIONS(51), 1, anon_sym_DQUOTE, - ACTIONS(312), 1, + ACTIONS(57), 1, sym__decimal, - ACTIONS(314), 1, + ACTIONS(59), 1, sym__name, - ACTIONS(316), 1, + ACTIONS(61), 1, sym__upname, - ACTIONS(1020), 1, + ACTIONS(935), 1, + anon_sym_fn, + ACTIONS(1042), 1, sym_float, - STATE(140), 1, + STATE(50), 1, sym_identifier, - STATE(147), 1, - sym_tuple, - STATE(158), 1, + STATE(75), 1, sym_anonymous_function, - STATE(1187), 1, + STATE(77), 1, + sym_tuple, + STATE(1222), 1, sym__maybe_function_expression, - STATE(1280), 1, + STATE(1330), 1, sym__maybe_record_expression, - STATE(1310), 1, + STATE(1331), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(119), 2, + STATE(39), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(157), 2, + STATE(71), 2, sym_record, sym_record_update, - ACTIONS(310), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(138), 5, + STATE(61), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(258), 11, + STATE(82), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -26722,76 +27388,77 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [25184] = 29, + [26049] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(919), 1, + ACTIONS(11), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(17), 1, anon_sym_POUND, - ACTIONS(923), 1, + ACTIONS(19), 1, anon_sym_LBRACK, - ACTIONS(925), 1, + ACTIONS(21), 1, anon_sym_LT_LT, - ACTIONS(927), 1, + ACTIONS(23), 1, anon_sym_DASH, - ACTIONS(929), 1, - anon_sym_fn, - ACTIONS(931), 1, + ACTIONS(33), 1, anon_sym_todo, - ACTIONS(933), 1, + ACTIONS(35), 1, anon_sym_panic, - ACTIONS(935), 1, + ACTIONS(37), 1, anon_sym_case, - ACTIONS(937), 1, + ACTIONS(41), 1, anon_sym_assert, - ACTIONS(939), 1, + ACTIONS(45), 1, anon_sym_BANG, - ACTIONS(941), 1, + ACTIONS(51), 1, anon_sym_DQUOTE, - ACTIONS(947), 1, + ACTIONS(57), 1, sym__decimal, - ACTIONS(949), 1, + ACTIONS(59), 1, sym__name, - ACTIONS(951), 1, + ACTIONS(61), 1, sym__upname, - ACTIONS(1022), 1, + ACTIONS(935), 1, + anon_sym_fn, + ACTIONS(1044), 1, sym_float, - STATE(330), 1, + STATE(50), 1, sym_identifier, - STATE(347), 1, - sym_tuple, - STATE(348), 1, + STATE(75), 1, sym_anonymous_function, - STATE(1234), 1, + STATE(77), 1, + sym_tuple, + STATE(1222), 1, sym__maybe_function_expression, - STATE(1270), 1, - sym__maybe_tuple_expression, - STATE(1320), 1, + STATE(1330), 1, sym__maybe_record_expression, + STATE(1331), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(320), 2, + STATE(39), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(344), 2, + STATE(71), 2, sym_record, sym_record_update, - ACTIONS(945), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(331), 5, + STATE(61), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(375), 11, + STATE(115), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -26800,76 +27467,77 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [25291] = 29, + [26157] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(685), 1, + ACTIONS(336), 1, anon_sym_LBRACE, - ACTIONS(687), 1, + ACTIONS(340), 1, anon_sym_POUND, - ACTIONS(691), 1, + ACTIONS(342), 1, anon_sym_LBRACK, - ACTIONS(693), 1, + ACTIONS(344), 1, anon_sym_LT_LT, - ACTIONS(695), 1, + ACTIONS(346), 1, anon_sym_DASH, - ACTIONS(697), 1, + ACTIONS(348), 1, anon_sym_fn, - ACTIONS(699), 1, + ACTIONS(352), 1, anon_sym_todo, - ACTIONS(701), 1, + ACTIONS(354), 1, anon_sym_panic, - ACTIONS(705), 1, + ACTIONS(356), 1, anon_sym_case, - ACTIONS(707), 1, + ACTIONS(360), 1, anon_sym_assert, - ACTIONS(709), 1, + ACTIONS(364), 1, anon_sym_BANG, - ACTIONS(711), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(723), 1, - sym__upname, - ACTIONS(767), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(1024), 1, + ACTIONS(376), 1, + sym__upname, + ACTIONS(1046), 1, sym_float, - STATE(390), 1, + STATE(141), 1, sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, + STATE(158), 1, sym_anonymous_function, - STATE(1195), 1, + STATE(160), 1, + sym_tuple, + STATE(1204), 1, sym__maybe_function_expression, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, + STATE(1296), 1, sym__maybe_record_expression, + STATE(1336), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(381), 2, + STATE(127), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(408), 2, + STATE(156), 2, sym_record, sym_record_update, - ACTIONS(715), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(392), 5, + STATE(140), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(438), 11, + STATE(303), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -26878,10 +27546,11 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [25398] = 29, + [26265] = 29, ACTIONS(3), 1, sym_module_comment, ACTIONS(11), 1, @@ -26912,42 +27581,42 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(61), 1, sym__upname, - ACTIONS(957), 1, + ACTIONS(935), 1, anon_sym_fn, - ACTIONS(1026), 1, + ACTIONS(1048), 1, sym_float, STATE(50), 1, sym_identifier, - STATE(74), 1, - sym_tuple, - STATE(76), 1, + STATE(75), 1, sym_anonymous_function, - STATE(1194), 1, + STATE(77), 1, + sym_tuple, + STATE(1222), 1, sym__maybe_function_expression, - STATE(1288), 1, + STATE(1330), 1, sym__maybe_record_expression, - STATE(1315), 1, + STATE(1331), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(29), 2, + STATE(39), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(66), 2, + STATE(71), 2, sym_record, sym_record_update, ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(64), 5, + STATE(61), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(113), 11, + STATE(94), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -26956,76 +27625,77 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [25505] = 29, + [26373] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(621), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(623), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(629), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(631), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(633), 1, anon_sym_fn, - ACTIONS(292), 1, + ACTIONS(635), 1, anon_sym_todo, - ACTIONS(294), 1, + ACTIONS(637), 1, anon_sym_panic, - ACTIONS(296), 1, + ACTIONS(641), 1, anon_sym_case, - ACTIONS(300), 1, + ACTIONS(643), 1, anon_sym_assert, - ACTIONS(304), 1, + ACTIONS(645), 1, anon_sym_BANG, - ACTIONS(306), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(312), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(314), 1, - sym__name, - ACTIONS(316), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(1028), 1, + ACTIONS(777), 1, + sym__name, + ACTIONS(1050), 1, sym_float, - STATE(140), 1, + STATE(406), 1, sym_identifier, - STATE(147), 1, - sym_tuple, - STATE(158), 1, + STATE(436), 1, sym_anonymous_function, - STATE(1187), 1, + STATE(438), 1, + sym_tuple, + STATE(1206), 1, sym__maybe_function_expression, - STATE(1280), 1, + STATE(1327), 1, sym__maybe_record_expression, - STATE(1310), 1, + STATE(1337), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(119), 2, + STATE(392), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(157), 2, + STATE(439), 2, sym_record, sym_record_update, - ACTIONS(310), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(138), 5, + STATE(407), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(204), 11, + STATE(644), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -27034,76 +27704,77 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [25612] = 29, + [26481] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(336), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(340), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(342), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(344), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(346), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(348), 1, anon_sym_fn, - ACTIONS(292), 1, + ACTIONS(352), 1, anon_sym_todo, - ACTIONS(294), 1, + ACTIONS(354), 1, anon_sym_panic, - ACTIONS(296), 1, + ACTIONS(356), 1, anon_sym_case, - ACTIONS(300), 1, + ACTIONS(360), 1, anon_sym_assert, - ACTIONS(304), 1, + ACTIONS(364), 1, anon_sym_BANG, - ACTIONS(306), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(312), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(314), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(316), 1, + ACTIONS(376), 1, sym__upname, - ACTIONS(1030), 1, + ACTIONS(1052), 1, sym_float, - STATE(140), 1, + STATE(141), 1, sym_identifier, - STATE(147), 1, - sym_tuple, STATE(158), 1, sym_anonymous_function, - STATE(1187), 1, + STATE(160), 1, + sym_tuple, + STATE(1204), 1, sym__maybe_function_expression, - STATE(1280), 1, + STATE(1296), 1, sym__maybe_record_expression, - STATE(1310), 1, + STATE(1336), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(119), 2, + STATE(127), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(157), 2, + STATE(156), 2, sym_record, sym_record_update, - ACTIONS(310), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(138), 5, + STATE(140), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(261), 11, + STATE(305), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -27112,76 +27783,77 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [25719] = 29, + [26589] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(11), 1, + ACTIONS(336), 1, anon_sym_LBRACE, - ACTIONS(17), 1, + ACTIONS(340), 1, anon_sym_POUND, - ACTIONS(19), 1, + ACTIONS(342), 1, anon_sym_LBRACK, - ACTIONS(21), 1, + ACTIONS(344), 1, anon_sym_LT_LT, - ACTIONS(23), 1, + ACTIONS(346), 1, anon_sym_DASH, - ACTIONS(33), 1, + ACTIONS(348), 1, + anon_sym_fn, + ACTIONS(352), 1, anon_sym_todo, - ACTIONS(35), 1, + ACTIONS(354), 1, anon_sym_panic, - ACTIONS(37), 1, + ACTIONS(356), 1, anon_sym_case, - ACTIONS(41), 1, + ACTIONS(360), 1, anon_sym_assert, - ACTIONS(45), 1, + ACTIONS(364), 1, anon_sym_BANG, - ACTIONS(51), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(57), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(59), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(61), 1, + ACTIONS(376), 1, sym__upname, - ACTIONS(957), 1, - anon_sym_fn, - ACTIONS(1032), 1, + ACTIONS(1054), 1, sym_float, - STATE(50), 1, + STATE(141), 1, sym_identifier, - STATE(74), 1, - sym_tuple, - STATE(76), 1, + STATE(158), 1, sym_anonymous_function, - STATE(1194), 1, + STATE(160), 1, + sym_tuple, + STATE(1204), 1, sym__maybe_function_expression, - STATE(1288), 1, + STATE(1296), 1, sym__maybe_record_expression, - STATE(1315), 1, + STATE(1336), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(29), 2, + STATE(127), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(66), 2, + STATE(156), 2, sym_record, sym_record_update, - ACTIONS(55), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(64), 5, + STATE(140), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(96), 11, + STATE(309), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -27190,76 +27862,77 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [25826] = 29, + [26697] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(11), 1, + ACTIONS(336), 1, anon_sym_LBRACE, - ACTIONS(17), 1, + ACTIONS(340), 1, anon_sym_POUND, - ACTIONS(19), 1, + ACTIONS(342), 1, anon_sym_LBRACK, - ACTIONS(21), 1, + ACTIONS(344), 1, anon_sym_LT_LT, - ACTIONS(23), 1, + ACTIONS(346), 1, anon_sym_DASH, - ACTIONS(33), 1, + ACTIONS(348), 1, + anon_sym_fn, + ACTIONS(352), 1, anon_sym_todo, - ACTIONS(35), 1, + ACTIONS(354), 1, anon_sym_panic, - ACTIONS(37), 1, + ACTIONS(356), 1, anon_sym_case, - ACTIONS(41), 1, + ACTIONS(360), 1, anon_sym_assert, - ACTIONS(45), 1, + ACTIONS(364), 1, anon_sym_BANG, - ACTIONS(51), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(57), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(59), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(61), 1, + ACTIONS(376), 1, sym__upname, - ACTIONS(957), 1, - anon_sym_fn, - ACTIONS(1034), 1, + ACTIONS(1056), 1, sym_float, - STATE(50), 1, + STATE(141), 1, sym_identifier, - STATE(74), 1, - sym_tuple, - STATE(76), 1, + STATE(158), 1, sym_anonymous_function, - STATE(1194), 1, + STATE(160), 1, + sym_tuple, + STATE(1204), 1, sym__maybe_function_expression, - STATE(1288), 1, + STATE(1296), 1, sym__maybe_record_expression, - STATE(1315), 1, + STATE(1336), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(29), 2, + STATE(127), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(66), 2, + STATE(156), 2, sym_record, sym_record_update, - ACTIONS(55), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(64), 5, + STATE(140), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(116), 11, + STATE(307), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -27268,156 +27941,156 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [25933] = 31, + [26805] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(336), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(340), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(342), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(344), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(346), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(348), 1, anon_sym_fn, - ACTIONS(292), 1, + ACTIONS(352), 1, anon_sym_todo, - ACTIONS(294), 1, + ACTIONS(354), 1, anon_sym_panic, - ACTIONS(296), 1, + ACTIONS(356), 1, anon_sym_case, - ACTIONS(306), 1, + ACTIONS(360), 1, + anon_sym_assert, + ACTIONS(364), 1, + anon_sym_BANG, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(312), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(314), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(316), 1, + ACTIONS(376), 1, sym__upname, - ACTIONS(873), 1, - anon_sym_assert, - ACTIONS(875), 1, - anon_sym_BANG, - ACTIONS(877), 1, + ACTIONS(1058), 1, sym_float, - ACTIONS(1036), 1, - anon_sym_GT_GT, - STATE(140), 1, + STATE(141), 1, sym_identifier, - STATE(147), 1, - sym_tuple, STATE(158), 1, sym_anonymous_function, - STATE(1062), 1, - sym_expression_bit_string_segment, - STATE(1187), 1, + STATE(160), 1, + sym_tuple, + STATE(1204), 1, sym__maybe_function_expression, - STATE(1280), 1, + STATE(1296), 1, sym__maybe_record_expression, - STATE(1310), 1, + STATE(1336), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(119), 2, + STATE(127), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(157), 2, + STATE(156), 2, sym_record, sym_record_update, - ACTIONS(310), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(138), 5, + STATE(140), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1003), 9, + STATE(306), 12, + sym__expression, + sym_binary_expression, sym__expression_unit, sym_todo, sym_panic, sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [26044] = 29, + [26913] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(336), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(340), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(342), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(344), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(346), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(348), 1, anon_sym_fn, - ACTIONS(292), 1, + ACTIONS(352), 1, anon_sym_todo, - ACTIONS(294), 1, + ACTIONS(354), 1, anon_sym_panic, - ACTIONS(296), 1, + ACTIONS(356), 1, anon_sym_case, - ACTIONS(300), 1, + ACTIONS(360), 1, anon_sym_assert, - ACTIONS(304), 1, + ACTIONS(364), 1, anon_sym_BANG, - ACTIONS(306), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(312), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(314), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(316), 1, + ACTIONS(376), 1, sym__upname, - ACTIONS(1038), 1, + ACTIONS(1060), 1, sym_float, - STATE(140), 1, + STATE(141), 1, sym_identifier, - STATE(147), 1, - sym_tuple, STATE(158), 1, sym_anonymous_function, - STATE(1187), 1, + STATE(160), 1, + sym_tuple, + STATE(1204), 1, sym__maybe_function_expression, - STATE(1280), 1, + STATE(1296), 1, sym__maybe_record_expression, - STATE(1310), 1, + STATE(1336), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(119), 2, + STATE(127), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(157), 2, + STATE(156), 2, sym_record, sym_record_update, - ACTIONS(310), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(138), 5, + STATE(140), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(264), 11, + STATE(310), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -27426,10 +28099,11 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [26151] = 29, + [27021] = 29, ACTIONS(3), 1, sym_module_comment, ACTIONS(11), 1, @@ -27460,42 +28134,42 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(61), 1, sym__upname, - ACTIONS(957), 1, + ACTIONS(935), 1, anon_sym_fn, - ACTIONS(1040), 1, + ACTIONS(1062), 1, sym_float, STATE(50), 1, sym_identifier, - STATE(74), 1, - sym_tuple, - STATE(76), 1, + STATE(75), 1, sym_anonymous_function, - STATE(1194), 1, + STATE(77), 1, + sym_tuple, + STATE(1222), 1, sym__maybe_function_expression, - STATE(1288), 1, + STATE(1330), 1, sym__maybe_record_expression, - STATE(1315), 1, + STATE(1331), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(29), 2, + STATE(39), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(66), 2, + STATE(71), 2, sym_record, sym_record_update, ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(64), 5, + STATE(61), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(115), 11, + STATE(112), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -27504,76 +28178,77 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [26258] = 29, + [27129] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(687), 1, + ACTIONS(623), 1, anon_sym_POUND, - ACTIONS(691), 1, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(693), 1, + ACTIONS(629), 1, anon_sym_LT_LT, - ACTIONS(695), 1, + ACTIONS(631), 1, anon_sym_DASH, - ACTIONS(697), 1, + ACTIONS(633), 1, anon_sym_fn, - ACTIONS(699), 1, + ACTIONS(635), 1, anon_sym_todo, - ACTIONS(701), 1, + ACTIONS(637), 1, anon_sym_panic, - ACTIONS(705), 1, + ACTIONS(641), 1, anon_sym_case, - ACTIONS(707), 1, + ACTIONS(643), 1, anon_sym_assert, - ACTIONS(709), 1, + ACTIONS(645), 1, anon_sym_BANG, - ACTIONS(711), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(723), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(765), 1, + ACTIONS(775), 1, sym_float, - ACTIONS(767), 1, + ACTIONS(777), 1, sym__name, - ACTIONS(1042), 1, + ACTIONS(1064), 1, anon_sym_LBRACE, - STATE(390), 1, + STATE(406), 1, sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, + STATE(436), 1, sym_anonymous_function, - STATE(1195), 1, + STATE(438), 1, + sym_tuple, + STATE(1206), 1, sym__maybe_function_expression, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, + STATE(1327), 1, sym__maybe_record_expression, + STATE(1337), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(381), 2, + STATE(392), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(408), 2, + STATE(439), 2, sym_record, sym_record_update, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(392), 5, + STATE(407), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(545), 11, + STATE(565), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -27582,76 +28257,77 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [26365] = 29, + [27237] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(919), 1, + ACTIONS(336), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(340), 1, anon_sym_POUND, - ACTIONS(923), 1, + ACTIONS(342), 1, anon_sym_LBRACK, - ACTIONS(925), 1, + ACTIONS(344), 1, anon_sym_LT_LT, - ACTIONS(927), 1, + ACTIONS(346), 1, anon_sym_DASH, - ACTIONS(929), 1, + ACTIONS(348), 1, anon_sym_fn, - ACTIONS(931), 1, + ACTIONS(352), 1, anon_sym_todo, - ACTIONS(933), 1, + ACTIONS(354), 1, anon_sym_panic, - ACTIONS(935), 1, + ACTIONS(356), 1, anon_sym_case, - ACTIONS(937), 1, + ACTIONS(360), 1, anon_sym_assert, - ACTIONS(939), 1, + ACTIONS(364), 1, anon_sym_BANG, - ACTIONS(941), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(947), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(949), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(951), 1, + ACTIONS(376), 1, sym__upname, - ACTIONS(1045), 1, + ACTIONS(1067), 1, sym_float, - STATE(330), 1, + STATE(141), 1, sym_identifier, - STATE(347), 1, - sym_tuple, - STATE(348), 1, + STATE(158), 1, sym_anonymous_function, - STATE(1234), 1, + STATE(160), 1, + sym_tuple, + STATE(1204), 1, sym__maybe_function_expression, - STATE(1270), 1, - sym__maybe_tuple_expression, - STATE(1320), 1, + STATE(1296), 1, sym__maybe_record_expression, + STATE(1336), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(320), 2, + STATE(127), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(344), 2, + STATE(156), 2, sym_record, sym_record_update, - ACTIONS(945), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(331), 5, + STATE(140), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(370), 11, + STATE(308), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -27660,76 +28336,77 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [26472] = 29, + [27345] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(11), 1, + ACTIONS(895), 1, anon_sym_LBRACE, - ACTIONS(17), 1, + ACTIONS(897), 1, anon_sym_POUND, - ACTIONS(19), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(21), 1, + ACTIONS(901), 1, anon_sym_LT_LT, - ACTIONS(23), 1, + ACTIONS(903), 1, anon_sym_DASH, - ACTIONS(33), 1, + ACTIONS(905), 1, + anon_sym_fn, + ACTIONS(907), 1, anon_sym_todo, - ACTIONS(35), 1, + ACTIONS(909), 1, anon_sym_panic, - ACTIONS(37), 1, + ACTIONS(911), 1, anon_sym_case, - ACTIONS(41), 1, + ACTIONS(913), 1, anon_sym_assert, - ACTIONS(45), 1, + ACTIONS(915), 1, anon_sym_BANG, - ACTIONS(51), 1, + ACTIONS(917), 1, anon_sym_DQUOTE, - ACTIONS(57), 1, + ACTIONS(923), 1, sym__decimal, - ACTIONS(59), 1, + ACTIONS(925), 1, sym__name, - ACTIONS(61), 1, + ACTIONS(927), 1, sym__upname, - ACTIONS(957), 1, - anon_sym_fn, - ACTIONS(1047), 1, + ACTIONS(1069), 1, sym_float, - STATE(50), 1, + STATE(331), 1, sym_identifier, - STATE(74), 1, + STATE(351), 1, sym_tuple, - STATE(76), 1, + STATE(353), 1, sym_anonymous_function, - STATE(1194), 1, + STATE(1248), 1, sym__maybe_function_expression, - STATE(1288), 1, - sym__maybe_record_expression, - STATE(1315), 1, + STATE(1283), 1, sym__maybe_tuple_expression, + STATE(1340), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(29), 2, + STATE(328), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(66), 2, + STATE(350), 2, sym_record, sym_record_update, - ACTIONS(55), 3, + ACTIONS(921), 3, sym__hex, sym__octal, sym__binary, - STATE(64), 5, + STATE(332), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(104), 11, + STATE(372), 12, sym__expression, sym_binary_expression, sym__expression_unit, @@ -27738,1715 +28415,1902 @@ static const uint16_t ts_small_parse_table[] = { sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [26579] = 29, + [27453] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(11), 1, + ACTIONS(1075), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1077), 1, + anon_sym_AMP_AMP, + ACTIONS(1085), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1071), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1073), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1079), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1087), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1081), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1083), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(1089), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(739), 11, 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_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(741), 11, + anon_sym_fn, + anon_sym_try, anon_sym_todo, - ACTIONS(35), 1, anon_sym_panic, - ACTIONS(37), 1, anon_sym_case, - ACTIONS(41), 1, + anon_sym_let, anon_sym_assert, - ACTIONS(45), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(51), 1, - anon_sym_DQUOTE, - ACTIONS(57), 1, sym__decimal, - ACTIONS(59), 1, sym__name, - ACTIONS(61), 1, - sym__upname, - ACTIONS(957), 1, - anon_sym_fn, - ACTIONS(1049), 1, - sym_float, - STATE(50), 1, - sym_identifier, - STATE(74), 1, - sym_tuple, - STATE(76), 1, - sym_anonymous_function, - STATE(1194), 1, - sym__maybe_function_expression, - STATE(1288), 1, - sym__maybe_record_expression, - STATE(1315), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(29), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(66), 2, - sym_record, - sym_record_update, - ACTIONS(55), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(64), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(78), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [26686] = 29, + [27530] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(11), 1, + ACTIONS(336), 1, anon_sym_LBRACE, - ACTIONS(17), 1, + ACTIONS(340), 1, anon_sym_POUND, - ACTIONS(19), 1, + ACTIONS(342), 1, anon_sym_LBRACK, - ACTIONS(21), 1, + ACTIONS(344), 1, anon_sym_LT_LT, - ACTIONS(23), 1, - anon_sym_DASH, - ACTIONS(33), 1, + ACTIONS(348), 1, + anon_sym_fn, + ACTIONS(352), 1, anon_sym_todo, - ACTIONS(35), 1, + ACTIONS(354), 1, anon_sym_panic, - ACTIONS(37), 1, + ACTIONS(356), 1, anon_sym_case, - ACTIONS(41), 1, - anon_sym_assert, - ACTIONS(45), 1, - anon_sym_BANG, - ACTIONS(51), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(57), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(59), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(61), 1, + ACTIONS(376), 1, sym__upname, - ACTIONS(957), 1, - anon_sym_fn, - ACTIONS(1051), 1, + ACTIONS(861), 1, + anon_sym_DASH, + ACTIONS(863), 1, + anon_sym_assert, + ACTIONS(865), 1, + anon_sym_BANG, + ACTIONS(867), 1, sym_float, - STATE(50), 1, + STATE(141), 1, sym_identifier, - STATE(74), 1, - sym_tuple, - STATE(76), 1, + STATE(158), 1, sym_anonymous_function, - STATE(1194), 1, + STATE(160), 1, + sym_tuple, + STATE(1204), 1, sym__maybe_function_expression, - STATE(1288), 1, + STATE(1224), 1, + sym_expression_bit_string_segment, + STATE(1296), 1, sym__maybe_record_expression, - STATE(1315), 1, + STATE(1299), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(29), 2, + STATE(127), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(66), 2, + STATE(156), 2, sym_record, sym_record_update, - ACTIONS(55), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(64), 5, + STATE(140), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(82), 11, - sym__expression, - sym_binary_expression, + STATE(1013), 10, sym__expression_unit, sym_todo, sym_panic, sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [26793] = 29, + [27639] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(11), 1, + ACTIONS(1075), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1077), 1, + anon_sym_AMP_AMP, + ACTIONS(1085), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1071), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1073), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1079), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1087), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1081), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1083), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(1089), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(557), 11, 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_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(559), 11, + anon_sym_fn, + anon_sym_try, anon_sym_todo, - ACTIONS(35), 1, anon_sym_panic, - ACTIONS(37), 1, anon_sym_case, - ACTIONS(41), 1, + anon_sym_let, anon_sym_assert, - ACTIONS(45), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(51), 1, - anon_sym_DQUOTE, - ACTIONS(57), 1, sym__decimal, - ACTIONS(59), 1, sym__name, - ACTIONS(61), 1, - sym__upname, - ACTIONS(957), 1, - anon_sym_fn, - ACTIONS(1053), 1, - sym_float, - STATE(50), 1, - sym_identifier, - STATE(74), 1, - sym_tuple, - STATE(76), 1, - sym_anonymous_function, - STATE(1194), 1, - sym__maybe_function_expression, - STATE(1288), 1, - sym__maybe_record_expression, - STATE(1315), 1, - sym__maybe_tuple_expression, + [27716] = 14, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1075), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1077), 1, + anon_sym_AMP_AMP, + ACTIONS(1085), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(29), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(66), 2, - sym_record, - sym_record_update, - ACTIONS(55), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(64), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(84), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [26900] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(11), 1, + ACTIONS(1071), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1073), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1079), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1087), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1081), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1083), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(1089), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(665), 11, 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_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(667), 11, + anon_sym_fn, + anon_sym_try, anon_sym_todo, - ACTIONS(35), 1, anon_sym_panic, - ACTIONS(37), 1, anon_sym_case, - ACTIONS(41), 1, + anon_sym_let, anon_sym_assert, - ACTIONS(45), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(51), 1, - anon_sym_DQUOTE, - ACTIONS(57), 1, sym__decimal, - ACTIONS(59), 1, sym__name, - ACTIONS(61), 1, - sym__upname, - ACTIONS(957), 1, - anon_sym_fn, - ACTIONS(1055), 1, - sym_float, - STATE(50), 1, - sym_identifier, - STATE(74), 1, - sym_tuple, - STATE(76), 1, - sym_anonymous_function, - STATE(1194), 1, - sym__maybe_function_expression, - STATE(1288), 1, - sym__maybe_record_expression, - STATE(1315), 1, - sym__maybe_tuple_expression, + [27793] = 14, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1075), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1077), 1, + anon_sym_AMP_AMP, + ACTIONS(1085), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(29), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(66), 2, - sym_record, - sym_record_update, - ACTIONS(55), 3, + ACTIONS(1071), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1073), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1079), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1087), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1081), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1083), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(1089), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(585), 11, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_DQUOTE, + sym_float, sym__hex, sym__octal, sym__binary, - STATE(64), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(86), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [27007] = 29, + sym__upname, + ACTIONS(587), 11, + anon_sym_fn, + anon_sym_try, + anon_sym_todo, + anon_sym_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + [27870] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(11), 1, + ACTIONS(1075), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1077), 1, + anon_sym_AMP_AMP, + ACTIONS(1085), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1071), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1073), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1079), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1087), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1081), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1083), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(1089), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(723), 11, 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_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(725), 11, + anon_sym_fn, + anon_sym_try, anon_sym_todo, - ACTIONS(35), 1, anon_sym_panic, - ACTIONS(37), 1, anon_sym_case, - ACTIONS(41), 1, + anon_sym_let, anon_sym_assert, - ACTIONS(45), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(51), 1, - anon_sym_DQUOTE, - ACTIONS(57), 1, sym__decimal, - ACTIONS(59), 1, sym__name, - ACTIONS(61), 1, - sym__upname, - ACTIONS(957), 1, - anon_sym_fn, - ACTIONS(1057), 1, - sym_float, - STATE(50), 1, - sym_identifier, - STATE(74), 1, - sym_tuple, - STATE(76), 1, - sym_anonymous_function, - STATE(1194), 1, - sym__maybe_function_expression, - STATE(1288), 1, - sym__maybe_record_expression, - STATE(1315), 1, - sym__maybe_tuple_expression, + [27947] = 14, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1075), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1077), 1, + anon_sym_AMP_AMP, + ACTIONS(1085), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(29), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(66), 2, - sym_record, - sym_record_update, - ACTIONS(55), 3, + ACTIONS(1071), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1073), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1079), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1087), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1081), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1083), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(1089), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(669), 11, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_DQUOTE, + sym_float, sym__hex, sym__octal, sym__binary, - STATE(64), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(102), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [27114] = 29, + sym__upname, + ACTIONS(671), 11, + anon_sym_fn, + anon_sym_try, + anon_sym_todo, + anon_sym_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + [28024] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(11), 1, + ACTIONS(1075), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1077), 1, + anon_sym_AMP_AMP, + ACTIONS(1085), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1071), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1073), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1079), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1087), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1081), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1083), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(1089), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(605), 11, 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_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(607), 11, + anon_sym_fn, + anon_sym_try, anon_sym_todo, - ACTIONS(35), 1, anon_sym_panic, - ACTIONS(37), 1, anon_sym_case, - ACTIONS(41), 1, + anon_sym_let, anon_sym_assert, - ACTIONS(45), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(51), 1, - anon_sym_DQUOTE, - ACTIONS(57), 1, sym__decimal, - ACTIONS(59), 1, sym__name, - ACTIONS(61), 1, + [28101] = 14, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1075), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1077), 1, + anon_sym_AMP_AMP, + ACTIONS(1085), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1071), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1073), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1079), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1087), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1081), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1083), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(1089), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(593), 11, + anon_sym_LBRACE, + 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, - ACTIONS(957), 1, + ACTIONS(595), 11, anon_sym_fn, - ACTIONS(1059), 1, - sym_float, - STATE(50), 1, - sym_identifier, - STATE(74), 1, - sym_tuple, - STATE(76), 1, - sym_anonymous_function, - STATE(1194), 1, - sym__maybe_function_expression, - STATE(1288), 1, - sym__maybe_record_expression, - STATE(1315), 1, - sym__maybe_tuple_expression, + anon_sym_try, + anon_sym_todo, + anon_sym_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + [28178] = 14, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1075), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1077), 1, + anon_sym_AMP_AMP, + ACTIONS(1085), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(29), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(66), 2, - sym_record, - sym_record_update, - ACTIONS(55), 3, + ACTIONS(1071), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1073), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1079), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1087), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1081), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1083), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(1089), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(715), 11, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_DQUOTE, + sym_float, sym__hex, sym__octal, sym__binary, - STATE(64), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(101), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [27221] = 29, + sym__upname, + ACTIONS(717), 11, + anon_sym_fn, + anon_sym_try, + anon_sym_todo, + anon_sym_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + [28255] = 8, ACTIONS(3), 1, sym_module_comment, - ACTIONS(11), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1071), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1073), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1087), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1089), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(683), 15, + 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_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(681), 20, 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_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, + [28320] = 9, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1085), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1071), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1073), 2, anon_sym_DASH, - ACTIONS(33), 1, + anon_sym_PLUS, + ACTIONS(1087), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1089), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(683), 15, + anon_sym_fn, + anon_sym_try, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, anon_sym_todo, - ACTIONS(35), 1, anon_sym_panic, - ACTIONS(37), 1, anon_sym_case, - ACTIONS(41), 1, + anon_sym_let, anon_sym_assert, - ACTIONS(45), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(51), 1, - anon_sym_DQUOTE, - ACTIONS(57), 1, sym__decimal, - ACTIONS(59), 1, sym__name, - ACTIONS(61), 1, + ACTIONS(681), 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, - ACTIONS(957), 1, + [28387] = 11, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1085), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1071), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1073), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1087), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1081), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1083), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(1089), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(683), 11, anon_sym_fn, - ACTIONS(1061), 1, + anon_sym_try, + anon_sym_todo, + anon_sym_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(681), 15, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_DQUOTE, sym_float, - STATE(50), 1, - sym_identifier, - STATE(74), 1, - sym_tuple, - STATE(76), 1, - sym_anonymous_function, - STATE(1194), 1, - sym__maybe_function_expression, - STATE(1288), 1, - sym__maybe_record_expression, - STATE(1315), 1, - sym__maybe_tuple_expression, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [28458] = 6, + ACTIONS(3), 1, + sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(29), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(66), 2, - sym_record, - sym_record_update, - ACTIONS(55), 3, + ACTIONS(1071), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1089), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(683), 17, + anon_sym_DASH, + anon_sym_fn, + anon_sym_try, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_todo, + anon_sym_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(681), 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, - STATE(64), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(89), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [27328] = 29, + sym__upname, + [28519] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(685), 1, - anon_sym_LBRACE, - ACTIONS(687), 1, - anon_sym_POUND, - ACTIONS(691), 1, - anon_sym_LBRACK, - ACTIONS(693), 1, - anon_sym_LT_LT, - ACTIONS(695), 1, + ACTIONS(1077), 1, + anon_sym_AMP_AMP, + ACTIONS(1085), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1071), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1073), 2, anon_sym_DASH, - ACTIONS(697), 1, + anon_sym_PLUS, + ACTIONS(1079), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1087), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1081), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1083), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(1089), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(683), 11, anon_sym_fn, - ACTIONS(699), 1, + anon_sym_try, anon_sym_todo, - ACTIONS(701), 1, anon_sym_panic, - ACTIONS(705), 1, anon_sym_case, - ACTIONS(707), 1, + anon_sym_let, anon_sym_assert, - ACTIONS(709), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(711), 1, - anon_sym_DQUOTE, - ACTIONS(717), 1, sym__decimal, - ACTIONS(723), 1, - sym__upname, - ACTIONS(767), 1, sym__name, - ACTIONS(1063), 1, + ACTIONS(681), 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, - STATE(390), 1, - sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, - sym_anonymous_function, - STATE(1195), 1, - sym__maybe_function_expression, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(381), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(408), 2, - sym_record, - sym_record_update, - ACTIONS(715), 3, sym__hex, sym__octal, sym__binary, - STATE(392), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(620), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [27435] = 31, + sym__upname, + [28594] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(1075), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1077), 1, + anon_sym_AMP_AMP, + ACTIONS(1085), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1071), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1073), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1079), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1087), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1081), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1083), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(1089), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(701), 11, anon_sym_LBRACE, - ACTIONS(280), 1, + anon_sym_RBRACE, anon_sym_POUND, - ACTIONS(282), 1, anon_sym_LBRACK, - ACTIONS(284), 1, anon_sym_LT_LT, - ACTIONS(286), 1, - anon_sym_DASH, - ACTIONS(288), 1, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(703), 11, anon_sym_fn, - ACTIONS(292), 1, + anon_sym_try, anon_sym_todo, - ACTIONS(294), 1, anon_sym_panic, - ACTIONS(296), 1, anon_sym_case, - ACTIONS(306), 1, - anon_sym_DQUOTE, - ACTIONS(312), 1, - sym__decimal, - ACTIONS(314), 1, - sym__name, - ACTIONS(316), 1, - sym__upname, - ACTIONS(873), 1, + anon_sym_let, anon_sym_assert, - ACTIONS(875), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(877), 1, - sym_float, - ACTIONS(1065), 1, - anon_sym_GT_GT, - STATE(140), 1, - sym_identifier, - STATE(147), 1, - sym_tuple, - STATE(158), 1, - sym_anonymous_function, - STATE(1187), 1, - sym__maybe_function_expression, - STATE(1225), 1, - sym_expression_bit_string_segment, - STATE(1280), 1, - sym__maybe_record_expression, - STATE(1310), 1, - sym__maybe_tuple_expression, + sym__decimal, + sym__name, + [28671] = 12, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1085), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(119), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(157), 2, - sym_record, - sym_record_update, - ACTIONS(310), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(138), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(1003), 9, - sym__expression_unit, - sym_todo, - sym_panic, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [27546] = 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, + ACTIONS(1071), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1073), 2, anon_sym_DASH, - ACTIONS(33), 1, + anon_sym_PLUS, + ACTIONS(1079), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1087), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1081), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1083), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(1089), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(683), 11, + anon_sym_fn, + anon_sym_try, anon_sym_todo, - ACTIONS(35), 1, anon_sym_panic, - ACTIONS(37), 1, anon_sym_case, - ACTIONS(41), 1, + anon_sym_let, anon_sym_assert, - ACTIONS(45), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(51), 1, - anon_sym_DQUOTE, - ACTIONS(57), 1, sym__decimal, - ACTIONS(59), 1, sym__name, - ACTIONS(61), 1, - sym__upname, - ACTIONS(957), 1, - anon_sym_fn, - ACTIONS(1067), 1, + ACTIONS(681), 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, - STATE(50), 1, - sym_identifier, - STATE(74), 1, - sym_tuple, - STATE(76), 1, - sym_anonymous_function, - STATE(1194), 1, - sym__maybe_function_expression, - STATE(1288), 1, - sym__maybe_record_expression, - STATE(1315), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(29), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(66), 2, - sym_record, - sym_record_update, - ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(64), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(94), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [27653] = 29, + sym__upname, + [28744] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(685), 1, - anon_sym_LBRACE, - ACTIONS(687), 1, - anon_sym_POUND, - ACTIONS(691), 1, - anon_sym_LBRACK, - ACTIONS(693), 1, - anon_sym_LT_LT, - ACTIONS(695), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(683), 19, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(697), 1, anon_sym_fn, - ACTIONS(699), 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(701), 1, anon_sym_panic, - ACTIONS(705), 1, anon_sym_case, - ACTIONS(707), 1, + anon_sym_let, anon_sym_assert, - ACTIONS(709), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(711), 1, - anon_sym_DQUOTE, - ACTIONS(717), 1, sym__decimal, - ACTIONS(723), 1, - sym__upname, - ACTIONS(767), 1, sym__name, - ACTIONS(1069), 1, + ACTIONS(681), 26, + 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_LT_GT, + anon_sym_DQUOTE, sym_float, - STATE(390), 1, - sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, - sym_anonymous_function, - STATE(1195), 1, - sym__maybe_function_expression, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(381), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(408), 2, - sym_record, - sym_record_update, - ACTIONS(715), 3, sym__hex, sym__octal, sym__binary, - STATE(392), 5, - sym_block, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(640), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_panic, - sym_list, - sym__expression_bit_string, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [27760] = 31, + sym__upname, + [28801] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(336), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(340), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(342), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(344), 1, anon_sym_LT_LT, - ACTIONS(286), 1, - anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(348), 1, anon_sym_fn, - ACTIONS(292), 1, + ACTIONS(352), 1, anon_sym_todo, - ACTIONS(294), 1, + ACTIONS(354), 1, anon_sym_panic, - ACTIONS(296), 1, + ACTIONS(356), 1, anon_sym_case, - ACTIONS(306), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(312), 1, - sym__decimal, - ACTIONS(314), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(316), 1, + ACTIONS(376), 1, sym__upname, - ACTIONS(873), 1, + ACTIONS(861), 1, + anon_sym_DASH, + ACTIONS(863), 1, anon_sym_assert, - ACTIONS(875), 1, + ACTIONS(865), 1, anon_sym_BANG, - ACTIONS(877), 1, + ACTIONS(1091), 1, sym_float, - ACTIONS(1071), 1, - anon_sym_GT_GT, - STATE(140), 1, + ACTIONS(1095), 1, + sym__decimal, + STATE(141), 1, sym_identifier, - STATE(147), 1, - sym_tuple, STATE(158), 1, sym_anonymous_function, - STATE(1187), 1, + STATE(160), 1, + sym_tuple, + STATE(1204), 1, sym__maybe_function_expression, - STATE(1225), 1, - sym_expression_bit_string_segment, - STATE(1280), 1, + STATE(1296), 1, sym__maybe_record_expression, - STATE(1310), 1, + STATE(1299), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(119), 2, + STATE(127), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(157), 2, + STATE(156), 2, sym_record, sym_record_update, - ACTIONS(310), 3, + ACTIONS(1093), 3, sym__hex, sym__octal, sym__binary, - STATE(138), 5, + STATE(140), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1003), 9, + STATE(166), 10, sym__expression_unit, sym_todo, sym_panic, sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [27871] = 31, + [28907] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(11), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(17), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(19), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(21), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(23), 1, anon_sym_DASH, - ACTIONS(288), 1, - anon_sym_fn, - ACTIONS(292), 1, + ACTIONS(33), 1, anon_sym_todo, - ACTIONS(294), 1, + ACTIONS(35), 1, anon_sym_panic, - ACTIONS(296), 1, + ACTIONS(37), 1, anon_sym_case, - ACTIONS(306), 1, + ACTIONS(41), 1, + anon_sym_assert, + ACTIONS(45), 1, + anon_sym_BANG, + ACTIONS(51), 1, anon_sym_DQUOTE, - ACTIONS(312), 1, + ACTIONS(57), 1, sym__decimal, - ACTIONS(314), 1, + ACTIONS(59), 1, sym__name, - ACTIONS(316), 1, + ACTIONS(61), 1, sym__upname, - ACTIONS(873), 1, - anon_sym_assert, - ACTIONS(875), 1, - anon_sym_BANG, - ACTIONS(877), 1, + ACTIONS(935), 1, + anon_sym_fn, + ACTIONS(1097), 1, sym_float, - ACTIONS(1073), 1, - anon_sym_GT_GT, - STATE(140), 1, + STATE(50), 1, sym_identifier, - STATE(147), 1, - sym_tuple, - STATE(158), 1, + STATE(75), 1, sym_anonymous_function, - STATE(1187), 1, + STATE(77), 1, + sym_tuple, + STATE(1222), 1, sym__maybe_function_expression, - STATE(1225), 1, - sym_expression_bit_string_segment, - STATE(1280), 1, + STATE(1330), 1, sym__maybe_record_expression, - STATE(1310), 1, + STATE(1331), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(119), 2, + STATE(39), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(157), 2, + STATE(71), 2, sym_record, sym_record_update, - ACTIONS(310), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(138), 5, + STATE(61), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1003), 9, + STATE(92), 10, sym__expression_unit, sym_todo, sym_panic, sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [27982] = 14, + [29013] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(887), 1, - anon_sym_PIPE_PIPE, - ACTIONS(889), 1, - anon_sym_AMP_AMP, - ACTIONS(897), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(849), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(885), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(891), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(899), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(851), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(893), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(895), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(575), 11, + ACTIONS(336), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(340), 1, anon_sym_POUND, + ACTIONS(342), 1, anon_sym_LBRACK, + ACTIONS(344), 1, anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(577), 11, + ACTIONS(346), 1, + anon_sym_DASH, + ACTIONS(348), 1, anon_sym_fn, - anon_sym_try, + ACTIONS(352), 1, anon_sym_todo, + ACTIONS(354), 1, anon_sym_panic, + ACTIONS(356), 1, anon_sym_case, - anon_sym_let, + ACTIONS(360), 1, anon_sym_assert, - anon_sym_use, + ACTIONS(364), 1, anon_sym_BANG, - sym__decimal, - sym__name, - [28059] = 31, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(276), 1, - anon_sym_LBRACE, - ACTIONS(280), 1, - anon_sym_POUND, - ACTIONS(282), 1, - anon_sym_LBRACK, - ACTIONS(284), 1, - anon_sym_LT_LT, - ACTIONS(286), 1, - anon_sym_DASH, - ACTIONS(288), 1, - anon_sym_fn, - ACTIONS(292), 1, - anon_sym_todo, - ACTIONS(294), 1, - anon_sym_panic, - ACTIONS(296), 1, - anon_sym_case, - ACTIONS(306), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(312), 1, - sym__decimal, - ACTIONS(314), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(316), 1, + ACTIONS(376), 1, sym__upname, - ACTIONS(873), 1, - anon_sym_assert, - ACTIONS(875), 1, - anon_sym_BANG, - ACTIONS(877), 1, + ACTIONS(1091), 1, sym_float, - ACTIONS(1075), 1, - anon_sym_GT_GT, - STATE(140), 1, + ACTIONS(1095), 1, + sym__decimal, + STATE(141), 1, sym_identifier, - STATE(147), 1, - sym_tuple, STATE(158), 1, sym_anonymous_function, - STATE(1073), 1, - sym_expression_bit_string_segment, - STATE(1187), 1, + STATE(160), 1, + sym_tuple, + STATE(1204), 1, sym__maybe_function_expression, - STATE(1280), 1, + STATE(1296), 1, sym__maybe_record_expression, - STATE(1310), 1, + STATE(1336), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(119), 2, + STATE(127), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(157), 2, + STATE(156), 2, sym_record, sym_record_update, - ACTIONS(310), 3, + ACTIONS(1093), 3, sym__hex, sym__octal, sym__binary, - STATE(138), 5, + STATE(140), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1003), 9, + STATE(166), 10, sym__expression_unit, sym_todo, sym_panic, sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [28170] = 29, + [29119] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(685), 1, + ACTIONS(336), 1, anon_sym_LBRACE, - ACTIONS(687), 1, + ACTIONS(340), 1, anon_sym_POUND, - ACTIONS(691), 1, + ACTIONS(342), 1, anon_sym_LBRACK, - ACTIONS(693), 1, + ACTIONS(344), 1, anon_sym_LT_LT, - ACTIONS(695), 1, - anon_sym_DASH, - ACTIONS(697), 1, + ACTIONS(348), 1, anon_sym_fn, - ACTIONS(699), 1, + ACTIONS(352), 1, anon_sym_todo, - ACTIONS(701), 1, + ACTIONS(354), 1, anon_sym_panic, - ACTIONS(705), 1, + ACTIONS(356), 1, anon_sym_case, - ACTIONS(707), 1, - anon_sym_assert, - ACTIONS(709), 1, - anon_sym_BANG, - ACTIONS(711), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(723), 1, - sym__upname, - ACTIONS(767), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(1077), 1, + ACTIONS(376), 1, + sym__upname, + ACTIONS(861), 1, + anon_sym_DASH, + ACTIONS(863), 1, + anon_sym_assert, + ACTIONS(865), 1, + anon_sym_BANG, + ACTIONS(1099), 1, sym_float, - STATE(390), 1, + STATE(141), 1, sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, + STATE(158), 1, sym_anonymous_function, - STATE(1195), 1, + STATE(160), 1, + sym_tuple, + STATE(1204), 1, sym__maybe_function_expression, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, + STATE(1296), 1, sym__maybe_record_expression, + STATE(1299), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(381), 2, + STATE(127), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(408), 2, + STATE(156), 2, sym_record, sym_record_update, - ACTIONS(715), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(392), 5, + STATE(140), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(634), 11, - sym__expression, - sym_binary_expression, + STATE(186), 10, sym__expression_unit, sym_todo, sym_panic, sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [28277] = 30, + [29225] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(895), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(897), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(901), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(903), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(905), 1, anon_sym_fn, - ACTIONS(292), 1, + ACTIONS(907), 1, anon_sym_todo, - ACTIONS(294), 1, + ACTIONS(909), 1, anon_sym_panic, - ACTIONS(296), 1, + ACTIONS(911), 1, anon_sym_case, - ACTIONS(306), 1, + ACTIONS(913), 1, + anon_sym_assert, + ACTIONS(915), 1, + anon_sym_BANG, + ACTIONS(917), 1, anon_sym_DQUOTE, - ACTIONS(312), 1, + ACTIONS(923), 1, sym__decimal, - ACTIONS(314), 1, + ACTIONS(925), 1, sym__name, - ACTIONS(316), 1, + ACTIONS(927), 1, sym__upname, - ACTIONS(873), 1, - anon_sym_assert, - ACTIONS(875), 1, - anon_sym_BANG, - ACTIONS(877), 1, + ACTIONS(1101), 1, sym_float, - STATE(140), 1, + STATE(331), 1, sym_identifier, - STATE(147), 1, + STATE(351), 1, sym_tuple, - STATE(158), 1, + STATE(353), 1, sym_anonymous_function, - STATE(1187), 1, + STATE(1248), 1, sym__maybe_function_expression, - STATE(1225), 1, - sym_expression_bit_string_segment, - STATE(1280), 1, - sym__maybe_record_expression, - STATE(1310), 1, + STATE(1283), 1, sym__maybe_tuple_expression, + STATE(1340), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(119), 2, + STATE(328), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(157), 2, + STATE(350), 2, sym_record, sym_record_update, - ACTIONS(310), 3, + ACTIONS(921), 3, sym__hex, sym__octal, sym__binary, - STATE(138), 5, + STATE(332), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(1003), 9, + STATE(382), 10, sym__expression_unit, sym_todo, sym_panic, sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [28385] = 29, + [29331] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(621), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(623), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(629), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(631), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(633), 1, anon_sym_fn, - ACTIONS(292), 1, + ACTIONS(635), 1, anon_sym_todo, - ACTIONS(294), 1, + ACTIONS(637), 1, anon_sym_panic, - ACTIONS(296), 1, + ACTIONS(641), 1, anon_sym_case, - ACTIONS(300), 1, + ACTIONS(643), 1, anon_sym_assert, - ACTIONS(304), 1, + ACTIONS(645), 1, anon_sym_BANG, - ACTIONS(306), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(312), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(314), 1, - sym__name, - ACTIONS(316), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(1079), 1, + ACTIONS(777), 1, + sym__name, + ACTIONS(1103), 1, sym_float, - STATE(140), 1, + STATE(406), 1, sym_identifier, - STATE(147), 1, - sym_tuple, - STATE(158), 1, + STATE(436), 1, sym_anonymous_function, - STATE(1187), 1, + STATE(438), 1, + sym_tuple, + STATE(1206), 1, sym__maybe_function_expression, - STATE(1280), 1, + STATE(1327), 1, sym__maybe_record_expression, - STATE(1310), 1, + STATE(1337), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(119), 2, + STATE(392), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(157), 2, + STATE(439), 2, sym_record, sym_record_update, - ACTIONS(310), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(138), 5, + STATE(407), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(174), 9, + STATE(486), 10, sym__expression_unit, sym_todo, sym_panic, sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [28490] = 29, + [29437] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(276), 1, + ACTIONS(336), 1, anon_sym_LBRACE, - ACTIONS(280), 1, + ACTIONS(340), 1, anon_sym_POUND, - ACTIONS(282), 1, + ACTIONS(342), 1, anon_sym_LBRACK, - ACTIONS(284), 1, + ACTIONS(344), 1, anon_sym_LT_LT, - ACTIONS(286), 1, + ACTIONS(346), 1, anon_sym_DASH, - ACTIONS(288), 1, + ACTIONS(348), 1, anon_sym_fn, - ACTIONS(292), 1, + ACTIONS(352), 1, anon_sym_todo, - ACTIONS(294), 1, + ACTIONS(354), 1, anon_sym_panic, - ACTIONS(296), 1, + ACTIONS(356), 1, anon_sym_case, - ACTIONS(306), 1, + ACTIONS(360), 1, + anon_sym_assert, + ACTIONS(364), 1, + anon_sym_BANG, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(312), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(314), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(316), 1, + ACTIONS(376), 1, sym__upname, - ACTIONS(873), 1, - anon_sym_assert, - ACTIONS(875), 1, - anon_sym_BANG, - ACTIONS(1079), 1, + ACTIONS(1099), 1, sym_float, - STATE(140), 1, + STATE(141), 1, sym_identifier, - STATE(147), 1, - sym_tuple, STATE(158), 1, sym_anonymous_function, - STATE(1187), 1, + STATE(160), 1, + sym_tuple, + STATE(1204), 1, sym__maybe_function_expression, - STATE(1280), 1, + STATE(1296), 1, sym__maybe_record_expression, - STATE(1310), 1, + STATE(1336), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(119), 2, + STATE(127), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(157), 2, + STATE(156), 2, sym_record, sym_record_update, - ACTIONS(310), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(138), 5, + STATE(140), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(174), 9, + STATE(186), 10, sym__expression_unit, sym_todo, sym_panic, sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [28595] = 29, + [29543] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(685), 1, + ACTIONS(11), 1, anon_sym_LBRACE, - ACTIONS(687), 1, + ACTIONS(17), 1, anon_sym_POUND, - ACTIONS(691), 1, + ACTIONS(19), 1, anon_sym_LBRACK, - ACTIONS(693), 1, + ACTIONS(21), 1, anon_sym_LT_LT, - ACTIONS(695), 1, + ACTIONS(23), 1, anon_sym_DASH, - ACTIONS(697), 1, - anon_sym_fn, - ACTIONS(699), 1, + ACTIONS(33), 1, anon_sym_todo, - ACTIONS(701), 1, + ACTIONS(35), 1, anon_sym_panic, - ACTIONS(705), 1, + ACTIONS(37), 1, anon_sym_case, - ACTIONS(707), 1, + ACTIONS(41), 1, anon_sym_assert, - ACTIONS(709), 1, + ACTIONS(45), 1, anon_sym_BANG, - ACTIONS(711), 1, + ACTIONS(51), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, - sym__decimal, - ACTIONS(723), 1, - sym__upname, - ACTIONS(767), 1, + ACTIONS(59), 1, sym__name, - ACTIONS(1081), 1, + ACTIONS(61), 1, + sym__upname, + ACTIONS(935), 1, + anon_sym_fn, + ACTIONS(1105), 1, sym_float, - STATE(390), 1, + ACTIONS(1109), 1, + sym__decimal, + STATE(50), 1, sym_identifier, - STATE(410), 1, - sym_tuple, - STATE(413), 1, + STATE(75), 1, sym_anonymous_function, - STATE(1195), 1, + STATE(77), 1, + sym_tuple, + STATE(1222), 1, sym__maybe_function_expression, - STATE(1307), 1, - sym__maybe_tuple_expression, - STATE(1309), 1, + STATE(1330), 1, sym__maybe_record_expression, + STATE(1331), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(381), 2, + STATE(39), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(408), 2, + STATE(71), 2, sym_record, sym_record_update, - ACTIONS(715), 3, + ACTIONS(1107), 3, sym__hex, sym__octal, sym__binary, - STATE(392), 5, + STATE(61), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(497), 9, + STATE(110), 10, sym__expression_unit, sym_todo, sym_panic, sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [28700] = 29, + [29649] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(11), 1, + ACTIONS(895), 1, anon_sym_LBRACE, - ACTIONS(17), 1, + ACTIONS(897), 1, anon_sym_POUND, - ACTIONS(19), 1, + ACTIONS(899), 1, anon_sym_LBRACK, - ACTIONS(21), 1, + ACTIONS(901), 1, anon_sym_LT_LT, - ACTIONS(23), 1, + ACTIONS(903), 1, anon_sym_DASH, - ACTIONS(33), 1, + ACTIONS(905), 1, + anon_sym_fn, + ACTIONS(907), 1, anon_sym_todo, - ACTIONS(35), 1, + ACTIONS(909), 1, anon_sym_panic, - ACTIONS(37), 1, + ACTIONS(911), 1, anon_sym_case, - ACTIONS(41), 1, + ACTIONS(913), 1, anon_sym_assert, - ACTIONS(45), 1, + ACTIONS(915), 1, anon_sym_BANG, - ACTIONS(51), 1, + ACTIONS(917), 1, anon_sym_DQUOTE, - ACTIONS(57), 1, - sym__decimal, - ACTIONS(59), 1, + ACTIONS(925), 1, sym__name, - ACTIONS(61), 1, + ACTIONS(927), 1, sym__upname, - ACTIONS(957), 1, - anon_sym_fn, - ACTIONS(1083), 1, + ACTIONS(1111), 1, sym_float, - STATE(50), 1, + ACTIONS(1115), 1, + sym__decimal, + STATE(331), 1, sym_identifier, - STATE(74), 1, + STATE(351), 1, sym_tuple, - STATE(76), 1, + STATE(353), 1, sym_anonymous_function, - STATE(1194), 1, + STATE(1248), 1, sym__maybe_function_expression, - STATE(1288), 1, - sym__maybe_record_expression, - STATE(1315), 1, + STATE(1283), 1, sym__maybe_tuple_expression, + STATE(1340), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(29), 2, + STATE(328), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(66), 2, + STATE(350), 2, sym_record, sym_record_update, - ACTIONS(55), 3, + ACTIONS(1113), 3, sym__hex, sym__octal, sym__binary, - STATE(64), 5, + STATE(332), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(83), 9, + STATE(361), 10, sym__expression_unit, sym_todo, sym_panic, sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [28805] = 29, + [29755] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(919), 1, + ACTIONS(621), 1, anon_sym_LBRACE, - ACTIONS(921), 1, + ACTIONS(623), 1, anon_sym_POUND, - ACTIONS(923), 1, + ACTIONS(627), 1, anon_sym_LBRACK, - ACTIONS(925), 1, + ACTIONS(629), 1, anon_sym_LT_LT, - ACTIONS(927), 1, + ACTIONS(631), 1, anon_sym_DASH, - ACTIONS(929), 1, + ACTIONS(633), 1, anon_sym_fn, - ACTIONS(931), 1, + ACTIONS(635), 1, anon_sym_todo, - ACTIONS(933), 1, + ACTIONS(637), 1, anon_sym_panic, - ACTIONS(935), 1, + ACTIONS(641), 1, anon_sym_case, - ACTIONS(937), 1, + ACTIONS(643), 1, anon_sym_assert, - ACTIONS(939), 1, + ACTIONS(645), 1, anon_sym_BANG, - ACTIONS(941), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(947), 1, - sym__decimal, - ACTIONS(949), 1, - sym__name, - ACTIONS(951), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(1085), 1, + ACTIONS(777), 1, + sym__name, + ACTIONS(1117), 1, sym_float, - STATE(330), 1, + ACTIONS(1121), 1, + sym__decimal, + STATE(406), 1, sym_identifier, - STATE(347), 1, - sym_tuple, - STATE(348), 1, + STATE(436), 1, sym_anonymous_function, - STATE(1234), 1, + STATE(438), 1, + sym_tuple, + STATE(1206), 1, sym__maybe_function_expression, - STATE(1270), 1, - sym__maybe_tuple_expression, - STATE(1320), 1, + STATE(1327), 1, sym__maybe_record_expression, + STATE(1337), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(320), 2, + STATE(392), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(344), 2, + STATE(439), 2, sym_record, sym_record_update, - ACTIONS(945), 3, + ACTIONS(1119), 3, sym__hex, sym__octal, sym__binary, - STATE(331), 5, + STATE(407), 5, sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(355), 9, + STATE(484), 10, sym__expression_unit, sym_todo, sym_panic, sym_list, sym__expression_bit_string, sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [28910] = 4, + [29861] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(490), 10, + ACTIONS(478), 10, anon_sym_DOT, anon_sym_SLASH, anon_sym_EQ, @@ -29457,7 +30321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(488), 32, + ACTIONS(476), 32, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -29490,13 +30354,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, sym_visibility_modifier, sym_opacity_modifier, - [28964] = 4, + [29915] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(464), 10, + ACTIONS(444), 10, anon_sym_DOT, anon_sym_SLASH, anon_sym_EQ, @@ -29507,7 +30371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(462), 32, + ACTIONS(442), 32, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -29540,13 +30404,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, sym_visibility_modifier, sym_opacity_modifier, - [29018] = 4, + [29969] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(456), 10, + ACTIONS(486), 10, anon_sym_DOT, anon_sym_SLASH, anon_sym_EQ, @@ -29557,7 +30421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(454), 32, + ACTIONS(484), 32, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -29590,13 +30454,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, sym_visibility_modifier, sym_opacity_modifier, - [29072] = 4, + [30023] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(468), 10, + ACTIONS(470), 10, anon_sym_DOT, anon_sym_SLASH, anon_sym_EQ, @@ -29607,7 +30471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(466), 32, + ACTIONS(468), 32, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -29640,14 +30504,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, sym_visibility_modifier, sym_opacity_modifier, - [29126] = 4, + [30077] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(472), 10, + ACTIONS(501), 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(499), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_COMMA, + anon_sym_const, + anon_sym_LPAREN, + 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, + 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_LT_GT, + anon_sym_DOT_DOT, + sym_visibility_modifier, + sym_opacity_modifier, + [30129] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(729), 9, anon_sym_SLASH, anon_sym_EQ, anon_sym_DASH, @@ -29657,14 +30568,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(470), 32, + ACTIONS(727), 31, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, anon_sym_as, anon_sym_COMMA, anon_sym_const, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_GT_GT, @@ -29690,13 +30600,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, sym_visibility_modifier, sym_opacity_modifier, - [29180] = 4, + [30181] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(603), 9, + ACTIONS(675), 9, anon_sym_SLASH, anon_sym_EQ, anon_sym_DASH, @@ -29706,7 +30616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(601), 31, + ACTIONS(673), 31, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -29738,15 +30648,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, sym_visibility_modifier, sym_opacity_modifier, - [29232] = 4, + [30233] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1123), 1, + anon_sym_LPAREN, + STATE(357), 1, + sym_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(667), 9, + ACTIONS(434), 11, anon_sym_SLASH, - anon_sym_EQ, anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, @@ -29754,20 +30667,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(665), 31, - anon_sym_LBRACE, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(432), 26, anon_sym_RBRACE, - anon_sym_import, - anon_sym_as, - anon_sym_COMMA, - anon_sym_const, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_fn, - anon_sym_external, - anon_sym_type, + 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, @@ -29783,17 +30691,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - anon_sym_DOT_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [29284] = 4, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [30288] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(460), 9, + ACTIONS(474), 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(472), 27, + 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_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [30338] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(509), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -29802,20 +30758,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(458), 31, - anon_sym_LBRACE, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(507), 27, anon_sym_RBRACE, - anon_sym_import, - anon_sym_COMMA, - anon_sym_const, + anon_sym_DOT, + anon_sym_POUND, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_fn, - anon_sym_external, - anon_sym_type, + anon_sym_LBRACK, + anon_sym_LT_LT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -29831,20 +30783,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - anon_sym_DOT_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [29336] = 6, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [30388] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1087), 1, + ACTIONS(454), 1, anon_sym_LPAREN, - STATE(349), 1, - sym_arguments, + ACTIONS(1125), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(422), 11, + ACTIONS(448), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -29856,9 +30811,56 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(420), 26, + ACTIONS(446), 25, anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [30442] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(454), 1, + anon_sym_LPAREN, + ACTIONS(492), 1, anon_sym_DOT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(448), 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(446), 25, + anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -29883,13 +30885,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [29391] = 4, + [30496] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(498), 11, + ACTIONS(501), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -29901,7 +30903,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(496), 27, + ACTIONS(499), 27, anon_sym_RBRACE, anon_sym_DOT, anon_sym_POUND, @@ -29929,13 +30931,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [29441] = 4, + [30546] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(490), 11, + ACTIONS(466), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -29947,7 +30949,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(488), 27, + ACTIONS(464), 27, anon_sym_RBRACE, anon_sym_DOT, anon_sym_POUND, @@ -29975,13 +30977,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [29491] = 4, + [30596] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(494), 11, + ACTIONS(462), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -29993,7 +30995,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(492), 27, + ACTIONS(460), 27, anon_sym_RBRACE, anon_sym_DOT, anon_sym_POUND, @@ -30021,13 +31023,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [29541] = 4, + [30646] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(448), 11, + ACTIONS(458), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -30039,7 +31041,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(446), 27, + ACTIONS(456), 27, anon_sym_RBRACE, anon_sym_DOT, anon_sym_POUND, @@ -30067,13 +31069,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [29591] = 4, + [30696] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(456), 11, + ACTIONS(486), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -30085,7 +31087,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(454), 27, + ACTIONS(484), 27, anon_sym_RBRACE, anon_sym_DOT, anon_sym_POUND, @@ -30113,13 +31115,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [29641] = 4, + [30746] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(506), 11, + ACTIONS(440), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -30131,7 +31133,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(504), 27, + ACTIONS(438), 27, anon_sym_RBRACE, anon_sym_DOT, anon_sym_POUND, @@ -30159,13 +31161,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [29691] = 4, + [30796] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(468), 11, + ACTIONS(470), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -30177,7 +31179,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(466), 27, + ACTIONS(468), 27, anon_sym_RBRACE, anon_sym_DOT, anon_sym_POUND, @@ -30205,13 +31207,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [29741] = 4, + [30846] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(486), 11, + ACTIONS(482), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -30223,7 +31225,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(484), 27, + ACTIONS(480), 27, anon_sym_RBRACE, anon_sym_DOT, anon_sym_POUND, @@ -30251,13 +31253,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [29791] = 4, + [30896] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(464), 11, + ACTIONS(505), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -30269,7 +31271,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(462), 27, + ACTIONS(503), 27, anon_sym_RBRACE, anon_sym_DOT, anon_sym_POUND, @@ -30297,17 +31299,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [29841] = 6, + [30946] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(482), 1, - anon_sym_LPAREN, - ACTIONS(1089), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(476), 11, + ACTIONS(444), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -30319,9 +31317,11 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(474), 25, + ACTIONS(442), 27, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_POUND, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, @@ -30345,17 +31345,59 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [29895] = 6, + [30996] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(482), 1, - anon_sym_LPAREN, - ACTIONS(508), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(478), 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(476), 27, + 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_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [31046] = 4, + ACTIONS(3), 1, + sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(476), 11, + ACTIONS(497), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -30367,9 +31409,11 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(474), 25, + ACTIONS(495), 27, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_POUND, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, @@ -30393,13 +31437,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [29949] = 4, + [31096] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(460), 11, + ACTIONS(490), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -30411,7 +31455,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(458), 27, + ACTIONS(488), 27, anon_sym_RBRACE, anon_sym_DOT, anon_sym_POUND, @@ -30439,13 +31483,58 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [29999] = 4, + [31146] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(527), 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(525), 26, + anon_sym_RBRACE, + 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_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [31195] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(444), 11, + ACTIONS(531), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -30457,9 +31546,8 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(442), 27, + ACTIONS(529), 26, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_POUND, anon_sym_LPAREN, anon_sym_LBRACK, @@ -30485,13 +31573,15 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [30049] = 4, + [31244] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1129), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(452), 11, + ACTIONS(517), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -30503,11 +31593,9 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(450), 27, + ACTIONS(515), 25, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, @@ -30531,13 +31619,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [30099] = 4, + [31295] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(472), 11, + ACTIONS(541), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -30549,11 +31637,10 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(470), 27, + ACTIONS(539), 26, anon_sym_RBRACE, anon_sym_DOT, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, @@ -30577,13 +31664,15 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [30149] = 4, + [31344] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(533), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(502), 11, + ACTIONS(448), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -30595,11 +31684,9 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(500), 27, + ACTIONS(446), 25, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, @@ -30623,13 +31710,15 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [30199] = 4, + [31395] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(551), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(440), 11, + ACTIONS(448), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -30641,11 +31730,9 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(438), 27, + ACTIONS(446), 25, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, @@ -30669,15 +31756,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [30249] = 5, + [31446] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1093), 1, - anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(531), 11, + ACTIONS(513), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -30689,8 +31774,9 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(529), 25, + ACTIONS(511), 26, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -30715,13 +31801,15 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [30300] = 4, + [31495] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(454), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(523), 11, + ACTIONS(448), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -30733,10 +31821,9 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(521), 26, + ACTIONS(446), 25, anon_sym_RBRACE, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, @@ -30760,13 +31847,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [30349] = 4, + [31546] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(537), 11, + ACTIONS(549), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -30778,7 +31865,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(535), 26, + ACTIONS(547), 26, anon_sym_RBRACE, anon_sym_DOT, anon_sym_POUND, @@ -30805,13 +31892,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [30398] = 4, + [31595] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(527), 11, + ACTIONS(523), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -30823,10 +31910,10 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(525), 26, + ACTIONS(521), 26, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_POUND, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, @@ -30850,13 +31937,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [30447] = 4, + [31644] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(519), 11, + ACTIONS(537), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -30868,7 +31955,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(517), 26, + ACTIONS(535), 26, anon_sym_RBRACE, anon_sym_DOT, anon_sym_POUND, @@ -30895,13 +31982,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [30496] = 4, + [31693] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(515), 11, + ACTIONS(545), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -30913,7 +32000,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(513), 26, + ACTIONS(543), 26, anon_sym_RBRACE, anon_sym_DOT, anon_sym_POUND, @@ -30940,15 +32027,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [30545] = 5, + [31742] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(511), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(476), 11, + ACTIONS(591), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -30960,7 +32045,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(474), 25, + ACTIONS(589), 25, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -30986,13 +32071,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [30596] = 4, + [31790] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(551), 11, + ACTIONS(737), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -31004,10 +32089,9 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(549), 26, + ACTIONS(735), 25, anon_sym_RBRACE, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, @@ -31031,13 +32115,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [30645] = 4, + [31838] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(547), 11, + ACTIONS(615), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -31049,9 +32133,8 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(545), 26, + ACTIONS(613), 25, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -31076,15 +32159,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [30694] = 5, + [31886] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(543), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(476), 11, + ACTIONS(707), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -31096,7 +32177,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(474), 25, + ACTIONS(705), 25, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -31122,104 +32203,67 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [30745] = 5, + [31934] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(482), 1, - anon_sym_LPAREN, + ACTIONS(1137), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1139), 1, + anon_sym_AMP_AMP, + ACTIONS(1147), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(476), 11, + ACTIONS(1133), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1135), 2, 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(474), 25, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(1141), 2, 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, + ACTIONS(1149), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [30796] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(541), 11, - anon_sym_SLASH, - anon_sym_DASH, + ACTIONS(1153), 3, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(1143), 4, 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(539), 26, - anon_sym_RBRACE, - 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, + ACTIONS(1145), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, + ACTIONS(1151), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, + ACTIONS(1131), 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, - [30845] = 4, + [32002] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(595), 11, + ACTIONS(729), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -31231,7 +32275,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(593), 25, + ACTIONS(727), 25, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -31257,13 +32301,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [30893] = 4, + [32050] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(583), 11, + ACTIONS(675), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -31275,7 +32319,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(581), 25, + ACTIONS(673), 25, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -31301,57 +32345,67 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [30941] = 4, + [32098] = 14, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1137), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1139), 1, + anon_sym_AMP_AMP, + ACTIONS(1147), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(647), 11, + ACTIONS(1133), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1135), 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(1141), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1149), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1157), 3, sym__decimal, sym__discard_name, sym__name, - ACTIONS(645), 25, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(1143), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1145), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, + ACTIONS(1151), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, + ACTIONS(1155), 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, - [30989] = 4, + [32166] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(607), 11, + ACTIONS(619), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -31363,7 +32417,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(605), 25, + ACTIONS(617), 25, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -31389,13 +32443,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [31037] = 4, + [32214] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(599), 11, + ACTIONS(712), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -31407,7 +32461,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(597), 25, + ACTIONS(709), 25, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -31433,13 +32487,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [31085] = 4, + [32262] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(591), 11, + ACTIONS(555), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -31451,7 +32505,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(589), 25, + ACTIONS(553), 25, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -31477,13 +32531,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [31133] = 4, + [32310] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(671), 11, + ACTIONS(721), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -31495,7 +32549,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(669), 25, + ACTIONS(719), 25, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -31521,13 +32575,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [31181] = 4, + [32358] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(679), 11, + ACTIONS(733), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -31539,7 +32593,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(677), 25, + ACTIONS(731), 25, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -31565,13 +32619,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [31229] = 4, + [32406] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(555), 11, + ACTIONS(745), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -31583,7 +32637,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(553), 25, + ACTIONS(743), 25, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -31609,230 +32663,85 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [31277] = 14, + [32454] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1101), 1, + ACTIONS(1137), 1, anon_sym_PIPE_PIPE, - ACTIONS(1103), 1, + ACTIONS(1139), 1, anon_sym_AMP_AMP, - ACTIONS(1111), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1097), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1099), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1105), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1113), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1117), 3, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(1107), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1109), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(1115), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(1095), 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, - [31345] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1097), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1115), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(555), 9, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(553), 21, - 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, - [31397] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1103), 1, - anon_sym_AMP_AMP, - ACTIONS(1111), 1, + ACTIONS(1147), 1, anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1097), 2, + ACTIONS(1133), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1099), 2, + ACTIONS(1135), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1105), 2, + ACTIONS(1141), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1113), 2, + ACTIONS(1149), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(555), 3, + ACTIONS(725), 3, sym__decimal, sym__discard_name, sym__name, - ACTIONS(1107), 4, + ACTIONS(1143), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1109), 4, + ACTIONS(1145), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1115), 4, + ACTIONS(1151), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(553), 11, + ACTIONS(723), 10, 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, - [31463] = 12, + [32522] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1111), 1, - anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1097), 2, + ACTIONS(1133), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1099), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1105), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1113), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(555), 3, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(1107), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1109), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(1115), 4, + ACTIONS(1151), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(553), 12, - 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, - [31527] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(603), 11, - anon_sym_SLASH, + ACTIONS(683), 9, anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_PLUS, - anon_sym_STAR, sym__decimal, sym__discard_name, sym__name, - ACTIONS(601), 25, + ACTIONS(681), 21, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -31848,53 +32757,31 @@ 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_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [31575] = 11, + [32574] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1111), 1, - anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1097), 2, + ACTIONS(679), 11, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1099), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1113), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(555), 3, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(1107), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1109), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(1115), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(553), 14, + anon_sym_PLUS, + anon_sym_STAR, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(677), 25, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -31903,43 +32790,42 @@ 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_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [31637] = 9, + [32622] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1111), 1, - anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1097), 2, + ACTIONS(611), 11, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1099), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1113), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1115), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(555), 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(553), 18, + ACTIONS(609), 25, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -31952,19 +32838,26 @@ 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_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [31695] = 4, + [32670] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(667), 11, + ACTIONS(687), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -31976,7 +32869,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(665), 25, + ACTIONS(685), 25, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -32002,61 +32895,67 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [31743] = 8, + [32718] = 14, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1137), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1139), 1, + anon_sym_AMP_AMP, + ACTIONS(1147), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1097), 2, + ACTIONS(1133), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1099), 2, + ACTIONS(1135), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1113), 2, + ACTIONS(1141), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1149), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1115), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(555), 7, + ACTIONS(595), 3, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(1143), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(553), 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, + ACTIONS(1145), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, + ACTIONS(1151), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(593), 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, - [31799] = 4, + [32786] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(611), 11, + ACTIONS(683), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -32068,7 +32967,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(609), 25, + ACTIONS(681), 25, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -32094,13 +32993,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [31847] = 4, + [32834] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(631), 11, + ACTIONS(583), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -32112,7 +33011,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(629), 25, + ACTIONS(581), 25, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -32138,67 +33037,57 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [31895] = 14, + [32882] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1103), 1, - anon_sym_AMP_AMP, - ACTIONS(1111), 1, - anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1097), 2, + ACTIONS(603), 11, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1099), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1105), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1113), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(643), 3, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(1107), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1109), 4, + anon_sym_PLUS, + anon_sym_STAR, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(601), 25, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1115), 4, + 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_LT_GT, - ACTIONS(641), 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, - [31963] = 4, + [32930] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(635), 11, + ACTIONS(599), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -32210,7 +33099,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(633), 25, + ACTIONS(597), 25, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -32236,13 +33125,13 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [32011] = 4, + [32978] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(651), 11, + ACTIONS(663), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -32254,7 +33143,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(649), 25, + ACTIONS(661), 25, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -32280,25 +33169,35 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [32059] = 4, + [33026] = 8, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(659), 11, + ACTIONS(1133), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1135), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1149), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1151), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(683), 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(657), 25, + ACTIONS(681), 19, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -32312,37 +33211,43 @@ 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_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [32107] = 4, + [33082] = 9, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1147), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(663), 11, + ACTIONS(1133), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1135), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1149), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1151), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(683), 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(661), 25, + ACTIONS(681), 18, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -32355,182 +33260,179 @@ 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_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [32155] = 14, + [33140] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1103), 1, - anon_sym_AMP_AMP, - ACTIONS(1111), 1, + ACTIONS(1147), 1, anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1097), 2, + ACTIONS(1133), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1099), 2, + ACTIONS(1135), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1105), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1113), 2, + ACTIONS(1149), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1121), 3, + ACTIONS(683), 3, sym__decimal, sym__discard_name, sym__name, - ACTIONS(1107), 4, + ACTIONS(1143), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1109), 4, + ACTIONS(1145), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1115), 4, + ACTIONS(1151), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(1119), 10, + ACTIONS(681), 14, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [32223] = 4, + [33202] = 12, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1147), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(655), 11, + ACTIONS(1133), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1135), 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(1141), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1149), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(683), 3, sym__decimal, sym__discard_name, sym__name, - ACTIONS(653), 25, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(1143), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1145), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, + ACTIONS(1151), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, + ACTIONS(681), 12, + 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, - [32271] = 14, + [33266] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1103), 1, + ACTIONS(1139), 1, anon_sym_AMP_AMP, - ACTIONS(1111), 1, + ACTIONS(1147), 1, anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1097), 2, + ACTIONS(1133), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1099), 2, + ACTIONS(1135), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1105), 2, + ACTIONS(1141), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1113), 2, + ACTIONS(1149), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(627), 3, + ACTIONS(683), 3, sym__decimal, sym__discard_name, sym__name, - ACTIONS(1107), 4, + ACTIONS(1143), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1109), 4, + ACTIONS(1145), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1115), 4, + ACTIONS(1151), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(625), 10, + ACTIONS(681), 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, - [32339] = 6, + [33332] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1127), 1, + ACTIONS(1163), 1, anon_sym_SLASH, - STATE(379), 1, + STATE(388), 1, aux_sym_module_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1123), 13, + ACTIONS(1159), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_DOT, @@ -32544,7 +33446,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1125), 19, + ACTIONS(1161), 19, anon_sym_if, anon_sym_import, anon_sym_as, @@ -32564,17 +33466,17 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [32389] = 6, + [33382] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1133), 1, + ACTIONS(1170), 1, anon_sym_SLASH, - STATE(379), 1, + STATE(390), 1, aux_sym_module_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1129), 13, + ACTIONS(1166), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_DOT, @@ -32588,7 +33490,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1131), 19, + ACTIONS(1168), 19, anon_sym_if, anon_sym_import, anon_sym_as, @@ -32608,17 +33510,17 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [32439] = 6, + [33432] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1127), 1, + ACTIONS(1170), 1, anon_sym_SLASH, - STATE(378), 1, + STATE(388), 1, aux_sym_module_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1136), 13, + ACTIONS(1172), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_DOT, @@ -32632,7 +33534,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1138), 19, + ACTIONS(1174), 19, anon_sym_if, anon_sym_import, anon_sym_as, @@ -32652,56 +33554,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [32489] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1140), 1, - anon_sym_LPAREN, - STATE(418), 1, - sym_arguments, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(422), 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(420), 22, - 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_LT_GT, - anon_sym_DOT_DOT, - [32538] = 4, + [33482] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1129), 13, + ACTIONS(1159), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_DOT, @@ -32715,7 +33574,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1131), 20, + ACTIONS(1161), 20, anon_sym_if, anon_sym_import, anon_sym_as, @@ -32736,137 +33595,17 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [32583] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1146), 1, - anon_sym_DOT, - ACTIONS(1148), 1, - anon_sym_as, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1142), 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(1144), 18, - 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_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [32631] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(440), 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(438), 23, - 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_LT_GT, - anon_sym_DOT_DOT, - [32675] = 6, + [33527] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1154), 1, + ACTIONS(1176), 1, anon_sym_LPAREN, - STATE(462), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1150), 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(1152), 18, - 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_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [32723] = 4, - ACTIONS(3), 1, - sym_module_comment, + STATE(431), 1, + sym_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(452), 9, + ACTIONS(434), 9, anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, @@ -32876,10 +33615,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(450), 23, + ACTIONS(432), 22, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_GT_GT, @@ -32900,13 +33638,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [32767] = 4, + [33576] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(444), 9, + ACTIONS(458), 9, anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, @@ -32916,8 +33654,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(442), 23, + ACTIONS(456), 24, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, @@ -32940,13 +33679,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [32811] = 4, + [33621] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(502), 9, + ACTIONS(482), 9, anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, @@ -32956,7 +33695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(500), 23, + ACTIONS(480), 23, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -32980,13 +33719,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [32855] = 4, + [33665] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(494), 9, + ACTIONS(509), 9, anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, @@ -32996,7 +33735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(492), 23, + ACTIONS(507), 23, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -33020,55 +33759,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [32899] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(482), 1, - anon_sym_LPAREN, - ACTIONS(1156), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(476), 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(474), 22, - 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_LT_GT, - anon_sym_DOT_DOT, - [32947] = 4, + [33709] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(486), 9, + ACTIONS(497), 9, anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, @@ -33078,7 +33775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(484), 23, + ACTIONS(495), 23, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -33102,55 +33799,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [32991] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(482), 1, - anon_sym_LPAREN, - ACTIONS(1160), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(476), 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(474), 22, - 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_LT_GT, - anon_sym_DOT_DOT, - [33039] = 4, + [33753] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(448), 9, + ACTIONS(505), 9, anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, @@ -33160,7 +33815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(446), 23, + ACTIONS(503), 23, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -33184,13 +33839,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [33083] = 4, + [33797] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(506), 9, + ACTIONS(440), 9, anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, @@ -33200,7 +33855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(504), 23, + ACTIONS(438), 23, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -33224,13 +33879,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [33127] = 4, + [33841] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(498), 9, + ACTIONS(490), 9, anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, @@ -33240,7 +33895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(496), 23, + ACTIONS(488), 23, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -33264,213 +33919,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [33171] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1167), 1, - anon_sym_LPAREN, - STATE(468), 1, - sym_constant_record_arguments, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1163), 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(1165), 18, - 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_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [33219] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1173), 1, - anon_sym_LPAREN, - STATE(493), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1169), 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(1171), 18, - 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_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [33267] = 23, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(695), 1, - anon_sym_DASH, - ACTIONS(711), 1, - anon_sym_DQUOTE, - ACTIONS(717), 1, - sym__decimal, - ACTIONS(721), 1, - sym__name, - ACTIONS(723), 1, - sym__upname, - ACTIONS(1175), 1, - anon_sym_POUND, - ACTIONS(1177), 1, - anon_sym_RPAREN, - ACTIONS(1179), 1, - anon_sym_LBRACK, - ACTIONS(1181), 1, - anon_sym_LT_LT, - ACTIONS(1183), 1, - anon_sym_DOT_DOT, - ACTIONS(1185), 1, - sym_float, - ACTIONS(1187), 1, - sym__discard_name, - STATE(754), 1, - sym__pattern_binary_expression, - STATE(816), 1, - sym_identifier, - STATE(909), 1, - sym_record_pattern_argument, - STATE(1066), 1, - sym__pattern, - STATE(1268), 1, - sym_pattern_spread, - STATE(1269), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(682), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(715), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(826), 8, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_string, - sym_integer, - sym_discard, - [33348] = 23, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(695), 1, - anon_sym_DASH, - ACTIONS(711), 1, - anon_sym_DQUOTE, - ACTIONS(717), 1, - sym__decimal, - ACTIONS(721), 1, - sym__name, - ACTIONS(723), 1, - sym__upname, - ACTIONS(1175), 1, - anon_sym_POUND, - ACTIONS(1179), 1, - anon_sym_LBRACK, - ACTIONS(1181), 1, - anon_sym_LT_LT, - ACTIONS(1183), 1, - anon_sym_DOT_DOT, - ACTIONS(1185), 1, - sym_float, - ACTIONS(1187), 1, - sym__discard_name, - ACTIONS(1189), 1, - anon_sym_RPAREN, - STATE(754), 1, - sym__pattern_binary_expression, - STATE(816), 1, - sym_identifier, - STATE(970), 1, - sym_record_pattern_argument, - STATE(1066), 1, - sym__pattern, - STATE(1269), 1, - sym_label, - STATE(1282), 1, - sym_pattern_spread, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(682), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(715), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(826), 8, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_string, - sym_integer, - sym_discard, - [33429] = 4, + [33885] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1182), 1, + anon_sym_DOT, + ACTIONS(1184), 1, + anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1191), 12, + ACTIONS(1178), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -33483,10 +33942,9 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1193), 19, + ACTIONS(1180), 18, anon_sym_if, anon_sym_import, - anon_sym_as, anon_sym_const, anon_sym_DASH, anon_sym_fn, @@ -33503,15 +33961,14 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [33472] = 5, + [33933] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1195), 1, - anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(531), 8, + ACTIONS(466), 9, + anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -33520,9 +33977,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(529), 22, + ACTIONS(464), 23, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_GT_GT, @@ -33543,207 +34001,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [33517] = 4, + [33977] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1197), 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(1199), 18, - 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_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [33560] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(454), 1, + ACTIONS(474), 9, anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1201), 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(1203), 18, - 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_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [33605] = 23, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(695), 1, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(711), 1, - anon_sym_DQUOTE, - ACTIONS(717), 1, - sym__decimal, - ACTIONS(721), 1, - sym__name, - ACTIONS(723), 1, - sym__upname, - ACTIONS(1175), 1, - anon_sym_POUND, - ACTIONS(1179), 1, - anon_sym_LBRACK, - ACTIONS(1181), 1, - anon_sym_LT_LT, - ACTIONS(1183), 1, - anon_sym_DOT_DOT, - ACTIONS(1185), 1, - sym_float, - ACTIONS(1187), 1, - sym__discard_name, - ACTIONS(1205), 1, - anon_sym_RPAREN, - STATE(754), 1, - sym__pattern_binary_expression, - STATE(816), 1, - sym_identifier, - STATE(970), 1, - sym_record_pattern_argument, - STATE(1066), 1, - sym__pattern, - STATE(1269), 1, - sym_label, - STATE(1354), 1, - sym_pattern_spread, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(682), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(715), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(826), 8, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_string, - sym_integer, - sym_discard, - [33686] = 22, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(472), 23, + 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_LT_GT, + anon_sym_DOT_DOT, + [34021] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1175), 1, - anon_sym_POUND, - ACTIONS(1179), 1, - anon_sym_LBRACK, - ACTIONS(1181), 1, - anon_sym_LT_LT, - ACTIONS(1187), 1, - sym__discard_name, - ACTIONS(1207), 1, - anon_sym_DASH, - ACTIONS(1209), 1, - anon_sym_DQUOTE, - ACTIONS(1211), 1, - sym_float, - ACTIONS(1215), 1, - sym__decimal, - ACTIONS(1217), 1, - sym__name, - ACTIONS(1219), 1, - sym__upname, - STATE(754), 1, - sym__pattern_binary_expression, - STATE(860), 1, - sym_identifier, - STATE(906), 1, - sym__pattern, - STATE(967), 1, - sym_case_clause_pattern, - STATE(973), 1, - sym_case_clause_patterns, - STATE(1258), 1, - sym_case_clauses, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(427), 2, - sym_case_clause, - aux_sym_case_clauses_repeat1, - STATE(682), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1213), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(862), 8, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_string, - sym_integer, - sym_discard, - [33765] = 4, + ACTIONS(462), 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(460), 23, + 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_LT_GT, + anon_sym_DOT_DOT, + [34065] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1190), 1, + anon_sym_LPAREN, + STATE(539), 1, + sym_constant_record_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1221), 12, + ACTIONS(1186), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -33756,10 +34104,9 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1223), 19, + ACTIONS(1188), 18, anon_sym_if, anon_sym_import, - anon_sym_as, anon_sym_const, anon_sym_DASH, anon_sym_fn, @@ -33776,15 +34123,17 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [33808] = 5, + [34113] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1229), 1, - anon_sym_DOT, + ACTIONS(1196), 1, + anon_sym_LPAREN, + STATE(474), 1, + sym_type_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1225), 12, + ACTIONS(1192), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -33797,7 +34146,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1227), 18, + ACTIONS(1194), 18, anon_sym_if, anon_sym_import, anon_sym_const, @@ -33816,15 +34165,59 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [33853] = 5, + [34161] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1231), 1, + ACTIONS(454), 1, + anon_sym_LPAREN, + ACTIONS(1198), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(448), 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(446), 22, + 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_LT_GT, + anon_sym_DOT_DOT, + [34209] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(454), 1, + anon_sym_LPAREN, + ACTIONS(1202), 1, anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(476), 8, + ACTIONS(448), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -33833,7 +34226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(474), 22, + ACTIONS(446), 22, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -33856,55 +34249,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [33898] = 22, + [34257] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1175), 1, + ACTIONS(1209), 1, + anon_sym_LPAREN, + STATE(447), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1205), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, anon_sym_POUND, - ACTIONS(1179), 1, anon_sym_LBRACK, - ACTIONS(1181), 1, anon_sym_LT_LT, - ACTIONS(1187), 1, - sym__discard_name, - ACTIONS(1207), 1, - anon_sym_DASH, - ACTIONS(1209), 1, + anon_sym_BANG, anon_sym_DQUOTE, - ACTIONS(1211), 1, sym_float, - ACTIONS(1215), 1, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1207), 18, + 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_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(1217), 1, sym__name, + [34305] = 22, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1211), 1, + anon_sym_POUND, + ACTIONS(1213), 1, + anon_sym_LBRACK, + ACTIONS(1215), 1, + anon_sym_LT_LT, + ACTIONS(1217), 1, + anon_sym_DASH, ACTIONS(1219), 1, + anon_sym_DQUOTE, + ACTIONS(1221), 1, + sym_float, + ACTIONS(1225), 1, + sym__decimal, + ACTIONS(1227), 1, + sym__discard_name, + ACTIONS(1229), 1, + sym__name, + ACTIONS(1231), 1, sym__upname, - STATE(754), 1, + STATE(803), 1, sym__pattern_binary_expression, - STATE(860), 1, + STATE(861), 1, sym_identifier, - STATE(906), 1, + STATE(920), 1, sym__pattern, - STATE(967), 1, + STATE(937), 1, sym_case_clause_pattern, - STATE(973), 1, + STATE(1052), 1, sym_case_clause_patterns, - STATE(1360), 1, + STATE(1273), 1, sym_case_clauses, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(427), 2, + STATE(435), 2, sym_case_clause, aux_sym_case_clauses_repeat1, - STATE(682), 2, + STATE(702), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1213), 3, + ACTIONS(1223), 3, sym__hex, sym__octal, sym__binary, - STATE(862), 8, + STATE(901), 8, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -33913,78 +34348,96 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [33977] = 5, + [34384] = 23, ACTIONS(3), 1, sym_module_comment, + ACTIONS(647), 1, + anon_sym_DQUOTE, + ACTIONS(653), 1, + sym__decimal, + ACTIONS(657), 1, + sym__name, + ACTIONS(659), 1, + sym__upname, + ACTIONS(1211), 1, + anon_sym_POUND, + ACTIONS(1213), 1, + anon_sym_LBRACK, + ACTIONS(1215), 1, + anon_sym_LT_LT, + ACTIONS(1227), 1, + sym__discard_name, ACTIONS(1233), 1, - anon_sym_DOT, + anon_sym_RPAREN, + ACTIONS(1235), 1, + anon_sym_DASH, + ACTIONS(1237), 1, + anon_sym_DOT_DOT, + ACTIONS(1239), 1, + sym_float, + STATE(803), 1, + sym__pattern_binary_expression, + STATE(832), 1, + sym_identifier, + STATE(1045), 1, + sym__pattern, + STATE(1101), 1, + sym_record_pattern_argument, + STATE(1298), 1, + sym_label, + STATE(1359), 1, + sym_pattern_spread, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(476), 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(474), 22, - 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_LT_GT, - anon_sym_DOT_DOT, - [34022] = 11, + STATE(702), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(651), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(837), 8, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_string, + sym_integer, + sym_discard, + [34465] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(1237), 1, + ACTIONS(1243), 1, anon_sym_DASH, - ACTIONS(1239), 1, - anon_sym_size, ACTIONS(1245), 1, + anon_sym_size, + ACTIONS(1251), 1, anon_sym_unit, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1235), 2, + ACTIONS(1241), 2, anon_sym_COMMA, anon_sym_GT_GT, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - ACTIONS(1243), 3, + ACTIONS(1249), 3, anon_sym_utf8, anon_sym_utf16, anon_sym_utf32, - STATE(1064), 5, - sym__expression_bit_string_segment_option, - sym__expression_bit_string_named_segment_option, - sym__expression_bit_string_segment_option_size, + STATE(1135), 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(1241), 14, + ACTIONS(1247), 14, anon_sym_binary, anon_sym_bytes, anon_sym_int, @@ -33999,38 +34452,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_big, anon_sym_little, anon_sym_native, - [34079] = 11, + [34522] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(1237), 1, + ACTIONS(1243), 1, anon_sym_DASH, - ACTIONS(1239), 1, - anon_sym_size, - ACTIONS(1245), 1, + ACTIONS(1251), 1, anon_sym_unit, + ACTIONS(1255), 1, + anon_sym_size, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1247), 2, + ACTIONS(1253), 2, anon_sym_COMMA, anon_sym_GT_GT, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - ACTIONS(1243), 3, + ACTIONS(1249), 3, anon_sym_utf8, anon_sym_utf16, anon_sym_utf32, - STATE(1064), 5, - sym__expression_bit_string_segment_option, - sym__expression_bit_string_named_segment_option, - sym__expression_bit_string_segment_option_size, + STATE(1009), 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(1241), 14, + ACTIONS(1247), 14, anon_sym_binary, anon_sym_bytes, anon_sym_int, @@ -34045,15 +34498,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_big, anon_sym_little, anon_sym_native, - [34136] = 5, + [34579] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1257), 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(1259), 19, + 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_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [34622] = 22, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1211), 1, + anon_sym_POUND, + ACTIONS(1213), 1, + anon_sym_LBRACK, + ACTIONS(1215), 1, + anon_sym_LT_LT, + ACTIONS(1217), 1, + anon_sym_DASH, + ACTIONS(1219), 1, + anon_sym_DQUOTE, + ACTIONS(1221), 1, + sym_float, + ACTIONS(1225), 1, + sym__decimal, + ACTIONS(1227), 1, + sym__discard_name, + ACTIONS(1229), 1, + sym__name, + ACTIONS(1231), 1, + sym__upname, + STATE(803), 1, + sym__pattern_binary_expression, + STATE(861), 1, + sym_identifier, + STATE(920), 1, + sym__pattern, + STATE(937), 1, + sym_case_clause_pattern, + STATE(1052), 1, + sym_case_clause_patterns, + STATE(1387), 1, + sym_case_clauses, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(435), 2, + sym_case_clause, + aux_sym_case_clauses_repeat1, + STATE(702), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(1223), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(901), 8, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_string, + sym_integer, + sym_discard, + [34701] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(482), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1261), 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(1263), 18, + 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_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [34744] = 4, + ACTIONS(3), 1, + sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(476), 8, + ACTIONS(537), 9, + anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -34062,7 +34649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(474), 22, + ACTIONS(535), 22, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -34085,14 +34672,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [34181] = 4, + [34787] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(527), 9, - anon_sym_DOT, + ACTIONS(523), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -34101,181 +34687,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(525), 22, + ACTIONS(521), 23, 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_LT_GT, - anon_sym_DOT_DOT, - [34224] = 22, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1175), 1, - anon_sym_POUND, - ACTIONS(1179), 1, - anon_sym_LBRACK, - ACTIONS(1181), 1, - anon_sym_LT_LT, - ACTIONS(1187), 1, - sym__discard_name, - ACTIONS(1207), 1, - anon_sym_DASH, - ACTIONS(1209), 1, - anon_sym_DQUOTE, - ACTIONS(1211), 1, - sym_float, - ACTIONS(1215), 1, - sym__decimal, - ACTIONS(1217), 1, - sym__name, - ACTIONS(1219), 1, - sym__upname, - STATE(754), 1, - sym__pattern_binary_expression, - STATE(860), 1, - sym_identifier, - STATE(906), 1, - sym__pattern, - STATE(967), 1, - sym_case_clause_pattern, - STATE(973), 1, - sym_case_clause_patterns, - STATE(1362), 1, - sym_case_clauses, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(427), 2, - sym_case_clause, - aux_sym_case_clauses_repeat1, - STATE(682), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1213), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(862), 8, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_string, - sym_integer, - sym_discard, - [34303] = 11, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(717), 1, - sym__decimal, - ACTIONS(1237), 1, - anon_sym_DASH, - ACTIONS(1245), 1, - anon_sym_unit, - ACTIONS(1251), 1, - anon_sym_size, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1249), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - ACTIONS(715), 3, - sym__hex, - sym__octal, - sym__binary, - ACTIONS(1243), 3, - anon_sym_utf8, - anon_sym_utf16, - anon_sym_utf32, - STATE(990), 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(1241), 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, - [34360] = 22, + 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_LT_GT, + anon_sym_DOT_DOT, + [34830] = 22, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1253), 1, - anon_sym_RBRACE, - ACTIONS(1255), 1, + ACTIONS(1211), 1, anon_sym_POUND, - ACTIONS(1258), 1, + ACTIONS(1213), 1, anon_sym_LBRACK, - ACTIONS(1261), 1, + ACTIONS(1215), 1, anon_sym_LT_LT, - ACTIONS(1264), 1, + ACTIONS(1217), 1, anon_sym_DASH, - ACTIONS(1267), 1, + ACTIONS(1219), 1, anon_sym_DQUOTE, - ACTIONS(1270), 1, + ACTIONS(1221), 1, sym_float, - ACTIONS(1276), 1, + ACTIONS(1225), 1, sym__decimal, - ACTIONS(1279), 1, + ACTIONS(1227), 1, sym__discard_name, - ACTIONS(1282), 1, + ACTIONS(1229), 1, sym__name, - ACTIONS(1285), 1, + ACTIONS(1231), 1, sym__upname, - STATE(754), 1, + STATE(803), 1, sym__pattern_binary_expression, - STATE(860), 1, + STATE(861), 1, sym_identifier, - STATE(906), 1, + STATE(920), 1, sym__pattern, - STATE(967), 1, + STATE(937), 1, sym_case_clause_pattern, - STATE(973), 1, + STATE(1052), 1, sym_case_clause_patterns, + STATE(1382), 1, + sym_case_clauses, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(417), 2, + STATE(435), 2, sym_case_clause, aux_sym_case_clauses_repeat1, - STATE(682), 2, + STATE(702), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1273), 3, + ACTIONS(1223), 3, sym__hex, sym__octal, sym__binary, - STATE(862), 8, + STATE(901), 8, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -34284,13 +34768,13 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [34439] = 4, + [34909] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(541), 9, + ACTIONS(549), 9, anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, @@ -34300,7 +34784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(539), 22, + ACTIONS(547), 22, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -34323,54 +34807,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [34482] = 5, + [34952] = 22, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1292), 1, - anon_sym_as, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1288), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1265), 1, + anon_sym_RBRACE, + ACTIONS(1267), 1, anon_sym_POUND, + ACTIONS(1270), 1, anon_sym_LBRACK, + ACTIONS(1273), 1, anon_sym_LT_LT, - anon_sym_BANG, + ACTIONS(1276), 1, + anon_sym_DASH, + ACTIONS(1279), 1, anon_sym_DQUOTE, + ACTIONS(1282), 1, sym_float, + ACTIONS(1288), 1, + sym__decimal, + ACTIONS(1291), 1, + sym__discard_name, + ACTIONS(1294), 1, + sym__name, + ACTIONS(1297), 1, + sym__upname, + STATE(803), 1, + sym__pattern_binary_expression, + STATE(861), 1, + sym_identifier, + STATE(920), 1, + sym__pattern, + STATE(937), 1, + sym_case_clause_pattern, + STATE(1052), 1, + sym_case_clause_patterns, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(420), 2, + sym_case_clause, + aux_sym_case_clauses_repeat1, + STATE(702), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(1285), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - ACTIONS(1290), 18, - 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_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [34527] = 4, + STATE(901), 8, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_string, + sym_integer, + sym_discard, + [35031] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(547), 9, - anon_sym_DOT, + ACTIONS(531), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -34379,9 +34879,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(545), 22, + ACTIONS(529), 23, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_GT_GT, @@ -34402,13 +34903,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [34570] = 4, + [35074] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(551), 8, + ACTIONS(513), 9, + anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -34417,10 +34919,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(549), 23, + ACTIONS(511), 22, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_GT_GT, @@ -34441,84 +34942,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [34613] = 11, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(717), 1, - sym__decimal, - ACTIONS(1237), 1, - anon_sym_DASH, - ACTIONS(1245), 1, - anon_sym_unit, - ACTIONS(1296), 1, - anon_sym_size, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1294), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - ACTIONS(715), 3, - sym__hex, - sym__octal, - sym__binary, - ACTIONS(1243), 3, - anon_sym_utf8, - anon_sym_utf16, - anon_sym_utf32, - STATE(1034), 5, - sym__pattern_bit_string_segment_option, - sym__pattern_bit_string_named_segment_option, - sym__pattern_bit_string_segment_option_size, - sym_integer, - sym__bit_string_segment_option, - ACTIONS(1241), 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, - [34670] = 11, + [35117] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(1237), 1, + ACTIONS(1243), 1, anon_sym_DASH, - ACTIONS(1245), 1, + ACTIONS(1251), 1, anon_sym_unit, - ACTIONS(1296), 1, + ACTIONS(1302), 1, anon_sym_size, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1298), 2, + ACTIONS(1300), 2, anon_sym_COMMA, anon_sym_GT_GT, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - ACTIONS(1243), 3, + ACTIONS(1249), 3, anon_sym_utf8, anon_sym_utf16, anon_sym_utf32, - STATE(1034), 5, - sym__pattern_bit_string_segment_option, - sym__pattern_bit_string_named_segment_option, - sym__pattern_bit_string_segment_option_size, + STATE(1106), 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(1241), 14, + ACTIONS(1247), 14, anon_sym_binary, anon_sym_bytes, anon_sym_int, @@ -34533,13 +34988,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_big, anon_sym_little, anon_sym_native, - [34727] = 4, + [35174] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(519), 9, + ACTIONS(527), 9, anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, @@ -34549,7 +35004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(517), 22, + ACTIONS(525), 22, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -34572,77 +35027,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [34770] = 4, + [35217] = 22, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1211), 1, + anon_sym_POUND, + ACTIONS(1213), 1, + anon_sym_LBRACK, + ACTIONS(1215), 1, + anon_sym_LT_LT, + ACTIONS(1217), 1, + anon_sym_DASH, + ACTIONS(1219), 1, + anon_sym_DQUOTE, + ACTIONS(1221), 1, + sym_float, + ACTIONS(1225), 1, + sym__decimal, + ACTIONS(1227), 1, + sym__discard_name, + ACTIONS(1229), 1, + sym__name, + ACTIONS(1231), 1, + sym__upname, + STATE(803), 1, + sym__pattern_binary_expression, + STATE(861), 1, + sym_identifier, + STATE(920), 1, + sym__pattern, + STATE(937), 1, + sym_case_clause_pattern, + STATE(1052), 1, + sym_case_clause_patterns, + STATE(1311), 1, + sym_case_clauses, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(515), 9, - anon_sym_DOT, - anon_sym_SLASH, + STATE(435), 2, + sym_case_clause, + aux_sym_case_clauses_repeat1, + STATE(702), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(1223), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(901), 8, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_string, + sym_integer, + sym_discard, + [35296] = 23, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(647), 1, + anon_sym_DQUOTE, + ACTIONS(653), 1, + sym__decimal, + ACTIONS(657), 1, + sym__name, + ACTIONS(659), 1, + sym__upname, + ACTIONS(1211), 1, + anon_sym_POUND, + ACTIONS(1213), 1, + anon_sym_LBRACK, + ACTIONS(1215), 1, + anon_sym_LT_LT, + ACTIONS(1227), 1, + sym__discard_name, + ACTIONS(1235), 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(513), 22, - 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_LT_GT, + ACTIONS(1237), 1, anon_sym_DOT_DOT, - [34813] = 11, + ACTIONS(1239), 1, + sym_float, + ACTIONS(1304), 1, + anon_sym_RPAREN, + STATE(803), 1, + sym__pattern_binary_expression, + STATE(832), 1, + sym_identifier, + STATE(909), 1, + sym_record_pattern_argument, + STATE(1045), 1, + sym__pattern, + STATE(1293), 1, + sym_pattern_spread, + STATE(1298), 1, + sym_label, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(702), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(651), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(837), 8, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_string, + sym_integer, + sym_discard, + [35377] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(1237), 1, + ACTIONS(1243), 1, anon_sym_DASH, ACTIONS(1245), 1, - anon_sym_unit, - ACTIONS(1251), 1, anon_sym_size, + ACTIONS(1251), 1, + anon_sym_unit, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1300), 2, + ACTIONS(1306), 2, anon_sym_COMMA, anon_sym_GT_GT, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - ACTIONS(1243), 3, + ACTIONS(1249), 3, anon_sym_utf8, anon_sym_utf16, anon_sym_utf32, - STATE(990), 5, + STATE(1135), 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(1241), 14, + ACTIONS(1247), 14, anon_sym_binary, anon_sym_bytes, anon_sym_int, @@ -34657,70 +35188,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_big, anon_sym_little, anon_sym_native, - [34870] = 22, + [35434] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1175), 1, + ACTIONS(1312), 1, + anon_sym_as, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1308), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, anon_sym_POUND, - ACTIONS(1179), 1, anon_sym_LBRACK, - ACTIONS(1181), 1, anon_sym_LT_LT, - ACTIONS(1187), 1, - sym__discard_name, - ACTIONS(1207), 1, - anon_sym_DASH, - ACTIONS(1209), 1, + anon_sym_BANG, anon_sym_DQUOTE, - ACTIONS(1211), 1, sym_float, - ACTIONS(1215), 1, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1310), 18, + 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_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(1217), 1, sym__name, - ACTIONS(1219), 1, - sym__upname, + [35479] = 11, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(653), 1, + sym__decimal, + ACTIONS(1243), 1, + anon_sym_DASH, + ACTIONS(1251), 1, + anon_sym_unit, ACTIONS(1302), 1, - anon_sym_RBRACE, - STATE(754), 1, - sym__pattern_binary_expression, - STATE(860), 1, - sym_identifier, - STATE(906), 1, - sym__pattern, - STATE(967), 1, - sym_case_clause_pattern, - STATE(973), 1, - sym_case_clause_patterns, + anon_sym_size, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(417), 2, - sym_case_clause, - aux_sym_case_clauses_repeat1, - STATE(682), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1213), 3, + ACTIONS(1314), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(862), 8, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_string, + ACTIONS(1249), 3, + anon_sym_utf8, + anon_sym_utf16, + anon_sym_utf32, + STATE(1106), 5, + sym__expression_bit_string_segment_option, + sym__expression_bit_string_named_segment_option, + sym__expression_bit_string_segment_option_size, sym_integer, - sym_discard, - [34949] = 4, + sym__bit_string_segment_option, + ACTIONS(1247), 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, + [35536] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(523), 8, + ACTIONS(541), 9, + anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -34729,10 +35290,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(521), 23, + ACTIONS(539), 22, + 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_LT_GT, + anon_sym_DOT_DOT, + [35579] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(545), 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(543), 22, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_GT_GT, @@ -34753,74 +35352,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [34992] = 22, + [35622] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1175), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1316), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, anon_sym_POUND, - ACTIONS(1179), 1, anon_sym_LBRACK, - ACTIONS(1181), 1, anon_sym_LT_LT, - ACTIONS(1187), 1, - sym__discard_name, - ACTIONS(1207), 1, - anon_sym_DASH, - ACTIONS(1209), 1, + anon_sym_BANG, anon_sym_DQUOTE, - ACTIONS(1211), 1, sym_float, - ACTIONS(1215), 1, - sym__decimal, - ACTIONS(1217), 1, - sym__name, - ACTIONS(1219), 1, - sym__upname, - STATE(754), 1, - sym__pattern_binary_expression, - STATE(860), 1, - sym_identifier, - STATE(906), 1, - sym__pattern, - STATE(967), 1, - sym_case_clause_pattern, - STATE(973), 1, - sym_case_clause_patterns, - STATE(1287), 1, - sym_case_clauses, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(427), 2, - sym_case_clause, - aux_sym_case_clauses_repeat1, - STATE(682), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1213), 3, sym__hex, sym__octal, sym__binary, - STATE(862), 8, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_string, - sym_integer, - sym_discard, - [35071] = 4, + sym__upname, + ACTIONS(1318), 19, + 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_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [35665] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1324), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1304), 13, + ACTIONS(1320), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_BANG, @@ -34830,7 +35412,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1306), 18, + ACTIONS(1322), 18, anon_sym_if, anon_sym_import, anon_sym_const, @@ -34849,16 +35431,17 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [35114] = 4, + [35710] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1308), 12, + ACTIONS(1326), 13, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_BANG, @@ -34867,35 +35450,92 @@ static const uint16_t ts_small_parse_table[] = { sym__hex, sym__octal, sym__binary, - sym__upname, - ACTIONS(1310), 19, - 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_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [35157] = 4, + sym__upname, + ACTIONS(1328), 18, + 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_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [35753] = 22, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1211), 1, + anon_sym_POUND, + ACTIONS(1213), 1, + anon_sym_LBRACK, + ACTIONS(1215), 1, + anon_sym_LT_LT, + ACTIONS(1217), 1, + anon_sym_DASH, + ACTIONS(1219), 1, + anon_sym_DQUOTE, + ACTIONS(1221), 1, + sym_float, + ACTIONS(1225), 1, + sym__decimal, + ACTIONS(1227), 1, + sym__discard_name, + ACTIONS(1229), 1, + sym__name, + ACTIONS(1231), 1, + sym__upname, + ACTIONS(1330), 1, + anon_sym_RBRACE, + STATE(803), 1, + sym__pattern_binary_expression, + STATE(861), 1, + sym_identifier, + STATE(920), 1, + sym__pattern, + STATE(937), 1, + sym_case_clause_pattern, + STATE(1052), 1, + sym_case_clause_patterns, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(420), 2, + sym_case_clause, + aux_sym_case_clauses_repeat1, + STATE(702), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(1223), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(901), 8, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_string, + sym_integer, + sym_discard, + [35832] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(454), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(537), 9, - anon_sym_DOT, + ACTIONS(448), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -34904,7 +35544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(535), 22, + ACTIONS(446), 22, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -34927,13 +35567,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [35200] = 4, + [35877] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1312), 12, + ACTIONS(1332), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -34946,7 +35586,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1314), 19, + ACTIONS(1334), 19, anon_sym_if, anon_sym_import, anon_sym_as, @@ -34966,13 +35606,15 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [35243] = 4, + [35920] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1336), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(679), 8, + ACTIONS(448), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -34981,7 +35623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(677), 22, + ACTIONS(446), 22, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -35004,28 +35646,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [35285] = 6, + [35965] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1338), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1316), 2, + ACTIONS(448), 8, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1318), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(555), 6, anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_PLUS, - ACTIONS(553), 18, + anon_sym_STAR, + ACTIONS(446), 22, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -35043,14 +35681,20 @@ 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_LT_GT, anon_sym_DOT_DOT, - [35331] = 4, + [36010] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1340), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(595), 8, + ACTIONS(517), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -35059,7 +35703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(593), 22, + ACTIONS(515), 22, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -35082,13 +35726,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [35373] = 4, + [36055] = 23, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(647), 1, + anon_sym_DQUOTE, + ACTIONS(653), 1, + sym__decimal, + ACTIONS(657), 1, + sym__name, + ACTIONS(659), 1, + sym__upname, + ACTIONS(1211), 1, + anon_sym_POUND, + ACTIONS(1213), 1, + anon_sym_LBRACK, + ACTIONS(1215), 1, + anon_sym_LT_LT, + ACTIONS(1227), 1, + sym__discard_name, + ACTIONS(1235), 1, + anon_sym_DASH, + ACTIONS(1237), 1, + anon_sym_DOT_DOT, + ACTIONS(1239), 1, + sym_float, + ACTIONS(1342), 1, + anon_sym_RPAREN, + STATE(803), 1, + sym__pattern_binary_expression, + STATE(832), 1, + sym_identifier, + STATE(1045), 1, + sym__pattern, + STATE(1101), 1, + sym_record_pattern_argument, + STATE(1298), 1, + sym_label, + STATE(1342), 1, + sym_pattern_spread, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(702), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(651), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(837), 8, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_string, + sym_integer, + sym_discard, + [36136] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1320), 12, + ACTIONS(1344), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -35101,9 +35803,10 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1322), 18, + ACTIONS(1346), 19, anon_sym_if, anon_sym_import, + anon_sym_as, anon_sym_const, anon_sym_DASH, anon_sym_fn, @@ -35120,98 +35823,99 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [35415] = 13, + [36179] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1326), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1328), 1, - anon_sym_AMP_AMP, - ACTIONS(1336), 1, - anon_sym_PIPE_GT, + ACTIONS(653), 1, + sym__decimal, + ACTIONS(1243), 1, + anon_sym_DASH, + ACTIONS(1251), 1, + anon_sym_unit, + ACTIONS(1255), 1, + anon_sym_size, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1316), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1324), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1330), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1338), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1318), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(1332), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1334), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(625), 7, - anon_sym_LBRACE, + ACTIONS(1348), 2, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_DOT_DOT, - [35475] = 4, + ACTIONS(651), 3, + sym__hex, + sym__octal, + sym__binary, + ACTIONS(1249), 3, + anon_sym_utf8, + anon_sym_utf16, + anon_sym_utf32, + STATE(1009), 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(1247), 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, + [36236] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(442), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(655), 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(653), 22, + ACTIONS(1350), 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_LT_GT, - anon_sym_DOT_DOT, - [35517] = 4, + 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(1352), 18, + 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_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [36281] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(659), 8, + ACTIONS(737), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -35220,7 +35924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(657), 22, + ACTIONS(735), 22, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -35243,22 +35947,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [35559] = 4, + [36323] = 6, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(651), 8, + ACTIONS(1354), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1356), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(683), 6, anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(649), 22, + ACTIONS(681), 18, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -35276,65 +35986,52 @@ 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_LT_GT, anon_sym_DOT_DOT, - [35601] = 13, + [36369] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1326), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1328), 1, - anon_sym_AMP_AMP, - ACTIONS(1336), 1, - anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1316), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1324), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1330), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1338), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1318), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(1332), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1334), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(641), 7, + ACTIONS(1358), 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_DOT_DOT, - [35661] = 4, + 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(1360), 18, + 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_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [36411] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1340), 12, + ACTIONS(1362), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -35347,7 +36044,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1342), 18, + ACTIONS(1364), 18, anon_sym_if, anon_sym_import, anon_sym_const, @@ -35366,13 +36063,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [35703] = 4, + [36453] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1344), 12, + ACTIONS(1366), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -35385,7 +36082,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1346), 18, + ACTIONS(1368), 18, anon_sym_if, anon_sym_import, anon_sym_const, @@ -35404,13 +36101,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [35745] = 4, + [36495] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1348), 12, + ACTIONS(1370), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -35423,7 +36120,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1350), 18, + ACTIONS(1372), 18, anon_sym_if, anon_sym_import, anon_sym_const, @@ -35442,96 +36139,89 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [35787] = 4, + [36537] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(647), 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(645), 22, + ACTIONS(1374), 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_LT_GT, - anon_sym_DOT_DOT, - [35829] = 11, + 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(1376), 18, + 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_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [36579] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(717), 1, - sym__decimal, - ACTIONS(1237), 1, - anon_sym_DASH, - ACTIONS(1245), 1, - anon_sym_unit, - ACTIONS(1296), 1, - anon_sym_size, - STATE(1211), 1, - sym_pattern_bit_string_segment_options, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(715), 3, + ACTIONS(1378), 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(1243), 3, - anon_sym_utf8, - anon_sym_utf16, - anon_sym_utf32, - STATE(921), 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(1241), 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, - [35885] = 4, + sym__upname, + ACTIONS(1380), 18, + 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_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [36621] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1352), 12, + ACTIONS(1382), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -35544,7 +36234,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1354), 18, + ACTIONS(1384), 18, anon_sym_if, anon_sym_import, anon_sym_const, @@ -35563,13 +36253,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [35927] = 4, + [36663] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1356), 12, + ACTIONS(1386), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -35582,7 +36272,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1358), 18, + ACTIONS(1388), 18, anon_sym_if, anon_sym_import, anon_sym_const, @@ -35601,37 +36291,37 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [35969] = 11, + [36705] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(1237), 1, + ACTIONS(1243), 1, anon_sym_DASH, ACTIONS(1245), 1, - anon_sym_unit, - ACTIONS(1251), 1, anon_sym_size, - STATE(1155), 1, + ACTIONS(1251), 1, + anon_sym_unit, + STATE(1169), 1, sym_constant_bit_string_segment_options, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - ACTIONS(1243), 3, + ACTIONS(1249), 3, anon_sym_utf8, anon_sym_utf16, anon_sym_utf32, - STATE(956), 5, + STATE(971), 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(1241), 14, + ACTIONS(1247), 14, anon_sym_binary, anon_sym_bytes, anon_sym_int, @@ -35646,51 +36336,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_big, anon_sym_little, anon_sym_native, - [36025] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(631), 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(629), 22, - 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_LT_GT, - anon_sym_DOT_DOT, - [36067] = 4, + [36761] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1360), 12, + ACTIONS(1390), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -35703,7 +36355,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1362), 18, + ACTIONS(1392), 18, anon_sym_if, anon_sym_import, anon_sym_const, @@ -35722,51 +36374,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [36109] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(635), 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(633), 22, - 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_LT_GT, - anon_sym_DOT_DOT, - [36151] = 4, + [36803] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1364), 12, + ACTIONS(1394), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -35779,7 +36393,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1366), 18, + ACTIONS(1396), 18, anon_sym_if, anon_sym_import, anon_sym_const, @@ -35798,13 +36412,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [36193] = 4, + [36845] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1368), 12, + ACTIONS(1398), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -35817,7 +36431,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1370), 18, + ACTIONS(1400), 18, anon_sym_if, anon_sym_import, anon_sym_const, @@ -35836,13 +36450,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [36235] = 4, + [36887] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1372), 12, + ACTIONS(1402), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -35855,7 +36469,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1374), 18, + ACTIONS(1404), 18, anon_sym_if, anon_sym_import, anon_sym_const, @@ -35874,13 +36488,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [36277] = 4, + [36929] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1376), 12, + ACTIONS(1406), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -35893,7 +36507,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1378), 18, + ACTIONS(1408), 18, anon_sym_if, anon_sym_import, anon_sym_const, @@ -35912,51 +36526,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [36319] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(611), 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(609), 22, - 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_LT_GT, - anon_sym_DOT_DOT, - [36361] = 4, + [36971] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1380), 12, + ACTIONS(1410), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -35969,7 +36545,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1382), 18, + ACTIONS(1412), 18, anon_sym_if, anon_sym_import, anon_sym_const, @@ -35988,13 +36564,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [36403] = 4, + [37013] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1384), 12, + ACTIONS(1414), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -36007,7 +36583,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1386), 18, + ACTIONS(1416), 18, anon_sym_if, anon_sym_import, anon_sym_const, @@ -36026,13 +36602,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [36445] = 4, + [37055] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1388), 12, + ACTIONS(1418), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -36045,7 +36621,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1390), 18, + ACTIONS(1420), 18, anon_sym_if, anon_sym_import, anon_sym_const, @@ -36064,13 +36640,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [36487] = 4, + [37097] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1392), 12, + ACTIONS(1422), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -36083,7 +36659,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1394), 18, + ACTIONS(1424), 18, anon_sym_if, anon_sym_import, anon_sym_const, @@ -36102,13 +36678,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [36529] = 4, + [37139] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1396), 12, + ACTIONS(1426), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -36121,7 +36697,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1398), 18, + ACTIONS(1428), 18, anon_sym_if, anon_sym_import, anon_sym_const, @@ -36140,13 +36716,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [36571] = 4, + [37181] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1400), 12, + ACTIONS(1430), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -36159,7 +36735,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1402), 18, + ACTIONS(1432), 18, anon_sym_if, anon_sym_import, anon_sym_const, @@ -36178,13 +36754,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [36613] = 4, + [37223] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1404), 12, + ACTIONS(1434), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -36197,7 +36773,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1406), 18, + ACTIONS(1436), 18, anon_sym_if, anon_sym_import, anon_sym_const, @@ -36216,13 +36792,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [36655] = 4, + [37265] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1408), 12, + ACTIONS(1438), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -36235,7 +36811,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1410), 18, + ACTIONS(1440), 18, anon_sym_if, anon_sym_import, anon_sym_const, @@ -36254,13 +36830,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [36697] = 4, + [37307] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1412), 12, + ACTIONS(1442), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -36273,7 +36849,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1414), 18, + ACTIONS(1444), 18, anon_sym_if, anon_sym_import, anon_sym_const, @@ -36292,13 +36868,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [36739] = 4, + [37349] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1416), 12, + ACTIONS(1446), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -36311,7 +36887,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1418), 18, + ACTIONS(1448), 18, anon_sym_if, anon_sym_import, anon_sym_const, @@ -36330,13 +36906,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [36781] = 4, + [37391] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1420), 12, + ACTIONS(1450), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -36349,7 +36925,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1422), 18, + ACTIONS(1452), 18, anon_sym_if, anon_sym_import, anon_sym_const, @@ -36368,13 +36944,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [36823] = 4, + [37433] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1424), 12, + ACTIONS(1454), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -36387,7 +36963,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1426), 18, + ACTIONS(1456), 18, anon_sym_if, anon_sym_import, anon_sym_const, @@ -36406,37 +36982,37 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [36865] = 11, + [37475] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(1237), 1, + ACTIONS(1243), 1, anon_sym_DASH, - ACTIONS(1239), 1, - anon_sym_size, - ACTIONS(1245), 1, + ACTIONS(1251), 1, anon_sym_unit, - STATE(1213), 1, - sym_expression_bit_string_segment_options, + ACTIONS(1255), 1, + anon_sym_size, + STATE(1238), 1, + sym_pattern_bit_string_segment_options, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - ACTIONS(1243), 3, + ACTIONS(1249), 3, anon_sym_utf8, anon_sym_utf16, anon_sym_utf32, - STATE(923), 5, - sym__expression_bit_string_segment_option, - sym__expression_bit_string_named_segment_option, - sym__expression_bit_string_segment_option_size, + STATE(976), 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(1241), 14, + ACTIONS(1247), 14, anon_sym_binary, anon_sym_bytes, anon_sym_int, @@ -36451,13 +37027,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_big, anon_sym_little, anon_sym_native, - [36921] = 4, + [37531] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1428), 12, + ACTIONS(1458), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -36470,7 +37046,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1430), 18, + ACTIONS(1460), 18, anon_sym_if, anon_sym_import, anon_sym_const, @@ -36489,13 +37065,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [36963] = 4, + [37573] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1432), 12, + ACTIONS(1462), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -36508,7 +37084,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1434), 18, + ACTIONS(1464), 18, anon_sym_if, anon_sym_import, anon_sym_const, @@ -36527,55 +37103,89 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [37005] = 8, + [37615] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1316), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1324), 2, + ACTIONS(1466), 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(1468), 18, + anon_sym_if, + anon_sym_import, + anon_sym_const, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1338), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(555), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1318), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(553), 16, + anon_sym_fn, + anon_sym_external, + anon_sym_type, + anon_sym_try, + anon_sym_todo, + anon_sym_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [37657] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1470), 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_DOT_DOT, - [37055] = 4, + 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(1472), 18, + 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_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [37699] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1436), 12, + ACTIONS(1474), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -36588,7 +37198,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1438), 18, + ACTIONS(1476), 18, anon_sym_if, anon_sym_import, anon_sym_const, @@ -36607,13 +37217,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [37097] = 4, + [37741] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1440), 12, + ACTIONS(1478), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -36626,7 +37236,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1442), 18, + ACTIONS(1480), 18, anon_sym_if, anon_sym_import, anon_sym_const, @@ -36645,34 +37255,98 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [37139] = 9, + [37783] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1336), 1, - anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1316), 2, + ACTIONS(745), 8, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1324), 2, anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, anon_sym_PLUS, - ACTIONS(1338), 2, + anon_sym_STAR, + ACTIONS(743), 22, + 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, - ACTIONS(555), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [37825] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(721), 8, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1318), 4, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(719), 22, + 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_LT_GT, - ACTIONS(553), 15, + anon_sym_DOT_DOT, + [37867] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(555), 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(553), 22, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -36687,78 +37361,144 @@ 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_LT_GT, anon_sym_DOT_DOT, - [37191] = 4, + [37909] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1444), 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(1446), 18, - anon_sym_if, - anon_sym_import, - anon_sym_const, + ACTIONS(712), 8, + anon_sym_SLASH, anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_type, - anon_sym_try, - anon_sym_todo, - anon_sym_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [37233] = 10, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(709), 22, + 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_LT_GT, + anon_sym_DOT_DOT, + [37951] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1336), 1, - anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1316), 2, + ACTIONS(707), 8, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1324), 2, anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, anon_sym_PLUS, - ACTIONS(1338), 2, + anon_sym_STAR, + ACTIONS(705), 22, + 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, - ACTIONS(1318), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(1332), 4, + anon_sym_DOT_DOT, + [37993] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(615), 8, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1334), 4, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(613), 22, + 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, - ACTIONS(553), 11, + 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_LT_GT, + anon_sym_DOT_DOT, + [38035] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(663), 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(661), 22, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -36769,14 +37509,25 @@ 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_LT_GT, anon_sym_DOT_DOT, - [37287] = 4, + [38077] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1448), 12, + ACTIONS(1482), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -36789,7 +37540,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1450), 18, + ACTIONS(1484), 18, anon_sym_if, anon_sym_import, anon_sym_const, @@ -36808,13 +37559,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [37329] = 4, + [38119] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1452), 12, + ACTIONS(1486), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -36827,7 +37578,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1454), 18, + ACTIONS(1488), 18, anon_sym_if, anon_sym_import, anon_sym_const, @@ -36846,104 +37597,89 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [37371] = 11, + [38161] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1336), 1, - anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1316), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1324), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1330), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1338), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1318), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(1332), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1334), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(553), 9, + ACTIONS(1490), 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_DOT_DOT, - [37427] = 12, + 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(1492), 18, + 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_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [38203] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1328), 1, - anon_sym_AMP_AMP, - ACTIONS(1336), 1, - anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1316), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1324), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1330), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1338), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1318), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(1332), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1334), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(553), 8, + ACTIONS(1494), 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_DOT_DOT, - [37485] = 4, + 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(1496), 18, + 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_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [38245] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1456), 12, + ACTIONS(1498), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -36956,7 +37692,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1458), 18, + ACTIONS(1500), 18, anon_sym_if, anon_sym_import, anon_sym_const, @@ -36975,89 +37711,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [37527] = 4, + [38287] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(663), 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(661), 22, - 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_LT_GT, - anon_sym_DOT_DOT, - [37569] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(555), 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(553), 22, - 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_LT_GT, - anon_sym_DOT_DOT, - [37611] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1460), 12, + ACTIONS(1502), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -37070,7 +37730,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1462), 18, + ACTIONS(1504), 18, anon_sym_if, anon_sym_import, anon_sym_const, @@ -37089,13 +37749,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [37653] = 4, + [38329] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1464), 12, + ACTIONS(1506), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -37108,7 +37768,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1466), 18, + ACTIONS(1508), 18, anon_sym_if, anon_sym_import, anon_sym_const, @@ -37127,51 +37787,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [37695] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(671), 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(669), 22, - 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_LT_GT, - anon_sym_DOT_DOT, - [37737] = 4, + [38371] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1468), 12, + ACTIONS(1510), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -37184,7 +37806,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1470), 18, + ACTIONS(1512), 18, anon_sym_if, anon_sym_import, anon_sym_const, @@ -37203,13 +37825,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [37779] = 4, + [38413] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1472), 12, + ACTIONS(1514), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -37222,7 +37844,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1474), 18, + ACTIONS(1516), 18, anon_sym_if, anon_sym_import, anon_sym_const, @@ -37241,13 +37863,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [37821] = 4, + [38455] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1476), 12, + ACTIONS(1518), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -37260,7 +37882,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1478), 18, + ACTIONS(1520), 18, anon_sym_if, anon_sym_import, anon_sym_const, @@ -37279,13 +37901,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [37863] = 4, + [38497] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1480), 12, + ACTIONS(1522), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -37298,7 +37920,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1482), 18, + ACTIONS(1524), 18, anon_sym_if, anon_sym_import, anon_sym_const, @@ -37317,13 +37939,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [37905] = 4, + [38539] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1484), 12, + ACTIONS(1526), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -37336,7 +37958,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1486), 18, + ACTIONS(1528), 18, anon_sym_if, anon_sym_import, anon_sym_const, @@ -37355,13 +37977,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [37947] = 4, + [38581] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1488), 12, + ACTIONS(1530), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -37374,7 +37996,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1490), 18, + ACTIONS(1532), 18, anon_sym_if, anon_sym_import, anon_sym_const, @@ -37393,13 +38015,51 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [37989] = 4, + [38623] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1492), 12, + ACTIONS(687), 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(685), 22, + 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_LT_GT, + anon_sym_DOT_DOT, + [38665] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1534), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -37412,7 +38072,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1494), 18, + ACTIONS(1536), 18, anon_sym_if, anon_sym_import, anon_sym_const, @@ -37431,13 +38091,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [38031] = 4, + [38707] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(591), 8, + ACTIONS(683), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -37446,7 +38106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(589), 22, + ACTIONS(681), 22, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -37469,13 +38129,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [38073] = 4, + [38749] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1496), 12, + ACTIONS(1538), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -37488,7 +38148,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1498), 18, + ACTIONS(1540), 18, anon_sym_if, anon_sym_import, anon_sym_const, @@ -37507,13 +38167,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [38115] = 4, + [38791] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1500), 12, + ACTIONS(1542), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -37526,7 +38186,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1502), 18, + ACTIONS(1544), 18, anon_sym_if, anon_sym_import, anon_sym_const, @@ -37545,51 +38205,58 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [38157] = 4, + [38833] = 11, ACTIONS(3), 1, sym_module_comment, + ACTIONS(653), 1, + sym__decimal, + ACTIONS(1243), 1, + anon_sym_DASH, + ACTIONS(1251), 1, + anon_sym_unit, + ACTIONS(1302), 1, + anon_sym_size, + STATE(1225), 1, + sym_expression_bit_string_segment_options, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(583), 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(581), 22, - 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_LT_GT, - anon_sym_DOT_DOT, - [38199] = 4, + ACTIONS(651), 3, + sym__hex, + sym__octal, + sym__binary, + ACTIONS(1249), 3, + anon_sym_utf8, + anon_sym_utf16, + anon_sym_utf32, + 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(1247), 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, + [38889] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1504), 12, + ACTIONS(1546), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -37602,7 +38269,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1506), 18, + ACTIONS(1548), 18, anon_sym_if, anon_sym_import, anon_sym_const, @@ -37621,13 +38288,104 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [38241] = 4, + [38931] = 12, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1552), 1, + anon_sym_AMP_AMP, + ACTIONS(1560), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1354), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1550), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1554), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1562), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1356), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1556), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1558), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(681), 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, + [38989] = 11, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1560), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1354), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1550), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1554), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1562), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1356), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1556), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1558), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(681), 9, + 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_DOT_DOT, + [39045] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1508), 12, + ACTIONS(1564), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -37640,7 +38398,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1510), 18, + ACTIONS(1566), 18, anon_sym_if, anon_sym_import, anon_sym_const, @@ -37659,22 +38417,78 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [38283] = 4, + [39087] = 10, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1560), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(599), 8, + ACTIONS(1354), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1550), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1562), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1356), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1556), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, + ACTIONS(1558), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(681), 11, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_DOT_DOT, + [39141] = 9, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1560), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1354), 2, + anon_sym_SLASH, anon_sym_STAR, - ACTIONS(597), 22, + ACTIONS(1550), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1562), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(683), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1356), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(681), 15, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -37689,21 +38503,56 @@ 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_DOT_DOT, + [39193] = 8, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1354), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1550), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1562), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, + ACTIONS(683), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1356), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, + ACTIONS(681), 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, - [38325] = 4, + [39243] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1512), 12, + ACTIONS(1568), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -37716,7 +38565,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1514), 18, + ACTIONS(1570), 18, anon_sym_if, anon_sym_import, anon_sym_const, @@ -37735,13 +38584,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [38367] = 4, + [39285] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1516), 12, + ACTIONS(1572), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -37754,7 +38603,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1518), 18, + ACTIONS(1574), 18, anon_sym_if, anon_sym_import, anon_sym_const, @@ -37773,13 +38622,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [38409] = 4, + [39327] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1520), 12, + ACTIONS(1576), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -37792,7 +38641,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1522), 18, + ACTIONS(1578), 18, anon_sym_if, anon_sym_import, anon_sym_const, @@ -37811,13 +38660,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [38451] = 4, + [39369] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(607), 8, + ACTIONS(599), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -37826,7 +38675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(605), 22, + ACTIONS(597), 22, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -37849,16 +38698,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [38493] = 5, + [39411] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(458), 1, - anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(456), 9, - anon_sym_DOT, + ACTIONS(603), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -37867,11 +38713,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(454), 20, - anon_sym_as, + ACTIONS(601), 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, @@ -37888,13 +38736,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_GT, anon_sym_DOT_DOT, - [38537] = 4, + [39453] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1524), 12, + ACTIONS(1580), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -37907,7 +38755,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1526), 18, + ACTIONS(1582), 18, anon_sym_if, anon_sym_import, anon_sym_const, @@ -37926,51 +38774,51 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [38579] = 4, + [39495] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - 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, - sym__upname, - ACTIONS(1530), 18, - anon_sym_if, - anon_sym_import, - anon_sym_const, + ACTIONS(583), 8, + anon_sym_SLASH, anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_type, - anon_sym_try, - anon_sym_todo, - anon_sym_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [38621] = 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(581), 22, + 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_LT_GT, + anon_sym_DOT_DOT, + [39537] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1532), 12, + ACTIONS(1584), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -37983,7 +38831,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1534), 18, + ACTIONS(1586), 18, anon_sym_if, anon_sym_import, anon_sym_const, @@ -38002,89 +38850,174 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [38663] = 4, + [39579] = 13, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1552), 1, + anon_sym_AMP_AMP, + ACTIONS(1560), 1, + anon_sym_PIPE_GT, + ACTIONS(1588), 1, + anon_sym_PIPE_PIPE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1536), 12, - ts_builtin_sym_end, + ACTIONS(1354), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1550), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1554), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1562), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1356), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1556), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1558), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(593), 7, 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(1538), 18, - anon_sym_if, - anon_sym_import, - anon_sym_const, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_DOT_DOT, + [39639] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(611), 8, + anon_sym_SLASH, anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_type, - anon_sym_try, - anon_sym_todo, - anon_sym_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [38705] = 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(609), 22, + 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_LT_GT, + anon_sym_DOT_DOT, + [39681] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1540), 12, - ts_builtin_sym_end, + ACTIONS(591), 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(589), 22, 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(1542), 18, - anon_sym_if, - anon_sym_import, - anon_sym_const, + 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_LT_GT, + anon_sym_DOT_DOT, + [39723] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(679), 8, + anon_sym_SLASH, anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_type, - anon_sym_try, - anon_sym_todo, - anon_sym_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [38747] = 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(677), 22, + 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_LT_GT, + anon_sym_DOT_DOT, + [39765] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1544), 12, + ACTIONS(1590), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -38097,7 +39030,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1546), 18, + ACTIONS(1592), 18, anon_sym_if, anon_sym_import, anon_sym_const, @@ -38116,89 +39049,136 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [38789] = 4, + [39807] = 13, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1552), 1, + anon_sym_AMP_AMP, + ACTIONS(1560), 1, + anon_sym_PIPE_GT, + ACTIONS(1588), 1, + anon_sym_PIPE_PIPE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1548), 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(1550), 18, - anon_sym_if, - anon_sym_import, - anon_sym_const, + ACTIONS(1354), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1550), 2, anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_type, - anon_sym_try, - anon_sym_todo, - anon_sym_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [38831] = 4, + anon_sym_PLUS, + ACTIONS(1554), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1562), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1356), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1556), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1558), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(723), 7, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_DOT_DOT, + [39867] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1552), 12, - ts_builtin_sym_end, + ACTIONS(733), 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(731), 22, 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(1554), 18, - anon_sym_if, - anon_sym_import, - anon_sym_const, + 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_LT_GT, + anon_sym_DOT_DOT, + [39909] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(619), 8, + anon_sym_SLASH, anon_sym_DASH, - anon_sym_fn, - anon_sym_external, - anon_sym_type, - anon_sym_try, - anon_sym_todo, - anon_sym_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [38873] = 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(617), 22, + 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_LT_GT, + anon_sym_DOT_DOT, + [39951] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1556), 12, + ACTIONS(1594), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -38211,7 +39191,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1558), 18, + ACTIONS(1596), 18, anon_sym_if, anon_sym_import, anon_sym_const, @@ -38230,13 +39210,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [38915] = 4, + [39993] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1560), 12, + ACTIONS(1598), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -38249,7 +39229,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1562), 18, + ACTIONS(1600), 18, anon_sym_if, anon_sym_import, anon_sym_const, @@ -38268,13 +39248,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [38957] = 4, + [40035] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1564), 12, + ACTIONS(1602), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -38287,7 +39267,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1566), 18, + ACTIONS(1604), 18, anon_sym_if, anon_sym_import, anon_sym_const, @@ -38306,13 +39286,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [38999] = 4, + [40077] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1568), 12, + ACTIONS(1606), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -38325,7 +39305,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1570), 18, + ACTIONS(1608), 18, anon_sym_if, anon_sym_import, anon_sym_const, @@ -38344,13 +39324,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [39041] = 4, + [40119] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1572), 12, + ACTIONS(1610), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -38363,7 +39343,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1574), 18, + ACTIONS(1612), 18, anon_sym_if, anon_sym_import, anon_sym_const, @@ -38382,13 +39362,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [39083] = 4, + [40161] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1576), 12, + ACTIONS(1614), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -38401,7 +39381,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1578), 18, + ACTIONS(1616), 18, anon_sym_if, anon_sym_import, anon_sym_const, @@ -38420,13 +39400,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [39125] = 4, + [40203] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1580), 12, + ACTIONS(1618), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -38439,7 +39419,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1582), 18, + ACTIONS(1620), 18, anon_sym_if, anon_sym_import, anon_sym_const, @@ -38458,13 +39438,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [39167] = 4, + [40245] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1584), 12, + ACTIONS(1622), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -38477,7 +39457,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1586), 18, + ACTIONS(1624), 18, anon_sym_if, anon_sym_import, anon_sym_const, @@ -38496,13 +39476,13 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [39209] = 4, + [40287] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1588), 12, + ACTIONS(1626), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -38515,7 +39495,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1590), 18, + ACTIONS(1628), 18, anon_sym_if, anon_sym_import, anon_sym_const, @@ -38534,13 +39514,52 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [39251] = 4, + [40329] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(499), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1592), 12, + ACTIONS(444), 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(442), 20, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [40373] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1630), 12, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_POUND, @@ -38553,7 +39572,7 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1594), 18, + ACTIONS(1632), 18, anon_sym_if, anon_sym_import, anon_sym_const, @@ -38572,52 +39591,51 @@ static const uint16_t ts_small_parse_table[] = { sym_opacity_modifier, sym__decimal, sym__name, - [39293] = 21, + [40415] = 20, ACTIONS(3), 1, sym_module_comment, - ACTIONS(695), 1, - anon_sym_DASH, - ACTIONS(711), 1, - anon_sym_DQUOTE, - ACTIONS(717), 1, - sym__decimal, - ACTIONS(723), 1, - sym__upname, - ACTIONS(767), 1, - sym__name, - ACTIONS(1175), 1, + ACTIONS(1211), 1, anon_sym_POUND, - ACTIONS(1179), 1, + ACTIONS(1213), 1, anon_sym_LBRACK, - ACTIONS(1181), 1, + ACTIONS(1215), 1, anon_sym_LT_LT, - ACTIONS(1185), 1, + ACTIONS(1217), 1, + anon_sym_DASH, + ACTIONS(1219), 1, + anon_sym_DQUOTE, + ACTIONS(1221), 1, sym_float, - ACTIONS(1187), 1, + ACTIONS(1225), 1, + sym__decimal, + ACTIONS(1227), 1, sym__discard_name, - ACTIONS(1596), 1, - anon_sym_RBRACK, - ACTIONS(1598), 1, - anon_sym_DOT_DOT, - STATE(754), 1, + ACTIONS(1229), 1, + sym__name, + ACTIONS(1231), 1, + sym__upname, + ACTIONS(1634), 1, + anon_sym_if, + STATE(803), 1, sym__pattern_binary_expression, - STATE(816), 1, - sym_identifier, - STATE(858), 1, + STATE(846), 1, sym__pattern, - STATE(1346), 1, - sym_list_pattern_tail, + STATE(861), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(682), 2, + ACTIONS(1636), 2, + anon_sym_DASH_GT, + anon_sym_PIPE, + STATE(702), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(715), 3, + ACTIONS(1223), 3, sym__hex, sym__octal, sym__binary, - STATE(826), 8, + STATE(901), 8, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -38626,95 +39644,52 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [39368] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(717), 1, - sym__decimal, - ACTIONS(1237), 1, - anon_sym_DASH, - ACTIONS(1245), 1, - anon_sym_unit, - ACTIONS(1296), 1, - anon_sym_size, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(715), 3, - sym__hex, - sym__octal, - sym__binary, - ACTIONS(1243), 3, - anon_sym_utf8, - anon_sym_utf16, - anon_sym_utf32, - STATE(1034), 5, - sym__pattern_bit_string_segment_option, - sym__pattern_bit_string_named_segment_option, - sym__pattern_bit_string_segment_option_size, - sym_integer, - sym__bit_string_segment_option, - ACTIONS(1241), 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, - [39421] = 21, + [40488] = 21, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1175), 1, + ACTIONS(1211), 1, anon_sym_POUND, - ACTIONS(1179), 1, + ACTIONS(1213), 1, anon_sym_LBRACK, - ACTIONS(1181), 1, + ACTIONS(1215), 1, anon_sym_LT_LT, - ACTIONS(1187), 1, - sym__discard_name, - ACTIONS(1207), 1, + ACTIONS(1217), 1, anon_sym_DASH, - ACTIONS(1209), 1, + ACTIONS(1219), 1, anon_sym_DQUOTE, - ACTIONS(1211), 1, + ACTIONS(1221), 1, sym_float, - ACTIONS(1215), 1, + ACTIONS(1225), 1, sym__decimal, - ACTIONS(1217), 1, + ACTIONS(1227), 1, + sym__discard_name, + ACTIONS(1229), 1, sym__name, - ACTIONS(1219), 1, + ACTIONS(1231), 1, sym__upname, - ACTIONS(1600), 1, + ACTIONS(1638), 1, anon_sym_if, - ACTIONS(1602), 1, + ACTIONS(1640), 1, anon_sym_DASH_GT, - STATE(754), 1, + STATE(803), 1, sym__pattern_binary_expression, - STATE(860), 1, + STATE(861), 1, sym_identifier, - STATE(906), 1, + STATE(920), 1, sym__pattern, - STATE(1117), 1, + STATE(1080), 1, sym_case_clause_pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(682), 2, + STATE(702), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1213), 3, + ACTIONS(1223), 3, sym__hex, sym__octal, sym__binary, - STATE(862), 8, + STATE(901), 8, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -38723,51 +39698,52 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [39496] = 20, + [40563] = 21, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1175), 1, + ACTIONS(647), 1, + anon_sym_DQUOTE, + ACTIONS(653), 1, + sym__decimal, + ACTIONS(659), 1, + sym__upname, + ACTIONS(777), 1, + sym__name, + ACTIONS(1211), 1, anon_sym_POUND, - ACTIONS(1179), 1, + ACTIONS(1213), 1, anon_sym_LBRACK, - ACTIONS(1181), 1, + ACTIONS(1215), 1, anon_sym_LT_LT, - ACTIONS(1187), 1, + ACTIONS(1227), 1, sym__discard_name, - ACTIONS(1207), 1, + ACTIONS(1235), 1, anon_sym_DASH, - ACTIONS(1209), 1, - anon_sym_DQUOTE, - ACTIONS(1211), 1, + ACTIONS(1239), 1, sym_float, - ACTIONS(1215), 1, - sym__decimal, - ACTIONS(1217), 1, - sym__name, - ACTIONS(1219), 1, - sym__upname, - ACTIONS(1604), 1, - anon_sym_if, - STATE(754), 1, + ACTIONS(1642), 1, + anon_sym_RBRACK, + ACTIONS(1644), 1, + anon_sym_DOT_DOT, + STATE(803), 1, sym__pattern_binary_expression, - STATE(858), 1, - sym__pattern, - STATE(860), 1, + STATE(832), 1, sym_identifier, + STATE(846), 1, + sym__pattern, + STATE(1319), 1, + sym_list_pattern_tail, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1606), 2, - anon_sym_DASH_GT, - anon_sym_PIPE, - STATE(682), 2, + STATE(702), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1213), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(862), 8, + STATE(837), 8, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -38776,52 +39752,95 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [39569] = 21, + [40638] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(695), 1, + ACTIONS(653), 1, + sym__decimal, + ACTIONS(1243), 1, anon_sym_DASH, - ACTIONS(711), 1, + ACTIONS(1251), 1, + anon_sym_unit, + ACTIONS(1302), 1, + anon_sym_size, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(651), 3, + sym__hex, + sym__octal, + sym__binary, + ACTIONS(1249), 3, + anon_sym_utf8, + anon_sym_utf16, + anon_sym_utf32, + STATE(1106), 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(1247), 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, + [40691] = 21, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(723), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(767), 1, + ACTIONS(777), 1, sym__name, - ACTIONS(1175), 1, + ACTIONS(1211), 1, anon_sym_POUND, - ACTIONS(1179), 1, + ACTIONS(1213), 1, anon_sym_LBRACK, - ACTIONS(1181), 1, + ACTIONS(1215), 1, anon_sym_LT_LT, - ACTIONS(1185), 1, - sym_float, - ACTIONS(1187), 1, + ACTIONS(1227), 1, sym__discard_name, - ACTIONS(1598), 1, + ACTIONS(1235), 1, + anon_sym_DASH, + ACTIONS(1239), 1, + sym_float, + ACTIONS(1644), 1, anon_sym_DOT_DOT, - ACTIONS(1608), 1, + ACTIONS(1646), 1, anon_sym_RBRACK, - STATE(754), 1, + STATE(803), 1, sym__pattern_binary_expression, - STATE(816), 1, + STATE(832), 1, sym_identifier, - STATE(858), 1, + STATE(846), 1, sym__pattern, - STATE(1300), 1, + STATE(1370), 1, sym_list_pattern_tail, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(682), 2, + STATE(702), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(826), 8, + STATE(837), 8, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -38830,78 +39849,88 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [39644] = 10, + [40766] = 20, ACTIONS(3), 1, sym_module_comment, - ACTIONS(717), 1, - sym__decimal, - ACTIONS(1237), 1, + ACTIONS(1211), 1, + anon_sym_POUND, + ACTIONS(1213), 1, + anon_sym_LBRACK, + ACTIONS(1215), 1, + anon_sym_LT_LT, + ACTIONS(1217), 1, anon_sym_DASH, - ACTIONS(1245), 1, - anon_sym_unit, - ACTIONS(1251), 1, - anon_sym_size, + ACTIONS(1219), 1, + anon_sym_DQUOTE, + ACTIONS(1221), 1, + sym_float, + ACTIONS(1225), 1, + sym__decimal, + ACTIONS(1227), 1, + sym__discard_name, + ACTIONS(1229), 1, + sym__name, + ACTIONS(1231), 1, + sym__upname, + ACTIONS(1648), 1, + anon_sym_if, + STATE(803), 1, + sym__pattern_binary_expression, + STATE(846), 1, + sym__pattern, + STATE(861), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(715), 3, + ACTIONS(1650), 2, + anon_sym_DASH_GT, + anon_sym_PIPE, + STATE(702), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(1223), 3, sym__hex, sym__octal, sym__binary, - ACTIONS(1243), 3, - anon_sym_utf8, - anon_sym_utf16, - anon_sym_utf32, - STATE(990), 5, - sym__constant_bit_string_segment_option, - sym__constant_bit_string_named_segment_option, - sym__constant_bit_string_segment_option_size, + STATE(901), 8, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_string, sym_integer, - sym__bit_string_segment_option, - ACTIONS(1241), 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, - [39697] = 10, + sym_discard, + [40839] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(1237), 1, + ACTIONS(1243), 1, anon_sym_DASH, - ACTIONS(1239), 1, - anon_sym_size, - ACTIONS(1245), 1, + ACTIONS(1251), 1, anon_sym_unit, + ACTIONS(1255), 1, + anon_sym_size, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - ACTIONS(1243), 3, + ACTIONS(1249), 3, anon_sym_utf8, anon_sym_utf16, anon_sym_utf32, - STATE(1064), 5, - sym__expression_bit_string_segment_option, - sym__expression_bit_string_named_segment_option, - sym__expression_bit_string_segment_option_size, + STATE(1009), 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(1241), 14, + ACTIONS(1247), 14, anon_sym_binary, anon_sym_bytes, anon_sym_int, @@ -38916,52 +39945,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_big, anon_sym_little, anon_sym_native, - [39750] = 21, + [40892] = 21, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1175), 1, + ACTIONS(1211), 1, anon_sym_POUND, - ACTIONS(1179), 1, + ACTIONS(1213), 1, anon_sym_LBRACK, - ACTIONS(1181), 1, + ACTIONS(1215), 1, anon_sym_LT_LT, - ACTIONS(1187), 1, - sym__discard_name, - ACTIONS(1207), 1, + ACTIONS(1217), 1, anon_sym_DASH, - ACTIONS(1209), 1, + ACTIONS(1219), 1, anon_sym_DQUOTE, - ACTIONS(1211), 1, + ACTIONS(1221), 1, sym_float, - ACTIONS(1215), 1, + ACTIONS(1225), 1, sym__decimal, - ACTIONS(1217), 1, + ACTIONS(1227), 1, + sym__discard_name, + ACTIONS(1229), 1, sym__name, - ACTIONS(1219), 1, + ACTIONS(1231), 1, sym__upname, - ACTIONS(1610), 1, + ACTIONS(1652), 1, anon_sym_if, - ACTIONS(1612), 1, + ACTIONS(1654), 1, anon_sym_DASH_GT, - STATE(754), 1, + STATE(803), 1, sym__pattern_binary_expression, - STATE(860), 1, + STATE(861), 1, sym_identifier, - STATE(906), 1, + STATE(920), 1, sym__pattern, - STATE(1117), 1, + STATE(1080), 1, sym_case_clause_pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(682), 2, + STATE(702), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1213), 3, + ACTIONS(1223), 3, sym__hex, sym__octal, sym__binary, - STATE(862), 8, + STATE(901), 8, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -38970,52 +39999,52 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [39825] = 21, + [40967] = 21, ACTIONS(3), 1, sym_module_comment, - ACTIONS(695), 1, - anon_sym_DASH, - ACTIONS(711), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(723), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(767), 1, + ACTIONS(777), 1, sym__name, - ACTIONS(1175), 1, + ACTIONS(1211), 1, anon_sym_POUND, - ACTIONS(1179), 1, + ACTIONS(1213), 1, anon_sym_LBRACK, - ACTIONS(1181), 1, + ACTIONS(1215), 1, anon_sym_LT_LT, - ACTIONS(1185), 1, - sym_float, - ACTIONS(1187), 1, + ACTIONS(1227), 1, sym__discard_name, - ACTIONS(1598), 1, + ACTIONS(1235), 1, + anon_sym_DASH, + ACTIONS(1239), 1, + sym_float, + ACTIONS(1644), 1, anon_sym_DOT_DOT, - ACTIONS(1614), 1, + ACTIONS(1656), 1, anon_sym_RBRACK, - STATE(754), 1, + STATE(803), 1, sym__pattern_binary_expression, - STATE(816), 1, + STATE(832), 1, sym_identifier, - STATE(895), 1, + STATE(921), 1, sym__pattern, - STATE(1274), 1, + STATE(1292), 1, sym_list_pattern_tail, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(682), 2, + STATE(702), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(826), 8, + STATE(837), 8, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -39024,149 +40053,89 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [39900] = 20, + [41042] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1175), 1, - anon_sym_POUND, - ACTIONS(1179), 1, - anon_sym_LBRACK, - ACTIONS(1181), 1, - anon_sym_LT_LT, - ACTIONS(1187), 1, - sym__discard_name, - ACTIONS(1207), 1, - anon_sym_DASH, - ACTIONS(1209), 1, - anon_sym_DQUOTE, - ACTIONS(1211), 1, - sym_float, - ACTIONS(1215), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(1217), 1, - sym__name, - ACTIONS(1219), 1, - sym__upname, - ACTIONS(1616), 1, - anon_sym_if, - STATE(754), 1, - sym__pattern_binary_expression, - STATE(858), 1, - sym__pattern, - STATE(860), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1618), 2, - anon_sym_DASH_GT, - anon_sym_PIPE, - STATE(682), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1213), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(862), 8, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_string, - sym_integer, - sym_discard, - [39973] = 18, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(695), 1, + ACTIONS(1243), 1, anon_sym_DASH, - ACTIONS(711), 1, - anon_sym_DQUOTE, - ACTIONS(717), 1, - sym__decimal, - ACTIONS(723), 1, - sym__upname, - ACTIONS(767), 1, - sym__name, - ACTIONS(1620), 1, - anon_sym_LBRACE, - ACTIONS(1622), 1, - anon_sym_POUND, - ACTIONS(1624), 1, - anon_sym_LBRACK, - ACTIONS(1626), 1, - anon_sym_LT_LT, - ACTIONS(1628), 1, - sym_float, - STATE(710), 1, - sym_identifier, - STATE(719), 1, - sym__case_clause_guard_binary_expression, - STATE(722), 1, - sym__case_clause_tuple_access, + ACTIONS(1245), 1, + anon_sym_size, + ACTIONS(1251), 1, + anon_sym_unit, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(543), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(753), 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, + ACTIONS(1249), 3, + anon_sym_utf8, + anon_sym_utf16, + anon_sym_utf32, + STATE(1135), 5, + sym__constant_bit_string_segment_option, + sym__constant_bit_string_named_segment_option, + sym__constant_bit_string_segment_option_size, sym_integer, - [40041] = 18, + sym__bit_string_segment_option, + ACTIONS(1247), 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, + [41095] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1620), 1, + ACTIONS(1217), 1, + anon_sym_DASH, + ACTIONS(1658), 1, anon_sym_LBRACE, - ACTIONS(1622), 1, + ACTIONS(1660), 1, anon_sym_POUND, - ACTIONS(1624), 1, + ACTIONS(1662), 1, anon_sym_LBRACK, - ACTIONS(1626), 1, + ACTIONS(1664), 1, anon_sym_LT_LT, - ACTIONS(1630), 1, - anon_sym_DASH, - ACTIONS(1632), 1, + ACTIONS(1666), 1, anon_sym_DQUOTE, - ACTIONS(1634), 1, + ACTIONS(1668), 1, sym_float, - ACTIONS(1638), 1, + ACTIONS(1672), 1, sym__decimal, - ACTIONS(1640), 1, + ACTIONS(1674), 1, sym__name, - ACTIONS(1642), 1, + ACTIONS(1676), 1, sym__upname, - STATE(719), 1, - sym__case_clause_guard_binary_expression, - STATE(722), 1, - sym__case_clause_tuple_access, - STATE(729), 1, + STATE(740), 1, sym_identifier, + STATE(744), 1, + sym__case_clause_tuple_access, + STATE(745), 1, + sym__case_clause_guard_binary_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(543), 2, + STATE(566), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1636), 3, + ACTIONS(1670), 3, sym__hex, sym__octal, sym__binary, - STATE(766), 10, + STATE(780), 10, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -39177,46 +40146,46 @@ static const uint16_t ts_small_parse_table[] = { sym__case_clause_guard_unit, sym_string, sym_integer, - [40109] = 18, + [41163] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(695), 1, + ACTIONS(1217), 1, anon_sym_DASH, - ACTIONS(711), 1, - anon_sym_DQUOTE, - ACTIONS(717), 1, - sym__decimal, - ACTIONS(723), 1, - sym__upname, - ACTIONS(767), 1, - sym__name, - ACTIONS(1620), 1, + ACTIONS(1658), 1, anon_sym_LBRACE, - ACTIONS(1622), 1, + ACTIONS(1660), 1, anon_sym_POUND, - ACTIONS(1624), 1, + ACTIONS(1662), 1, anon_sym_LBRACK, - ACTIONS(1626), 1, + ACTIONS(1664), 1, anon_sym_LT_LT, - ACTIONS(1644), 1, + ACTIONS(1666), 1, + anon_sym_DQUOTE, + ACTIONS(1672), 1, + sym__decimal, + ACTIONS(1674), 1, + sym__name, + ACTIONS(1676), 1, + sym__upname, + ACTIONS(1678), 1, sym_float, - STATE(710), 1, + STATE(740), 1, sym_identifier, - STATE(719), 1, - sym__case_clause_guard_binary_expression, - STATE(722), 1, + STATE(744), 1, sym__case_clause_tuple_access, + STATE(745), 1, + sym__case_clause_guard_binary_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(543), 2, + STATE(566), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(715), 3, + ACTIONS(1670), 3, sym__hex, sym__octal, sym__binary, - STATE(701), 10, + STATE(776), 10, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -39227,46 +40196,46 @@ static const uint16_t ts_small_parse_table[] = { sym__case_clause_guard_unit, sym_string, sym_integer, - [40177] = 18, + [41231] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(695), 1, + ACTIONS(1217), 1, anon_sym_DASH, - ACTIONS(711), 1, - anon_sym_DQUOTE, - ACTIONS(717), 1, - sym__decimal, - ACTIONS(723), 1, - sym__upname, - ACTIONS(767), 1, - sym__name, - ACTIONS(1620), 1, + ACTIONS(1658), 1, anon_sym_LBRACE, - ACTIONS(1622), 1, + ACTIONS(1660), 1, anon_sym_POUND, - ACTIONS(1624), 1, + ACTIONS(1662), 1, anon_sym_LBRACK, - ACTIONS(1626), 1, + ACTIONS(1664), 1, anon_sym_LT_LT, - ACTIONS(1646), 1, + ACTIONS(1666), 1, + anon_sym_DQUOTE, + ACTIONS(1672), 1, + sym__decimal, + ACTIONS(1674), 1, + sym__name, + ACTIONS(1676), 1, + sym__upname, + ACTIONS(1680), 1, sym_float, - STATE(710), 1, + STATE(740), 1, sym_identifier, - STATE(719), 1, - sym__case_clause_guard_binary_expression, - STATE(722), 1, + STATE(744), 1, sym__case_clause_tuple_access, + STATE(745), 1, + sym__case_clause_guard_binary_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(543), 2, + STATE(566), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(715), 3, + ACTIONS(1670), 3, sym__hex, sym__octal, sym__binary, - STATE(760), 10, + STATE(770), 10, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -39277,98 +40246,46 @@ static const uint16_t ts_small_parse_table[] = { sym__case_clause_guard_unit, sym_string, sym_integer, - [40245] = 20, + [41299] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(695), 1, + ACTIONS(1217), 1, anon_sym_DASH, - ACTIONS(711), 1, - anon_sym_DQUOTE, - ACTIONS(717), 1, - sym__decimal, - ACTIONS(723), 1, - sym__upname, - ACTIONS(767), 1, - sym__name, - ACTIONS(1175), 1, - anon_sym_POUND, - ACTIONS(1179), 1, - anon_sym_LBRACK, - ACTIONS(1181), 1, - anon_sym_LT_LT, - ACTIONS(1185), 1, - sym_float, - ACTIONS(1187), 1, - sym__discard_name, - ACTIONS(1648), 1, - anon_sym_GT_GT, - STATE(754), 1, - sym__pattern_binary_expression, - STATE(816), 1, - sym_identifier, - STATE(1027), 1, - sym_pattern_bit_string_segment, - STATE(1029), 1, - sym__pattern, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(682), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(715), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(826), 8, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_string, - sym_integer, - sym_discard, - [40317] = 18, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1620), 1, + ACTIONS(1658), 1, anon_sym_LBRACE, - ACTIONS(1622), 1, + ACTIONS(1660), 1, anon_sym_POUND, - ACTIONS(1624), 1, + ACTIONS(1662), 1, anon_sym_LBRACK, - ACTIONS(1626), 1, + ACTIONS(1664), 1, anon_sym_LT_LT, - ACTIONS(1630), 1, - anon_sym_DASH, - ACTIONS(1632), 1, + ACTIONS(1666), 1, anon_sym_DQUOTE, - ACTIONS(1638), 1, + ACTIONS(1672), 1, sym__decimal, - ACTIONS(1640), 1, + ACTIONS(1674), 1, sym__name, - ACTIONS(1642), 1, + ACTIONS(1676), 1, sym__upname, - ACTIONS(1650), 1, + ACTIONS(1682), 1, sym_float, - STATE(719), 1, - sym__case_clause_guard_binary_expression, - STATE(722), 1, - sym__case_clause_tuple_access, - STATE(729), 1, + STATE(740), 1, sym_identifier, + STATE(744), 1, + sym__case_clause_tuple_access, + STATE(745), 1, + sym__case_clause_guard_binary_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(543), 2, + STATE(566), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1636), 3, + ACTIONS(1670), 3, sym__hex, sym__octal, sym__binary, - STATE(779), 10, + STATE(768), 10, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -39379,88 +40296,50 @@ static const uint16_t ts_small_parse_table[] = { sym__case_clause_guard_unit, sym_string, sym_integer, - [40385] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1652), 1, - anon_sym_LPAREN, - STATE(578), 1, - sym_constant_record_arguments, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1165), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1163), 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, - [40429] = 20, + [41367] = 20, ACTIONS(3), 1, sym_module_comment, - ACTIONS(695), 1, - anon_sym_DASH, - ACTIONS(711), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(723), 1, - sym__upname, - ACTIONS(767), 1, + ACTIONS(657), 1, sym__name, - ACTIONS(1175), 1, + ACTIONS(659), 1, + sym__upname, + ACTIONS(1211), 1, anon_sym_POUND, - ACTIONS(1179), 1, + ACTIONS(1213), 1, anon_sym_LBRACK, - ACTIONS(1181), 1, + ACTIONS(1215), 1, anon_sym_LT_LT, - ACTIONS(1185), 1, - sym_float, - ACTIONS(1187), 1, + ACTIONS(1227), 1, sym__discard_name, - ACTIONS(1654), 1, - anon_sym_GT_GT, - STATE(754), 1, + ACTIONS(1235), 1, + anon_sym_DASH, + ACTIONS(1239), 1, + sym_float, + STATE(803), 1, sym__pattern_binary_expression, - STATE(816), 1, + STATE(832), 1, sym_identifier, - STATE(1029), 1, + STATE(1045), 1, sym__pattern, - STATE(1214), 1, - sym_pattern_bit_string_segment, + STATE(1101), 1, + sym_record_pattern_argument, + STATE(1298), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(682), 2, + STATE(702), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(826), 8, + STATE(837), 8, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -39469,95 +40348,50 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [40501] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1326), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1328), 1, - anon_sym_AMP_AMP, - ACTIONS(1336), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1316), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1324), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1330), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1338), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1318), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(1332), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1334), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(1656), 5, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [40559] = 20, + [41439] = 20, ACTIONS(3), 1, sym_module_comment, - ACTIONS(695), 1, - anon_sym_DASH, - ACTIONS(711), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(723), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(767), 1, + ACTIONS(777), 1, sym__name, - ACTIONS(1175), 1, + ACTIONS(1211), 1, anon_sym_POUND, - ACTIONS(1179), 1, + ACTIONS(1213), 1, anon_sym_LBRACK, - ACTIONS(1181), 1, + ACTIONS(1215), 1, anon_sym_LT_LT, - ACTIONS(1185), 1, - sym_float, - ACTIONS(1187), 1, + ACTIONS(1227), 1, sym__discard_name, - ACTIONS(1658), 1, + ACTIONS(1235), 1, + anon_sym_DASH, + ACTIONS(1239), 1, + sym_float, + ACTIONS(1684), 1, anon_sym_assert, - STATE(664), 1, + STATE(534), 1, sym__assignment, - STATE(754), 1, + STATE(803), 1, sym__pattern_binary_expression, - STATE(816), 1, + STATE(832), 1, sym_identifier, - STATE(1080), 1, + STATE(1067), 1, sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(682), 2, + STATE(702), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(826), 8, + STATE(837), 8, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -39566,50 +40400,50 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [40631] = 20, + [41511] = 20, ACTIONS(3), 1, sym_module_comment, - ACTIONS(695), 1, - anon_sym_DASH, - ACTIONS(711), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(723), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(767), 1, + ACTIONS(777), 1, sym__name, - ACTIONS(1175), 1, + ACTIONS(1211), 1, anon_sym_POUND, - ACTIONS(1179), 1, + ACTIONS(1213), 1, anon_sym_LBRACK, - ACTIONS(1181), 1, + ACTIONS(1215), 1, anon_sym_LT_LT, - ACTIONS(1185), 1, - sym_float, - ACTIONS(1187), 1, + ACTIONS(1227), 1, sym__discard_name, - ACTIONS(1660), 1, - anon_sym_assert, - STATE(466), 1, - sym__assignment, - STATE(754), 1, + ACTIONS(1235), 1, + anon_sym_DASH, + ACTIONS(1239), 1, + sym_float, + ACTIONS(1686), 1, + anon_sym_GT_GT, + STATE(803), 1, sym__pattern_binary_expression, - STATE(816), 1, + STATE(832), 1, sym_identifier, - STATE(1055), 1, + STATE(1040), 1, + sym_pattern_bit_string_segment, + STATE(1042), 1, sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(682), 2, + STATE(702), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(826), 8, + STATE(837), 8, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -39618,100 +40452,102 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [40703] = 18, + [41583] = 20, ACTIONS(3), 1, sym_module_comment, - ACTIONS(695), 1, - anon_sym_DASH, - ACTIONS(711), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(723), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(767), 1, + ACTIONS(777), 1, sym__name, - ACTIONS(1620), 1, - anon_sym_LBRACE, - ACTIONS(1622), 1, + ACTIONS(1211), 1, anon_sym_POUND, - ACTIONS(1624), 1, + ACTIONS(1213), 1, anon_sym_LBRACK, - ACTIONS(1626), 1, + ACTIONS(1215), 1, anon_sym_LT_LT, - ACTIONS(1662), 1, + ACTIONS(1227), 1, + sym__discard_name, + ACTIONS(1235), 1, + anon_sym_DASH, + ACTIONS(1239), 1, sym_float, - STATE(710), 1, + ACTIONS(1688), 1, + anon_sym_GT_GT, + STATE(803), 1, + sym__pattern_binary_expression, + STATE(832), 1, sym_identifier, - STATE(719), 1, - sym__case_clause_guard_binary_expression, - STATE(722), 1, - sym__case_clause_tuple_access, + STATE(1042), 1, + sym__pattern, + STATE(1251), 1, + sym_pattern_bit_string_segment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(543), 2, + STATE(702), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(775), 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, + STATE(837), 8, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, sym_string, sym_integer, - [40771] = 20, + sym_discard, + [41655] = 20, ACTIONS(3), 1, sym_module_comment, - ACTIONS(695), 1, - anon_sym_DASH, - ACTIONS(711), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(721), 1, - sym__name, - ACTIONS(723), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(1175), 1, + ACTIONS(777), 1, + sym__name, + ACTIONS(1211), 1, anon_sym_POUND, - ACTIONS(1179), 1, + ACTIONS(1213), 1, anon_sym_LBRACK, - ACTIONS(1181), 1, + ACTIONS(1215), 1, anon_sym_LT_LT, - ACTIONS(1185), 1, - sym_float, - ACTIONS(1187), 1, + ACTIONS(1227), 1, sym__discard_name, - STATE(754), 1, + ACTIONS(1235), 1, + anon_sym_DASH, + ACTIONS(1239), 1, + sym_float, + ACTIONS(1690), 1, + anon_sym_assert, + STATE(674), 1, + sym__assignment, + STATE(803), 1, sym__pattern_binary_expression, - STATE(816), 1, + STATE(832), 1, sym_identifier, - STATE(970), 1, - sym_record_pattern_argument, - STATE(1066), 1, + STATE(1090), 1, sym__pattern, - STATE(1269), 1, - sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(682), 2, + STATE(702), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(826), 8, + STATE(837), 8, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -39720,50 +40556,50 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [40843] = 20, + [41727] = 20, ACTIONS(3), 1, sym_module_comment, - ACTIONS(695), 1, - anon_sym_DASH, - ACTIONS(711), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(723), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(767), 1, + ACTIONS(777), 1, sym__name, - ACTIONS(1175), 1, + ACTIONS(1211), 1, anon_sym_POUND, - ACTIONS(1179), 1, + ACTIONS(1213), 1, anon_sym_LBRACK, - ACTIONS(1181), 1, + ACTIONS(1215), 1, anon_sym_LT_LT, - ACTIONS(1185), 1, - sym_float, - ACTIONS(1187), 1, + ACTIONS(1227), 1, sym__discard_name, - ACTIONS(1664), 1, + ACTIONS(1235), 1, + anon_sym_DASH, + ACTIONS(1239), 1, + sym_float, + ACTIONS(1692), 1, anon_sym_GT_GT, - STATE(754), 1, + STATE(803), 1, sym__pattern_binary_expression, - STATE(816), 1, + STATE(832), 1, sym_identifier, - STATE(1029), 1, + STATE(1042), 1, sym__pattern, - STATE(1214), 1, + STATE(1251), 1, sym_pattern_bit_string_segment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(682), 2, + STATE(702), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(826), 8, + STATE(837), 8, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -39772,46 +40608,46 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [40915] = 18, + [41799] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1620), 1, + ACTIONS(647), 1, + anon_sym_DQUOTE, + ACTIONS(653), 1, + sym__decimal, + ACTIONS(659), 1, + sym__upname, + ACTIONS(777), 1, + sym__name, + ACTIONS(1658), 1, anon_sym_LBRACE, - ACTIONS(1622), 1, + ACTIONS(1660), 1, anon_sym_POUND, - ACTIONS(1624), 1, + ACTIONS(1662), 1, anon_sym_LBRACK, - ACTIONS(1626), 1, + ACTIONS(1664), 1, anon_sym_LT_LT, - ACTIONS(1630), 1, + ACTIONS(1694), 1, anon_sym_DASH, - ACTIONS(1632), 1, - anon_sym_DQUOTE, - ACTIONS(1638), 1, - sym__decimal, - ACTIONS(1640), 1, - sym__name, - ACTIONS(1642), 1, - sym__upname, - ACTIONS(1666), 1, + ACTIONS(1696), 1, sym_float, - STATE(719), 1, - sym__case_clause_guard_binary_expression, - STATE(722), 1, - sym__case_clause_tuple_access, - STATE(729), 1, + STATE(742), 1, sym_identifier, + STATE(744), 1, + sym__case_clause_tuple_access, + STATE(745), 1, + sym__case_clause_guard_binary_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(543), 2, + STATE(566), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1636), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(786), 10, + STATE(804), 10, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -39822,46 +40658,46 @@ static const uint16_t ts_small_parse_table[] = { sym__case_clause_guard_unit, sym_string, sym_integer, - [40983] = 18, + [41867] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1620), 1, + ACTIONS(647), 1, + anon_sym_DQUOTE, + ACTIONS(653), 1, + sym__decimal, + ACTIONS(659), 1, + sym__upname, + ACTIONS(777), 1, + sym__name, + ACTIONS(1658), 1, anon_sym_LBRACE, - ACTIONS(1622), 1, + ACTIONS(1660), 1, anon_sym_POUND, - ACTIONS(1624), 1, + ACTIONS(1662), 1, anon_sym_LBRACK, - ACTIONS(1626), 1, + ACTIONS(1664), 1, anon_sym_LT_LT, - ACTIONS(1630), 1, + ACTIONS(1694), 1, anon_sym_DASH, - ACTIONS(1632), 1, - anon_sym_DQUOTE, - ACTIONS(1638), 1, - sym__decimal, - ACTIONS(1640), 1, - sym__name, - ACTIONS(1642), 1, - sym__upname, - ACTIONS(1644), 1, + ACTIONS(1698), 1, sym_float, - STATE(719), 1, - sym__case_clause_guard_binary_expression, - STATE(722), 1, - sym__case_clause_tuple_access, - STATE(729), 1, + STATE(742), 1, sym_identifier, + STATE(744), 1, + sym__case_clause_tuple_access, + STATE(745), 1, + sym__case_clause_guard_binary_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(543), 2, + STATE(566), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1636), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(701), 10, + STATE(796), 10, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -39872,46 +40708,46 @@ static const uint16_t ts_small_parse_table[] = { sym__case_clause_guard_unit, sym_string, sym_integer, - [41051] = 18, + [41935] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1620), 1, + ACTIONS(647), 1, + anon_sym_DQUOTE, + ACTIONS(653), 1, + sym__decimal, + ACTIONS(659), 1, + sym__upname, + ACTIONS(777), 1, + sym__name, + ACTIONS(1658), 1, anon_sym_LBRACE, - ACTIONS(1622), 1, + ACTIONS(1660), 1, anon_sym_POUND, - ACTIONS(1624), 1, + ACTIONS(1662), 1, anon_sym_LBRACK, - ACTIONS(1626), 1, + ACTIONS(1664), 1, anon_sym_LT_LT, - ACTIONS(1630), 1, + ACTIONS(1694), 1, anon_sym_DASH, - ACTIONS(1632), 1, - anon_sym_DQUOTE, - ACTIONS(1638), 1, - sym__decimal, - ACTIONS(1640), 1, - sym__name, - ACTIONS(1642), 1, - sym__upname, - ACTIONS(1668), 1, + ACTIONS(1700), 1, sym_float, - STATE(719), 1, - sym__case_clause_guard_binary_expression, - STATE(722), 1, - sym__case_clause_tuple_access, - STATE(729), 1, + STATE(742), 1, sym_identifier, + STATE(744), 1, + sym__case_clause_tuple_access, + STATE(745), 1, + sym__case_clause_guard_binary_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(543), 2, + STATE(566), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1636), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(750), 10, + STATE(791), 10, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -39922,46 +40758,46 @@ static const uint16_t ts_small_parse_table[] = { sym__case_clause_guard_unit, sym_string, sym_integer, - [41119] = 18, + [42003] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(695), 1, - anon_sym_DASH, - ACTIONS(711), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(723), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(767), 1, + ACTIONS(777), 1, sym__name, - ACTIONS(1620), 1, + ACTIONS(1658), 1, anon_sym_LBRACE, - ACTIONS(1622), 1, + ACTIONS(1660), 1, anon_sym_POUND, - ACTIONS(1624), 1, + ACTIONS(1662), 1, anon_sym_LBRACK, - ACTIONS(1626), 1, + ACTIONS(1664), 1, anon_sym_LT_LT, - ACTIONS(1670), 1, + ACTIONS(1694), 1, + anon_sym_DASH, + ACTIONS(1702), 1, sym_float, - STATE(710), 1, + STATE(742), 1, sym_identifier, - STATE(719), 1, - sym__case_clause_guard_binary_expression, - STATE(722), 1, + STATE(744), 1, sym__case_clause_tuple_access, + STATE(745), 1, + sym__case_clause_guard_binary_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(543), 2, + STATE(566), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(744), 10, + STATE(737), 10, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -39972,295 +40808,231 @@ static const uint16_t ts_small_parse_table[] = { sym__case_clause_guard_unit, sym_string, sym_integer, - [41187] = 19, + [42071] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(695), 1, + ACTIONS(1217), 1, anon_sym_DASH, - ACTIONS(711), 1, - anon_sym_DQUOTE, - ACTIONS(717), 1, - sym__decimal, - ACTIONS(723), 1, - sym__upname, - ACTIONS(767), 1, - sym__name, - ACTIONS(1175), 1, + ACTIONS(1658), 1, + anon_sym_LBRACE, + ACTIONS(1660), 1, anon_sym_POUND, - ACTIONS(1179), 1, + ACTIONS(1662), 1, anon_sym_LBRACK, - ACTIONS(1181), 1, + ACTIONS(1664), 1, anon_sym_LT_LT, - ACTIONS(1185), 1, - sym_float, - ACTIONS(1187), 1, - sym__discard_name, - ACTIONS(1672), 1, - anon_sym_RPAREN, - STATE(754), 1, - sym__pattern_binary_expression, - STATE(816), 1, - sym_identifier, - STATE(858), 1, - sym__pattern, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(682), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(715), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(826), 8, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_string, - sym_integer, - sym_discard, - [41256] = 19, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(695), 1, - anon_sym_DASH, - ACTIONS(711), 1, + ACTIONS(1666), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(1672), 1, sym__decimal, - ACTIONS(723), 1, - sym__upname, - ACTIONS(767), 1, + ACTIONS(1674), 1, sym__name, - ACTIONS(1175), 1, - anon_sym_POUND, - ACTIONS(1179), 1, - anon_sym_LBRACK, - ACTIONS(1181), 1, - anon_sym_LT_LT, - ACTIONS(1185), 1, + ACTIONS(1676), 1, + sym__upname, + ACTIONS(1702), 1, sym_float, - ACTIONS(1187), 1, - sym__discard_name, - ACTIONS(1674), 1, - anon_sym_RPAREN, - STATE(754), 1, - sym__pattern_binary_expression, - STATE(816), 1, + STATE(740), 1, sym_identifier, - STATE(858), 1, - sym__pattern, + STATE(744), 1, + sym__case_clause_tuple_access, + STATE(745), 1, + sym__case_clause_guard_binary_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(682), 2, + STATE(566), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(715), 3, + ACTIONS(1670), 3, sym__hex, sym__octal, sym__binary, - STATE(826), 8, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, + STATE(737), 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, - sym_discard, - [41325] = 16, + [42139] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1326), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1328), 1, + ACTIONS(1552), 1, anon_sym_AMP_AMP, - ACTIONS(1336), 1, + ACTIONS(1560), 1, anon_sym_PIPE_GT, - ACTIONS(1676), 1, - anon_sym_COMMA, - ACTIONS(1678), 1, - anon_sym_RBRACK, - ACTIONS(1680), 1, - anon_sym_DOT_DOT, - STATE(913), 1, - aux_sym_tuple_repeat1, + ACTIONS(1588), 1, + anon_sym_PIPE_PIPE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1316), 2, + ACTIONS(1354), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1324), 2, + ACTIONS(1550), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1330), 2, + ACTIONS(1554), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1338), 2, + ACTIONS(1562), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1318), 4, + ACTIONS(1356), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(1332), 4, + ACTIONS(1556), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1334), 4, + ACTIONS(1558), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [41388] = 19, + ACTIONS(1704), 5, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [42197] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(695), 1, - anon_sym_DASH, - ACTIONS(711), 1, - anon_sym_DQUOTE, - ACTIONS(717), 1, - sym__decimal, - ACTIONS(723), 1, - sym__upname, - ACTIONS(767), 1, - sym__name, - ACTIONS(1175), 1, - anon_sym_POUND, - ACTIONS(1179), 1, - anon_sym_LBRACK, - ACTIONS(1181), 1, - anon_sym_LT_LT, - ACTIONS(1185), 1, - sym_float, - ACTIONS(1187), 1, - sym__discard_name, - STATE(754), 1, - sym__pattern_binary_expression, - STATE(816), 1, - sym_identifier, - STATE(1029), 1, - sym__pattern, - STATE(1214), 1, - sym_pattern_bit_string_segment, + ACTIONS(1706), 1, + anon_sym_LPAREN, + STATE(609), 1, + sym_constant_record_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(682), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(715), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(826), 8, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_string, - sym_integer, - sym_discard, - [41457] = 19, + ACTIONS(1188), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1186), 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, + [42241] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(695), 1, - anon_sym_DASH, - ACTIONS(711), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(723), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(767), 1, + ACTIONS(777), 1, sym__name, - ACTIONS(1175), 1, + ACTIONS(1658), 1, + anon_sym_LBRACE, + ACTIONS(1660), 1, anon_sym_POUND, - ACTIONS(1179), 1, + ACTIONS(1662), 1, anon_sym_LBRACK, - ACTIONS(1181), 1, + ACTIONS(1664), 1, anon_sym_LT_LT, - ACTIONS(1185), 1, + ACTIONS(1694), 1, + anon_sym_DASH, + ACTIONS(1708), 1, sym_float, - ACTIONS(1187), 1, - sym__discard_name, - ACTIONS(1682), 1, - anon_sym_RPAREN, - STATE(754), 1, - sym__pattern_binary_expression, - STATE(816), 1, + STATE(742), 1, sym_identifier, - STATE(1082), 1, - sym__pattern, + STATE(744), 1, + sym__case_clause_tuple_access, + STATE(745), 1, + sym__case_clause_guard_binary_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(682), 2, + STATE(566), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(826), 8, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, + STATE(761), 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, - sym_discard, - [41526] = 19, + [42309] = 19, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1175), 1, + ACTIONS(647), 1, + anon_sym_DQUOTE, + ACTIONS(653), 1, + sym__decimal, + ACTIONS(659), 1, + sym__upname, + ACTIONS(777), 1, + sym__name, + ACTIONS(1211), 1, anon_sym_POUND, - ACTIONS(1179), 1, + ACTIONS(1213), 1, anon_sym_LBRACK, - ACTIONS(1181), 1, + ACTIONS(1215), 1, anon_sym_LT_LT, - ACTIONS(1187), 1, + ACTIONS(1227), 1, sym__discard_name, - ACTIONS(1207), 1, + ACTIONS(1235), 1, anon_sym_DASH, - ACTIONS(1209), 1, - anon_sym_DQUOTE, - ACTIONS(1211), 1, + ACTIONS(1239), 1, sym_float, - ACTIONS(1215), 1, - sym__decimal, - ACTIONS(1217), 1, - sym__name, - ACTIONS(1219), 1, - sym__upname, - ACTIONS(1684), 1, - anon_sym_LT_DASH, - STATE(754), 1, + STATE(179), 1, + sym__assignment, + STATE(803), 1, sym__pattern_binary_expression, - STATE(858), 1, - sym__pattern, - STATE(860), 1, + STATE(832), 1, sym_identifier, + STATE(1090), 1, + sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(682), 2, + STATE(702), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1213), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(862), 8, + STATE(837), 8, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -40269,48 +41041,48 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [41595] = 19, + [42378] = 19, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1175), 1, + ACTIONS(1211), 1, anon_sym_POUND, - ACTIONS(1179), 1, + ACTIONS(1213), 1, anon_sym_LBRACK, - ACTIONS(1181), 1, + ACTIONS(1215), 1, anon_sym_LT_LT, - ACTIONS(1187), 1, - sym__discard_name, - ACTIONS(1207), 1, - anon_sym_DASH, - ACTIONS(1209), 1, + ACTIONS(1219), 1, anon_sym_DQUOTE, - ACTIONS(1211), 1, - sym_float, - ACTIONS(1215), 1, + ACTIONS(1225), 1, sym__decimal, - ACTIONS(1217), 1, + ACTIONS(1227), 1, + sym__discard_name, + ACTIONS(1229), 1, sym__name, - ACTIONS(1219), 1, + ACTIONS(1231), 1, sym__upname, - ACTIONS(1686), 1, + ACTIONS(1235), 1, + anon_sym_DASH, + ACTIONS(1710), 1, anon_sym_LT_DASH, - STATE(754), 1, + ACTIONS(1712), 1, + sym_float, + STATE(803), 1, sym__pattern_binary_expression, - STATE(858), 1, + STATE(846), 1, sym__pattern, - STATE(860), 1, + STATE(861), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(682), 2, + STATE(702), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1213), 3, + ACTIONS(1223), 3, sym__hex, sym__octal, sym__binary, - STATE(862), 8, + STATE(969), 8, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -40319,95 +41091,48 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [41664] = 16, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1326), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1328), 1, - anon_sym_AMP_AMP, - ACTIONS(1336), 1, - anon_sym_PIPE_GT, - ACTIONS(1688), 1, - anon_sym_COMMA, - ACTIONS(1690), 1, - anon_sym_RBRACK, - ACTIONS(1692), 1, - anon_sym_DOT_DOT, - STATE(932), 1, - aux_sym_tuple_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1316), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1324), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1330), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1338), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1318), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(1332), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1334), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [41727] = 19, + [42447] = 19, ACTIONS(3), 1, sym_module_comment, - ACTIONS(695), 1, - anon_sym_DASH, - ACTIONS(711), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(723), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(767), 1, + ACTIONS(777), 1, sym__name, - ACTIONS(1175), 1, + ACTIONS(1211), 1, anon_sym_POUND, - ACTIONS(1179), 1, + ACTIONS(1213), 1, anon_sym_LBRACK, - ACTIONS(1181), 1, + ACTIONS(1215), 1, anon_sym_LT_LT, - ACTIONS(1185), 1, - sym_float, - ACTIONS(1187), 1, + ACTIONS(1227), 1, sym__discard_name, - STATE(500), 1, - sym__assignment, - STATE(754), 1, + ACTIONS(1235), 1, + anon_sym_DASH, + ACTIONS(1239), 1, + sym_float, + ACTIONS(1714), 1, + anon_sym_RPAREN, + STATE(803), 1, sym__pattern_binary_expression, - STATE(816), 1, + STATE(832), 1, sym_identifier, - STATE(1059), 1, + STATE(1015), 1, sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(682), 2, + STATE(702), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(826), 8, + STATE(837), 8, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -40416,48 +41141,48 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [41796] = 19, + [42516] = 19, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1175), 1, + ACTIONS(647), 1, + anon_sym_DQUOTE, + ACTIONS(653), 1, + sym__decimal, + ACTIONS(659), 1, + sym__upname, + ACTIONS(777), 1, + sym__name, + ACTIONS(1211), 1, anon_sym_POUND, - ACTIONS(1179), 1, + ACTIONS(1213), 1, anon_sym_LBRACK, - ACTIONS(1181), 1, + ACTIONS(1215), 1, anon_sym_LT_LT, - ACTIONS(1187), 1, + ACTIONS(1227), 1, sym__discard_name, - ACTIONS(1207), 1, + ACTIONS(1235), 1, anon_sym_DASH, - ACTIONS(1209), 1, - anon_sym_DQUOTE, - ACTIONS(1211), 1, + ACTIONS(1239), 1, sym_float, - ACTIONS(1215), 1, - sym__decimal, - ACTIONS(1217), 1, - sym__name, - ACTIONS(1219), 1, - sym__upname, - ACTIONS(1694), 1, - anon_sym_LT_DASH, - STATE(754), 1, + STATE(485), 1, + sym__assignment, + STATE(803), 1, sym__pattern_binary_expression, - STATE(858), 1, - sym__pattern, - STATE(860), 1, + STATE(832), 1, sym_identifier, + STATE(1071), 1, + sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(682), 2, + STATE(702), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1213), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(862), 8, + STATE(837), 8, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -40466,48 +41191,48 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [41865] = 19, + [42585] = 19, ACTIONS(3), 1, sym_module_comment, - ACTIONS(695), 1, - anon_sym_DASH, - ACTIONS(711), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(723), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(767), 1, + ACTIONS(777), 1, sym__name, - ACTIONS(1175), 1, + ACTIONS(1211), 1, anon_sym_POUND, - ACTIONS(1179), 1, + ACTIONS(1213), 1, anon_sym_LBRACK, - ACTIONS(1181), 1, + ACTIONS(1215), 1, anon_sym_LT_LT, - ACTIONS(1185), 1, - sym_float, - ACTIONS(1187), 1, + ACTIONS(1227), 1, sym__discard_name, - STATE(165), 1, + ACTIONS(1235), 1, + anon_sym_DASH, + ACTIONS(1239), 1, + sym_float, + STATE(179), 1, sym__assignment, - STATE(754), 1, + STATE(803), 1, sym__pattern_binary_expression, - STATE(816), 1, + STATE(832), 1, sym_identifier, - STATE(1059), 1, + STATE(1071), 1, sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(682), 2, + STATE(702), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(826), 8, + STATE(837), 8, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -40516,95 +41241,95 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [41934] = 16, + [42654] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1326), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1328), 1, + ACTIONS(1552), 1, anon_sym_AMP_AMP, - ACTIONS(1336), 1, + ACTIONS(1560), 1, anon_sym_PIPE_GT, - ACTIONS(1696), 1, + ACTIONS(1588), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1716), 1, anon_sym_COMMA, - ACTIONS(1698), 1, + ACTIONS(1718), 1, anon_sym_RBRACK, - ACTIONS(1700), 1, + ACTIONS(1720), 1, anon_sym_DOT_DOT, - STATE(937), 1, + STATE(958), 1, aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1316), 2, + ACTIONS(1354), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1324), 2, + ACTIONS(1550), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1330), 2, + ACTIONS(1554), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1338), 2, + ACTIONS(1562), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1318), 4, + ACTIONS(1356), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(1332), 4, + ACTIONS(1556), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1334), 4, + ACTIONS(1558), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [41997] = 19, + [42717] = 19, ACTIONS(3), 1, sym_module_comment, - ACTIONS(695), 1, - anon_sym_DASH, - ACTIONS(711), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(723), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(767), 1, + ACTIONS(777), 1, sym__name, - ACTIONS(1175), 1, + ACTIONS(1211), 1, anon_sym_POUND, - ACTIONS(1179), 1, + ACTIONS(1213), 1, anon_sym_LBRACK, - ACTIONS(1181), 1, + ACTIONS(1215), 1, anon_sym_LT_LT, - ACTIONS(1185), 1, - sym_float, - ACTIONS(1187), 1, + ACTIONS(1227), 1, sym__discard_name, - STATE(478), 1, - sym__assignment, - STATE(754), 1, + ACTIONS(1235), 1, + anon_sym_DASH, + ACTIONS(1239), 1, + sym_float, + STATE(803), 1, sym__pattern_binary_expression, - STATE(816), 1, + STATE(832), 1, sym_identifier, - STATE(1055), 1, + STATE(1042), 1, sym__pattern, + STATE(1251), 1, + sym_pattern_bit_string_segment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(682), 2, + STATE(702), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(826), 8, + STATE(837), 8, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -40613,48 +41338,48 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [42066] = 19, + [42786] = 19, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1175), 1, + ACTIONS(1211), 1, anon_sym_POUND, - ACTIONS(1179), 1, + ACTIONS(1213), 1, anon_sym_LBRACK, - ACTIONS(1181), 1, + ACTIONS(1215), 1, anon_sym_LT_LT, - ACTIONS(1187), 1, - sym__discard_name, - ACTIONS(1207), 1, + ACTIONS(1217), 1, anon_sym_DASH, - ACTIONS(1209), 1, + ACTIONS(1219), 1, anon_sym_DQUOTE, - ACTIONS(1211), 1, + ACTIONS(1221), 1, sym_float, - ACTIONS(1215), 1, + ACTIONS(1225), 1, sym__decimal, - ACTIONS(1217), 1, + ACTIONS(1227), 1, + sym__discard_name, + ACTIONS(1229), 1, sym__name, - ACTIONS(1219), 1, + ACTIONS(1231), 1, sym__upname, - ACTIONS(1702), 1, - anon_sym_LT_DASH, - STATE(754), 1, + STATE(803), 1, sym__pattern_binary_expression, - STATE(860), 1, + STATE(861), 1, sym_identifier, - STATE(1057), 1, + STATE(920), 1, sym__pattern, + STATE(1080), 1, + sym_case_clause_pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(682), 2, + STATE(702), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1213), 3, + ACTIONS(1223), 3, sym__hex, sym__octal, sym__binary, - STATE(862), 8, + STATE(901), 8, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -40663,48 +41388,95 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [42135] = 19, + [42855] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(695), 1, + ACTIONS(1552), 1, + anon_sym_AMP_AMP, + ACTIONS(1560), 1, + anon_sym_PIPE_GT, + ACTIONS(1588), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1722), 1, + anon_sym_COMMA, + ACTIONS(1724), 1, + anon_sym_RBRACK, + ACTIONS(1726), 1, + anon_sym_DOT_DOT, + STATE(952), 1, + aux_sym_tuple_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1354), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1550), 2, anon_sym_DASH, - ACTIONS(711), 1, + anon_sym_PLUS, + ACTIONS(1554), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1562), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1356), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1556), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1558), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [42918] = 19, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(723), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(767), 1, + ACTIONS(777), 1, sym__name, - ACTIONS(1175), 1, + ACTIONS(1211), 1, anon_sym_POUND, - ACTIONS(1179), 1, + ACTIONS(1213), 1, anon_sym_LBRACK, - ACTIONS(1181), 1, + ACTIONS(1215), 1, anon_sym_LT_LT, - ACTIONS(1185), 1, - sym_float, - ACTIONS(1187), 1, + ACTIONS(1227), 1, sym__discard_name, - STATE(165), 1, + ACTIONS(1235), 1, + anon_sym_DASH, + ACTIONS(1239), 1, + sym_float, + STATE(670), 1, sym__assignment, - STATE(754), 1, + STATE(803), 1, sym__pattern_binary_expression, - STATE(816), 1, + STATE(832), 1, sym_identifier, - STATE(1080), 1, + STATE(1090), 1, sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(682), 2, + STATE(702), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(826), 8, + STATE(837), 8, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -40713,48 +41485,48 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [42204] = 19, + [42987] = 19, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1175), 1, + ACTIONS(1211), 1, anon_sym_POUND, - ACTIONS(1179), 1, + ACTIONS(1213), 1, anon_sym_LBRACK, - ACTIONS(1181), 1, + ACTIONS(1215), 1, anon_sym_LT_LT, - ACTIONS(1187), 1, - sym__discard_name, - ACTIONS(1207), 1, - anon_sym_DASH, - ACTIONS(1209), 1, + ACTIONS(1219), 1, anon_sym_DQUOTE, - ACTIONS(1211), 1, - sym_float, - ACTIONS(1215), 1, + ACTIONS(1225), 1, sym__decimal, - ACTIONS(1217), 1, + ACTIONS(1227), 1, + sym__discard_name, + ACTIONS(1229), 1, sym__name, - ACTIONS(1219), 1, + ACTIONS(1231), 1, sym__upname, - ACTIONS(1704), 1, + ACTIONS(1235), 1, + anon_sym_DASH, + ACTIONS(1712), 1, + sym_float, + ACTIONS(1728), 1, anon_sym_LT_DASH, - STATE(754), 1, + STATE(803), 1, sym__pattern_binary_expression, - STATE(860), 1, + STATE(861), 1, sym_identifier, - STATE(1081), 1, + STATE(1091), 1, sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(682), 2, + STATE(702), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1213), 3, + ACTIONS(1223), 3, sym__hex, sym__octal, sym__binary, - STATE(862), 8, + STATE(969), 8, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -40763,48 +41535,48 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [42273] = 19, + [43056] = 19, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1175), 1, + ACTIONS(647), 1, + anon_sym_DQUOTE, + ACTIONS(653), 1, + sym__decimal, + ACTIONS(659), 1, + sym__upname, + ACTIONS(777), 1, + sym__name, + ACTIONS(1211), 1, anon_sym_POUND, - ACTIONS(1179), 1, + ACTIONS(1213), 1, anon_sym_LBRACK, - ACTIONS(1181), 1, + ACTIONS(1215), 1, anon_sym_LT_LT, - ACTIONS(1187), 1, + ACTIONS(1227), 1, sym__discard_name, - ACTIONS(1207), 1, + ACTIONS(1235), 1, anon_sym_DASH, - ACTIONS(1209), 1, - anon_sym_DQUOTE, - ACTIONS(1211), 1, + ACTIONS(1239), 1, sym_float, - ACTIONS(1215), 1, - sym__decimal, - ACTIONS(1217), 1, - sym__name, - ACTIONS(1219), 1, - sym__upname, - STATE(754), 1, + STATE(492), 1, + sym__assignment, + STATE(803), 1, sym__pattern_binary_expression, - STATE(860), 1, + STATE(832), 1, sym_identifier, - STATE(906), 1, + STATE(1067), 1, sym__pattern, - STATE(1117), 1, - sym_case_clause_pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(682), 2, + STATE(702), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1213), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(862), 8, + STATE(837), 8, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -40813,48 +41585,95 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [42342] = 19, + [43125] = 16, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1552), 1, + anon_sym_AMP_AMP, + ACTIONS(1560), 1, + anon_sym_PIPE_GT, + ACTIONS(1588), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1730), 1, + anon_sym_COMMA, + ACTIONS(1732), 1, + anon_sym_RBRACK, + ACTIONS(1734), 1, + anon_sym_DOT_DOT, + STATE(943), 1, + aux_sym_tuple_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1354), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1550), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1554), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1562), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1356), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1556), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1558), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [43188] = 19, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1175), 1, + ACTIONS(1211), 1, anon_sym_POUND, - ACTIONS(1179), 1, + ACTIONS(1213), 1, anon_sym_LBRACK, - ACTIONS(1181), 1, + ACTIONS(1215), 1, anon_sym_LT_LT, - ACTIONS(1187), 1, - sym__discard_name, - ACTIONS(1207), 1, - anon_sym_DASH, - ACTIONS(1209), 1, + ACTIONS(1219), 1, anon_sym_DQUOTE, - ACTIONS(1211), 1, - sym_float, - ACTIONS(1215), 1, + ACTIONS(1225), 1, sym__decimal, - ACTIONS(1217), 1, + ACTIONS(1227), 1, + sym__discard_name, + ACTIONS(1229), 1, sym__name, - ACTIONS(1219), 1, + ACTIONS(1231), 1, sym__upname, - ACTIONS(1706), 1, + ACTIONS(1235), 1, + anon_sym_DASH, + ACTIONS(1712), 1, + sym_float, + ACTIONS(1736), 1, anon_sym_LT_DASH, - STATE(754), 1, + STATE(803), 1, sym__pattern_binary_expression, - STATE(858), 1, + STATE(846), 1, sym__pattern, - STATE(860), 1, + STATE(861), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(682), 2, + STATE(702), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1213), 3, + ACTIONS(1223), 3, sym__hex, sym__octal, sym__binary, - STATE(862), 8, + STATE(969), 8, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -40863,48 +41682,48 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [42411] = 19, + [43257] = 19, ACTIONS(3), 1, sym_module_comment, - ACTIONS(695), 1, - anon_sym_DASH, - ACTIONS(711), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(723), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(767), 1, + ACTIONS(777), 1, sym__name, - ACTIONS(1175), 1, + ACTIONS(1211), 1, anon_sym_POUND, - ACTIONS(1179), 1, + ACTIONS(1213), 1, anon_sym_LBRACK, - ACTIONS(1181), 1, + ACTIONS(1215), 1, anon_sym_LT_LT, - ACTIONS(1185), 1, - sym_float, - ACTIONS(1187), 1, + ACTIONS(1227), 1, sym__discard_name, - STATE(80), 1, - sym__assignment, - STATE(754), 1, + ACTIONS(1235), 1, + anon_sym_DASH, + ACTIONS(1239), 1, + sym_float, + ACTIONS(1738), 1, + anon_sym_RPAREN, + STATE(803), 1, sym__pattern_binary_expression, - STATE(816), 1, + STATE(832), 1, sym_identifier, - STATE(1055), 1, + STATE(846), 1, sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(682), 2, + STATE(702), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(826), 8, + STATE(837), 8, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -40913,48 +41732,48 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [42480] = 19, + [43326] = 19, ACTIONS(3), 1, sym_module_comment, - ACTIONS(695), 1, - anon_sym_DASH, - ACTIONS(711), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(723), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(767), 1, + ACTIONS(777), 1, sym__name, - ACTIONS(1175), 1, + ACTIONS(1211), 1, anon_sym_POUND, - ACTIONS(1179), 1, + ACTIONS(1213), 1, anon_sym_LBRACK, - ACTIONS(1181), 1, + ACTIONS(1215), 1, anon_sym_LT_LT, - ACTIONS(1185), 1, - sym_float, - ACTIONS(1187), 1, + ACTIONS(1227), 1, sym__discard_name, - STATE(661), 1, - sym__assignment, - STATE(754), 1, + ACTIONS(1235), 1, + anon_sym_DASH, + ACTIONS(1239), 1, + sym_float, + ACTIONS(1740), 1, + anon_sym_RPAREN, + STATE(803), 1, sym__pattern_binary_expression, - STATE(816), 1, + STATE(832), 1, sym_identifier, - STATE(1080), 1, + STATE(846), 1, sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(682), 2, + STATE(702), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(826), 8, + STATE(837), 8, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -40963,95 +41782,48 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [42549] = 16, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1326), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1328), 1, - anon_sym_AMP_AMP, - ACTIONS(1336), 1, - anon_sym_PIPE_GT, - ACTIONS(1708), 1, - anon_sym_COMMA, - ACTIONS(1710), 1, - anon_sym_RBRACK, - ACTIONS(1712), 1, - anon_sym_DOT_DOT, - STATE(955), 1, - aux_sym_tuple_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1316), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1324), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1330), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1338), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1318), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(1332), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1334), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [42612] = 19, + [43395] = 19, ACTIONS(3), 1, sym_module_comment, - ACTIONS(695), 1, - anon_sym_DASH, - ACTIONS(711), 1, - anon_sym_DQUOTE, - ACTIONS(717), 1, - sym__decimal, - ACTIONS(723), 1, - sym__upname, - ACTIONS(767), 1, - sym__name, - ACTIONS(1175), 1, + ACTIONS(1211), 1, anon_sym_POUND, - ACTIONS(1179), 1, + ACTIONS(1213), 1, anon_sym_LBRACK, - ACTIONS(1181), 1, + ACTIONS(1215), 1, anon_sym_LT_LT, - ACTIONS(1185), 1, - sym_float, - ACTIONS(1187), 1, + ACTIONS(1219), 1, + anon_sym_DQUOTE, + ACTIONS(1225), 1, + sym__decimal, + ACTIONS(1227), 1, sym__discard_name, - STATE(351), 1, - sym__assignment, - STATE(754), 1, + ACTIONS(1229), 1, + sym__name, + ACTIONS(1231), 1, + sym__upname, + ACTIONS(1235), 1, + anon_sym_DASH, + ACTIONS(1712), 1, + sym_float, + ACTIONS(1742), 1, + anon_sym_LT_DASH, + STATE(803), 1, sym__pattern_binary_expression, - STATE(816), 1, - sym_identifier, - STATE(1016), 1, + STATE(846), 1, sym__pattern, + STATE(861), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(682), 2, + STATE(702), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(715), 3, + ACTIONS(1223), 3, sym__hex, sym__octal, sym__binary, - STATE(826), 8, + STATE(969), 8, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -41060,46 +41832,48 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [42681] = 18, + [43464] = 19, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1175), 1, + ACTIONS(647), 1, + anon_sym_DQUOTE, + ACTIONS(653), 1, + sym__decimal, + ACTIONS(659), 1, + sym__upname, + ACTIONS(777), 1, + sym__name, + ACTIONS(1211), 1, anon_sym_POUND, - ACTIONS(1179), 1, + ACTIONS(1213), 1, anon_sym_LBRACK, - ACTIONS(1181), 1, + ACTIONS(1215), 1, anon_sym_LT_LT, - ACTIONS(1187), 1, + ACTIONS(1227), 1, sym__discard_name, - ACTIONS(1207), 1, + ACTIONS(1235), 1, anon_sym_DASH, - ACTIONS(1209), 1, - anon_sym_DQUOTE, - ACTIONS(1211), 1, + ACTIONS(1239), 1, sym_float, - ACTIONS(1215), 1, - sym__decimal, - ACTIONS(1217), 1, - sym__name, - ACTIONS(1219), 1, - sym__upname, - STATE(754), 1, + STATE(360), 1, + sym__assignment, + STATE(803), 1, sym__pattern_binary_expression, - STATE(858), 1, - sym__pattern, - STATE(860), 1, + STATE(832), 1, sym_identifier, + STATE(1048), 1, + sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(682), 2, + STATE(702), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1213), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(862), 8, + STATE(837), 8, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -41108,80 +41882,48 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [42747] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1418), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1416), 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, - [42785] = 18, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(695), 1, - anon_sym_DASH, - ACTIONS(711), 1, - anon_sym_DQUOTE, - ACTIONS(717), 1, - sym__decimal, - ACTIONS(723), 1, - sym__upname, - ACTIONS(767), 1, - sym__name, - ACTIONS(1175), 1, + [43533] = 19, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1211), 1, anon_sym_POUND, - ACTIONS(1179), 1, + ACTIONS(1213), 1, anon_sym_LBRACK, - ACTIONS(1181), 1, + ACTIONS(1215), 1, anon_sym_LT_LT, - ACTIONS(1185), 1, - sym_float, - ACTIONS(1187), 1, + ACTIONS(1219), 1, + anon_sym_DQUOTE, + ACTIONS(1225), 1, + sym__decimal, + ACTIONS(1227), 1, sym__discard_name, - STATE(754), 1, + ACTIONS(1229), 1, + sym__name, + ACTIONS(1231), 1, + sym__upname, + ACTIONS(1235), 1, + anon_sym_DASH, + ACTIONS(1712), 1, + sym_float, + ACTIONS(1744), 1, + anon_sym_LT_DASH, + STATE(803), 1, sym__pattern_binary_expression, - STATE(816), 1, + STATE(861), 1, sym_identifier, - STATE(1035), 1, + STATE(1070), 1, sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(682), 2, + STATE(702), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(715), 3, + ACTIONS(1223), 3, sym__hex, sym__octal, sym__binary, - STATE(826), 8, + STATE(969), 8, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -41190,176 +41932,165 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [42851] = 15, + [43602] = 19, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1326), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1328), 1, - anon_sym_AMP_AMP, - ACTIONS(1336), 1, - anon_sym_PIPE_GT, - ACTIONS(1714), 1, - anon_sym_COMMA, - ACTIONS(1716), 1, - anon_sym_RPAREN, - STATE(1044), 1, - aux_sym_tuple_repeat1, + ACTIONS(1211), 1, + anon_sym_POUND, + ACTIONS(1213), 1, + anon_sym_LBRACK, + ACTIONS(1215), 1, + anon_sym_LT_LT, + ACTIONS(1219), 1, + anon_sym_DQUOTE, + ACTIONS(1225), 1, + sym__decimal, + ACTIONS(1227), 1, + sym__discard_name, + ACTIONS(1229), 1, + sym__name, + ACTIONS(1231), 1, + sym__upname, + ACTIONS(1235), 1, + anon_sym_DASH, + ACTIONS(1712), 1, + sym_float, + ACTIONS(1746), 1, + anon_sym_LT_DASH, + STATE(803), 1, + sym__pattern_binary_expression, + STATE(846), 1, + sym__pattern, + STATE(861), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1316), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1324), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1330), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1338), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1318), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(1332), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1334), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [42911] = 15, + STATE(702), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(1223), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(969), 8, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_string, + sym_integer, + sym_discard, + [43671] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1326), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1328), 1, + ACTIONS(1552), 1, anon_sym_AMP_AMP, - ACTIONS(1336), 1, + ACTIONS(1560), 1, anon_sym_PIPE_GT, - ACTIONS(1718), 1, + ACTIONS(1588), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1748), 1, anon_sym_COMMA, - ACTIONS(1720), 1, - anon_sym_RPAREN, - STATE(1107), 1, + ACTIONS(1750), 1, + anon_sym_RBRACK, + ACTIONS(1752), 1, + anon_sym_DOT_DOT, + STATE(936), 1, aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1316), 2, + ACTIONS(1354), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1324), 2, + ACTIONS(1550), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1330), 2, + ACTIONS(1554), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1338), 2, + ACTIONS(1562), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1318), 4, + ACTIONS(1356), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(1332), 4, + ACTIONS(1556), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1334), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [42971] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, ACTIONS(1558), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1556), 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, - [43009] = 4, + [43734] = 19, ACTIONS(3), 1, sym_module_comment, + ACTIONS(647), 1, + anon_sym_DQUOTE, + ACTIONS(653), 1, + sym__decimal, + ACTIONS(659), 1, + sym__upname, + ACTIONS(777), 1, + sym__name, + ACTIONS(1211), 1, + anon_sym_POUND, + ACTIONS(1213), 1, + anon_sym_LBRACK, + ACTIONS(1215), 1, + anon_sym_LT_LT, + ACTIONS(1227), 1, + sym__discard_name, + ACTIONS(1235), 1, + anon_sym_DASH, + ACTIONS(1239), 1, + sym_float, + STATE(89), 1, + sym__assignment, + STATE(803), 1, + sym__pattern_binary_expression, + STATE(832), 1, + sym_identifier, + STATE(1067), 1, + sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1570), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1568), 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, - [43047] = 4, + STATE(702), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(651), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(837), 8, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_string, + sym_integer, + sym_discard, + [43803] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1486), 4, + ACTIONS(1472), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1484), 22, + ACTIONS(1470), 22, anon_sym_RBRACE, anon_sym_import, anon_sym_COMMA, @@ -41382,111 +42113,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ_DOT, sym_visibility_modifier, sym_opacity_modifier, - [43085] = 15, + [43841] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1326), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1328), 1, + ACTIONS(1552), 1, anon_sym_AMP_AMP, - ACTIONS(1336), 1, + ACTIONS(1560), 1, anon_sym_PIPE_GT, - ACTIONS(1722), 1, + ACTIONS(1588), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1754), 1, + anon_sym_LBRACE, + ACTIONS(1756), 1, anon_sym_COMMA, - ACTIONS(1724), 1, - anon_sym_RPAREN, - STATE(1025), 1, + STATE(1016), 1, aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1316), 2, + ACTIONS(1354), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1324), 2, + ACTIONS(1550), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1330), 2, + ACTIONS(1554), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1338), 2, + ACTIONS(1562), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1318), 4, + ACTIONS(1356), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(1332), 4, + ACTIONS(1556), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1334), 4, + ACTIONS(1558), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [43145] = 18, + [43901] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(695), 1, - anon_sym_DASH, - ACTIONS(711), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(723), 1, + ACTIONS(376), 1, sym__upname, - ACTIONS(767), 1, + ACTIONS(657), 1, sym__name, - ACTIONS(1175), 1, + ACTIONS(1235), 1, + anon_sym_DASH, + ACTIONS(1660), 1, anon_sym_POUND, - ACTIONS(1179), 1, + ACTIONS(1662), 1, anon_sym_LBRACK, - ACTIONS(1181), 1, + ACTIONS(1664), 1, anon_sym_LT_LT, - ACTIONS(1185), 1, + ACTIONS(1758), 1, + anon_sym_RPAREN, + ACTIONS(1760), 1, sym_float, - ACTIONS(1187), 1, - sym__discard_name, - STATE(754), 1, - sym__pattern_binary_expression, - STATE(816), 1, + STATE(884), 1, sym_identifier, - STATE(858), 1, - sym__pattern, + STATE(1187), 1, + sym_constant_record_argument, + STATE(1350), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(682), 2, + STATE(566), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(715), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(826), 8, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, + STATE(1194), 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, - [43211] = 4, + [43967] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1490), 4, + ACTIONS(1624), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1488), 22, + ACTIONS(1622), 22, anon_sym_RBRACE, anon_sym_import, anon_sym_COMMA, @@ -41509,18 +42240,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ_DOT, sym_visibility_modifier, sym_opacity_modifier, - [43249] = 4, + [44005] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1366), 4, + ACTIONS(1620), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1364), 22, + ACTIONS(1618), 22, anon_sym_RBRACE, anon_sym_import, anon_sym_COMMA, @@ -41543,18 +42274,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ_DOT, sym_visibility_modifier, sym_opacity_modifier, - [43287] = 4, + [44043] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1362), 4, + ACTIONS(1604), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1360), 22, + ACTIONS(1602), 22, anon_sym_RBRACE, anon_sym_import, anon_sym_COMMA, @@ -41577,18 +42308,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ_DOT, sym_visibility_modifier, sym_opacity_modifier, - [43325] = 4, + [44081] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1354), 4, + ACTIONS(1600), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1352), 22, + ACTIONS(1598), 22, anon_sym_RBRACE, anon_sym_import, anon_sym_COMMA, @@ -41611,18 +42342,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ_DOT, sym_visibility_modifier, sym_opacity_modifier, - [43363] = 4, + [44119] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1350), 4, + ACTIONS(1566), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1348), 22, + ACTIONS(1564), 22, anon_sym_RBRACE, anon_sym_import, anon_sym_COMMA, @@ -41645,18 +42376,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ_DOT, sym_visibility_modifier, sym_opacity_modifier, - [43401] = 4, + [44157] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1342), 4, + ACTIONS(1544), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1340), 22, + ACTIONS(1542), 22, anon_sym_RBRACE, anon_sym_import, anon_sym_COMMA, @@ -41679,46 +42410,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ_DOT, sym_visibility_modifier, sym_opacity_modifier, - [43439] = 18, + [44195] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(286), 1, - anon_sym_DASH, - ACTIONS(306), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(312), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(316), 1, + ACTIONS(376), 1, sym__upname, - ACTIONS(721), 1, + ACTIONS(657), 1, sym__name, - ACTIONS(1622), 1, + ACTIONS(1235), 1, + anon_sym_DASH, + ACTIONS(1660), 1, anon_sym_POUND, - ACTIONS(1624), 1, + ACTIONS(1662), 1, anon_sym_LBRACK, - ACTIONS(1626), 1, + ACTIONS(1664), 1, anon_sym_LT_LT, - ACTIONS(1726), 1, - anon_sym_RPAREN, - ACTIONS(1728), 1, + ACTIONS(1760), 1, sym_float, - STATE(891), 1, + ACTIONS(1762), 1, + anon_sym_RPAREN, + STATE(884), 1, sym_identifier, - STATE(1230), 1, + STATE(1187), 1, sym_constant_record_argument, - STATE(1279), 1, + STATE(1350), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(543), 2, + STATE(566), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(310), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(1228), 8, + STATE(1194), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -41727,46 +42458,46 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [43505] = 18, + [44261] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(286), 1, - anon_sym_DASH, - ACTIONS(306), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(312), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(316), 1, + ACTIONS(376), 1, sym__upname, - ACTIONS(721), 1, + ACTIONS(657), 1, sym__name, - ACTIONS(1622), 1, + ACTIONS(1235), 1, + anon_sym_DASH, + ACTIONS(1660), 1, anon_sym_POUND, - ACTIONS(1624), 1, + ACTIONS(1662), 1, anon_sym_LBRACK, - ACTIONS(1626), 1, + ACTIONS(1664), 1, anon_sym_LT_LT, - ACTIONS(1728), 1, + ACTIONS(1760), 1, sym_float, - ACTIONS(1730), 1, + ACTIONS(1764), 1, anon_sym_RPAREN, - STATE(891), 1, + STATE(884), 1, sym_identifier, - STATE(1230), 1, + STATE(1187), 1, sym_constant_record_argument, - STATE(1279), 1, + STATE(1350), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(543), 2, + STATE(566), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(310), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(1228), 8, + STATE(1194), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -41775,18 +42506,111 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [43571] = 4, + [44327] = 15, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1552), 1, + anon_sym_AMP_AMP, + ACTIONS(1560), 1, + anon_sym_PIPE_GT, + ACTIONS(1588), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1766), 1, + anon_sym_COMMA, + ACTIONS(1768), 1, + anon_sym_RPAREN, + STATE(1120), 1, + aux_sym_tuple_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1354), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1550), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1554), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1562), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1356), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1556), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1558), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [44387] = 18, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1211), 1, + anon_sym_POUND, + ACTIONS(1213), 1, + anon_sym_LBRACK, + ACTIONS(1215), 1, + anon_sym_LT_LT, + ACTIONS(1219), 1, + anon_sym_DQUOTE, + ACTIONS(1225), 1, + sym__decimal, + ACTIONS(1227), 1, + sym__discard_name, + ACTIONS(1229), 1, + sym__name, + ACTIONS(1231), 1, + sym__upname, + ACTIONS(1235), 1, + anon_sym_DASH, + ACTIONS(1712), 1, + sym_float, + STATE(803), 1, + sym__pattern_binary_expression, + STATE(846), 1, + sym__pattern, + STATE(861), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(702), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(1223), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(969), 8, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_string, + sym_integer, + sym_discard, + [44453] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1370), 4, + ACTIONS(1408), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1368), 22, + ACTIONS(1406), 22, anon_sym_RBRACE, anon_sym_import, anon_sym_COMMA, @@ -41809,63 +42633,216 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ_DOT, sym_visibility_modifier, sym_opacity_modifier, - [43609] = 15, + [44491] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1326), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1328), 1, - anon_sym_AMP_AMP, - ACTIONS(1336), 1, - anon_sym_PIPE_GT, - ACTIONS(1732), 1, + ACTIONS(647), 1, + anon_sym_DQUOTE, + ACTIONS(653), 1, + sym__decimal, + ACTIONS(659), 1, + sym__upname, + ACTIONS(777), 1, + sym__name, + ACTIONS(1211), 1, + anon_sym_POUND, + ACTIONS(1213), 1, + anon_sym_LBRACK, + ACTIONS(1215), 1, + anon_sym_LT_LT, + ACTIONS(1227), 1, + sym__discard_name, + ACTIONS(1235), 1, + anon_sym_DASH, + ACTIONS(1239), 1, + sym_float, + STATE(803), 1, + sym__pattern_binary_expression, + STATE(832), 1, + sym_identifier, + STATE(846), 1, + sym__pattern, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(702), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(651), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(837), 8, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_string, + sym_integer, + sym_discard, + [44557] = 18, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(647), 1, + anon_sym_DQUOTE, + ACTIONS(653), 1, + sym__decimal, + ACTIONS(659), 1, + sym__upname, + ACTIONS(777), 1, + sym__name, + ACTIONS(1211), 1, + anon_sym_POUND, + ACTIONS(1213), 1, + anon_sym_LBRACK, + ACTIONS(1215), 1, + anon_sym_LT_LT, + ACTIONS(1227), 1, + sym__discard_name, + ACTIONS(1235), 1, + anon_sym_DASH, + ACTIONS(1239), 1, + sym_float, + STATE(803), 1, + sym__pattern_binary_expression, + STATE(832), 1, + sym_identifier, + STATE(1053), 1, + sym__pattern, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(702), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(651), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(837), 8, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_string, + sym_integer, + sym_discard, + [44623] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1404), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1402), 22, + anon_sym_RBRACE, + anon_sym_import, anon_sym_COMMA, - ACTIONS(1734), 1, + anon_sym_const, anon_sym_RPAREN, - STATE(969), 1, - aux_sym_tuple_repeat1, + 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, + [44661] = 4, + ACTIONS(3), 1, + sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1316), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1324), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1330), 2, + ACTIONS(1548), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1546), 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, - ACTIONS(1338), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1318), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(1332), 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, + [44699] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1440), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1334), 4, + ACTIONS(1438), 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, - [43669] = 4, + sym_visibility_modifier, + sym_opacity_modifier, + [44737] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1466), 4, + ACTIONS(1632), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1464), 22, + ACTIONS(1630), 22, anon_sym_RBRACE, anon_sym_import, anon_sym_COMMA, @@ -41888,18 +42865,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ_DOT, sym_visibility_modifier, sym_opacity_modifier, - [43707] = 4, + [44775] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1586), 4, + ACTIONS(1452), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1584), 22, + ACTIONS(1450), 22, anon_sym_RBRACE, anon_sym_import, anon_sym_COMMA, @@ -41920,20 +42897,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [43745] = 4, + sym_visibility_modifier, + sym_opacity_modifier, + [44813] = 15, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1552), 1, + anon_sym_AMP_AMP, + ACTIONS(1560), 1, + anon_sym_PIPE_GT, + ACTIONS(1588), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1770), 1, + anon_sym_COMMA, + ACTIONS(1772), 1, + anon_sym_RPAREN, + STATE(1062), 1, + aux_sym_tuple_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1354), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1550), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1554), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1562), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1356), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1556), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1558), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [44873] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1422), 4, + ACTIONS(1396), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1420), 22, + ACTIONS(1394), 22, anon_sym_RBRACE, anon_sym_import, anon_sym_COMMA, @@ -41956,46 +42978,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ_DOT, sym_visibility_modifier, sym_opacity_modifier, - [43783] = 18, + [44911] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(286), 1, - anon_sym_DASH, - ACTIONS(306), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(312), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(316), 1, + ACTIONS(376), 1, sym__upname, - ACTIONS(721), 1, + ACTIONS(657), 1, sym__name, - ACTIONS(1622), 1, + ACTIONS(1235), 1, + anon_sym_DASH, + ACTIONS(1660), 1, anon_sym_POUND, - ACTIONS(1624), 1, + ACTIONS(1662), 1, anon_sym_LBRACK, - ACTIONS(1626), 1, + ACTIONS(1664), 1, anon_sym_LT_LT, - ACTIONS(1728), 1, + ACTIONS(1760), 1, sym_float, - ACTIONS(1736), 1, + ACTIONS(1774), 1, anon_sym_RPAREN, - STATE(891), 1, + STATE(884), 1, sym_identifier, - STATE(1030), 1, + STATE(1141), 1, sym_constant_record_argument, - STATE(1279), 1, + STATE(1350), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(543), 2, + STATE(566), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(310), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(1228), 8, + STATE(1194), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -42004,18 +43026,114 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [43849] = 4, + [44977] = 18, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1211), 1, + anon_sym_POUND, + ACTIONS(1213), 1, + anon_sym_LBRACK, + ACTIONS(1215), 1, + anon_sym_LT_LT, + ACTIONS(1217), 1, + anon_sym_DASH, + ACTIONS(1219), 1, + anon_sym_DQUOTE, + ACTIONS(1221), 1, + sym_float, + ACTIONS(1225), 1, + sym__decimal, + ACTIONS(1227), 1, + sym__discard_name, + ACTIONS(1229), 1, + sym__name, + ACTIONS(1231), 1, + sym__upname, + STATE(803), 1, + sym__pattern_binary_expression, + STATE(846), 1, + sym__pattern, + STATE(861), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(702), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(1223), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(901), 8, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_string, + sym_integer, + sym_discard, + [45043] = 18, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(647), 1, + anon_sym_DQUOTE, + ACTIONS(653), 1, + sym__decimal, + ACTIONS(659), 1, + sym__upname, + ACTIONS(777), 1, + sym__name, + ACTIONS(1211), 1, + anon_sym_POUND, + ACTIONS(1213), 1, + anon_sym_LBRACK, + ACTIONS(1215), 1, + anon_sym_LT_LT, + ACTIONS(1227), 1, + sym__discard_name, + ACTIONS(1235), 1, + anon_sym_DASH, + ACTIONS(1239), 1, + sym_float, + STATE(803), 1, + sym__pattern_binary_expression, + STATE(832), 1, + sym_identifier, + STATE(1087), 1, + sym__pattern, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(702), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(651), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(837), 8, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_string, + sym_integer, + sym_discard, + [45109] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1470), 4, + ACTIONS(1448), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1468), 22, + ACTIONS(1446), 22, anon_sym_RBRACE, anon_sym_import, anon_sym_COMMA, @@ -42038,94 +43156,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ_DOT, sym_visibility_modifier, sym_opacity_modifier, - [43887] = 18, + [45147] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(286), 1, - anon_sym_DASH, - ACTIONS(306), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(312), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(316), 1, + ACTIONS(376), 1, sym__upname, - ACTIONS(721), 1, + ACTIONS(657), 1, sym__name, - ACTIONS(1622), 1, - anon_sym_POUND, - ACTIONS(1624), 1, - anon_sym_LBRACK, - ACTIONS(1626), 1, - anon_sym_LT_LT, - ACTIONS(1728), 1, - sym_float, - ACTIONS(1738), 1, - anon_sym_RPAREN, - STATE(891), 1, - sym_identifier, - STATE(1100), 1, - sym_constant_record_argument, - STATE(1279), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(543), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(310), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1228), 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, - [43953] = 18, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(286), 1, + ACTIONS(1235), 1, anon_sym_DASH, - ACTIONS(306), 1, - anon_sym_DQUOTE, - ACTIONS(312), 1, - sym__decimal, - ACTIONS(316), 1, - sym__upname, - ACTIONS(721), 1, - sym__name, - ACTIONS(1622), 1, + ACTIONS(1660), 1, anon_sym_POUND, - ACTIONS(1624), 1, + ACTIONS(1662), 1, anon_sym_LBRACK, - ACTIONS(1626), 1, + ACTIONS(1664), 1, anon_sym_LT_LT, - ACTIONS(1728), 1, + ACTIONS(1760), 1, sym_float, - ACTIONS(1740), 1, + ACTIONS(1776), 1, anon_sym_RPAREN, - STATE(891), 1, + STATE(884), 1, sym_identifier, - STATE(1230), 1, + STATE(1187), 1, sym_constant_record_argument, - STATE(1279), 1, + STATE(1350), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(543), 2, + STATE(566), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(310), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(1228), 8, + STATE(1194), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -42134,91 +43204,80 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [44019] = 15, + [45213] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1326), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1328), 1, - anon_sym_AMP_AMP, - ACTIONS(1336), 1, - anon_sym_PIPE_GT, - ACTIONS(1742), 1, - anon_sym_LBRACE, - ACTIONS(1744), 1, - anon_sym_COMMA, - STATE(1006), 1, - aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1316), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1324), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1330), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1338), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1318), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(1332), 4, + ACTIONS(1520), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1334), 4, + ACTIONS(1518), 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, - [44079] = 18, + sym_visibility_modifier, + sym_opacity_modifier, + [45251] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(286), 1, - anon_sym_DASH, - ACTIONS(306), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(312), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(316), 1, + ACTIONS(376), 1, sym__upname, - ACTIONS(721), 1, + ACTIONS(657), 1, sym__name, - ACTIONS(1622), 1, + ACTIONS(1235), 1, + anon_sym_DASH, + ACTIONS(1660), 1, anon_sym_POUND, - ACTIONS(1624), 1, + ACTIONS(1662), 1, anon_sym_LBRACK, - ACTIONS(1626), 1, + ACTIONS(1664), 1, anon_sym_LT_LT, - ACTIONS(1728), 1, + ACTIONS(1760), 1, sym_float, - ACTIONS(1746), 1, + ACTIONS(1778), 1, anon_sym_RPAREN, - STATE(891), 1, + STATE(884), 1, sym_identifier, - STATE(1230), 1, + STATE(1086), 1, sym_constant_record_argument, - STATE(1279), 1, + STATE(1350), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(543), 2, + STATE(566), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(310), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(1228), 8, + STATE(1194), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -42227,66 +43286,18 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [44145] = 18, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(695), 1, - anon_sym_DASH, - ACTIONS(711), 1, - anon_sym_DQUOTE, - ACTIONS(717), 1, - sym__decimal, - ACTIONS(723), 1, - sym__upname, - ACTIONS(767), 1, - sym__name, - ACTIONS(1175), 1, - anon_sym_POUND, - ACTIONS(1179), 1, - anon_sym_LBRACK, - ACTIONS(1181), 1, - anon_sym_LT_LT, - ACTIONS(1185), 1, - sym_float, - ACTIONS(1187), 1, - sym__discard_name, - STATE(754), 1, - sym__pattern_binary_expression, - STATE(816), 1, - sym_identifier, - STATE(1121), 1, - sym__pattern, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(682), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(715), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(826), 8, - sym__pattern_expression, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_string, - sym_integer, - sym_discard, - [44211] = 4, + [45317] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1406), 4, + ACTIONS(1372), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1404), 22, + ACTIONS(1370), 22, anon_sym_RBRACE, anon_sym_import, anon_sym_COMMA, @@ -42309,18 +43320,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ_DOT, sym_visibility_modifier, sym_opacity_modifier, - [44249] = 4, + [45355] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1502), 4, + ACTIONS(1384), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1500), 22, + ACTIONS(1382), 22, anon_sym_RBRACE, anon_sym_import, anon_sym_COMMA, @@ -42343,46 +43354,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ_DOT, sym_visibility_modifier, sym_opacity_modifier, - [44287] = 18, + [45393] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(695), 1, - anon_sym_DASH, - ACTIONS(711), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(723), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(767), 1, + ACTIONS(777), 1, sym__name, - ACTIONS(1175), 1, + ACTIONS(1211), 1, anon_sym_POUND, - ACTIONS(1179), 1, + ACTIONS(1213), 1, anon_sym_LBRACK, - ACTIONS(1181), 1, + ACTIONS(1215), 1, anon_sym_LT_LT, - ACTIONS(1185), 1, - sym_float, - ACTIONS(1187), 1, + ACTIONS(1227), 1, sym__discard_name, - STATE(754), 1, + ACTIONS(1235), 1, + anon_sym_DASH, + ACTIONS(1239), 1, + sym_float, + STATE(803), 1, sym__pattern_binary_expression, - STATE(816), 1, + STATE(832), 1, sym_identifier, - STATE(1077), 1, + STATE(1081), 1, sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(682), 2, + STATE(702), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(826), 8, + STATE(837), 8, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -42391,124 +43402,222 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [44353] = 4, + [45459] = 15, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1552), 1, + anon_sym_AMP_AMP, + ACTIONS(1560), 1, + anon_sym_PIPE_GT, + ACTIONS(1588), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1780), 1, + anon_sym_COMMA, + ACTIONS(1782), 1, + anon_sym_RPAREN, + STATE(1028), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1498), 4, + ACTIONS(1354), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1550), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1554), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1562), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1356), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1556), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1496), 22, - anon_sym_RBRACE, - anon_sym_import, + ACTIONS(1558), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [45519] = 15, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1552), 1, + anon_sym_AMP_AMP, + ACTIONS(1560), 1, + anon_sym_PIPE_GT, + ACTIONS(1588), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1784), 1, anon_sym_COMMA, - anon_sym_const, + ACTIONS(1786), 1, 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, + STATE(1011), 1, + aux_sym_tuple_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1354), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1550), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1554), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1562), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1356), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1556), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1558), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [45579] = 13, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1552), 1, anon_sym_AMP_AMP, + ACTIONS(1560), 1, + anon_sym_PIPE_GT, + ACTIONS(1588), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1354), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1550), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1554), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(1562), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1788), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1356), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1556), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1558), 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, - [44391] = 17, + [45634] = 17, ACTIONS(3), 1, sym_module_comment, - ACTIONS(286), 1, + ACTIONS(1211), 1, + anon_sym_POUND, + ACTIONS(1213), 1, + anon_sym_LBRACK, + ACTIONS(1215), 1, + anon_sym_LT_LT, + ACTIONS(1217), 1, anon_sym_DASH, - ACTIONS(306), 1, + ACTIONS(1219), 1, anon_sym_DQUOTE, - ACTIONS(312), 1, + ACTIONS(1225), 1, sym__decimal, - ACTIONS(314), 1, + ACTIONS(1227), 1, + sym__discard_name, + ACTIONS(1229), 1, sym__name, - ACTIONS(316), 1, + ACTIONS(1231), 1, sym__upname, - ACTIONS(1622), 1, - anon_sym_POUND, - ACTIONS(1624), 1, - anon_sym_LBRACK, - ACTIONS(1626), 1, - anon_sym_LT_LT, - ACTIONS(1748), 1, - anon_sym_GT_GT, - ACTIONS(1750), 1, + ACTIONS(1790), 1, sym_float, - STATE(891), 1, + STATE(803), 1, + sym__pattern_binary_expression, + STATE(861), 1, sym_identifier, - STATE(1115), 1, - sym_constant_bit_string_segment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(543), 2, + STATE(702), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(310), 3, + ACTIONS(1223), 3, sym__hex, sym__octal, sym__binary, - STATE(1118), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_constant_field_access, + STATE(769), 8, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, sym_string, sym_integer, - [44454] = 17, + sym_discard, + [45697] = 17, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1175), 1, + ACTIONS(647), 1, + anon_sym_DQUOTE, + ACTIONS(653), 1, + sym__decimal, + ACTIONS(659), 1, + sym__upname, + ACTIONS(777), 1, + sym__name, + ACTIONS(1211), 1, anon_sym_POUND, - ACTIONS(1179), 1, + ACTIONS(1213), 1, anon_sym_LBRACK, - ACTIONS(1181), 1, + ACTIONS(1215), 1, anon_sym_LT_LT, - ACTIONS(1187), 1, + ACTIONS(1227), 1, sym__discard_name, - ACTIONS(1207), 1, + ACTIONS(1235), 1, anon_sym_DASH, - ACTIONS(1209), 1, - anon_sym_DQUOTE, - ACTIONS(1215), 1, - sym__decimal, - ACTIONS(1217), 1, - sym__name, - ACTIONS(1219), 1, - sym__upname, - ACTIONS(1752), 1, + ACTIONS(1790), 1, sym_float, - STATE(754), 1, + STATE(803), 1, sym__pattern_binary_expression, - STATE(860), 1, + STATE(832), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(682), 2, + STATE(702), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1213), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(767), 8, + STATE(769), 8, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -42517,44 +43626,44 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [44517] = 17, + [45760] = 17, ACTIONS(3), 1, sym_module_comment, - ACTIONS(286), 1, - anon_sym_DASH, - ACTIONS(306), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(312), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(314), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(316), 1, + ACTIONS(376), 1, sym__upname, - ACTIONS(1622), 1, + ACTIONS(1235), 1, + anon_sym_DASH, + ACTIONS(1660), 1, anon_sym_POUND, - ACTIONS(1624), 1, + ACTIONS(1662), 1, anon_sym_LBRACK, - ACTIONS(1626), 1, + ACTIONS(1664), 1, anon_sym_LT_LT, - ACTIONS(1750), 1, - sym_float, - ACTIONS(1754), 1, + ACTIONS(1792), 1, anon_sym_GT_GT, - STATE(891), 1, + ACTIONS(1794), 1, + sym_float, + STATE(884), 1, sym_identifier, - STATE(1181), 1, + STATE(1254), 1, sym_constant_bit_string_segment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(543), 2, + STATE(566), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(310), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(1118), 8, + STATE(1034), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -42563,44 +43672,86 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [44580] = 17, + [45823] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(695), 1, + ACTIONS(1552), 1, + anon_sym_AMP_AMP, + ACTIONS(1560), 1, + anon_sym_PIPE_GT, + ACTIONS(1588), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1354), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1550), 2, anon_sym_DASH, - ACTIONS(711), 1, - anon_sym_DQUOTE, - ACTIONS(717), 1, - sym__decimal, - ACTIONS(723), 1, - sym__upname, - ACTIONS(767), 1, - sym__name, - ACTIONS(1175), 1, + anon_sym_PLUS, + ACTIONS(1554), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1562), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1796), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1356), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1556), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1558), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [45878] = 17, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1211), 1, anon_sym_POUND, - ACTIONS(1179), 1, + ACTIONS(1213), 1, anon_sym_LBRACK, - ACTIONS(1181), 1, + ACTIONS(1215), 1, anon_sym_LT_LT, - ACTIONS(1187), 1, + ACTIONS(1219), 1, + anon_sym_DQUOTE, + ACTIONS(1225), 1, + sym__decimal, + ACTIONS(1227), 1, sym__discard_name, - ACTIONS(1752), 1, + ACTIONS(1229), 1, + sym__name, + ACTIONS(1231), 1, + sym__upname, + ACTIONS(1235), 1, + anon_sym_DASH, + ACTIONS(1790), 1, sym_float, - STATE(754), 1, + STATE(803), 1, sym__pattern_binary_expression, - STATE(816), 1, + STATE(861), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(682), 2, + STATE(702), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(715), 3, + ACTIONS(1223), 3, sym__hex, sym__octal, sym__binary, - STATE(767), 8, + STATE(769), 8, sym__pattern_expression, sym_record_pattern, sym_tuple_pattern, @@ -42609,86 +43760,86 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_integer, sym_discard, - [44643] = 13, + [45941] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1326), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1328), 1, + ACTIONS(1552), 1, anon_sym_AMP_AMP, - ACTIONS(1336), 1, + ACTIONS(1560), 1, anon_sym_PIPE_GT, + ACTIONS(1588), 1, + anon_sym_PIPE_PIPE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1316), 2, + ACTIONS(1354), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1324), 2, + ACTIONS(1550), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1330), 2, + ACTIONS(1554), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1338), 2, + ACTIONS(1562), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1756), 2, + ACTIONS(1798), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1318), 4, + ACTIONS(1356), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(1332), 4, + ACTIONS(1556), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1334), 4, + ACTIONS(1558), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [44698] = 17, + [45996] = 17, ACTIONS(3), 1, sym_module_comment, - ACTIONS(286), 1, - anon_sym_DASH, - ACTIONS(306), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(312), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(314), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(316), 1, + ACTIONS(376), 1, sym__upname, - ACTIONS(1622), 1, + ACTIONS(1235), 1, + anon_sym_DASH, + ACTIONS(1660), 1, anon_sym_POUND, - ACTIONS(1624), 1, + ACTIONS(1662), 1, anon_sym_LBRACK, - ACTIONS(1626), 1, + ACTIONS(1664), 1, anon_sym_LT_LT, - ACTIONS(1750), 1, + ACTIONS(1794), 1, sym_float, - ACTIONS(1758), 1, + ACTIONS(1800), 1, anon_sym_GT_GT, - STATE(891), 1, + STATE(884), 1, sym_identifier, - STATE(1181), 1, + STATE(1130), 1, sym_constant_bit_string_segment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(543), 2, + STATE(566), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(310), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(1118), 8, + STATE(1034), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -42697,44 +43848,44 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [44761] = 17, + [46059] = 17, ACTIONS(3), 1, sym_module_comment, - ACTIONS(286), 1, - anon_sym_DASH, - ACTIONS(306), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(312), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(314), 1, - sym__name, - ACTIONS(316), 1, + ACTIONS(376), 1, sym__upname, - ACTIONS(1622), 1, + ACTIONS(657), 1, + sym__name, + ACTIONS(1235), 1, + anon_sym_DASH, + ACTIONS(1660), 1, anon_sym_POUND, - ACTIONS(1624), 1, + ACTIONS(1662), 1, anon_sym_LBRACK, - ACTIONS(1626), 1, + ACTIONS(1664), 1, anon_sym_LT_LT, - ACTIONS(1750), 1, - sym_float, ACTIONS(1760), 1, - anon_sym_GT_GT, - STATE(891), 1, + sym_float, + STATE(884), 1, sym_identifier, - STATE(1084), 1, - sym_constant_bit_string_segment, + STATE(1187), 1, + sym_constant_record_argument, + STATE(1350), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(543), 2, + STATE(566), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(310), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(1118), 8, + STATE(1194), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -42743,86 +43894,44 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [44824] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1326), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1328), 1, - anon_sym_AMP_AMP, - ACTIONS(1336), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1316), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1324), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1330), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1338), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1762), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1318), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(1332), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1334), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [44879] = 17, + [46122] = 17, ACTIONS(3), 1, sym_module_comment, - ACTIONS(286), 1, - anon_sym_DASH, - ACTIONS(306), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(312), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(314), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(316), 1, + ACTIONS(376), 1, sym__upname, - ACTIONS(1622), 1, + ACTIONS(1235), 1, + anon_sym_DASH, + ACTIONS(1660), 1, anon_sym_POUND, - ACTIONS(1624), 1, + ACTIONS(1662), 1, anon_sym_LBRACK, - ACTIONS(1626), 1, + ACTIONS(1664), 1, anon_sym_LT_LT, - ACTIONS(1750), 1, + ACTIONS(1794), 1, sym_float, - ACTIONS(1764), 1, + ACTIONS(1802), 1, anon_sym_GT_GT, - STATE(891), 1, + STATE(884), 1, sym_identifier, - STATE(1181), 1, + STATE(1254), 1, sym_constant_bit_string_segment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(543), 2, + STATE(566), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(310), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(1118), 8, + STATE(1034), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -42831,86 +43940,44 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [44942] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1326), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1328), 1, - anon_sym_AMP_AMP, - ACTIONS(1336), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1316), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1324), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1330), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1338), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1766), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1318), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(1332), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1334), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [44997] = 17, + [46185] = 17, ACTIONS(3), 1, sym_module_comment, - ACTIONS(286), 1, - anon_sym_DASH, - ACTIONS(306), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(312), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(316), 1, - sym__upname, - ACTIONS(721), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(1622), 1, + ACTIONS(376), 1, + sym__upname, + ACTIONS(1235), 1, + anon_sym_DASH, + ACTIONS(1660), 1, anon_sym_POUND, - ACTIONS(1624), 1, + ACTIONS(1662), 1, anon_sym_LBRACK, - ACTIONS(1626), 1, + ACTIONS(1664), 1, anon_sym_LT_LT, - ACTIONS(1728), 1, + ACTIONS(1794), 1, sym_float, - STATE(891), 1, + ACTIONS(1804), 1, + anon_sym_GT_GT, + STATE(884), 1, sym_identifier, - STATE(1230), 1, - sym_constant_record_argument, - STATE(1279), 1, - sym_label, + STATE(1069), 1, + sym_constant_bit_string_segment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(543), 2, + STATE(566), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(310), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(1228), 8, + STATE(1034), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -42919,44 +43986,44 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [45060] = 17, + [46248] = 17, ACTIONS(3), 1, sym_module_comment, - ACTIONS(286), 1, - anon_sym_DASH, - ACTIONS(306), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(312), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(314), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(316), 1, + ACTIONS(376), 1, sym__upname, - ACTIONS(1622), 1, + ACTIONS(1235), 1, + anon_sym_DASH, + ACTIONS(1660), 1, anon_sym_POUND, - ACTIONS(1624), 1, + ACTIONS(1662), 1, anon_sym_LBRACK, - ACTIONS(1626), 1, + ACTIONS(1664), 1, anon_sym_LT_LT, - ACTIONS(1750), 1, + ACTIONS(1794), 1, sym_float, - ACTIONS(1768), 1, + ACTIONS(1806), 1, anon_sym_GT_GT, - STATE(891), 1, + STATE(884), 1, sym_identifier, - STATE(1181), 1, + STATE(1254), 1, sym_constant_bit_string_segment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(543), 2, + STATE(566), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(310), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(1118), 8, + STATE(1034), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -42965,42 +44032,44 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [45123] = 16, + [46311] = 17, ACTIONS(3), 1, sym_module_comment, - ACTIONS(286), 1, - anon_sym_DASH, - ACTIONS(306), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(312), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(314), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(316), 1, + ACTIONS(376), 1, sym__upname, - ACTIONS(1622), 1, + ACTIONS(1235), 1, + anon_sym_DASH, + ACTIONS(1660), 1, anon_sym_POUND, - ACTIONS(1624), 1, + ACTIONS(1662), 1, anon_sym_LBRACK, - ACTIONS(1626), 1, + ACTIONS(1664), 1, anon_sym_LT_LT, - ACTIONS(1770), 1, - anon_sym_RPAREN, - ACTIONS(1772), 1, + ACTIONS(1794), 1, sym_float, - STATE(891), 1, + ACTIONS(1808), 1, + anon_sym_GT_GT, + STATE(884), 1, sym_identifier, + STATE(1254), 1, + sym_constant_bit_string_segment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(543), 2, + STATE(566), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(310), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(1106), 8, + STATE(1034), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -43009,83 +44078,83 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [45183] = 13, + [46374] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1326), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1328), 1, + ACTIONS(1552), 1, anon_sym_AMP_AMP, - ACTIONS(1336), 1, + ACTIONS(1560), 1, anon_sym_PIPE_GT, - ACTIONS(1774), 1, + ACTIONS(1588), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1810), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1316), 2, + ACTIONS(1354), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1324), 2, + ACTIONS(1550), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1330), 2, + ACTIONS(1554), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1338), 2, + ACTIONS(1562), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1318), 4, + ACTIONS(1356), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(1332), 4, + ACTIONS(1556), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1334), 4, + ACTIONS(1558), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [45237] = 16, + [46428] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(286), 1, - anon_sym_DASH, - ACTIONS(306), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(312), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(314), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(316), 1, + ACTIONS(376), 1, sym__upname, - ACTIONS(1622), 1, + ACTIONS(1235), 1, + anon_sym_DASH, + ACTIONS(1660), 1, anon_sym_POUND, - ACTIONS(1624), 1, + ACTIONS(1662), 1, anon_sym_LBRACK, - ACTIONS(1626), 1, + ACTIONS(1664), 1, anon_sym_LT_LT, - ACTIONS(1772), 1, - sym_float, - ACTIONS(1776), 1, + ACTIONS(1812), 1, anon_sym_RBRACK, - STATE(891), 1, + ACTIONS(1814), 1, + sym_float, + STATE(884), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(543), 2, + STATE(566), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(310), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(1106), 8, + STATE(1055), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -43094,83 +44163,83 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [45297] = 13, + [46488] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1326), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1328), 1, + ACTIONS(1552), 1, anon_sym_AMP_AMP, - ACTIONS(1336), 1, + ACTIONS(1560), 1, anon_sym_PIPE_GT, - ACTIONS(1778), 1, + ACTIONS(1588), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1816), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1316), 2, + ACTIONS(1354), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1324), 2, + ACTIONS(1550), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1330), 2, + ACTIONS(1554), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1338), 2, + ACTIONS(1562), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1318), 4, + ACTIONS(1356), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(1332), 4, + ACTIONS(1556), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1334), 4, + ACTIONS(1558), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [45351] = 16, + [46542] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(286), 1, - anon_sym_DASH, - ACTIONS(306), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(312), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(314), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(316), 1, + ACTIONS(376), 1, sym__upname, - ACTIONS(1622), 1, + ACTIONS(1235), 1, + anon_sym_DASH, + ACTIONS(1660), 1, anon_sym_POUND, - ACTIONS(1624), 1, + ACTIONS(1662), 1, anon_sym_LBRACK, - ACTIONS(1626), 1, + ACTIONS(1664), 1, anon_sym_LT_LT, - ACTIONS(1780), 1, - anon_sym_RBRACK, - ACTIONS(1782), 1, + ACTIONS(1814), 1, sym_float, - STATE(891), 1, + ACTIONS(1818), 1, + anon_sym_RPAREN, + STATE(884), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(543), 2, + STATE(566), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(310), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(1114), 8, + STATE(1055), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -43179,83 +44248,165 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [45411] = 13, + [46602] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1326), 1, + ACTIONS(1552), 1, + anon_sym_AMP_AMP, + ACTIONS(1560), 1, + anon_sym_PIPE_GT, + ACTIONS(1588), 1, anon_sym_PIPE_PIPE, - ACTIONS(1328), 1, + ACTIONS(1820), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1354), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1550), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1554), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1562), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1356), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1556), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1558), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [46656] = 13, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1552), 1, anon_sym_AMP_AMP, - ACTIONS(1336), 1, + ACTIONS(1560), 1, anon_sym_PIPE_GT, - ACTIONS(1784), 1, + ACTIONS(1588), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1822), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1316), 2, + ACTIONS(1354), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1324), 2, + ACTIONS(1550), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1330), 2, + ACTIONS(1554), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1338), 2, + ACTIONS(1562), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1318), 4, + ACTIONS(1356), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(1332), 4, + ACTIONS(1556), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1334), 4, + ACTIONS(1558), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [45465] = 16, + [46710] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(286), 1, + ACTIONS(1552), 1, + anon_sym_AMP_AMP, + ACTIONS(1560), 1, + anon_sym_PIPE_GT, + ACTIONS(1588), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1824), 1, + anon_sym_COMMA, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1354), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1550), 2, anon_sym_DASH, - ACTIONS(306), 1, + anon_sym_PLUS, + ACTIONS(1554), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1562), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1356), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1556), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1558), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [46764] = 16, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(312), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(314), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(316), 1, + ACTIONS(376), 1, sym__upname, - ACTIONS(1622), 1, + ACTIONS(1235), 1, + anon_sym_DASH, + ACTIONS(1660), 1, anon_sym_POUND, - ACTIONS(1624), 1, + ACTIONS(1662), 1, anon_sym_LBRACK, - ACTIONS(1626), 1, + ACTIONS(1664), 1, anon_sym_LT_LT, - ACTIONS(1772), 1, + ACTIONS(1814), 1, sym_float, - ACTIONS(1786), 1, - anon_sym_RPAREN, - STATE(891), 1, + ACTIONS(1826), 1, + anon_sym_RBRACK, + STATE(884), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(543), 2, + STATE(566), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(310), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(1106), 8, + STATE(1055), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -43264,165 +44415,209 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [45525] = 13, + [46824] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1326), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1328), 1, + ACTIONS(366), 1, + anon_sym_DQUOTE, + ACTIONS(372), 1, + sym__decimal, + ACTIONS(374), 1, + sym__name, + ACTIONS(376), 1, + sym__upname, + ACTIONS(1235), 1, + anon_sym_DASH, + ACTIONS(1660), 1, + anon_sym_POUND, + ACTIONS(1662), 1, + anon_sym_LBRACK, + ACTIONS(1664), 1, + anon_sym_LT_LT, + ACTIONS(1828), 1, + anon_sym_RBRACK, + ACTIONS(1830), 1, + sym_float, + STATE(884), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(566), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(370), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1129), 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, + [46884] = 13, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1552), 1, anon_sym_AMP_AMP, - ACTIONS(1336), 1, + ACTIONS(1560), 1, anon_sym_PIPE_GT, - ACTIONS(1788), 1, + ACTIONS(1588), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1832), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1316), 2, + ACTIONS(1354), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1324), 2, + ACTIONS(1550), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1330), 2, + ACTIONS(1554), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1338), 2, + ACTIONS(1562), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1318), 4, + ACTIONS(1356), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(1332), 4, + ACTIONS(1556), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1334), 4, + ACTIONS(1558), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [45579] = 13, + [46938] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1326), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1328), 1, + ACTIONS(1552), 1, anon_sym_AMP_AMP, - ACTIONS(1336), 1, + ACTIONS(1560), 1, anon_sym_PIPE_GT, - ACTIONS(1790), 1, + ACTIONS(1588), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1834), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1316), 2, + ACTIONS(1354), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1324), 2, + ACTIONS(1550), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1330), 2, + ACTIONS(1554), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1338), 2, + ACTIONS(1562), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1318), 4, + ACTIONS(1356), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(1332), 4, + ACTIONS(1556), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1334), 4, + ACTIONS(1558), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [45633] = 13, + [46992] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1326), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1328), 1, + ACTIONS(1552), 1, anon_sym_AMP_AMP, - ACTIONS(1336), 1, + ACTIONS(1560), 1, anon_sym_PIPE_GT, - ACTIONS(1792), 1, - anon_sym_RPAREN, + ACTIONS(1588), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1836), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1316), 2, + ACTIONS(1354), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1324), 2, + ACTIONS(1550), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1330), 2, + ACTIONS(1554), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1338), 2, + ACTIONS(1562), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1318), 4, + ACTIONS(1356), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(1332), 4, + ACTIONS(1556), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1334), 4, + ACTIONS(1558), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [45687] = 16, + [47046] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(286), 1, - anon_sym_DASH, - ACTIONS(306), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(312), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(314), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(316), 1, + ACTIONS(376), 1, sym__upname, - ACTIONS(1622), 1, + ACTIONS(1235), 1, + anon_sym_DASH, + ACTIONS(1660), 1, anon_sym_POUND, - ACTIONS(1624), 1, + ACTIONS(1662), 1, anon_sym_LBRACK, - ACTIONS(1626), 1, + ACTIONS(1664), 1, anon_sym_LT_LT, - ACTIONS(1772), 1, - sym_float, - ACTIONS(1794), 1, + ACTIONS(1838), 1, anon_sym_RBRACK, - STATE(891), 1, + ACTIONS(1840), 1, + sym_float, + STATE(884), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(543), 2, + STATE(566), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(310), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(1106), 8, + STATE(1024), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -43431,83 +44626,83 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [45747] = 13, + [47106] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1326), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1328), 1, + ACTIONS(1552), 1, anon_sym_AMP_AMP, - ACTIONS(1336), 1, + ACTIONS(1560), 1, anon_sym_PIPE_GT, - ACTIONS(1796), 1, - anon_sym_COMMA, + ACTIONS(1588), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1842), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1316), 2, + ACTIONS(1354), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1324), 2, + ACTIONS(1550), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1330), 2, + ACTIONS(1554), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1338), 2, + ACTIONS(1562), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1318), 4, + ACTIONS(1356), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(1332), 4, + ACTIONS(1556), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1334), 4, + ACTIONS(1558), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [45801] = 16, + [47160] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(286), 1, - anon_sym_DASH, - ACTIONS(306), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(312), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(314), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(316), 1, + ACTIONS(376), 1, sym__upname, - ACTIONS(1622), 1, + ACTIONS(1235), 1, + anon_sym_DASH, + ACTIONS(1660), 1, anon_sym_POUND, - ACTIONS(1624), 1, + ACTIONS(1662), 1, anon_sym_LBRACK, - ACTIONS(1626), 1, + ACTIONS(1664), 1, anon_sym_LT_LT, - ACTIONS(1772), 1, + ACTIONS(1814), 1, sym_float, - ACTIONS(1798), 1, - anon_sym_RPAREN, - STATE(891), 1, + ACTIONS(1844), 1, + anon_sym_RBRACK, + STATE(884), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(543), 2, + STATE(566), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(310), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(1106), 8, + STATE(1055), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -43516,42 +44711,42 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [45861] = 16, + [47220] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(286), 1, - anon_sym_DASH, - ACTIONS(306), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(312), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(314), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(316), 1, + ACTIONS(376), 1, sym__upname, - ACTIONS(1622), 1, + ACTIONS(1235), 1, + anon_sym_DASH, + ACTIONS(1660), 1, anon_sym_POUND, - ACTIONS(1624), 1, + ACTIONS(1662), 1, anon_sym_LBRACK, - ACTIONS(1626), 1, + ACTIONS(1664), 1, anon_sym_LT_LT, - ACTIONS(1800), 1, - anon_sym_RBRACK, - ACTIONS(1802), 1, + ACTIONS(1846), 1, + anon_sym_RPAREN, + ACTIONS(1848), 1, sym_float, - STATE(891), 1, + STATE(884), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(543), 2, + STATE(566), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(310), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(1116), 8, + STATE(1077), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -43560,42 +44755,42 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [45921] = 16, + [47280] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(286), 1, - anon_sym_DASH, - ACTIONS(306), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(312), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(314), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(316), 1, + ACTIONS(376), 1, sym__upname, - ACTIONS(1622), 1, + ACTIONS(1235), 1, + anon_sym_DASH, + ACTIONS(1660), 1, anon_sym_POUND, - ACTIONS(1624), 1, + ACTIONS(1662), 1, anon_sym_LBRACK, - ACTIONS(1626), 1, + ACTIONS(1664), 1, anon_sym_LT_LT, - ACTIONS(1772), 1, + ACTIONS(1814), 1, sym_float, - ACTIONS(1804), 1, + ACTIONS(1850), 1, anon_sym_RPAREN, - STATE(891), 1, + STATE(884), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(543), 2, + STATE(566), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(310), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(1106), 8, + STATE(1055), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -43604,212 +44799,124 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [45981] = 13, + [47340] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1326), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1328), 1, + ACTIONS(1552), 1, anon_sym_AMP_AMP, - ACTIONS(1336), 1, + ACTIONS(1560), 1, anon_sym_PIPE_GT, - ACTIONS(1806), 1, - anon_sym_RBRACK, + ACTIONS(1588), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1852), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1316), 2, + ACTIONS(1354), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1324), 2, + ACTIONS(1550), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1330), 2, + ACTIONS(1554), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1338), 2, + ACTIONS(1562), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1318), 4, + ACTIONS(1356), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(1332), 4, + ACTIONS(1556), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1334), 4, + ACTIONS(1558), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [46035] = 16, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(286), 1, - anon_sym_DASH, - ACTIONS(306), 1, - anon_sym_DQUOTE, - ACTIONS(312), 1, - sym__decimal, - ACTIONS(314), 1, - sym__name, - ACTIONS(316), 1, - sym__upname, - ACTIONS(1622), 1, - anon_sym_POUND, - ACTIONS(1624), 1, - anon_sym_LBRACK, - ACTIONS(1626), 1, - anon_sym_LT_LT, - ACTIONS(1808), 1, - anon_sym_RPAREN, - ACTIONS(1810), 1, - sym_float, - STATE(891), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(543), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(310), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1021), 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, - [46095] = 13, + [47394] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1326), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1328), 1, + ACTIONS(1552), 1, anon_sym_AMP_AMP, - ACTIONS(1336), 1, + ACTIONS(1560), 1, anon_sym_PIPE_GT, - ACTIONS(1812), 1, + ACTIONS(1588), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1854), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1316), 2, + ACTIONS(1354), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1324), 2, + ACTIONS(1550), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1330), 2, + ACTIONS(1554), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1338), 2, + ACTIONS(1562), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1318), 4, + ACTIONS(1356), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(1332), 4, + ACTIONS(1556), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1334), 4, + ACTIONS(1558), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [46149] = 16, + [47448] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(286), 1, - anon_sym_DASH, - ACTIONS(306), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(312), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(314), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(316), 1, + ACTIONS(376), 1, sym__upname, - ACTIONS(1622), 1, - anon_sym_POUND, - ACTIONS(1624), 1, - anon_sym_LBRACK, - ACTIONS(1626), 1, - anon_sym_LT_LT, - ACTIONS(1750), 1, - sym_float, - STATE(891), 1, - sym_identifier, - STATE(1181), 1, - sym_constant_bit_string_segment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(543), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(310), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1118), 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, - [46209] = 16, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(286), 1, + ACTIONS(1235), 1, anon_sym_DASH, - ACTIONS(306), 1, - anon_sym_DQUOTE, - ACTIONS(312), 1, - sym__decimal, - ACTIONS(314), 1, - sym__name, - ACTIONS(316), 1, - sym__upname, - ACTIONS(1622), 1, + ACTIONS(1660), 1, anon_sym_POUND, - ACTIONS(1624), 1, + ACTIONS(1662), 1, anon_sym_LBRACK, - ACTIONS(1626), 1, + ACTIONS(1664), 1, anon_sym_LT_LT, ACTIONS(1814), 1, - anon_sym_RPAREN, - ACTIONS(1816), 1, sym_float, - STATE(891), 1, + ACTIONS(1856), 1, + anon_sym_RPAREN, + STATE(884), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(543), 2, + STATE(566), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(310), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(1123), 8, + STATE(1055), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -43818,250 +44925,165 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [46269] = 13, + [47508] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1326), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1328), 1, + ACTIONS(1552), 1, anon_sym_AMP_AMP, - ACTIONS(1336), 1, + ACTIONS(1560), 1, anon_sym_PIPE_GT, - ACTIONS(1818), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1316), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1324), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1330), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1338), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1318), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(1332), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1334), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [46323] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1326), 1, + ACTIONS(1588), 1, anon_sym_PIPE_PIPE, - ACTIONS(1328), 1, - anon_sym_AMP_AMP, - ACTIONS(1336), 1, - anon_sym_PIPE_GT, - ACTIONS(1820), 1, + ACTIONS(1858), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1316), 2, + ACTIONS(1354), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1324), 2, + ACTIONS(1550), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1330), 2, + ACTIONS(1554), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1338), 2, + ACTIONS(1562), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1318), 4, + ACTIONS(1356), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(1332), 4, + ACTIONS(1556), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1334), 4, + ACTIONS(1558), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [46377] = 13, + [47562] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1326), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1328), 1, + ACTIONS(1552), 1, anon_sym_AMP_AMP, - ACTIONS(1336), 1, + ACTIONS(1560), 1, anon_sym_PIPE_GT, - ACTIONS(1822), 1, + ACTIONS(1588), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1860), 1, anon_sym_COMMA, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1316), 2, + ACTIONS(1354), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1324), 2, + ACTIONS(1550), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1330), 2, + ACTIONS(1554), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1338), 2, + ACTIONS(1562), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1318), 4, + ACTIONS(1356), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(1332), 4, + ACTIONS(1556), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1334), 4, + ACTIONS(1558), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [46431] = 16, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(286), 1, - anon_sym_DASH, - ACTIONS(306), 1, - anon_sym_DQUOTE, - ACTIONS(312), 1, - sym__decimal, - ACTIONS(314), 1, - sym__name, - ACTIONS(316), 1, - sym__upname, - ACTIONS(1622), 1, - anon_sym_POUND, - ACTIONS(1624), 1, - anon_sym_LBRACK, - ACTIONS(1626), 1, - anon_sym_LT_LT, - ACTIONS(1772), 1, - sym_float, - ACTIONS(1824), 1, - anon_sym_RBRACK, - STATE(891), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(543), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(310), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1106), 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, - [46491] = 13, + [47616] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1326), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1328), 1, + ACTIONS(1552), 1, anon_sym_AMP_AMP, - ACTIONS(1336), 1, + ACTIONS(1560), 1, anon_sym_PIPE_GT, - ACTIONS(1826), 1, - anon_sym_RBRACK, + ACTIONS(1588), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1862), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1316), 2, + ACTIONS(1354), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1324), 2, + ACTIONS(1550), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1330), 2, + ACTIONS(1554), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1338), 2, + ACTIONS(1562), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1318), 4, + ACTIONS(1356), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(1332), 4, + ACTIONS(1556), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1334), 4, + ACTIONS(1558), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [46545] = 16, + [47670] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(286), 1, - anon_sym_DASH, - ACTIONS(306), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(312), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(314), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(316), 1, + ACTIONS(376), 1, sym__upname, - ACTIONS(1622), 1, + ACTIONS(1235), 1, + anon_sym_DASH, + ACTIONS(1660), 1, anon_sym_POUND, - ACTIONS(1624), 1, + ACTIONS(1662), 1, anon_sym_LBRACK, - ACTIONS(1626), 1, + ACTIONS(1664), 1, anon_sym_LT_LT, - ACTIONS(1772), 1, + ACTIONS(1814), 1, sym_float, - ACTIONS(1828), 1, - anon_sym_RBRACK, - STATE(891), 1, + ACTIONS(1864), 1, + anon_sym_RPAREN, + STATE(884), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(543), 2, + STATE(566), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(310), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(1106), 8, + STATE(1055), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -44070,204 +45092,253 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [46605] = 13, + [47730] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1326), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1328), 1, + ACTIONS(1552), 1, anon_sym_AMP_AMP, - ACTIONS(1336), 1, + ACTIONS(1560), 1, anon_sym_PIPE_GT, - ACTIONS(1830), 1, - anon_sym_COMMA, + ACTIONS(1588), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1866), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1316), 2, + ACTIONS(1354), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1324), 2, + ACTIONS(1550), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1330), 2, + ACTIONS(1554), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1338), 2, + ACTIONS(1562), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1318), 4, + ACTIONS(1356), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(1332), 4, + ACTIONS(1556), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1334), 4, + ACTIONS(1558), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [46659] = 13, + [47784] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1326), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1328), 1, + ACTIONS(1552), 1, anon_sym_AMP_AMP, - ACTIONS(1336), 1, + ACTIONS(1560), 1, anon_sym_PIPE_GT, - ACTIONS(1832), 1, + ACTIONS(1588), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1868), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1316), 2, + ACTIONS(1354), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1324), 2, + ACTIONS(1550), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1330), 2, + ACTIONS(1554), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1338), 2, + ACTIONS(1562), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1318), 4, + ACTIONS(1356), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(1332), 4, + ACTIONS(1556), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1334), 4, + ACTIONS(1558), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [46713] = 13, + [47838] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1326), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1328), 1, - anon_sym_AMP_AMP, - ACTIONS(1336), 1, - anon_sym_PIPE_GT, - ACTIONS(1834), 1, - anon_sym_COMMA, + ACTIONS(366), 1, + anon_sym_DQUOTE, + ACTIONS(372), 1, + sym__decimal, + ACTIONS(374), 1, + sym__name, + ACTIONS(376), 1, + sym__upname, + ACTIONS(1235), 1, + anon_sym_DASH, + ACTIONS(1660), 1, + anon_sym_POUND, + ACTIONS(1662), 1, + anon_sym_LBRACK, + ACTIONS(1664), 1, + anon_sym_LT_LT, + ACTIONS(1794), 1, + sym_float, + STATE(884), 1, + sym_identifier, + STATE(1254), 1, + sym_constant_bit_string_segment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1316), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1324), 2, + STATE(566), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(370), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1034), 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, + [47898] = 16, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(366), 1, + anon_sym_DQUOTE, + ACTIONS(372), 1, + sym__decimal, + ACTIONS(374), 1, + sym__name, + ACTIONS(376), 1, + sym__upname, + ACTIONS(1235), 1, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1330), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1338), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1318), 4, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_LT_GT, - ACTIONS(1332), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1334), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [46767] = 13, + ACTIONS(1660), 1, + anon_sym_POUND, + ACTIONS(1662), 1, + anon_sym_LBRACK, + ACTIONS(1664), 1, + anon_sym_LT_LT, + ACTIONS(1870), 1, + anon_sym_RPAREN, + ACTIONS(1872), 1, + sym_float, + STATE(884), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(566), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(370), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1137), 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, + [47958] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1326), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1328), 1, + ACTIONS(1552), 1, anon_sym_AMP_AMP, - ACTIONS(1336), 1, + ACTIONS(1560), 1, anon_sym_PIPE_GT, - ACTIONS(1836), 1, - anon_sym_RBRACK, + ACTIONS(1588), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1874), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1316), 2, + ACTIONS(1354), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1324), 2, + ACTIONS(1550), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1330), 2, + ACTIONS(1554), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1338), 2, + ACTIONS(1562), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1318), 4, + ACTIONS(1356), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_LT_GT, - ACTIONS(1332), 4, + ACTIONS(1556), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1334), 4, + ACTIONS(1558), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [46821] = 15, + [48012] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(695), 1, - anon_sym_DASH, - ACTIONS(711), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(723), 1, - sym__upname, - ACTIONS(767), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(1622), 1, + ACTIONS(376), 1, + sym__upname, + ACTIONS(1235), 1, + anon_sym_DASH, + ACTIONS(1660), 1, anon_sym_POUND, - ACTIONS(1624), 1, + ACTIONS(1662), 1, anon_sym_LBRACK, - ACTIONS(1626), 1, + ACTIONS(1664), 1, anon_sym_LT_LT, - ACTIONS(1838), 1, + ACTIONS(1814), 1, sym_float, - STATE(824), 1, + ACTIONS(1876), 1, + anon_sym_RBRACK, + STATE(884), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(543), 2, + STATE(566), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(715), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(831), 8, + STATE(1055), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -44276,40 +45347,40 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [46878] = 15, + [48072] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(286), 1, - anon_sym_DASH, - ACTIONS(306), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(312), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(314), 1, - sym__name, - ACTIONS(316), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(1622), 1, + ACTIONS(777), 1, + sym__name, + ACTIONS(1235), 1, + anon_sym_DASH, + ACTIONS(1660), 1, anon_sym_POUND, - ACTIONS(1624), 1, + ACTIONS(1662), 1, anon_sym_LBRACK, - ACTIONS(1626), 1, + ACTIONS(1664), 1, anon_sym_LT_LT, - ACTIONS(1772), 1, + ACTIONS(1878), 1, sym_float, - STATE(891), 1, + STATE(842), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(543), 2, + STATE(566), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(310), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(1106), 8, + STATE(869), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -44318,40 +45389,40 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [46935] = 15, + [48129] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(23), 1, - anon_sym_DASH, - ACTIONS(51), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(57), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(59), 1, - sym__name, - ACTIONS(61), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(1840), 1, + ACTIONS(777), 1, + sym__name, + ACTIONS(1235), 1, + anon_sym_DASH, + ACTIONS(1660), 1, anon_sym_POUND, - ACTIONS(1842), 1, + ACTIONS(1662), 1, anon_sym_LBRACK, - ACTIONS(1844), 1, + ACTIONS(1664), 1, anon_sym_LT_LT, - ACTIONS(1846), 1, + ACTIONS(1880), 1, sym_float, - STATE(407), 1, + STATE(842), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(396), 2, + STATE(566), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(55), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(501), 8, + STATE(844), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -44360,13 +45431,13 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [46992] = 4, + [48186] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1518), 11, + ACTIONS(1504), 11, anon_sym_DASH, anon_sym_fn, anon_sym_try, @@ -44378,7 +45449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, sym__decimal, sym__name, - ACTIONS(1516), 12, + ACTIONS(1502), 12, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, @@ -44391,40 +45462,40 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [47027] = 15, + [48221] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(695), 1, - anon_sym_DASH, - ACTIONS(711), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(723), 1, - sym__upname, - ACTIONS(767), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(1622), 1, + ACTIONS(376), 1, + sym__upname, + ACTIONS(1235), 1, + anon_sym_DASH, + ACTIONS(1660), 1, anon_sym_POUND, - ACTIONS(1624), 1, + ACTIONS(1662), 1, anon_sym_LBRACK, - ACTIONS(1626), 1, + ACTIONS(1664), 1, anon_sym_LT_LT, - ACTIONS(1848), 1, + ACTIONS(1882), 1, sym_float, - STATE(824), 1, + STATE(884), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(543), 2, + STATE(566), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(715), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(836), 8, + STATE(1210), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -44433,11 +45504,9 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [47084] = 15, + [48278] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(23), 1, - anon_sym_DASH, ACTIONS(51), 1, anon_sym_DQUOTE, ACTIONS(57), 1, @@ -44446,27 +45515,29 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(61), 1, sym__upname, - ACTIONS(1840), 1, + ACTIONS(1884), 1, anon_sym_POUND, - ACTIONS(1842), 1, + ACTIONS(1886), 1, anon_sym_LBRACK, - ACTIONS(1844), 1, + ACTIONS(1888), 1, anon_sym_LT_LT, - ACTIONS(1850), 1, + ACTIONS(1890), 1, + anon_sym_DASH, + ACTIONS(1892), 1, sym_float, - STATE(407), 1, + STATE(433), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(396), 2, + STATE(404), 2, sym_constructor_name, sym_remote_constructor_name, ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(467), 8, + STATE(537), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -44475,40 +45546,40 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [47141] = 15, + [48335] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(23), 1, - anon_sym_DASH, - ACTIONS(51), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(57), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(59), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(61), 1, + ACTIONS(376), 1, sym__upname, - ACTIONS(1840), 1, + ACTIONS(1235), 1, + anon_sym_DASH, + ACTIONS(1660), 1, anon_sym_POUND, - ACTIONS(1842), 1, + ACTIONS(1662), 1, anon_sym_LBRACK, - ACTIONS(1844), 1, + ACTIONS(1664), 1, anon_sym_LT_LT, - ACTIONS(1852), 1, + ACTIONS(1814), 1, sym_float, - STATE(407), 1, + STATE(884), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(396), 2, + STATE(566), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(55), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(513), 8, + STATE(1055), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -44517,11 +45588,40 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [47198] = 15, + [48392] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(23), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1616), 11, anon_sym_DASH, + anon_sym_fn, + anon_sym_try, + anon_sym_todo, + anon_sym_panic, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym__decimal, + sym__name, + ACTIONS(1614), 12, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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, + [48427] = 15, + ACTIONS(3), 1, + sym_module_comment, ACTIONS(51), 1, anon_sym_DQUOTE, ACTIONS(57), 1, @@ -44530,27 +45630,29 @@ static const uint16_t ts_small_parse_table[] = { sym__name, ACTIONS(61), 1, sym__upname, - ACTIONS(1840), 1, + ACTIONS(1884), 1, anon_sym_POUND, - ACTIONS(1842), 1, + ACTIONS(1886), 1, anon_sym_LBRACK, - ACTIONS(1844), 1, + ACTIONS(1888), 1, anon_sym_LT_LT, - ACTIONS(1854), 1, + ACTIONS(1890), 1, + anon_sym_DASH, + ACTIONS(1894), 1, sym_float, - STATE(407), 1, + STATE(433), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(396), 2, + STATE(404), 2, sym_constructor_name, sym_remote_constructor_name, ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(459), 8, + STATE(476), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -44559,71 +45661,82 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [47255] = 4, + [48484] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1446), 11, - anon_sym_DASH, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_panic, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_use, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(57), 1, sym__decimal, + ACTIONS(59), 1, sym__name, - ACTIONS(1444), 12, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(61), 1, + sym__upname, + ACTIONS(1884), 1, anon_sym_POUND, + ACTIONS(1886), 1, anon_sym_LBRACK, + ACTIONS(1888), 1, anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, + ACTIONS(1890), 1, + anon_sym_DASH, + ACTIONS(1896), 1, sym_float, + STATE(433), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(404), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [47290] = 15, + STATE(467), 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, + [48541] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(286), 1, - anon_sym_DASH, - ACTIONS(306), 1, + ACTIONS(51), 1, anon_sym_DQUOTE, - ACTIONS(312), 1, + ACTIONS(57), 1, sym__decimal, - ACTIONS(314), 1, + ACTIONS(59), 1, sym__name, - ACTIONS(316), 1, + ACTIONS(61), 1, sym__upname, - ACTIONS(1622), 1, + ACTIONS(1884), 1, anon_sym_POUND, - ACTIONS(1624), 1, + ACTIONS(1886), 1, anon_sym_LBRACK, - ACTIONS(1626), 1, + ACTIONS(1888), 1, anon_sym_LT_LT, - ACTIONS(1856), 1, + ACTIONS(1890), 1, + anon_sym_DASH, + ACTIONS(1898), 1, sym_float, - STATE(891), 1, + STATE(433), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(543), 2, + STATE(404), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(310), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(1152), 8, + STATE(488), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -44632,40 +45745,40 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [47347] = 15, + [48598] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(695), 1, - anon_sym_DASH, - ACTIONS(711), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(723), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(767), 1, + ACTIONS(777), 1, sym__name, - ACTIONS(1622), 1, + ACTIONS(1235), 1, + anon_sym_DASH, + ACTIONS(1660), 1, anon_sym_POUND, - ACTIONS(1624), 1, + ACTIONS(1662), 1, anon_sym_LBRACK, - ACTIONS(1626), 1, + ACTIONS(1664), 1, anon_sym_LT_LT, - ACTIONS(1858), 1, + ACTIONS(1900), 1, sym_float, - STATE(824), 1, + STATE(842), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(543), 2, + STATE(566), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(843), 8, + STATE(865), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -44674,13 +45787,13 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [47404] = 4, + [48655] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1410), 11, + ACTIONS(1570), 11, anon_sym_DASH, anon_sym_fn, anon_sym_try, @@ -44692,7 +45805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, sym__decimal, sym__name, - ACTIONS(1408), 12, + ACTIONS(1568), 12, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, @@ -44705,40 +45818,40 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - [47439] = 15, + [48690] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(695), 1, - anon_sym_DASH, - ACTIONS(711), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(723), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(767), 1, + ACTIONS(777), 1, sym__name, - ACTIONS(1622), 1, + ACTIONS(1235), 1, + anon_sym_DASH, + ACTIONS(1660), 1, anon_sym_POUND, - ACTIONS(1624), 1, + ACTIONS(1662), 1, anon_sym_LBRACK, - ACTIONS(1626), 1, + ACTIONS(1664), 1, anon_sym_LT_LT, - ACTIONS(1860), 1, + ACTIONS(1902), 1, sym_float, - STATE(824), 1, + STATE(842), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(543), 2, + STATE(566), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - STATE(848), 8, + STATE(851), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -44747,63 +45860,118 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_field_access, sym_string, sym_integer, - [47496] = 13, + [48747] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1862), 1, + ACTIONS(458), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(456), 20, + 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_RBRACK, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_type, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DASH, + sym_visibility_modifier, + sym_opacity_modifier, + [48780] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(458), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PIPE, + ACTIONS(456), 13, + 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, + anon_sym_LT_GT, + [48810] = 13, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1904), 1, anon_sym_POUND, - ACTIONS(1864), 1, + ACTIONS(1906), 1, anon_sym_RPAREN, - ACTIONS(1866), 1, + ACTIONS(1908), 1, anon_sym_fn, - ACTIONS(1868), 1, + ACTIONS(1910), 1, sym__discard_name, - ACTIONS(1870), 1, + ACTIONS(1912), 1, sym__name, - ACTIONS(1872), 1, + ACTIONS(1914), 1, sym__upname, - STATE(1089), 1, + STATE(1126), 1, sym_data_constructor_argument, - STATE(1259), 1, + STATE(1284), 1, sym_identifier, - STATE(1339), 1, + STATE(1384), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(708), 2, + STATE(720), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1163), 6, + STATE(1245), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [47543] = 11, + [48857] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1874), 1, + ACTIONS(1916), 1, anon_sym_RBRACE, - ACTIONS(1876), 1, + ACTIONS(1918), 1, anon_sym_import, - ACTIONS(1878), 1, + ACTIONS(1920), 1, anon_sym_const, - ACTIONS(1880), 1, + ACTIONS(1922), 1, anon_sym_fn, - ACTIONS(1882), 1, + ACTIONS(1924), 1, anon_sym_external, - ACTIONS(1884), 1, + ACTIONS(1926), 1, anon_sym_type, - ACTIONS(1886), 1, + ACTIONS(1928), 1, sym_visibility_modifier, - ACTIONS(1888), 1, + ACTIONS(1930), 1, sym_opacity_modifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(671), 9, + STATE(688), 9, sym__module_statement, sym_import, sym_constant, @@ -44813,29 +45981,63 @@ static const uint16_t ts_small_parse_table[] = { sym_type_definition, sym_type_alias, aux_sym_target_group_repeat1, - [47586] = 11, + [48900] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1890), 1, + ACTIONS(1904), 1, + anon_sym_POUND, + ACTIONS(1908), 1, + anon_sym_fn, + ACTIONS(1910), 1, + sym__discard_name, + ACTIONS(1912), 1, + sym__name, + ACTIONS(1914), 1, + sym__upname, + ACTIONS(1932), 1, + anon_sym_RPAREN, + STATE(1190), 1, + sym_data_constructor_argument, + STATE(1284), 1, + sym_identifier, + STATE(1384), 1, + sym_label, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(720), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1245), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [48947] = 11, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1934), 1, anon_sym_RBRACE, - ACTIONS(1892), 1, + ACTIONS(1936), 1, anon_sym_import, - ACTIONS(1895), 1, + ACTIONS(1939), 1, anon_sym_const, - ACTIONS(1898), 1, + ACTIONS(1942), 1, anon_sym_fn, - ACTIONS(1901), 1, + ACTIONS(1945), 1, anon_sym_external, - ACTIONS(1904), 1, + ACTIONS(1948), 1, anon_sym_type, - ACTIONS(1907), 1, + ACTIONS(1951), 1, sym_visibility_modifier, - ACTIONS(1910), 1, + ACTIONS(1954), 1, sym_opacity_modifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(668), 9, + STATE(686), 9, sym__module_statement, sym_import, sym_constant, @@ -44845,437 +46047,493 @@ static const uint16_t ts_small_parse_table[] = { sym_type_definition, sym_type_alias, aux_sym_target_group_repeat1, - [47629] = 13, + [48990] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1862), 1, + ACTIONS(1904), 1, anon_sym_POUND, - ACTIONS(1866), 1, + ACTIONS(1908), 1, anon_sym_fn, - ACTIONS(1868), 1, + ACTIONS(1910), 1, sym__discard_name, - ACTIONS(1870), 1, + ACTIONS(1912), 1, sym__name, - ACTIONS(1872), 1, + ACTIONS(1914), 1, sym__upname, - ACTIONS(1913), 1, + ACTIONS(1957), 1, anon_sym_RPAREN, - STATE(1232), 1, + STATE(1190), 1, sym_data_constructor_argument, - STATE(1259), 1, + STATE(1284), 1, sym_identifier, - STATE(1339), 1, + STATE(1384), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(708), 2, + STATE(720), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1163), 6, + STATE(1245), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [47676] = 13, + [49037] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1862), 1, + ACTIONS(1918), 1, + anon_sym_import, + ACTIONS(1920), 1, + anon_sym_const, + ACTIONS(1922), 1, + anon_sym_fn, + ACTIONS(1924), 1, + anon_sym_external, + ACTIONS(1926), 1, + anon_sym_type, + ACTIONS(1928), 1, + sym_visibility_modifier, + ACTIONS(1930), 1, + sym_opacity_modifier, + ACTIONS(1959), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(686), 9, + sym__module_statement, + sym_import, + sym_constant, + sym_external_type, + sym_external_function, + sym_function, + sym_type_definition, + sym_type_alias, + aux_sym_target_group_repeat1, + [49080] = 12, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1904), 1, anon_sym_POUND, - ACTIONS(1866), 1, + ACTIONS(1908), 1, anon_sym_fn, - ACTIONS(1868), 1, + ACTIONS(1910), 1, sym__discard_name, - ACTIONS(1870), 1, - sym__name, - ACTIONS(1872), 1, + ACTIONS(1914), 1, sym__upname, - ACTIONS(1915), 1, + ACTIONS(1961), 1, anon_sym_RPAREN, - STATE(1232), 1, - sym_data_constructor_argument, - STATE(1259), 1, + ACTIONS(1963), 1, + sym__name, + STATE(1197), 1, sym_identifier, - STATE(1339), 1, - sym_label, + STATE(1264), 1, + sym_external_function_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(708), 2, + STATE(720), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1163), 6, + STATE(1191), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [47723] = 11, + [49124] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1876), 1, - anon_sym_import, - ACTIONS(1878), 1, - anon_sym_const, - ACTIONS(1880), 1, + ACTIONS(1904), 1, + anon_sym_POUND, + ACTIONS(1908), 1, anon_sym_fn, - ACTIONS(1882), 1, - anon_sym_external, - ACTIONS(1884), 1, - anon_sym_type, - ACTIONS(1886), 1, - sym_visibility_modifier, - ACTIONS(1888), 1, - sym_opacity_modifier, - ACTIONS(1917), 1, - anon_sym_RBRACE, + ACTIONS(1910), 1, + sym__discard_name, + ACTIONS(1914), 1, + sym__upname, + ACTIONS(1963), 1, + sym__name, + ACTIONS(1965), 1, + anon_sym_RPAREN, + STATE(996), 1, + sym_external_function_parameter, + STATE(1197), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(668), 9, - sym__module_statement, - sym_import, - sym_constant, - sym_external_type, - sym_external_function, - sym_function, - sym_type_definition, - sym_type_alias, - aux_sym_target_group_repeat1, - [47766] = 12, + STATE(720), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1191), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [49168] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1862), 1, + ACTIONS(1904), 1, anon_sym_POUND, - ACTIONS(1866), 1, + ACTIONS(1908), 1, anon_sym_fn, - ACTIONS(1868), 1, + ACTIONS(1910), 1, sym__discard_name, - ACTIONS(1872), 1, + ACTIONS(1914), 1, sym__upname, - ACTIONS(1919), 1, + ACTIONS(1963), 1, + sym__name, + ACTIONS(1967), 1, anon_sym_RPAREN, - ACTIONS(1921), 1, - sym__name, - STATE(1251), 1, + STATE(1121), 1, sym_type_argument, - STATE(1259), 1, + STATE(1284), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(708), 2, + STATE(720), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1180), 6, + STATE(1157), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [47810] = 12, + [49212] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1862), 1, + ACTIONS(1904), 1, anon_sym_POUND, - ACTIONS(1866), 1, + ACTIONS(1908), 1, anon_sym_fn, - ACTIONS(1868), 1, + ACTIONS(1910), 1, sym__discard_name, - ACTIONS(1872), 1, + ACTIONS(1914), 1, sym__upname, - ACTIONS(1921), 1, + ACTIONS(1963), 1, sym__name, - ACTIONS(1923), 1, + ACTIONS(1969), 1, anon_sym_RPAREN, - STATE(1183), 1, + STATE(1138), 1, + sym_type_argument, + STATE(1284), 1, sym_identifier, - STATE(1215), 1, - sym_external_function_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(708), 2, + STATE(720), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1173), 6, + STATE(1157), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [47854] = 12, + [49256] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1862), 1, + ACTIONS(1904), 1, anon_sym_POUND, - ACTIONS(1866), 1, + ACTIONS(1908), 1, anon_sym_fn, - ACTIONS(1868), 1, + ACTIONS(1910), 1, sym__discard_name, - ACTIONS(1872), 1, + ACTIONS(1914), 1, sym__upname, - ACTIONS(1921), 1, + ACTIONS(1963), 1, sym__name, - ACTIONS(1925), 1, + ACTIONS(1971), 1, anon_sym_RPAREN, - STATE(1183), 1, + STATE(1197), 1, sym_identifier, - STATE(1215), 1, + STATE(1264), 1, sym_external_function_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(708), 2, + STATE(720), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1173), 6, + STATE(1191), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [47898] = 12, + [49300] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1862), 1, + ACTIONS(1904), 1, anon_sym_POUND, - ACTIONS(1866), 1, + ACTIONS(1908), 1, anon_sym_fn, - ACTIONS(1868), 1, + ACTIONS(1910), 1, sym__discard_name, - ACTIONS(1872), 1, + ACTIONS(1914), 1, sym__upname, - ACTIONS(1921), 1, + ACTIONS(1963), 1, sym__name, - ACTIONS(1927), 1, + ACTIONS(1973), 1, anon_sym_RPAREN, - STATE(1251), 1, + STATE(1212), 1, sym_type_argument, - STATE(1259), 1, + STATE(1284), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(708), 2, + STATE(720), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1180), 6, + STATE(1157), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [47942] = 12, + [49344] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1862), 1, + ACTIONS(1904), 1, anon_sym_POUND, - ACTIONS(1866), 1, + ACTIONS(1908), 1, anon_sym_fn, - ACTIONS(1868), 1, + ACTIONS(1910), 1, sym__discard_name, - ACTIONS(1872), 1, + ACTIONS(1914), 1, sym__upname, - ACTIONS(1921), 1, + ACTIONS(1963), 1, sym__name, - ACTIONS(1929), 1, + ACTIONS(1975), 1, anon_sym_RPAREN, - STATE(1251), 1, + STATE(1212), 1, sym_type_argument, - STATE(1259), 1, + STATE(1284), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(708), 2, + STATE(720), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1180), 6, + STATE(1157), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [47986] = 12, + [49388] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1862), 1, + ACTIONS(1904), 1, anon_sym_POUND, - ACTIONS(1866), 1, + ACTIONS(1908), 1, anon_sym_fn, - ACTIONS(1868), 1, + ACTIONS(1910), 1, sym__discard_name, - ACTIONS(1872), 1, + ACTIONS(1914), 1, sym__upname, - ACTIONS(1921), 1, + ACTIONS(1963), 1, sym__name, - ACTIONS(1931), 1, + ACTIONS(1977), 1, anon_sym_RPAREN, - STATE(1251), 1, + STATE(1212), 1, sym_type_argument, - STATE(1259), 1, + STATE(1284), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(708), 2, + STATE(720), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1180), 6, + STATE(1157), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [48030] = 12, + [49432] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1862), 1, + ACTIONS(1904), 1, anon_sym_POUND, - ACTIONS(1866), 1, + ACTIONS(1908), 1, anon_sym_fn, - ACTIONS(1868), 1, + ACTIONS(1910), 1, sym__discard_name, - ACTIONS(1870), 1, + ACTIONS(1912), 1, sym__name, - ACTIONS(1872), 1, + ACTIONS(1914), 1, sym__upname, - STATE(1232), 1, + STATE(1190), 1, sym_data_constructor_argument, - STATE(1259), 1, + STATE(1284), 1, sym_identifier, - STATE(1339), 1, + STATE(1384), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(708), 2, + STATE(720), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1163), 6, + STATE(1245), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [48074] = 12, + [49476] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1862), 1, + ACTIONS(1904), 1, anon_sym_POUND, - ACTIONS(1866), 1, + ACTIONS(1908), 1, anon_sym_fn, - ACTIONS(1868), 1, + ACTIONS(1910), 1, sym__discard_name, - ACTIONS(1872), 1, + ACTIONS(1914), 1, sym__upname, - ACTIONS(1921), 1, + ACTIONS(1963), 1, sym__name, - ACTIONS(1933), 1, + ACTIONS(1979), 1, anon_sym_RPAREN, - STATE(1079), 1, + STATE(1212), 1, sym_type_argument, - STATE(1259), 1, + STATE(1284), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(708), 2, + STATE(720), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1180), 6, + STATE(1157), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [48118] = 12, + [49520] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1862), 1, + ACTIONS(1904), 1, anon_sym_POUND, - ACTIONS(1866), 1, + ACTIONS(1908), 1, anon_sym_fn, - ACTIONS(1868), 1, + ACTIONS(1910), 1, sym__discard_name, - ACTIONS(1872), 1, + ACTIONS(1914), 1, sym__upname, - ACTIONS(1921), 1, + ACTIONS(1963), 1, sym__name, - ACTIONS(1935), 1, + ACTIONS(1981), 1, anon_sym_RPAREN, - STATE(985), 1, - sym_external_function_parameter, - STATE(1183), 1, + STATE(1284), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(708), 2, + STATE(720), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1173), 6, + STATE(1111), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [48162] = 12, + [49561] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1862), 1, + ACTIONS(1904), 1, anon_sym_POUND, - ACTIONS(1866), 1, + ACTIONS(1908), 1, anon_sym_fn, - ACTIONS(1868), 1, + ACTIONS(1910), 1, sym__discard_name, - ACTIONS(1872), 1, + ACTIONS(1914), 1, sym__upname, - ACTIONS(1921), 1, + ACTIONS(1963), 1, sym__name, - ACTIONS(1937), 1, + ACTIONS(1983), 1, anon_sym_RPAREN, - STATE(1097), 1, - sym_type_argument, - STATE(1259), 1, + STATE(1284), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(720), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(987), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [49602] = 11, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1904), 1, + anon_sym_POUND, + ACTIONS(1908), 1, + anon_sym_fn, + ACTIONS(1910), 1, + sym__discard_name, + ACTIONS(1914), 1, + sym__upname, + ACTIONS(1963), 1, + sym__name, + STATE(1197), 1, sym_identifier, + STATE(1264), 1, + sym_external_function_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(708), 2, + STATE(720), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1180), 6, + STATE(1191), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [48206] = 5, + [49643] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1941), 1, + ACTIONS(1987), 1, anon_sym_LPAREN, - STATE(782), 1, + STATE(788), 1, sym_record_pattern_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1939), 13, + ACTIONS(1985), 13, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -45289,547 +46547,400 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [48235] = 11, + [49672] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1862), 1, + ACTIONS(1904), 1, anon_sym_POUND, - ACTIONS(1866), 1, + ACTIONS(1908), 1, anon_sym_fn, - ACTIONS(1868), 1, + ACTIONS(1910), 1, sym__discard_name, - ACTIONS(1872), 1, + ACTIONS(1914), 1, sym__upname, - ACTIONS(1921), 1, + ACTIONS(1963), 1, sym__name, - ACTIONS(1943), 1, + ACTIONS(1989), 1, anon_sym_RPAREN, - STATE(1259), 1, + STATE(1284), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(708), 2, + STATE(720), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1075), 6, + STATE(1240), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [48276] = 11, + [49713] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1862), 1, - anon_sym_POUND, - ACTIONS(1866), 1, - anon_sym_fn, - ACTIONS(1868), 1, + ACTIONS(374), 1, + sym__name, + ACTIONS(1910), 1, sym__discard_name, - ACTIONS(1872), 1, + ACTIONS(1914), 1, sym__upname, - ACTIONS(1921), 1, - sym__name, - ACTIONS(1945), 1, + ACTIONS(1991), 1, + anon_sym_POUND, + ACTIONS(1993), 1, anon_sym_RPAREN, - STATE(1259), 1, + ACTIONS(1995), 1, + anon_sym_fn, + STATE(1255), 1, + sym_constant_type_argument, + STATE(1284), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(708), 2, + STATE(913), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1125), 6, - sym__type, + STATE(1183), 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, - [48317] = 11, + [49756] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1862), 1, + ACTIONS(1904), 1, anon_sym_POUND, - ACTIONS(1866), 1, + ACTIONS(1908), 1, anon_sym_fn, - ACTIONS(1868), 1, + ACTIONS(1910), 1, sym__discard_name, - ACTIONS(1872), 1, + ACTIONS(1914), 1, sym__upname, - ACTIONS(1921), 1, + ACTIONS(1963), 1, sym__name, - ACTIONS(1947), 1, + ACTIONS(1997), 1, anon_sym_RPAREN, - STATE(1259), 1, + STATE(1284), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(708), 2, + STATE(720), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1125), 6, + STATE(1240), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [48358] = 12, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(314), 1, - sym__name, - ACTIONS(1868), 1, - sym__discard_name, - ACTIONS(1872), 1, - sym__upname, - ACTIONS(1949), 1, - anon_sym_POUND, - ACTIONS(1951), 1, - anon_sym_RPAREN, - ACTIONS(1953), 1, - anon_sym_fn, - STATE(1051), 1, - sym_constant_type_argument, - STATE(1259), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(907), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1208), 5, - sym__constant_type, - sym_constant_tuple_type, - sym_constant_function_type, - sym_constant_type, - sym_type_hole, - [48401] = 11, + [49797] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1862), 1, + ACTIONS(1904), 1, anon_sym_POUND, - ACTIONS(1866), 1, + ACTIONS(1908), 1, anon_sym_fn, - ACTIONS(1868), 1, + ACTIONS(1910), 1, sym__discard_name, - ACTIONS(1872), 1, + ACTIONS(1914), 1, sym__upname, - ACTIONS(1921), 1, + ACTIONS(1963), 1, sym__name, - ACTIONS(1955), 1, + ACTIONS(1999), 1, anon_sym_RPAREN, - STATE(1259), 1, + STATE(1284), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(708), 2, + STATE(720), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1125), 6, + STATE(1240), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [48442] = 12, + [49838] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(314), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(1868), 1, + ACTIONS(1910), 1, sym__discard_name, - ACTIONS(1872), 1, + ACTIONS(1914), 1, sym__upname, - ACTIONS(1949), 1, + ACTIONS(1991), 1, anon_sym_POUND, - ACTIONS(1953), 1, + ACTIONS(1995), 1, anon_sym_fn, - ACTIONS(1957), 1, + ACTIONS(2001), 1, anon_sym_RPAREN, - STATE(1168), 1, + STATE(1098), 1, sym_constant_type_argument, - STATE(1259), 1, + STATE(1284), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(907), 2, + STATE(913), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1208), 5, + STATE(1183), 5, sym__constant_type, sym_constant_tuple_type, sym_constant_function_type, sym_constant_type, sym_type_hole, - [48485] = 11, + [49881] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1862), 1, + ACTIONS(1904), 1, anon_sym_POUND, - ACTIONS(1866), 1, + ACTIONS(1908), 1, anon_sym_fn, - ACTIONS(1868), 1, + ACTIONS(1910), 1, sym__discard_name, - ACTIONS(1872), 1, + ACTIONS(1914), 1, sym__upname, - ACTIONS(1921), 1, + ACTIONS(1963), 1, sym__name, - ACTIONS(1959), 1, + ACTIONS(2003), 1, anon_sym_RPAREN, - STATE(1259), 1, + STATE(1284), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(708), 2, + STATE(720), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1125), 6, + STATE(1240), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [48526] = 11, + [49922] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1862), 1, + ACTIONS(1904), 1, anon_sym_POUND, - ACTIONS(1866), 1, + ACTIONS(1908), 1, anon_sym_fn, - ACTIONS(1868), 1, + ACTIONS(1910), 1, sym__discard_name, - ACTIONS(1872), 1, + ACTIONS(1914), 1, sym__upname, - ACTIONS(1921), 1, + ACTIONS(1963), 1, sym__name, - STATE(1183), 1, + ACTIONS(2005), 1, + anon_sym_RPAREN, + STATE(1284), 1, sym_identifier, - STATE(1215), 1, - sym_external_function_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(708), 2, + STATE(720), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1173), 6, + STATE(1240), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [48567] = 11, + [49963] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1862), 1, + ACTIONS(1904), 1, anon_sym_POUND, - ACTIONS(1866), 1, + ACTIONS(1908), 1, anon_sym_fn, - ACTIONS(1868), 1, + ACTIONS(1910), 1, sym__discard_name, - ACTIONS(1872), 1, + ACTIONS(1914), 1, sym__upname, - ACTIONS(1921), 1, + ACTIONS(1963), 1, sym__name, - STATE(1251), 1, - sym_type_argument, - STATE(1259), 1, + ACTIONS(2007), 1, + anon_sym_RPAREN, + STATE(1284), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(708), 2, + STATE(720), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1180), 6, + STATE(1240), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [48608] = 11, + [50004] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1862), 1, + ACTIONS(1904), 1, anon_sym_POUND, - ACTIONS(1866), 1, + ACTIONS(1908), 1, anon_sym_fn, - ACTIONS(1868), 1, + ACTIONS(1910), 1, sym__discard_name, - ACTIONS(1872), 1, + ACTIONS(1914), 1, sym__upname, - ACTIONS(1921), 1, + ACTIONS(1963), 1, sym__name, - ACTIONS(1961), 1, + ACTIONS(2009), 1, anon_sym_RPAREN, - STATE(1259), 1, + STATE(1284), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(708), 2, + STATE(720), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1125), 6, + STATE(1122), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [48649] = 11, + [50045] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1862), 1, + ACTIONS(1904), 1, anon_sym_POUND, - ACTIONS(1866), 1, + ACTIONS(1908), 1, anon_sym_fn, - ACTIONS(1868), 1, + ACTIONS(1910), 1, sym__discard_name, - ACTIONS(1872), 1, + ACTIONS(1914), 1, sym__upname, - ACTIONS(1921), 1, - sym__name, ACTIONS(1963), 1, - anon_sym_RPAREN, - STATE(1259), 1, + sym__name, + STATE(1212), 1, + sym_type_argument, + STATE(1284), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(708), 2, + STATE(720), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1125), 6, + STATE(1157), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [48690] = 12, + [50086] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(314), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(1868), 1, + ACTIONS(1910), 1, sym__discard_name, - ACTIONS(1872), 1, + ACTIONS(1914), 1, sym__upname, - ACTIONS(1949), 1, + ACTIONS(1991), 1, anon_sym_POUND, - ACTIONS(1953), 1, + ACTIONS(1995), 1, anon_sym_fn, - ACTIONS(1965), 1, + ACTIONS(2011), 1, anon_sym_RPAREN, - STATE(1168), 1, + STATE(1255), 1, sym_constant_type_argument, - STATE(1259), 1, + STATE(1284), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(907), 2, + STATE(913), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1208), 5, + STATE(1183), 5, sym__constant_type, sym_constant_tuple_type, sym_constant_function_type, sym_constant_type, sym_type_hole, - [48733] = 11, + [50129] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1862), 1, - anon_sym_POUND, - ACTIONS(1866), 1, - anon_sym_fn, - ACTIONS(1868), 1, - sym__discard_name, - ACTIONS(1872), 1, - sym__upname, - ACTIONS(1921), 1, - sym__name, - ACTIONS(1967), 1, - anon_sym_RPAREN, - STATE(1259), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(708), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1099), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [48774] = 11, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1862), 1, - anon_sym_POUND, - ACTIONS(1866), 1, - anon_sym_fn, - ACTIONS(1868), 1, - sym__discard_name, - ACTIONS(1872), 1, - sym__upname, - ACTIONS(1921), 1, - sym__name, - ACTIONS(1969), 1, + ACTIONS(1326), 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, - STATE(1259), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(708), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1068), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [48815] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1971), 1, - anon_sym_POUND, - ACTIONS(1973), 1, anon_sym_fn, - ACTIONS(1975), 1, - sym__discard_name, - ACTIONS(1977), 1, - sym__name, - ACTIONS(1979), 1, - sym__upname, - STATE(1322), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(397), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(518), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [48853] = 10, + anon_sym_external, + anon_sym_type, + sym_visibility_modifier, + sym_opacity_modifier, + [50153] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1971), 1, + ACTIONS(1904), 1, anon_sym_POUND, - ACTIONS(1973), 1, + ACTIONS(1908), 1, anon_sym_fn, - ACTIONS(1975), 1, + ACTIONS(1910), 1, sym__discard_name, - ACTIONS(1977), 1, - sym__name, - ACTIONS(1979), 1, + ACTIONS(1914), 1, sym__upname, - STATE(1322), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(397), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(456), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [48891] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1971), 1, - anon_sym_POUND, - ACTIONS(1973), 1, - anon_sym_fn, - ACTIONS(1975), 1, - sym__discard_name, - ACTIONS(1977), 1, + ACTIONS(1963), 1, sym__name, - ACTIONS(1979), 1, - sym__upname, - STATE(1322), 1, + STATE(1284), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(397), 2, + STATE(720), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(511), 6, + STATE(1315), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [48929] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(464), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(462), 10, - anon_sym_LPAREN, - 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, - [48955] = 4, + [50191] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1983), 4, + ACTIONS(2015), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1981), 10, + ACTIONS(2013), 10, anon_sym_RBRACE, anon_sym_DASH_GT, anon_sym_PIPE_PIPE, @@ -45840,144 +46951,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [48981] = 4, + [50217] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1987), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1985), 10, + ACTIONS(442), 2, + anon_sym_DOT, + anon_sym_COLON, + ACTIONS(1350), 12, + anon_sym_LBRACE, 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, - [49007] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1862), 1, - anon_sym_POUND, - ACTIONS(1866), 1, + anon_sym_import, + anon_sym_COMMA, + anon_sym_const, + anon_sym_EQ, + anon_sym_RPAREN, anon_sym_fn, - ACTIONS(1868), 1, - sym__discard_name, - ACTIONS(1872), 1, - sym__upname, - ACTIONS(1921), 1, - sym__name, - STATE(1259), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(708), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(850), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [49045] = 10, + anon_sym_external, + anon_sym_type, + sym_visibility_modifier, + sym_opacity_modifier, + [50243] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1862), 1, + ACTIONS(1904), 1, anon_sym_POUND, - ACTIONS(1866), 1, + ACTIONS(1908), 1, anon_sym_fn, - ACTIONS(1868), 1, + ACTIONS(1910), 1, sym__discard_name, - ACTIONS(1872), 1, + ACTIONS(1914), 1, sym__upname, - ACTIONS(1921), 1, + ACTIONS(1963), 1, sym__name, - STATE(1259), 1, + STATE(1284), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(708), 2, + STATE(720), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(789), 6, + STATE(866), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [49083] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(456), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(454), 10, - anon_sym_DOT, - 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, - [49109] = 10, + [50281] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1862), 1, + ACTIONS(2017), 1, anon_sym_POUND, - ACTIONS(1866), 1, + ACTIONS(2019), 1, anon_sym_fn, - ACTIONS(1868), 1, + ACTIONS(2021), 1, sym__discard_name, - ACTIONS(1872), 1, - sym__upname, - ACTIONS(1921), 1, + ACTIONS(2023), 1, sym__name, - STATE(1259), 1, + ACTIONS(2025), 1, + sym__upname, + STATE(1346), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(708), 2, + STATE(408), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(795), 6, + STATE(465), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [49147] = 4, + [50319] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2027), 1, + anon_sym_LPAREN, + STATE(813), 1, + sym_type_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(454), 2, - anon_sym_DOT, - anon_sym_COLON, - ACTIONS(1201), 12, + ACTIONS(1205), 12, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -45990,412 +47052,385 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, sym_visibility_modifier, sym_opacity_modifier, - [49173] = 5, + [50347] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1989), 1, - anon_sym_LPAREN, - STATE(798), 1, - sym_type_arguments, + ACTIONS(1904), 1, + anon_sym_POUND, + ACTIONS(1908), 1, + anon_sym_fn, + ACTIONS(1910), 1, + sym__discard_name, + ACTIONS(1914), 1, + sym__upname, + ACTIONS(1963), 1, + sym__name, + STATE(1284), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1169), 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, - [49201] = 10, + STATE(720), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1334), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [50385] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1862), 1, + ACTIONS(1904), 1, anon_sym_POUND, - ACTIONS(1866), 1, + ACTIONS(1908), 1, anon_sym_fn, - ACTIONS(1868), 1, + ACTIONS(1910), 1, sym__discard_name, - ACTIONS(1872), 1, + ACTIONS(1914), 1, sym__upname, - ACTIONS(1921), 1, + ACTIONS(1963), 1, sym__name, - STATE(1259), 1, + STATE(1284), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(708), 2, + STATE(720), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1226), 6, + STATE(1179), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [49239] = 5, + [50423] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1994), 1, - anon_sym_DOT, + ACTIONS(1904), 1, + anon_sym_POUND, + ACTIONS(1908), 1, + anon_sym_fn, + ACTIONS(1910), 1, + sym__discard_name, + ACTIONS(1914), 1, + sym__upname, + ACTIONS(1963), 1, + sym__name, + STATE(1284), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1996), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1991), 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, - [49267] = 10, + STATE(720), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1348), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [50461] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1862), 1, + ACTIONS(1904), 1, anon_sym_POUND, - ACTIONS(1866), 1, + ACTIONS(1908), 1, anon_sym_fn, - ACTIONS(1868), 1, + ACTIONS(1910), 1, sym__discard_name, - ACTIONS(1872), 1, + ACTIONS(1914), 1, sym__upname, - ACTIONS(1921), 1, + ACTIONS(1963), 1, sym__name, - STATE(1259), 1, + STATE(1284), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(708), 2, + STATE(720), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1326), 6, + STATE(811), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [49305] = 10, + [50499] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1862), 1, + ACTIONS(1904), 1, anon_sym_POUND, - ACTIONS(1866), 1, + ACTIONS(1908), 1, anon_sym_fn, - ACTIONS(1868), 1, + ACTIONS(1910), 1, sym__discard_name, - ACTIONS(1872), 1, + ACTIONS(1914), 1, sym__upname, - ACTIONS(1921), 1, + ACTIONS(1963), 1, sym__name, - STATE(1259), 1, + STATE(1284), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(708), 2, + STATE(720), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1348), 6, + STATE(1367), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [49343] = 10, + [50537] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1862), 1, + ACTIONS(374), 1, + sym__name, + ACTIONS(1910), 1, + sym__discard_name, + ACTIONS(1914), 1, + sym__upname, + ACTIONS(1991), 1, anon_sym_POUND, - ACTIONS(1866), 1, + ACTIONS(1995), 1, anon_sym_fn, - ACTIONS(1868), 1, + STATE(1255), 1, + sym_constant_type_argument, + STATE(1284), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(913), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1183), 5, + sym__constant_type, + sym_constant_tuple_type, + sym_constant_function_type, + sym_constant_type, + sym_type_hole, + [50577] = 10, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1904), 1, + anon_sym_POUND, + ACTIONS(1908), 1, + anon_sym_fn, + ACTIONS(1910), 1, sym__discard_name, - ACTIONS(1872), 1, + ACTIONS(1914), 1, sym__upname, - ACTIONS(1921), 1, + ACTIONS(1963), 1, sym__name, - STATE(1259), 1, + STATE(1284), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(708), 2, + STATE(720), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1330), 6, + STATE(1037), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [49381] = 10, + [50615] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1862), 1, + ACTIONS(1904), 1, anon_sym_POUND, - ACTIONS(1866), 1, + ACTIONS(1908), 1, anon_sym_fn, - ACTIONS(1868), 1, + ACTIONS(1910), 1, sym__discard_name, - ACTIONS(1872), 1, + ACTIONS(1914), 1, sym__upname, - ACTIONS(1921), 1, + ACTIONS(1963), 1, sym__name, - STATE(1259), 1, + STATE(1284), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(708), 2, + STATE(720), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1335), 6, + STATE(1240), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [49419] = 10, + [50653] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1862), 1, + ACTIONS(1904), 1, anon_sym_POUND, - ACTIONS(1866), 1, + ACTIONS(1908), 1, anon_sym_fn, - ACTIONS(1868), 1, + ACTIONS(1910), 1, sym__discard_name, - ACTIONS(1872), 1, + ACTIONS(1914), 1, sym__upname, - ACTIONS(1921), 1, + ACTIONS(1963), 1, sym__name, - STATE(1259), 1, + STATE(1284), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(708), 2, + STATE(720), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1305), 6, + STATE(1357), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [49457] = 11, + [50691] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(314), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(1868), 1, + ACTIONS(1910), 1, sym__discard_name, - ACTIONS(1872), 1, + ACTIONS(1914), 1, sym__upname, - ACTIONS(1949), 1, + ACTIONS(1991), 1, anon_sym_POUND, - ACTIONS(1953), 1, + ACTIONS(1995), 1, anon_sym_fn, - STATE(1168), 1, - sym_constant_type_argument, - STATE(1259), 1, + ACTIONS(2029), 1, + anon_sym_RPAREN, + STATE(1284), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(907), 2, + STATE(913), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1208), 5, + STATE(1239), 5, sym__constant_type, sym_constant_tuple_type, sym_constant_function_type, sym_constant_type, sym_type_hole, - [49497] = 10, + [50731] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1862), 1, + ACTIONS(1904), 1, anon_sym_POUND, - ACTIONS(1866), 1, + ACTIONS(1908), 1, anon_sym_fn, - ACTIONS(1868), 1, + ACTIONS(1910), 1, sym__discard_name, - ACTIONS(1872), 1, + ACTIONS(1914), 1, sym__upname, - ACTIONS(1921), 1, + ACTIONS(1963), 1, sym__name, - STATE(1259), 1, + STATE(1284), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(708), 2, + STATE(720), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(838), 6, + STATE(1261), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [49535] = 10, + [50769] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1862), 1, + ACTIONS(2017), 1, anon_sym_POUND, - ACTIONS(1866), 1, + ACTIONS(2019), 1, anon_sym_fn, - ACTIONS(1868), 1, + ACTIONS(2021), 1, sym__discard_name, - ACTIONS(1872), 1, - sym__upname, - ACTIONS(1921), 1, + ACTIONS(2023), 1, sym__name, - STATE(1259), 1, + ACTIONS(2025), 1, + sym__upname, + STATE(1346), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(708), 2, + STATE(408), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1125), 6, + STATE(503), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [49573] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2001), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1999), 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, - [49599] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(472), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(470), 10, - anon_sym_LPAREN, - 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, - [49625] = 10, + [50807] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1862), 1, + ACTIONS(1904), 1, anon_sym_POUND, - ACTIONS(1866), 1, + ACTIONS(1908), 1, anon_sym_fn, - ACTIONS(1868), 1, + ACTIONS(1910), 1, sym__discard_name, - ACTIONS(1872), 1, + ACTIONS(1914), 1, sym__upname, - ACTIONS(1921), 1, + ACTIONS(1963), 1, sym__name, - STATE(1259), 1, + STATE(1284), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(708), 2, + STATE(720), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1368), 6, + STATE(1380), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [49663] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2005), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2003), 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, - [49689] = 4, + [50845] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2009), 4, + ACTIONS(444), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2007), 10, - anon_sym_RBRACE, + ACTIONS(442), 10, + anon_sym_DOT, anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -46405,163 +47440,231 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [49715] = 10, + [50871] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1862), 1, - anon_sym_POUND, - ACTIONS(1866), 1, - anon_sym_fn, - ACTIONS(1868), 1, + ACTIONS(374), 1, + sym__name, + ACTIONS(1910), 1, sym__discard_name, - ACTIONS(1872), 1, + ACTIONS(1914), 1, sym__upname, - ACTIONS(1921), 1, - sym__name, - STATE(1259), 1, + ACTIONS(1991), 1, + anon_sym_POUND, + ACTIONS(1995), 1, + anon_sym_fn, + ACTIONS(2031), 1, + anon_sym_RPAREN, + STATE(1284), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(708), 2, + STATE(913), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(851), 6, - sym__type, + STATE(1239), 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, - [49753] = 11, + [50911] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(314), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(1868), 1, + ACTIONS(1910), 1, sym__discard_name, - ACTIONS(1872), 1, + ACTIONS(1914), 1, sym__upname, - ACTIONS(1949), 1, + ACTIONS(1991), 1, anon_sym_POUND, - ACTIONS(1953), 1, + ACTIONS(1995), 1, anon_sym_fn, - ACTIONS(2011), 1, + ACTIONS(2033), 1, anon_sym_RPAREN, - STATE(1259), 1, + STATE(1284), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(907), 2, + STATE(913), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1237), 5, + STATE(1092), 5, sym__constant_type, sym_constant_tuple_type, sym_constant_function_type, sym_constant_type, sym_type_hole, - [49793] = 11, + [50951] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2037), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2035), 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, + [50977] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(314), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(1868), 1, + ACTIONS(1910), 1, sym__discard_name, - ACTIONS(1872), 1, + ACTIONS(1914), 1, sym__upname, - ACTIONS(1949), 1, + ACTIONS(1991), 1, anon_sym_POUND, - ACTIONS(1953), 1, + ACTIONS(1995), 1, anon_sym_fn, - ACTIONS(2013), 1, + ACTIONS(2039), 1, anon_sym_RPAREN, - STATE(1259), 1, + STATE(1284), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(907), 2, + STATE(913), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1038), 5, + STATE(1089), 5, sym__constant_type, sym_constant_tuple_type, sym_constant_function_type, sym_constant_type, sym_type_hole, - [49833] = 10, + [51017] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1862), 1, + ACTIONS(2017), 1, anon_sym_POUND, - ACTIONS(1866), 1, + ACTIONS(2019), 1, anon_sym_fn, - ACTIONS(1868), 1, + ACTIONS(2021), 1, sym__discard_name, - ACTIONS(1872), 1, - sym__upname, - ACTIONS(1921), 1, + ACTIONS(2023), 1, sym__name, - STATE(1259), 1, + ACTIONS(2025), 1, + sym__upname, + STATE(1346), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(708), 2, + STATE(408), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1271), 6, + STATE(469), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [49871] = 11, + [51055] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2041), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2046), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2043), 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, + [51083] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(314), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(1868), 1, + ACTIONS(1910), 1, sym__discard_name, - ACTIONS(1872), 1, + ACTIONS(1914), 1, sym__upname, - ACTIONS(1949), 1, + ACTIONS(1991), 1, anon_sym_POUND, - ACTIONS(1953), 1, + ACTIONS(1995), 1, anon_sym_fn, - ACTIONS(2015), 1, + ACTIONS(2049), 1, anon_sym_RPAREN, - STATE(1259), 1, + STATE(1284), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(907), 2, + STATE(913), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1237), 5, + STATE(1239), 5, sym__constant_type, sym_constant_tuple_type, sym_constant_function_type, sym_constant_type, sym_type_hole, - [49911] = 5, + [51123] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2017), 1, + ACTIONS(2051), 1, anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1996), 4, + ACTIONS(2046), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2043), 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, + [51151] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2055), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1991), 9, + ACTIONS(2053), 10, + anon_sym_RBRACE, anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -46571,373 +47674,438 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [49939] = 11, + [51177] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(314), 1, - sym__name, - ACTIONS(1868), 1, - sym__discard_name, - ACTIONS(1872), 1, - sym__upname, - ACTIONS(1949), 1, - anon_sym_POUND, - ACTIONS(1953), 1, - anon_sym_fn, - ACTIONS(2019), 1, - anon_sym_RPAREN, - STATE(1259), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(907), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1033), 5, - sym__constant_type, - sym_constant_tuple_type, - sym_constant_function_type, - sym_constant_type, - sym_type_hole, - [49979] = 10, + ACTIONS(2059), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2057), 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, + [51203] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1971), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2063), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2061), 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, + [51229] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(486), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(484), 10, + anon_sym_LPAREN, + 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, + [51255] = 10, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2017), 1, anon_sym_POUND, - ACTIONS(1973), 1, + ACTIONS(2019), 1, anon_sym_fn, - ACTIONS(1975), 1, + ACTIONS(2021), 1, sym__discard_name, - ACTIONS(1977), 1, + ACTIONS(2023), 1, sym__name, - ACTIONS(1979), 1, + ACTIONS(2025), 1, sym__upname, - STATE(1322), 1, + STATE(1346), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(397), 2, + STATE(408), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(437), 6, + STATE(462), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [50017] = 11, + [51293] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(314), 1, - sym__name, - ACTIONS(1868), 1, - sym__discard_name, - ACTIONS(1872), 1, - sym__upname, - ACTIONS(1949), 1, + ACTIONS(1904), 1, anon_sym_POUND, - ACTIONS(1953), 1, + ACTIONS(1908), 1, anon_sym_fn, - ACTIONS(2021), 1, - anon_sym_RPAREN, - STATE(1259), 1, + ACTIONS(1910), 1, + sym__discard_name, + ACTIONS(1914), 1, + sym__upname, + ACTIONS(1963), 1, + sym__name, + STATE(1284), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(907), 2, + STATE(720), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1237), 5, - sym__constant_type, - sym_constant_tuple_type, - sym_constant_function_type, - sym_constant_type, + STATE(1376), 6, + sym__type, sym_type_hole, - [50057] = 10, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [51331] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1862), 1, + ACTIONS(1904), 1, anon_sym_POUND, - ACTIONS(1866), 1, + ACTIONS(1908), 1, anon_sym_fn, - ACTIONS(1868), 1, + ACTIONS(1910), 1, sym__discard_name, - ACTIONS(1872), 1, + ACTIONS(1914), 1, sym__upname, - ACTIONS(1921), 1, + ACTIONS(1963), 1, sym__name, - STATE(1259), 1, + STATE(1284), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(708), 2, + STATE(720), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1344), 6, + STATE(870), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [50095] = 11, + [51369] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(314), 1, - sym__name, - ACTIONS(1868), 1, - sym__discard_name, - ACTIONS(1872), 1, - sym__upname, - ACTIONS(1949), 1, + ACTIONS(1904), 1, anon_sym_POUND, - ACTIONS(1953), 1, + ACTIONS(1908), 1, anon_sym_fn, - ACTIONS(2023), 1, - anon_sym_RPAREN, - STATE(1259), 1, + ACTIONS(1910), 1, + sym__discard_name, + ACTIONS(1914), 1, + sym__upname, + ACTIONS(1963), 1, + sym__name, + STATE(1284), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(907), 2, + STATE(720), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1237), 5, - sym__constant_type, - sym_constant_tuple_type, - sym_constant_function_type, - sym_constant_type, + STATE(1318), 6, + sym__type, sym_type_hole, - [50135] = 10, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [51407] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1971), 1, + ACTIONS(1904), 1, anon_sym_POUND, - ACTIONS(1973), 1, + ACTIONS(1908), 1, anon_sym_fn, - ACTIONS(1975), 1, + ACTIONS(1910), 1, sym__discard_name, - ACTIONS(1977), 1, - sym__name, - ACTIONS(1979), 1, + ACTIONS(1914), 1, sym__upname, - STATE(1322), 1, + ACTIONS(1963), 1, + sym__name, + STATE(1284), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(397), 2, + STATE(720), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(521), 6, + STATE(1320), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [50173] = 3, + [51445] = 11, ACTIONS(3), 1, sym_module_comment, + ACTIONS(374), 1, + sym__name, + ACTIONS(1910), 1, + sym__discard_name, + ACTIONS(1914), 1, + sym__upname, + ACTIONS(1991), 1, + anon_sym_POUND, + ACTIONS(1995), 1, + anon_sym_fn, + ACTIONS(2065), 1, + anon_sym_RPAREN, + STATE(1284), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1304), 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, - [50197] = 10, + STATE(913), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1239), 5, + sym__constant_type, + sym_constant_tuple_type, + sym_constant_function_type, + sym_constant_type, + sym_type_hole, + [51485] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1862), 1, + ACTIONS(1904), 1, anon_sym_POUND, - ACTIONS(1866), 1, + ACTIONS(1908), 1, anon_sym_fn, - ACTIONS(1868), 1, + ACTIONS(1910), 1, sym__discard_name, - ACTIONS(1872), 1, + ACTIONS(1914), 1, sym__upname, - ACTIONS(1921), 1, + ACTIONS(1963), 1, sym__name, - STATE(1259), 1, + STATE(1284), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(708), 2, + STATE(720), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1085), 6, + STATE(818), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [50235] = 10, + [51523] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1862), 1, + ACTIONS(1904), 1, anon_sym_POUND, - ACTIONS(1866), 1, + ACTIONS(1908), 1, anon_sym_fn, - ACTIONS(1868), 1, + ACTIONS(1910), 1, sym__discard_name, - ACTIONS(1872), 1, + ACTIONS(1914), 1, sym__upname, - ACTIONS(1921), 1, + ACTIONS(1963), 1, sym__name, - STATE(1259), 1, + STATE(1284), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(708), 2, + STATE(720), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1218), 6, + STATE(1321), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [50273] = 10, + [51561] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1862), 1, + ACTIONS(1904), 1, anon_sym_POUND, - ACTIONS(1866), 1, + ACTIONS(1908), 1, anon_sym_fn, - ACTIONS(1868), 1, + ACTIONS(1910), 1, sym__discard_name, - ACTIONS(1872), 1, + ACTIONS(1914), 1, sym__upname, - ACTIONS(1921), 1, + ACTIONS(1963), 1, sym__name, - STATE(1259), 1, + STATE(1284), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(708), 2, + STATE(720), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1304), 6, + STATE(1355), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [50311] = 10, + [51599] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1862), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(470), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(468), 10, + anon_sym_LPAREN, + 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, + [51625] = 10, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1904), 1, anon_sym_POUND, - ACTIONS(1866), 1, + ACTIONS(1908), 1, anon_sym_fn, - ACTIONS(1868), 1, + ACTIONS(1910), 1, sym__discard_name, - ACTIONS(1872), 1, + ACTIONS(1914), 1, sym__upname, - ACTIONS(1921), 1, + ACTIONS(1963), 1, sym__name, - STATE(1259), 1, + STATE(1284), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(708), 2, + STATE(720), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1302), 6, + STATE(1363), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [50349] = 10, + [51663] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1862), 1, + ACTIONS(1904), 1, anon_sym_POUND, - ACTIONS(1866), 1, + ACTIONS(1908), 1, anon_sym_fn, - ACTIONS(1868), 1, + ACTIONS(1910), 1, sym__discard_name, - ACTIONS(1872), 1, + ACTIONS(1914), 1, sym__upname, - ACTIONS(1921), 1, + ACTIONS(1963), 1, sym__name, - STATE(1259), 1, + STATE(1284), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(708), 2, + STATE(720), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1299), 6, + STATE(874), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [50387] = 10, + [51701] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1862), 1, + ACTIONS(2017), 1, anon_sym_POUND, - ACTIONS(1866), 1, + ACTIONS(2019), 1, anon_sym_fn, - ACTIONS(1868), 1, + ACTIONS(2021), 1, sym__discard_name, - ACTIONS(1872), 1, - sym__upname, - ACTIONS(1921), 1, + ACTIONS(2023), 1, sym__name, - STATE(1259), 1, + ACTIONS(2025), 1, + sym__upname, + STATE(1346), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(708), 2, + STATE(408), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1278), 6, + STATE(451), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [50425] = 3, + [51739] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2025), 13, + ACTIONS(2067), 13, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -46951,37 +48119,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [50448] = 7, + [51762] = 8, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2027), 1, + ACTIONS(2069), 1, + anon_sym_RBRACE, + ACTIONS(2071), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2073), 1, anon_sym_AMP_AMP, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1981), 2, - anon_sym_RBRACE, - anon_sym_PIPE_PIPE, - ACTIONS(2029), 2, + ACTIONS(2075), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2031), 4, + ACTIONS(2077), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2033), 4, + ACTIONS(2079), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [50479] = 3, + [51795] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2035), 13, + ACTIONS(2081), 13, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -46995,61 +48164,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [50502] = 10, + [51818] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(314), 1, - sym__name, - ACTIONS(1868), 1, - sym__discard_name, - ACTIONS(1872), 1, - sym__upname, - ACTIONS(1949), 1, - anon_sym_POUND, - ACTIONS(1953), 1, - anon_sym_fn, - STATE(1259), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(907), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1311), 5, - sym__constant_type, - sym_constant_tuple_type, - sym_constant_function_type, - sym_constant_type, - sym_type_hole, - [50539] = 4, + ACTIONS(2083), 13, + 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_LT_GT, + anon_sym_DOT_DOT, + anon_sym_PIPE, + anon_sym_LT_DASH, + [51841] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(460), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(458), 9, + ACTIONS(2085), 13, + 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_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, - [50564] = 3, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + anon_sym_PIPE, + anon_sym_LT_DASH, + [51864] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2037), 13, + ACTIONS(2087), 13, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -47063,77 +48224,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [50587] = 4, + [51887] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(468), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(466), 9, + ACTIONS(2089), 13, + 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_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, - [50612] = 5, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + anon_sym_PIPE, + anon_sym_LT_DASH, + [51910] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2039), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2041), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(1981), 5, + ACTIONS(2091), 13, + 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_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [50639] = 4, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + anon_sym_PIPE, + anon_sym_LT_DASH, + [51933] = 7, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2093), 1, + anon_sym_AMP_AMP, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(603), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(601), 9, + ACTIONS(2035), 2, anon_sym_DASH_GT, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2097), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2099), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [50664] = 3, + [51964] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2043), 13, + ACTIONS(2101), 13, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -47147,35 +48308,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [50687] = 5, + [51987] = 6, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2031), 4, + ACTIONS(2095), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2035), 3, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(2097), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2033), 4, + ACTIONS(2099), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1981), 5, - anon_sym_RBRACE, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [50714] = 3, + [52016] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2045), 13, + ACTIONS(2103), 13, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -47189,13 +48351,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [50737] = 3, + [52039] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2037), 13, + ACTIONS(2105), 13, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -47209,13 +48371,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [50760] = 3, + [52062] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2047), 13, + ACTIONS(2107), 13, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -47229,13 +48391,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [50783] = 3, + [52085] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2049), 13, + ACTIONS(2109), 13, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -47249,13 +48411,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [50806] = 3, + [52108] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2051), 13, + ACTIONS(2111), 13, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -47269,77 +48431,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [50829] = 4, + [52131] = 5, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(490), 4, + ACTIONS(2097), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(488), 9, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(2099), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [50854] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2029), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1981), 3, - anon_sym_RBRACE, + ACTIONS(2035), 5, + anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(2031), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2033), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [50883] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2053), 13, - 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_LT_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - anon_sym_LT_DASH, - [50906] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [52158] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2055), 13, + ACTIONS(2067), 13, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -47353,13 +48473,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [50929] = 3, + [52181] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2057), 13, + ACTIONS(2083), 13, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -47373,77 +48493,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [50952] = 3, + [52204] = 10, ACTIONS(3), 1, sym_module_comment, + ACTIONS(374), 1, + sym__name, + ACTIONS(1910), 1, + sym__discard_name, + ACTIONS(1914), 1, + sym__upname, + ACTIONS(1991), 1, + anon_sym_POUND, + ACTIONS(1995), 1, + anon_sym_fn, + STATE(1284), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2059), 13, - 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_LT_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - anon_sym_LT_DASH, - [50975] = 4, + STATE(913), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1094), 5, + sym__constant_type, + sym_constant_tuple_type, + sym_constant_function_type, + sym_constant_type, + sym_type_hole, + [52241] = 8, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(667), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(665), 9, + ACTIONS(2093), 1, + anon_sym_AMP_AMP, + ACTIONS(2113), 1, anon_sym_DASH_GT, + ACTIONS(2115), 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, - [51000] = 6, - ACTIONS(3), 1, - sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2061), 2, + ACTIONS(2095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1981), 3, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(2039), 4, + ACTIONS(2097), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2041), 4, + ACTIONS(2099), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [51029] = 3, + [52274] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2063), 13, + ACTIONS(2117), 13, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -47457,13 +48565,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [51052] = 3, + [52297] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2065), 13, + ACTIONS(2119), 13, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -47477,13 +48585,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [51075] = 3, + [52320] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2067), 13, + ACTIONS(2121), 13, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -47497,13 +48605,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [51098] = 3, + [52343] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2069), 13, + ACTIONS(2123), 13, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -47517,40 +48625,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [51121] = 10, + [52366] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(314), 1, - sym__name, - ACTIONS(1868), 1, - sym__discard_name, - ACTIONS(1872), 1, - sym__upname, - ACTIONS(1949), 1, - anon_sym_POUND, - ACTIONS(1953), 1, - anon_sym_fn, - STATE(1259), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(907), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1040), 5, - sym__constant_type, - sym_constant_tuple_type, - sym_constant_function_type, - sym_constant_type, - sym_type_hole, - [51158] = 3, + ACTIONS(2125), 13, + 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_LT_GT, + anon_sym_DOT_DOT, + anon_sym_PIPE, + anon_sym_LT_DASH, + [52389] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2071), 13, + ACTIONS(2127), 13, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -47564,13 +48665,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [51181] = 3, + [52412] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2073), 13, + ACTIONS(2129), 13, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -47584,13 +48685,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [51204] = 3, + [52435] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2075), 13, + ACTIONS(2131), 13, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -47604,38 +48705,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [51227] = 8, + [52458] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2027), 1, - anon_sym_AMP_AMP, - ACTIONS(2077), 1, - anon_sym_RBRACE, - ACTIONS(2079), 1, - anon_sym_PIPE_PIPE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2029), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2031), 4, + ACTIONS(501), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2033), 4, + ACTIONS(499), 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, - [51260] = 3, + [52483] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2081), 13, + ACTIONS(2133), 13, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -47649,13 +48746,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [51283] = 3, + [52506] = 5, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2083), 13, + ACTIONS(2077), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2079), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(2035), 5, + anon_sym_RBRACE, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [52533] = 3, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2135), 13, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -47669,125 +48788,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [51306] = 10, + [52556] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(314), 1, - sym__name, - ACTIONS(1868), 1, - sym__discard_name, - ACTIONS(1872), 1, - sym__upname, - ACTIONS(1949), 1, - anon_sym_POUND, - ACTIONS(1953), 1, - anon_sym_fn, - STATE(1259), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(907), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1061), 5, - sym__constant_type, - sym_constant_tuple_type, - sym_constant_function_type, - sym_constant_type, - sym_type_hole, - [51343] = 8, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2085), 1, + ACTIONS(729), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(727), 9, anon_sym_DASH_GT, - ACTIONS(2087), 1, anon_sym_PIPE_PIPE, - ACTIONS(2089), 1, anon_sym_AMP_AMP, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2061), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2039), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(2041), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [51376] = 3, + [52581] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2091), 13, - anon_sym_if, - anon_sym_as, + ACTIONS(1261), 13, + 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_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - anon_sym_LT_DASH, - [51399] = 3, + anon_sym_fn, + anon_sym_external, + anon_sym_type, + sym_visibility_modifier, + sym_opacity_modifier, + [52604] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2093), 13, - 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, + ACTIONS(675), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(673), 9, anon_sym_DASH_GT, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - anon_sym_LT_DASH, - [51422] = 3, + 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, + [52629] = 6, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2095), 13, - 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_LT_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - anon_sym_LT_DASH, - [51445] = 3, + ACTIONS(2075), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2035), 3, + anon_sym_RBRACE, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(2077), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2079), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [52658] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2073), 13, + ACTIONS(2137), 13, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -47801,84 +48893,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [51468] = 3, + [52681] = 10, ACTIONS(3), 1, sym_module_comment, + ACTIONS(374), 1, + sym__name, + ACTIONS(1910), 1, + sym__discard_name, + ACTIONS(1914), 1, + sym__upname, + ACTIONS(1991), 1, + anon_sym_POUND, + ACTIONS(1995), 1, + anon_sym_fn, + STATE(1284), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1197), 13, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_COMMA, - anon_sym_const, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, + STATE(913), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1038), 5, + sym__constant_type, + sym_constant_tuple_type, + sym_constant_function_type, + sym_constant_type, + sym_type_hole, + [52718] = 10, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(374), 1, + sym__name, + ACTIONS(1910), 1, + sym__discard_name, + ACTIONS(1914), 1, + sym__upname, + ACTIONS(1991), 1, + anon_sym_POUND, + ACTIONS(1995), 1, anon_sym_fn, - anon_sym_external, - anon_sym_type, - sym_visibility_modifier, - sym_opacity_modifier, - [51491] = 10, + STATE(1284), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(913), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1239), 5, + sym__constant_type, + sym_constant_tuple_type, + sym_constant_function_type, + sym_constant_type, + sym_type_hole, + [52755] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(314), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(1868), 1, + ACTIONS(1910), 1, sym__discard_name, - ACTIONS(1872), 1, + ACTIONS(1914), 1, sym__upname, - ACTIONS(1949), 1, + ACTIONS(1991), 1, anon_sym_POUND, - ACTIONS(1953), 1, + ACTIONS(1995), 1, anon_sym_fn, - STATE(1259), 1, + STATE(1284), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(907), 2, + STATE(913), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1237), 5, + STATE(1278), 5, sym__constant_type, sym_constant_tuple_type, sym_constant_function_type, sym_constant_type, sym_type_hole, - [51528] = 7, + [52792] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2089), 1, - anon_sym_AMP_AMP, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1981), 2, + ACTIONS(2139), 13, + 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_PIPE_PIPE, - ACTIONS(2061), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2039), 4, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + anon_sym_PIPE, + anon_sym_LT_DASH, + [52815] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(478), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(2041), 4, + ACTIONS(476), 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, - [51559] = 3, + [52840] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2097), 13, + ACTIONS(2141), 13, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -47892,71 +49035,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [51582] = 3, + [52863] = 7, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2073), 1, + anon_sym_AMP_AMP, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2099), 13, - 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_LT_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - anon_sym_LT_DASH, - [51605] = 3, + ACTIONS(2035), 2, + anon_sym_RBRACE, + anon_sym_PIPE_PIPE, + ACTIONS(2075), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2077), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2079), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [52894] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2143), 1, + anon_sym_SLASH, + STATE(805), 1, + aux_sym_module_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1532), 12, - anon_sym_LBRACE, + ACTIONS(1159), 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, sym_visibility_modifier, sym_opacity_modifier, - [51627] = 3, + [52920] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2146), 1, + anon_sym_SLASH, + STATE(815), 1, + aux_sym_module_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1440), 12, - anon_sym_LBRACE, + ACTIONS(1166), 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, sym_visibility_modifier, sym_opacity_modifier, - [51649] = 3, + [52946] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1524), 12, + ACTIONS(1430), 12, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -47969,13 +49120,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, sym_visibility_modifier, sym_opacity_modifier, - [51671] = 3, + [52968] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1456), 12, + ACTIONS(1410), 12, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -47988,34 +49139,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, sym_visibility_modifier, sym_opacity_modifier, - [51693] = 5, + [52990] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2101), 1, - anon_sym_SLASH, - STATE(801), 1, - aux_sym_module_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1136), 10, + ACTIONS(1526), 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, sym_visibility_modifier, sym_opacity_modifier, - [51719] = 3, + [53012] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1576), 12, + ACTIONS(1478), 12, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -48028,13 +49177,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, sym_visibility_modifier, sym_opacity_modifier, - [51741] = 3, + [53034] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1560), 12, + ACTIONS(1374), 12, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -48047,55 +49196,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, sym_visibility_modifier, sym_opacity_modifier, - [51763] = 5, + [53056] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2103), 1, - anon_sym_LPAREN, - STATE(810), 1, - sym_type_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1150), 10, + ACTIONS(1462), 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, - [51789] = 5, + [53078] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2105), 1, - anon_sym_SLASH, - STATE(797), 1, - aux_sym_module_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1129), 10, + ACTIONS(1358), 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, sym_visibility_modifier, sym_opacity_modifier, - [51815] = 3, + [53100] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1480), 12, + ACTIONS(1398), 12, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -48108,72 +49253,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, sym_visibility_modifier, sym_opacity_modifier, - [51837] = 3, + [53122] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2146), 1, + anon_sym_SLASH, + STATE(805), 1, + aux_sym_module_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1588), 12, - anon_sym_LBRACE, + ACTIONS(1172), 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, sym_visibility_modifier, sym_opacity_modifier, - [51859] = 3, + [53148] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2148), 1, + anon_sym_LPAREN, + STATE(834), 1, + sym_type_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1536), 12, + ACTIONS(1192), 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, sym_visibility_modifier, sym_opacity_modifier, - [51881] = 5, + [53174] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2101), 1, - anon_sym_SLASH, - STATE(797), 1, - aux_sym_module_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1123), 10, + ACTIONS(1418), 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, sym_visibility_modifier, sym_opacity_modifier, - [51907] = 3, + [53196] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1428), 12, + ACTIONS(1414), 12, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -48186,13 +49333,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, sym_visibility_modifier, sym_opacity_modifier, - [51929] = 3, + [53218] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1400), 12, + ACTIONS(1454), 12, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -48205,13 +49352,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, sym_visibility_modifier, sym_opacity_modifier, - [51951] = 3, + [53240] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1552), 12, + ACTIONS(1362), 12, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -48224,69 +49371,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, sym_visibility_modifier, sym_opacity_modifier, - [51973] = 13, + [53262] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2108), 1, + ACTIONS(2150), 1, anon_sym_RPAREN, - ACTIONS(2110), 1, + ACTIONS(2152), 1, sym__discard_name, - ACTIONS(2112), 1, + ACTIONS(2154), 1, sym__name, - STATE(939), 1, - sym__labeled_discard_param, - STATE(941), 1, - sym__discard_param, - STATE(942), 1, + STATE(929), 1, sym__labeled_name_param, - STATE(943), 1, - sym__name_param, - STATE(944), 1, + STATE(972), 1, sym_label, - STATE(987), 1, + STATE(973), 1, + sym__name_param, + STATE(974), 1, + sym__discard_param, + STATE(975), 1, + sym__labeled_discard_param, + STATE(1095), 1, sym_discard, - STATE(1048), 1, - sym_function_parameter, - STATE(1069), 1, + STATE(1096), 1, sym_identifier, + STATE(1148), 1, + sym_function_parameter, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [53303] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1161), 1, + anon_sym_SLASH, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52014] = 13, + ACTIONS(1159), 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, + [53326] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2110), 1, + ACTIONS(2152), 1, sym__discard_name, - ACTIONS(2112), 1, + ACTIONS(2154), 1, sym__name, - ACTIONS(2114), 1, + ACTIONS(2156), 1, anon_sym_RPAREN, - STATE(939), 1, - sym__labeled_discard_param, - STATE(941), 1, - sym__discard_param, - STATE(942), 1, + STATE(929), 1, sym__labeled_name_param, - STATE(943), 1, - sym__name_param, - STATE(944), 1, + STATE(972), 1, sym_label, - STATE(987), 1, + STATE(973), 1, + sym__name_param, + STATE(974), 1, + sym__discard_param, + STATE(975), 1, + sym__labeled_discard_param, + STATE(1095), 1, sym_discard, - STATE(1069), 1, + STATE(1096), 1, sym_identifier, - STATE(1176), 1, + STATE(1115), 1, sym_function_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52055] = 3, + [53367] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2116), 11, + ACTIONS(2158), 11, anon_sym_if, anon_sym_COMMA, anon_sym_EQ, @@ -48298,60 +49464,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_LT_DASH, - [52076] = 4, + [53388] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1131), 1, - anon_sym_SLASH, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1129), 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, - [52099] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2110), 1, + ACTIONS(2152), 1, sym__discard_name, - ACTIONS(2112), 1, + ACTIONS(2154), 1, sym__name, - ACTIONS(2118), 1, + ACTIONS(2160), 1, anon_sym_RPAREN, - STATE(939), 1, - sym__labeled_discard_param, - STATE(941), 1, - sym__discard_param, - STATE(942), 1, + STATE(929), 1, sym__labeled_name_param, - STATE(943), 1, - sym__name_param, - STATE(944), 1, + STATE(972), 1, sym_label, - STATE(987), 1, + STATE(973), 1, + sym__name_param, + STATE(974), 1, + sym__discard_param, + STATE(975), 1, + sym__labeled_discard_param, + STATE(1095), 1, sym_discard, - STATE(1069), 1, + STATE(1096), 1, sym_identifier, - STATE(1176), 1, + STATE(1148), 1, sym_function_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52140] = 3, + [53429] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1392), 10, + ACTIONS(1422), 10, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -48362,17 +49509,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, sym_visibility_modifier, sym_opacity_modifier, - [52160] = 5, + [53449] = 10, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1672), 1, + sym__decimal, + ACTIONS(1676), 1, + sym__upname, + ACTIONS(2162), 1, + anon_sym_DASH, + ACTIONS(2164), 1, + sym__name, + STATE(606), 1, + sym_label, + STATE(716), 1, + sym_integer, + STATE(746), 1, + sym_constructor_name, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1670), 3, + sym__hex, + sym__octal, + sym__binary, + [53483] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2120), 1, + ACTIONS(2166), 1, anon_sym_DOT, - ACTIONS(2122), 1, + ACTIONS(2168), 1, anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1142), 8, + ACTIONS(1178), 8, anon_sym_RBRACE, anon_sym_import, anon_sym_const, @@ -48381,13 +49552,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, sym_visibility_modifier, sym_opacity_modifier, - [52184] = 3, + [53507] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1548), 10, + ACTIONS(1378), 10, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -48398,13 +49569,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, sym_visibility_modifier, sym_opacity_modifier, - [52204] = 3, + [53527] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1580), 10, + ACTIONS(1390), 10, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -48415,37 +49586,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, sym_visibility_modifier, sym_opacity_modifier, - [52224] = 10, + [53547] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1638), 1, - sym__decimal, - ACTIONS(1642), 1, - sym__upname, - ACTIONS(2124), 1, - anon_sym_DASH, - ACTIONS(2126), 1, + ACTIONS(2152), 1, + sym__discard_name, + ACTIONS(2154), 1, sym__name, - STATE(588), 1, + STATE(929), 1, + sym__labeled_name_param, + STATE(972), 1, sym_label, - STATE(702), 1, - sym_integer, - STATE(720), 1, - sym_constructor_name, + STATE(973), 1, + sym__name_param, + STATE(974), 1, + sym__discard_param, + STATE(975), 1, + sym__labeled_discard_param, + STATE(1095), 1, + sym_discard, + STATE(1096), 1, + sym_identifier, + STATE(1148), 1, + sym_function_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1636), 3, - sym__hex, - sym__octal, - sym__binary, - [52258] = 3, + [53585] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2170), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1460), 10, + ACTIONS(2172), 9, + anon_sym_as, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [53607] = 3, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1386), 10, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -48456,134 +49647,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, sym_visibility_modifier, sym_opacity_modifier, - [52278] = 4, + [53627] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2128), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2130), 9, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(1458), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_const, anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_LT_GT, - anon_sym_DOT_DOT, - [52300] = 12, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2110), 1, - sym__discard_name, - ACTIONS(2112), 1, - sym__name, - STATE(939), 1, - sym__labeled_discard_param, - STATE(941), 1, - sym__discard_param, - STATE(942), 1, - sym__labeled_name_param, - STATE(943), 1, - sym__name_param, - STATE(944), 1, - sym_label, - STATE(987), 1, - sym_discard, - STATE(1069), 1, - sym_identifier, - STATE(1176), 1, - sym_function_parameter, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [52338] = 10, + anon_sym_fn, + anon_sym_external, + anon_sym_type, + sym_visibility_modifier, + sym_opacity_modifier, + [53647] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(717), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(723), 1, + ACTIONS(659), 1, sym__upname, - ACTIONS(1237), 1, + ACTIONS(2174), 1, anon_sym_DASH, - ACTIONS(2132), 1, + ACTIONS(2176), 1, sym__name, - STATE(316), 1, + STATE(323), 1, sym_constructor_name, - STATE(588), 1, + STATE(606), 1, sym_label, - STATE(702), 1, + STATE(716), 1, sym_integer, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(715), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - [52372] = 3, + [53681] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1492), 10, - anon_sym_LBRACE, + ACTIONS(1316), 9, anon_sym_RBRACE, anon_sym_import, + anon_sym_as, anon_sym_const, - anon_sym_EQ, anon_sym_fn, anon_sym_external, anon_sym_type, sym_visibility_modifier, sym_opacity_modifier, - [52392] = 3, + [53700] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2178), 1, + anon_sym_as, + ACTIONS(2182), 1, + anon_sym_LT_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1312), 9, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_as, - anon_sym_const, - anon_sym_fn, - anon_sym_external, - anon_sym_type, - sym_visibility_modifier, - sym_opacity_modifier, - [52411] = 7, + ACTIONS(2180), 7, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_DOT_DOT, + [53723] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(312), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(2134), 1, + ACTIONS(1243), 1, anon_sym_DASH, - ACTIONS(2136), 1, + ACTIONS(2184), 1, sym__name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(310), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - STATE(1283), 3, + STATE(1333), 3, sym__pattern_bit_string_segment_argument, sym_integer, sym_identifier, - [52438] = 3, + [53750] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1191), 9, + ACTIONS(1344), 9, anon_sym_RBRACE, anon_sym_import, anon_sym_as, @@ -48593,13 +49758,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, sym_visibility_modifier, sym_opacity_modifier, - [52457] = 3, + [53769] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1308), 9, + ACTIONS(1332), 9, anon_sym_RBRACE, anon_sym_import, anon_sym_as, @@ -48609,66 +49774,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, sym_visibility_modifier, sym_opacity_modifier, - [52476] = 4, + [53788] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2138), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1225), 8, + ACTIONS(1257), 9, anon_sym_RBRACE, anon_sym_import, + anon_sym_as, anon_sym_const, anon_sym_fn, anon_sym_external, anon_sym_type, sym_visibility_modifier, sym_opacity_modifier, - [52497] = 3, + [53807] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2186), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1221), 9, + ACTIONS(1320), 8, anon_sym_RBRACE, anon_sym_import, - anon_sym_as, anon_sym_const, anon_sym_fn, anon_sym_external, anon_sym_type, sym_visibility_modifier, sym_opacity_modifier, - [52516] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2140), 1, - anon_sym_as, - ACTIONS(2144), 1, - anon_sym_LT_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2142), 7, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_DOT_DOT, - [52539] = 4, + [53828] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2146), 1, + ACTIONS(2188), 1, anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1288), 8, + ACTIONS(1308), 8, anon_sym_RBRACE, anon_sym_import, anon_sym_const, @@ -48677,28 +49824,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, sym_visibility_modifier, sym_opacity_modifier, - [52560] = 3, + [53849] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(454), 8, - anon_sym_if, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LT_GT, - anon_sym_PIPE, - anon_sym_LT_DASH, - [52578] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1448), 8, + ACTIONS(1626), 8, anon_sym_RBRACE, anon_sym_import, anon_sym_const, @@ -48707,13 +49839,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, sym_visibility_modifier, sym_opacity_modifier, - [52596] = 3, + [53867] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1472), 8, + ACTIONS(1530), 8, anon_sym_RBRACE, anon_sym_import, anon_sym_const, @@ -48722,13 +49854,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, sym_visibility_modifier, sym_opacity_modifier, - [52614] = 3, + [53885] = 3, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2190), 8, + anon_sym_if, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_DOT_DOT, + anon_sym_PIPE, + anon_sym_LT_DASH, + [53903] = 10, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(374), 1, + sym__name, + ACTIONS(2152), 1, + sym__discard_name, + ACTIONS(2192), 1, + anon_sym_RPAREN, + STATE(953), 1, + sym__discard_param, + STATE(957), 1, + sym__name_param, + STATE(1095), 1, + sym_discard, + STATE(1096), 1, + sym_identifier, + STATE(1149), 1, + sym_anonymous_function_parameter, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [53935] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1412), 8, + ACTIONS(1490), 8, anon_sym_RBRACE, anon_sym_import, anon_sym_const, @@ -48737,50 +49906,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, sym_visibility_modifier, sym_opacity_modifier, - [52632] = 3, + [53953] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(462), 8, - anon_sym_if, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DASH_GT, - anon_sym_LT_GT, - anon_sym_PIPE, - anon_sym_LT_DASH, - [52650] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(314), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(2110), 1, + ACTIONS(2152), 1, sym__discard_name, - ACTIONS(2148), 1, + ACTIONS(2194), 1, anon_sym_RPAREN, - STATE(957), 1, + STATE(953), 1, sym__discard_param, - STATE(958), 1, + STATE(957), 1, sym__name_param, - STATE(987), 1, + STATE(1001), 1, + sym_anonymous_function_parameter, + STATE(1095), 1, sym_discard, - STATE(1069), 1, + STATE(1096), 1, sym_identifier, - STATE(1138), 1, - sym_anonymous_function_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52682] = 3, + [53985] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1384), 8, + ACTIONS(1510), 8, anon_sym_RBRACE, anon_sym_import, anon_sym_const, @@ -48789,13 +49943,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, sym_visibility_modifier, sym_opacity_modifier, - [52700] = 3, + [54003] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1388), 8, + ACTIONS(1434), 8, anon_sym_RBRACE, anon_sym_import, anon_sym_const, @@ -48804,13 +49958,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, sym_visibility_modifier, sym_opacity_modifier, - [52718] = 3, + [54021] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1504), 8, + ACTIONS(1522), 8, anon_sym_RBRACE, anon_sym_import, anon_sym_const, @@ -48819,13 +49973,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, sym_visibility_modifier, sym_opacity_modifier, - [52736] = 3, + [54039] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1396), 8, + ACTIONS(1506), 8, anon_sym_RBRACE, anon_sym_import, anon_sym_const, @@ -48834,13 +49988,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, sym_visibility_modifier, sym_opacity_modifier, - [52754] = 3, + [54057] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1372), 8, + ACTIONS(468), 8, + anon_sym_if, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DASH_GT, + anon_sym_LT_GT, + anon_sym_PIPE, + anon_sym_LT_DASH, + [54075] = 3, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1572), 8, anon_sym_RBRACE, anon_sym_import, anon_sym_const, @@ -48849,13 +50018,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, sym_visibility_modifier, sym_opacity_modifier, - [52772] = 3, + [54093] = 10, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(374), 1, + sym__name, + ACTIONS(2152), 1, + sym__discard_name, + ACTIONS(2196), 1, + anon_sym_RPAREN, + STATE(953), 1, + sym__discard_param, + STATE(957), 1, + sym__name_param, + STATE(1095), 1, + sym_discard, + STATE(1096), 1, + sym_identifier, + STATE(1149), 1, + sym_anonymous_function_parameter, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [54125] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1528), 8, + ACTIONS(1482), 8, anon_sym_RBRACE, anon_sym_import, anon_sym_const, @@ -48864,13 +50055,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, sym_visibility_modifier, sym_opacity_modifier, - [52790] = 3, + [54143] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1508), 8, + ACTIONS(1534), 8, anon_sym_RBRACE, anon_sym_import, anon_sym_const, @@ -48879,13 +50070,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, sym_visibility_modifier, sym_opacity_modifier, - [52808] = 3, + [54161] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1476), 8, + ACTIONS(1580), 8, anon_sym_RBRACE, anon_sym_import, anon_sym_const, @@ -48894,13 +50085,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, sym_visibility_modifier, sym_opacity_modifier, - [52826] = 3, + [54179] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1356), 8, + ACTIONS(1584), 8, anon_sym_RBRACE, anon_sym_import, anon_sym_const, @@ -48909,13 +50100,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, sym_visibility_modifier, sym_opacity_modifier, - [52844] = 3, + [54197] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2198), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2172), 7, + anon_sym_if, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LT_GT, + anon_sym_PIPE, + anon_sym_LT_DASH, + [54217] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1540), 8, + ACTIONS(1594), 8, anon_sym_RBRACE, anon_sym_import, anon_sym_const, @@ -48924,13 +50131,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, sym_visibility_modifier, sym_opacity_modifier, - [52862] = 3, + [54235] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1544), 8, + ACTIONS(1590), 8, anon_sym_RBRACE, anon_sym_import, anon_sym_const, @@ -48939,13 +50146,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, sym_visibility_modifier, sym_opacity_modifier, - [52880] = 3, + [54253] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1564), 8, + ACTIONS(1474), 8, anon_sym_RBRACE, anon_sym_import, anon_sym_const, @@ -48954,13 +50161,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, sym_visibility_modifier, sym_opacity_modifier, - [52898] = 3, + [54271] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1436), 8, + ACTIONS(1466), 8, anon_sym_RBRACE, anon_sym_import, anon_sym_const, @@ -48969,35 +50176,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, sym_visibility_modifier, sym_opacity_modifier, - [52916] = 10, + [54289] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(314), 1, - sym__name, - ACTIONS(2110), 1, - sym__discard_name, - ACTIONS(2150), 1, - anon_sym_RPAREN, - STATE(957), 1, - sym__discard_param, - STATE(958), 1, - sym__name_param, - STATE(987), 1, - sym_discard, - STATE(1069), 1, - sym_identifier, - STATE(1071), 1, - sym_anonymous_function_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52948] = 3, + ACTIONS(1442), 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, + [54307] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1380), 8, + ACTIONS(1494), 8, anon_sym_RBRACE, anon_sym_import, anon_sym_const, @@ -49006,13 +50206,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, sym_visibility_modifier, sym_opacity_modifier, - [52966] = 3, + [54325] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1452), 8, + ACTIONS(1366), 8, anon_sym_RBRACE, anon_sym_import, anon_sym_const, @@ -49021,13 +50221,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, sym_visibility_modifier, sym_opacity_modifier, - [52984] = 3, + [54343] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1320), 8, + ACTIONS(1486), 8, anon_sym_RBRACE, anon_sym_import, anon_sym_const, @@ -49036,13 +50236,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, sym_visibility_modifier, sym_opacity_modifier, - [53002] = 3, + [54361] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1572), 8, + ACTIONS(1426), 8, anon_sym_RBRACE, anon_sym_import, anon_sym_const, @@ -49051,65 +50251,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, sym_visibility_modifier, sym_opacity_modifier, - [53020] = 10, + [54379] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(314), 1, - sym__name, - ACTIONS(2110), 1, - sym__discard_name, - ACTIONS(2152), 1, - anon_sym_RPAREN, - STATE(957), 1, - sym__discard_param, - STATE(958), 1, - sym__name_param, - STATE(987), 1, - sym_discard, - STATE(1069), 1, - sym_identifier, - STATE(1138), 1, - sym_anonymous_function_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53052] = 3, + ACTIONS(1514), 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, + [54397] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(470), 8, + ACTIONS(442), 8, anon_sym_if, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_DASH_GT, anon_sym_LT_GT, anon_sym_PIPE, anon_sym_LT_DASH, - [53070] = 3, + [54415] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1344), 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, - [53088] = 3, + ACTIONS(484), 8, + anon_sym_if, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DASH_GT, + anon_sym_LT_GT, + anon_sym_PIPE, + anon_sym_LT_DASH, + [54433] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1512), 8, + ACTIONS(1538), 8, anon_sym_RBRACE, anon_sym_import, anon_sym_const, @@ -49118,13 +50311,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, sym_visibility_modifier, sym_opacity_modifier, - [53106] = 3, + [54451] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1592), 8, + ACTIONS(1606), 8, anon_sym_RBRACE, anon_sym_import, anon_sym_const, @@ -49133,13 +50326,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, sym_visibility_modifier, sym_opacity_modifier, - [53124] = 3, + [54469] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1520), 8, + ACTIONS(1576), 8, anon_sym_RBRACE, anon_sym_import, anon_sym_const, @@ -49148,45 +50341,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, sym_visibility_modifier, sym_opacity_modifier, - [53142] = 3, + [54487] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2154), 8, + ACTIONS(673), 7, anon_sym_if, + anon_sym_as, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, anon_sym_DASH_GT, - anon_sym_DOT_DOT, + anon_sym_LT_GT, anon_sym_PIPE, anon_sym_LT_DASH, - [53160] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1376), 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, - [53178] = 4, + [54504] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2156), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2130), 7, + ACTIONS(476), 7, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -49194,5528 +50369,5533 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_PIPE, anon_sym_LT_DASH, - [53198] = 9, + [54521] = 9, ACTIONS(3), 1, sym_module_comment, - ACTIONS(314), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(2110), 1, + ACTIONS(2152), 1, sym__discard_name, - STATE(957), 1, + STATE(953), 1, sym__discard_param, - STATE(958), 1, + STATE(957), 1, sym__name_param, - STATE(987), 1, + STATE(1095), 1, sym_discard, - STATE(1069), 1, + STATE(1096), 1, sym_identifier, - STATE(1138), 1, + STATE(1149), 1, sym_anonymous_function_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53227] = 5, + [54550] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2158), 1, - anon_sym_as, - ACTIONS(2160), 1, - anon_sym_LT_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2142), 5, + ACTIONS(727), 7, anon_sym_if, + anon_sym_as, anon_sym_COMMA, anon_sym_DASH_GT, + anon_sym_LT_GT, anon_sym_PIPE, anon_sym_LT_DASH, - [53248] = 3, + [54567] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(372), 1, + sym__decimal, + ACTIONS(2200), 1, + anon_sym_DASH, + STATE(136), 1, + sym_integer, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(488), 7, - anon_sym_if, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LT_GT, - anon_sym_PIPE, - anon_sym_LT_DASH, - [53265] = 3, + ACTIONS(370), 3, + sym__hex, + sym__octal, + sym__binary, + [54589] = 7, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1914), 1, + sym__upname, + ACTIONS(2184), 1, + sym__name, + STATE(1145), 1, + sym_type_name, + STATE(1284), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(665), 7, - anon_sym_if, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LT_GT, - anon_sym_PIPE, - anon_sym_LT_DASH, - [53282] = 3, + STATE(816), 2, + sym_type_identifier, + sym_remote_type_identifier, + [54613] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(57), 1, + sym__decimal, + ACTIONS(2202), 1, + anon_sym_DASH, + STATE(65), 1, + sym_integer, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(466), 7, - anon_sym_if, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LT_GT, - anon_sym_PIPE, - anon_sym_LT_DASH, - [53299] = 3, + ACTIONS(55), 3, + sym__hex, + sym__octal, + sym__binary, + [54635] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2204), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(601), 7, - anon_sym_if, - anon_sym_as, + ACTIONS(1320), 5, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LT_GT, - anon_sym_PIPE, - anon_sym_LT_DASH, - [53316] = 6, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_COLON, + [54653] = 8, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1914), 1, + sym__upname, + ACTIONS(2206), 1, + anon_sym_RBRACE, + ACTIONS(2208), 1, + sym__name, + STATE(1074), 1, + sym_identifier, + STATE(1107), 1, + sym_type_identifier, + STATE(1227), 1, + sym_unqualified_import, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [54679] = 7, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1914), 1, + sym__upname, + ACTIONS(2184), 1, + sym__name, + STATE(1221), 1, + sym_type_name, + STATE(1284), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(816), 2, + sym_type_identifier, + sym_remote_type_identifier, + [54703] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(947), 1, + ACTIONS(653), 1, sym__decimal, - ACTIONS(2162), 1, + ACTIONS(2174), 1, anon_sym_DASH, - STATE(324), 1, + STATE(395), 1, sym_integer, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(945), 3, + ACTIONS(651), 3, sym__hex, sym__octal, sym__binary, - [53338] = 5, + [54725] = 8, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2164), 1, - anon_sym_COMMA, - STATE(868), 1, - aux_sym_tuple_repeat1, + ACTIONS(1914), 1, + sym__upname, + ACTIONS(2208), 1, + sym__name, + ACTIONS(2210), 1, + anon_sym_RBRACE, + STATE(1074), 1, + sym_identifier, + STATE(1107), 1, + sym_type_identifier, + STATE(1227), 1, + sym_unqualified_import, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1656), 4, - anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [53358] = 7, + [54751] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1872), 1, + ACTIONS(1914), 1, sym__upname, - ACTIONS(2136), 1, + ACTIONS(2184), 1, sym__name, - STATE(856), 1, + STATE(1226), 1, sym_type_name, - STATE(1259), 1, + STATE(1284), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(796), 2, + STATE(816), 2, sym_type_identifier, sym_remote_type_identifier, - [53382] = 6, + [54775] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(717), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(1237), 1, + ACTIONS(1243), 1, anon_sym_DASH, - STATE(393), 1, + STATE(1361), 1, sym_integer, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(715), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - [53404] = 7, + [54797] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1872), 1, - sym__upname, - ACTIONS(2136), 1, - sym__name, - STATE(1143), 1, - sym_type_name, - STATE(1259), 1, - sym_identifier, + ACTIONS(923), 1, + sym__decimal, + ACTIONS(2212), 1, + anon_sym_DASH, + STATE(330), 1, + sym_integer, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(796), 2, - sym_type_identifier, - sym_remote_type_identifier, - [53428] = 7, + ACTIONS(921), 3, + sym__hex, + sym__octal, + sym__binary, + [54819] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1872), 1, + ACTIONS(1914), 1, sym__upname, - ACTIONS(2136), 1, + ACTIONS(2184), 1, sym__name, - STATE(1191), 1, + STATE(1170), 1, sym_type_name, - STATE(1259), 1, + STATE(1284), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(796), 2, + STATE(816), 2, sym_type_identifier, sym_remote_type_identifier, - [53452] = 6, + [54843] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(312), 1, - sym__decimal, - ACTIONS(2134), 1, - anon_sym_DASH, - STATE(137), 1, - sym_integer, + ACTIONS(2214), 1, + anon_sym_COMMA, + STATE(893), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(310), 3, - sym__hex, - sym__octal, - sym__binary, - [53474] = 8, + ACTIONS(1704), 4, + anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [54863] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1872), 1, + ACTIONS(1914), 1, sym__upname, - ACTIONS(2167), 1, - anon_sym_RBRACE, - ACTIONS(2169), 1, + ACTIONS(2184), 1, sym__name, - STATE(1049), 1, - sym_type_identifier, - STATE(1054), 1, + STATE(853), 1, + sym_type_name, + STATE(1284), 1, sym_identifier, - STATE(1113), 1, - sym_unqualified_import, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53500] = 7, + STATE(816), 2, + sym_type_identifier, + sym_remote_type_identifier, + [54887] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1979), 1, + ACTIONS(1914), 1, sym__upname, - ACTIONS(2136), 1, + ACTIONS(2184), 1, sym__name, - STATE(526), 1, + STATE(1266), 1, sym_type_name, - STATE(1322), 1, + STATE(1284), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(385), 2, + STATE(816), 2, sym_type_identifier, sym_remote_type_identifier, - [53524] = 8, + [54911] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1872), 1, + ACTIONS(1914), 1, sym__upname, - ACTIONS(2169), 1, + ACTIONS(2184), 1, sym__name, - ACTIONS(2171), 1, - anon_sym_RBRACE, - STATE(1049), 1, - sym_type_identifier, - STATE(1054), 1, + STATE(1199), 1, + sym_type_name, + STATE(1284), 1, sym_identifier, - STATE(1145), 1, - sym_unqualified_import, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53550] = 6, + STATE(816), 2, + sym_type_identifier, + sym_remote_type_identifier, + [54935] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(312), 1, - sym__decimal, - ACTIONS(2134), 1, - anon_sym_DASH, - STATE(1313), 1, - sym_integer, + ACTIONS(2025), 1, + sym__upname, + ACTIONS(2184), 1, + sym__name, + STATE(489), 1, + sym_type_name, + STATE(1346), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(310), 3, - sym__hex, - sym__octal, - sym__binary, - [53572] = 8, + STATE(405), 2, + sym_type_identifier, + sym_remote_type_identifier, + [54959] = 8, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1872), 1, + ACTIONS(1914), 1, sym__upname, - ACTIONS(2169), 1, + ACTIONS(2208), 1, sym__name, - ACTIONS(2173), 1, + ACTIONS(2217), 1, anon_sym_RBRACE, - STATE(1032), 1, - sym_unqualified_import, - STATE(1049), 1, - sym_type_identifier, - STATE(1054), 1, + STATE(1074), 1, sym_identifier, + STATE(1107), 1, + sym_type_identifier, + STATE(1128), 1, + sym_unqualified_import, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53598] = 8, + [54985] = 8, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1872), 1, + ACTIONS(1914), 1, sym__upname, - ACTIONS(2169), 1, + ACTIONS(2208), 1, sym__name, - ACTIONS(2175), 1, + ACTIONS(2219), 1, anon_sym_RBRACE, - STATE(1049), 1, - sym_type_identifier, - STATE(1054), 1, + STATE(1074), 1, sym_identifier, - STATE(1145), 1, + STATE(1107), 1, + sym_type_identifier, + STATE(1227), 1, sym_unqualified_import, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53624] = 7, + [55011] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1979), 1, + ACTIONS(1914), 1, sym__upname, - ACTIONS(2136), 1, + ACTIONS(2184), 1, sym__name, - STATE(449), 1, + STATE(848), 1, sym_type_name, - STATE(1322), 1, + STATE(1284), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(385), 2, + STATE(816), 2, sym_type_identifier, sym_remote_type_identifier, - [53648] = 6, + [55035] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(57), 1, - sym__decimal, - ACTIONS(2177), 1, - anon_sym_DASH, - STATE(40), 1, - sym_integer, + ACTIONS(2221), 1, + anon_sym_as, + ACTIONS(2223), 1, + anon_sym_LT_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(55), 3, - sym__hex, - sym__octal, - sym__binary, - [53670] = 7, + ACTIONS(2180), 4, + anon_sym_if, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_PIPE, + [55055] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1872), 1, + ACTIONS(2025), 1, sym__upname, - ACTIONS(2136), 1, + ACTIONS(2184), 1, sym__name, - STATE(1144), 1, + STATE(493), 1, sym_type_name, - STATE(1259), 1, + STATE(1346), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(796), 2, + STATE(405), 2, sym_type_identifier, sym_remote_type_identifier, - [53694] = 8, + [55079] = 8, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1872), 1, + ACTIONS(1914), 1, sym__upname, - ACTIONS(2169), 1, + ACTIONS(2208), 1, sym__name, - ACTIONS(2179), 1, + ACTIONS(2225), 1, anon_sym_RBRACE, - STATE(1049), 1, - sym_type_identifier, - STATE(1054), 1, - sym_identifier, - STATE(1145), 1, + STATE(1072), 1, sym_unqualified_import, + STATE(1074), 1, + sym_identifier, + STATE(1107), 1, + sym_type_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53720] = 7, + [55105] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1872), 1, + ACTIONS(372), 1, + sym__decimal, + ACTIONS(1243), 1, + anon_sym_DASH, + STATE(1383), 1, + sym_integer, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(370), 3, + sym__hex, + sym__octal, + sym__binary, + [55127] = 8, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1914), 1, sym__upname, - ACTIONS(2136), 1, + ACTIONS(2208), 1, sym__name, - STATE(1148), 1, - sym_type_name, - STATE(1259), 1, + ACTIONS(2227), 1, + anon_sym_RBRACE, + STATE(1074), 1, sym_identifier, + STATE(1107), 1, + sym_type_identifier, + STATE(1227), 1, + sym_unqualified_import, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(796), 2, - sym_type_identifier, - sym_remote_type_identifier, - [53744] = 6, + [55153] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(312), 1, + ACTIONS(372), 1, sym__decimal, - ACTIONS(2134), 1, + ACTIONS(1243), 1, anon_sym_DASH, - STATE(1306), 1, + STATE(136), 1, sym_integer, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(310), 3, + ACTIONS(370), 3, sym__hex, sym__octal, sym__binary, - [53766] = 7, + [55175] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1872), 1, + ACTIONS(376), 1, sym__upname, - ACTIONS(2136), 1, - sym__name, - STATE(1185), 1, - sym_type_name, - STATE(1259), 1, - sym_identifier, + STATE(968), 1, + sym_constructor_name, + STATE(1385), 1, + sym_data_constructors, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(796), 2, - sym_type_identifier, - sym_remote_type_identifier, - [53790] = 7, + STATE(928), 2, + sym_data_constructor, + aux_sym_data_constructors_repeat1, + [55196] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1872), 1, + ACTIONS(1914), 1, sym__upname, - ACTIONS(2136), 1, + ACTIONS(2208), 1, sym__name, - STATE(842), 1, - sym_type_name, - STATE(1259), 1, + STATE(1074), 1, sym_identifier, + STATE(1107), 1, + sym_type_identifier, + STATE(1227), 1, + sym_unqualified_import, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(796), 2, - sym_type_identifier, - sym_remote_type_identifier, - [53814] = 5, + [55219] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2183), 1, + ACTIONS(1237), 1, + anon_sym_DOT_DOT, + ACTIONS(2229), 1, anon_sym_COMMA, - STATE(888), 1, - aux_sym_case_clause_pattern_repeat1, + ACTIONS(2231), 1, + anon_sym_RPAREN, + STATE(915), 1, + aux_sym_record_pattern_arguments_repeat1, + STATE(1275), 1, + sym_pattern_spread, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2181), 4, - anon_sym_if, - anon_sym_DASH_GT, - anon_sym_PIPE, - anon_sym_LT_DASH, - [53834] = 8, + [55242] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1872), 1, + ACTIONS(376), 1, sym__upname, - ACTIONS(2169), 1, - sym__name, - ACTIONS(2186), 1, - anon_sym_RBRACE, - STATE(1049), 1, - sym_type_identifier, - STATE(1054), 1, - sym_identifier, - STATE(1145), 1, - sym_unqualified_import, + STATE(968), 1, + sym_constructor_name, + STATE(1386), 1, + sym_data_constructors, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53860] = 7, + STATE(928), 2, + sym_data_constructor, + aux_sym_data_constructors_repeat1, + [55263] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1872), 1, + ACTIONS(376), 1, sym__upname, - ACTIONS(2136), 1, - sym__name, - STATE(1245), 1, - sym_type_name, - STATE(1259), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(796), 2, - sym_type_identifier, - sym_remote_type_identifier, - [53884] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2188), 1, - anon_sym_DOT, + STATE(968), 1, + sym_constructor_name, + STATE(1332), 1, + sym_data_constructors, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1225), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - [53902] = 7, + STATE(928), 2, + sym_data_constructor, + aux_sym_data_constructors_repeat1, + [55284] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2190), 1, + ACTIONS(2233), 1, anon_sym_const, - ACTIONS(2192), 1, + ACTIONS(2235), 1, anon_sym_fn, - ACTIONS(2194), 1, + ACTIONS(2237), 1, anon_sym_external, - ACTIONS(2196), 1, + ACTIONS(2239), 1, anon_sym_type, - ACTIONS(2198), 1, + ACTIONS(2241), 1, sym_opacity_modifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53925] = 7, + [55307] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1183), 1, - anon_sym_DOT_DOT, - ACTIONS(1205), 1, - anon_sym_RPAREN, - ACTIONS(2200), 1, - anon_sym_COMMA, - STATE(952), 1, - aux_sym_record_pattern_arguments_repeat1, - STATE(1354), 1, - sym_pattern_spread, + ACTIONS(2245), 1, + anon_sym_LPAREN, + STATE(1054), 1, + sym_constant_type_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53948] = 5, + ACTIONS(2243), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [55326] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2204), 1, + ACTIONS(2249), 1, anon_sym_COMMA, - STATE(888), 1, + STATE(914), 1, aux_sym_case_clause_pattern_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2202), 3, + ACTIONS(2247), 3, anon_sym_if, anon_sym_DASH_GT, anon_sym_PIPE, - [53967] = 7, + [55345] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1598), 1, + ACTIONS(1233), 1, + anon_sym_RPAREN, + ACTIONS(1237), 1, anon_sym_DOT_DOT, - ACTIONS(2206), 1, + ACTIONS(2252), 1, anon_sym_COMMA, - ACTIONS(2208), 1, + STATE(960), 1, + aux_sym_record_pattern_arguments_repeat1, + STATE(1359), 1, + sym_pattern_spread, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [55368] = 7, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1644), 1, + anon_sym_DOT_DOT, + ACTIONS(2254), 1, + anon_sym_COMMA, + ACTIONS(2256), 1, anon_sym_RBRACK, - STATE(901), 1, + STATE(919), 1, aux_sym_case_clause_pattern_repeat1, - STATE(1366), 1, + STATE(1313), 1, sym_list_pattern_tail, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53990] = 6, + [55391] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(316), 1, - sym__upname, - ACTIONS(2210), 1, + ACTIONS(2258), 1, anon_sym_RBRACE, - STATE(947), 1, + ACTIONS(2260), 1, + sym__upname, + STATE(968), 1, sym_constructor_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(899), 2, + STATE(917), 2, sym_data_constructor, aux_sym_data_constructors_repeat1, - [54011] = 6, + [55412] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(314), 1, + ACTIONS(374), 1, sym__name, - ACTIONS(2110), 1, + ACTIONS(2152), 1, sym__discard_name, - ACTIONS(2212), 1, + ACTIONS(2263), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1337), 2, + STATE(1287), 2, sym_identifier, sym_discard, - [54032] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(316), 1, - sym__upname, - STATE(947), 1, - sym_constructor_name, - STATE(1264), 1, - sym_data_constructors, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(896), 2, - sym_data_constructor, - aux_sym_data_constructors_repeat1, - [54053] = 6, + [55433] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2214), 1, - anon_sym_RBRACE, - ACTIONS(2216), 1, - sym__upname, - STATE(947), 1, - sym_constructor_name, + ACTIONS(2265), 1, + anon_sym_COMMA, + STATE(919), 1, + aux_sym_case_clause_pattern_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(899), 2, - sym_data_constructor, - aux_sym_data_constructors_repeat1, - [54074] = 5, + ACTIONS(2247), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [55452] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(458), 1, - sym__discard_name, - ACTIONS(460), 1, - sym__name, + ACTIONS(2270), 1, + anon_sym_COMMA, + STATE(927), 1, + aux_sym_case_clause_pattern_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(454), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [54093] = 7, + ACTIONS(2268), 3, + anon_sym_if, + anon_sym_DASH_GT, + anon_sym_PIPE, + [55471] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1598), 1, + ACTIONS(1644), 1, anon_sym_DOT_DOT, - ACTIONS(2219), 1, + ACTIONS(2272), 1, anon_sym_COMMA, - ACTIONS(2221), 1, + ACTIONS(2274), 1, anon_sym_RBRACK, - STATE(903), 1, + STATE(916), 1, aux_sym_case_clause_pattern_repeat1, - STATE(1296), 1, + STATE(1286), 1, sym_list_pattern_tail, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54116] = 6, + [55494] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(316), 1, - sym__upname, - STATE(947), 1, - sym_constructor_name, - STATE(1316), 1, - sym_data_constructors, + ACTIONS(499), 1, + sym__discard_name, + ACTIONS(501), 1, + sym__name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(896), 2, - sym_data_constructor, - aux_sym_data_constructors_repeat1, - [54137] = 5, + ACTIONS(442), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [55513] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2223), 1, - anon_sym_COMMA, - STATE(903), 1, - aux_sym_case_clause_pattern_repeat1, + ACTIONS(376), 1, + sym__upname, + STATE(968), 1, + sym_constructor_name, + STATE(1372), 1, + sym_data_constructors, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2181), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [54156] = 6, + STATE(928), 2, + sym_data_constructor, + aux_sym_data_constructors_repeat1, + [55534] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(316), 1, + ACTIONS(376), 1, sym__upname, - STATE(947), 1, + STATE(968), 1, sym_constructor_name, - STATE(1341), 1, + STATE(1310), 1, sym_data_constructors, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(896), 2, + STATE(928), 2, sym_data_constructor, aux_sym_data_constructors_repeat1, - [54177] = 7, + [55555] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2226), 1, + ACTIONS(2276), 1, anon_sym_const, - ACTIONS(2228), 1, + ACTIONS(2278), 1, anon_sym_fn, - ACTIONS(2230), 1, + ACTIONS(2280), 1, anon_sym_external, - ACTIONS(2232), 1, + ACTIONS(2282), 1, anon_sym_type, - ACTIONS(2234), 1, + ACTIONS(2284), 1, sym_opacity_modifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54200] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2238), 1, - anon_sym_COMMA, - STATE(894), 1, - aux_sym_case_clause_pattern_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2236), 3, - anon_sym_if, - anon_sym_DASH_GT, - anon_sym_PIPE, - [54219] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2242), 1, - anon_sym_LPAREN, - STATE(997), 1, - sym_constant_type_arguments, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2240), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [54238] = 6, + [55578] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(316), 1, + ACTIONS(376), 1, sym__upname, - STATE(947), 1, + STATE(968), 1, sym_constructor_name, - STATE(1353), 1, + STATE(1303), 1, sym_data_constructors, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(896), 2, + STATE(928), 2, sym_data_constructor, aux_sym_data_constructors_repeat1, - [54259] = 7, + [55599] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1183), 1, - anon_sym_DOT_DOT, - ACTIONS(2244), 1, + ACTIONS(2288), 1, anon_sym_COMMA, - ACTIONS(2246), 1, - anon_sym_RPAREN, - STATE(893), 1, - aux_sym_record_pattern_arguments_repeat1, - STATE(1284), 1, - sym_pattern_spread, + STATE(914), 1, + aux_sym_case_clause_pattern_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54282] = 6, + ACTIONS(2286), 3, + anon_sym_if, + anon_sym_DASH_GT, + anon_sym_PIPE, + [55618] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(316), 1, + ACTIONS(376), 1, sym__upname, - STATE(947), 1, + ACTIONS(2290), 1, + anon_sym_RBRACE, + STATE(968), 1, sym_constructor_name, - STATE(1365), 1, - sym_data_constructors, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(896), 2, + STATE(917), 2, sym_data_constructor, aux_sym_data_constructors_repeat1, - [54303] = 6, + [55639] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(316), 1, - sym__upname, - STATE(947), 1, - sym_constructor_name, - STATE(1358), 1, - sym_data_constructors, + ACTIONS(2294), 1, + anon_sym_COLON, + STATE(1175), 1, + sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(896), 2, - sym_data_constructor, - aux_sym_data_constructors_repeat1, - [54324] = 7, + ACTIONS(2292), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [55657] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1872), 1, - sym__upname, - ACTIONS(2169), 1, - sym__name, - STATE(1049), 1, - sym_type_identifier, - STATE(1054), 1, - sym_identifier, - STATE(1145), 1, - sym_unqualified_import, + ACTIONS(2298), 1, + anon_sym_DASH, + STATE(930), 1, + aux_sym_pattern_bit_string_segment_options_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54347] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(781), 1, - anon_sym_RBRACK, - ACTIONS(783), 1, - anon_sym_DOT_DOT, - ACTIONS(2248), 1, + ACTIONS(2296), 2, anon_sym_COMMA, - STATE(868), 1, - aux_sym_tuple_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [54367] = 5, + anon_sym_GT_GT, + [55675] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2250), 1, - anon_sym_DASH, - STATE(965), 1, - aux_sym_constant_bit_string_segment_options_repeat1, + ACTIONS(2301), 1, + anon_sym_PIPE, + STATE(964), 1, + aux_sym_case_clause_patterns_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1300), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [54385] = 4, + ACTIONS(1654), 2, + anon_sym_if, + anon_sym_DASH_GT, + [55693] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2254), 1, + ACTIONS(2305), 1, sym__decimal, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2252), 3, + ACTIONS(2303), 3, sym__hex, sym__octal, sym__binary, - [54401] = 6, + [55709] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2136), 1, + ACTIONS(2307), 1, sym__name, - ACTIONS(2256), 1, - anon_sym_LPAREN, - STATE(1247), 1, - sym_anonymous_function_parameters, - STATE(1248), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [54421] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2258), 1, - sym__name, - STATE(1110), 1, - sym_record_update_argument, - STATE(1257), 1, - sym_label, - STATE(1266), 1, - sym_record_update_arguments, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [54441] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2258), 1, - sym__name, - STATE(1110), 1, + STATE(1065), 1, sym_record_update_argument, - STATE(1257), 1, + STATE(1317), 1, sym_label, - STATE(1276), 1, + STATE(1328), 1, sym_record_update_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54461] = 5, + [55729] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2260), 1, + ACTIONS(2309), 1, anon_sym_DQUOTE2, - STATE(949), 1, + STATE(935), 1, aux_sym_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2262), 2, + ACTIONS(2311), 2, sym_quoted_content, sym_escape_sequence, - [54479] = 6, + [55747] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2258), 1, - sym__name, - STATE(1110), 1, - sym_record_update_argument, - STATE(1257), 1, - sym_label, - STATE(1340), 1, - sym_record_update_arguments, + ACTIONS(2313), 1, + anon_sym_DQUOTE2, + STATE(980), 1, + aux_sym_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54499] = 5, + ACTIONS(2315), 2, + sym_quoted_content, + sym_escape_sequence, + [55765] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2266), 1, - anon_sym_DASH, - STATE(951), 1, - aux_sym_pattern_bit_string_segment_options_repeat1, + ACTIONS(771), 1, + anon_sym_RBRACK, + ACTIONS(773), 1, + anon_sym_DOT_DOT, + ACTIONS(2317), 1, + anon_sym_COMMA, + STATE(893), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2264), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [54517] = 5, + [55785] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2268), 1, + ACTIONS(2321), 1, anon_sym_PIPE, - STATE(953), 1, + STATE(931), 1, aux_sym_case_clause_patterns_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1602), 2, - anon_sym_if, - anon_sym_DASH_GT, - [54535] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2272), 1, - anon_sym_DASH, - STATE(934), 1, - aux_sym_expression_bit_string_segment_options_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2270), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [54553] = 5, + ACTIONS(2319), 2, + anon_sym_if, + anon_sym_DASH_GT, + [55803] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2274), 1, + ACTIONS(2323), 1, anon_sym_DQUOTE2, - STATE(964), 1, + STATE(980), 1, aux_sym_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2276), 2, + ACTIONS(2315), 2, sym_quoted_content, sym_escape_sequence, - [54571] = 5, + [55821] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2278), 1, - anon_sym_DQUOTE2, - STATE(924), 1, - aux_sym_string_repeat1, + ACTIONS(2327), 1, + sym__decimal, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2280), 2, - sym_quoted_content, - sym_escape_sequence, - [54589] = 4, + ACTIONS(2325), 3, + sym__hex, + sym__octal, + sym__binary, + [55837] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2284), 1, + ACTIONS(2331), 1, sym__decimal, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2282), 3, + ACTIONS(2329), 3, sym__hex, sym__octal, sym__binary, - [54605] = 5, + [55853] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2286), 1, + ACTIONS(2333), 1, anon_sym_DQUOTE2, - STATE(964), 1, + STATE(938), 1, aux_sym_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2276), 2, + ACTIONS(2335), 2, sym_quoted_content, sym_escape_sequence, - [54623] = 5, + [55871] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2288), 1, + ACTIONS(2337), 1, anon_sym_DQUOTE2, - STATE(927), 1, + STATE(980), 1, aux_sym_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2290), 2, + ACTIONS(2315), 2, sym_quoted_content, sym_escape_sequence, - [54641] = 4, + [55889] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2294), 1, - sym__decimal, + ACTIONS(805), 1, + anon_sym_RBRACK, + ACTIONS(807), 1, + anon_sym_DOT_DOT, + ACTIONS(2339), 1, + anon_sym_COMMA, + STATE(893), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2292), 3, - sym__hex, - sym__octal, - sym__binary, - [54657] = 6, + [55909] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(316), 1, - sym__upname, - ACTIONS(2258), 1, - sym__name, - STATE(93), 1, - sym_constructor_name, - STATE(588), 1, - sym_label, + ACTIONS(2341), 1, + anon_sym_DASH, + STATE(945), 1, + aux_sym_expression_bit_string_segment_options_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54677] = 6, + ACTIONS(1300), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [55927] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2258), 1, - sym__name, - STATE(1110), 1, - sym_record_update_argument, - STATE(1257), 1, - sym_label, - STATE(1361), 1, - sym_record_update_arguments, + ACTIONS(2345), 1, + anon_sym_DASH, + STATE(945), 1, + aux_sym_expression_bit_string_segment_options_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54697] = 6, + ACTIONS(2343), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [55945] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(777), 1, - anon_sym_RBRACK, - ACTIONS(779), 1, - anon_sym_DOT_DOT, - ACTIONS(2296), 1, - anon_sym_COMMA, - STATE(868), 1, - aux_sym_tuple_repeat1, + ACTIONS(2184), 1, + sym__name, + ACTIONS(2348), 1, + anon_sym_LPAREN, + STATE(1265), 1, + sym_anonymous_function_parameters, + STATE(1269), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54717] = 5, + [55965] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2298), 1, + ACTIONS(2350), 1, anon_sym_DQUOTE2, - STATE(964), 1, + STATE(949), 1, aux_sym_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2276), 2, + ACTIONS(2352), 2, sym_quoted_content, sym_escape_sequence, - [54735] = 5, + [55983] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2300), 1, - anon_sym_DASH, - STATE(946), 1, - aux_sym_expression_bit_string_segment_options_repeat1, + ACTIONS(2356), 1, + sym__decimal, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1247), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [54753] = 5, + ACTIONS(2354), 3, + sym__hex, + sym__octal, + sym__binary, + [55999] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2302), 1, + ACTIONS(2358), 1, anon_sym_DQUOTE2, - STATE(933), 1, + STATE(980), 1, aux_sym_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2304), 2, + ACTIONS(2315), 2, sym_quoted_content, sym_escape_sequence, - [54771] = 4, + [56017] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2308), 1, - sym__decimal, + ACTIONS(2362), 1, + anon_sym_DASH, + STATE(950), 1, + aux_sym_constant_bit_string_segment_options_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2306), 3, - sym__hex, - sym__octal, - sym__binary, - [54787] = 6, + ACTIONS(2360), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [56035] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(769), 1, - anon_sym_RBRACK, - ACTIONS(771), 1, - anon_sym_DOT_DOT, - ACTIONS(2310), 1, - anon_sym_COMMA, - STATE(868), 1, - aux_sym_tuple_repeat1, + ACTIONS(442), 1, + anon_sym_DOT, + ACTIONS(499), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54807] = 5, + ACTIONS(1350), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [56053] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2312), 1, - anon_sym_DQUOTE2, - STATE(964), 1, - aux_sym_string_repeat1, + ACTIONS(797), 1, + anon_sym_RBRACK, + ACTIONS(799), 1, + anon_sym_DOT_DOT, + ACTIONS(2365), 1, + anon_sym_COMMA, + STATE(893), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2276), 2, - sym_quoted_content, - sym_escape_sequence, - [54825] = 5, + [56073] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2316), 1, + ACTIONS(2294), 1, anon_sym_COLON, - STATE(1158), 1, + STATE(1207), 1, sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2314), 2, + ACTIONS(2367), 2, anon_sym_COMMA, anon_sym_RPAREN, - [54843] = 5, + [56091] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2307), 1, + sym__name, + ACTIONS(2369), 1, + anon_sym_RPAREN, + STATE(1161), 1, + sym_record_update_argument, + STATE(1317), 1, + sym_label, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [56111] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2318), 1, + ACTIONS(2371), 1, anon_sym_DQUOTE2, - STATE(938), 1, + STATE(963), 1, aux_sym_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2320), 2, + ACTIONS(2373), 2, sym_quoted_content, sym_escape_sequence, - [54861] = 5, + [56129] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2316), 1, - anon_sym_COLON, - STATE(1162), 1, - sym__type_annotation, + ACTIONS(2375), 1, + anon_sym_DASH, + STATE(930), 1, + aux_sym_pattern_bit_string_segment_options_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2322), 2, + ACTIONS(1348), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [54879] = 5, + anon_sym_GT_GT, + [56147] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2316), 1, + ACTIONS(2294), 1, anon_sym_COLON, - STATE(1165), 1, + STATE(1143), 1, sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2314), 2, + ACTIONS(2367), 2, anon_sym_COMMA, anon_sym_RPAREN, - [54897] = 5, + [56165] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2316), 1, - anon_sym_COLON, - STATE(1166), 1, - sym__type_annotation, + ACTIONS(779), 1, + anon_sym_RBRACK, + ACTIONS(781), 1, + anon_sym_DOT_DOT, + ACTIONS(2377), 1, + anon_sym_COMMA, + STATE(893), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2322), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [54915] = 6, + [56185] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(314), 1, - sym__name, - ACTIONS(2110), 1, - sym__discard_name, - STATE(982), 1, - sym_identifier, - STATE(983), 1, - sym_discard, + ACTIONS(2379), 1, + anon_sym_DQUOTE2, + STATE(980), 1, + aux_sym_string_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2315), 2, + sym_quoted_content, + sym_escape_sequence, + [56203] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2381), 1, + anon_sym_COMMA, + STATE(960), 1, + aux_sym_record_pattern_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54935] = 4, + ACTIONS(2384), 2, + anon_sym_RPAREN, + anon_sym_DOT_DOT, + [56221] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2326), 1, + ACTIONS(2388), 1, sym__decimal, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2324), 3, + ACTIONS(2386), 3, sym__hex, sym__octal, sym__binary, - [54951] = 5, + [56237] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2330), 1, - anon_sym_DASH, - STATE(946), 1, - aux_sym_expression_bit_string_segment_options_repeat1, + ACTIONS(2392), 1, + sym__decimal, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2328), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [54969] = 5, + ACTIONS(2390), 3, + sym__hex, + sym__octal, + sym__binary, + [56253] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2335), 1, - anon_sym_LPAREN, - STATE(1192), 1, - sym_data_constructor_arguments, + ACTIONS(2394), 1, + anon_sym_DQUOTE2, + STATE(980), 1, + aux_sym_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2333), 2, - anon_sym_RBRACE, - sym__upname, - [54987] = 6, + ACTIONS(2315), 2, + sym_quoted_content, + sym_escape_sequence, + [56271] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(61), 1, - sym__upname, - ACTIONS(2337), 1, - sym__name, - STATE(49), 1, - sym_constructor_name, - STATE(454), 1, - sym_label, + ACTIONS(2398), 1, + anon_sym_PIPE, + STATE(964), 1, + aux_sym_case_clause_patterns_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55007] = 5, + ACTIONS(2396), 2, + anon_sym_if, + anon_sym_DASH_GT, + [56289] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2339), 1, + ACTIONS(2401), 1, anon_sym_DQUOTE2, - STATE(964), 1, + STATE(959), 1, aux_sym_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2276), 2, + ACTIONS(2403), 2, sym_quoted_content, sym_escape_sequence, - [55025] = 5, + [56307] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(454), 1, - anon_sym_DOT, - ACTIONS(458), 1, - anon_sym_COLON, + ACTIONS(61), 1, + sym__upname, + ACTIONS(2405), 1, + sym__name, + STATE(59), 1, + sym_constructor_name, + STATE(459), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1201), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [55043] = 5, + [56327] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2341), 1, - anon_sym_DASH, - STATE(963), 1, - aux_sym_pattern_bit_string_segment_options_repeat1, + ACTIONS(659), 1, + sym__upname, + ACTIONS(2176), 1, + sym__name, + STATE(323), 1, + sym_constructor_name, + STATE(606), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1294), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [55061] = 5, + [56347] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2343), 1, - anon_sym_COMMA, - STATE(952), 1, - aux_sym_record_pattern_arguments_repeat1, + ACTIONS(2409), 1, + anon_sym_LPAREN, + STATE(1198), 1, + sym_data_constructor_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2346), 2, - anon_sym_RPAREN, - anon_sym_DOT_DOT, - [55079] = 5, + ACTIONS(2407), 2, + anon_sym_RBRACE, + sym__upname, + [56365] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2350), 1, - anon_sym_PIPE, - STATE(953), 1, - aux_sym_case_clause_patterns_repeat1, + ACTIONS(2221), 1, + anon_sym_as, + ACTIONS(2411), 1, + anon_sym_LT_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2348), 2, - anon_sym_if, - anon_sym_DASH_GT, - [55097] = 5, + ACTIONS(2180), 2, + anon_sym_COMMA, + anon_sym_LT_DASH, + [56383] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2353), 1, + ACTIONS(2413), 1, anon_sym_COMMA, - STATE(954), 1, + STATE(970), 1, aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2356), 2, + ACTIONS(2416), 2, anon_sym_RPAREN, anon_sym_RBRACK, - [55115] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(793), 1, - anon_sym_RBRACK, - ACTIONS(795), 1, - anon_sym_DOT_DOT, - ACTIONS(2358), 1, - anon_sym_COMMA, - STATE(868), 1, - aux_sym_tuple_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [55135] = 5, + [56401] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2362), 1, + ACTIONS(2420), 1, anon_sym_DASH, - STATE(914), 1, + STATE(982), 1, aux_sym_constant_bit_string_segment_options_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2360), 2, + ACTIONS(2418), 2, anon_sym_COMMA, anon_sym_GT_GT, - [55153] = 5, + [56419] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2316), 1, - anon_sym_COLON, - STATE(1233), 1, - sym__type_annotation, + ACTIONS(374), 1, + sym__name, + ACTIONS(2152), 1, + sym__discard_name, + STATE(989), 1, + sym_identifier, + STATE(991), 1, + sym_discard, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2364), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [55171] = 5, + [56439] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2316), 1, + ACTIONS(2294), 1, anon_sym_COLON, - STATE(1235), 1, + STATE(1178), 1, sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2364), 2, + ACTIONS(2422), 2, anon_sym_COMMA, anon_sym_RPAREN, - [55189] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2366), 1, - anon_sym_DQUOTE2, - STATE(964), 1, - aux_sym_string_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2276), 2, - sym_quoted_content, - sym_escape_sequence, - [55207] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(723), 1, - sym__upname, - ACTIONS(2132), 1, - sym__name, - STATE(316), 1, - sym_constructor_name, - STATE(588), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [55227] = 5, + [56457] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2368), 1, - anon_sym_DQUOTE2, - STATE(959), 1, - aux_sym_string_repeat1, + ACTIONS(2294), 1, + anon_sym_COLON, + STATE(1172), 1, + sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2370), 2, - sym_quoted_content, - sym_escape_sequence, - [55245] = 4, + ACTIONS(2422), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [56475] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2374), 1, - sym__decimal, + ACTIONS(2294), 1, + anon_sym_COLON, + STATE(1166), 1, + sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2372), 3, - sym__hex, - sym__octal, - sym__binary, - [55261] = 5, + ACTIONS(2292), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [56493] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2378), 1, + ACTIONS(2426), 1, anon_sym_DASH, - STATE(963), 1, + STATE(956), 1, aux_sym_pattern_bit_string_segment_options_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2376), 2, + ACTIONS(2424), 2, anon_sym_COMMA, anon_sym_GT_GT, - [55279] = 5, + [56511] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2381), 1, - anon_sym_DQUOTE2, - STATE(964), 1, - aux_sym_string_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2383), 2, - sym_quoted_content, - sym_escape_sequence, - [55297] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2388), 1, + ACTIONS(2430), 1, anon_sym_DASH, - STATE(965), 1, - aux_sym_constant_bit_string_segment_options_repeat1, + STATE(944), 1, + aux_sym_expression_bit_string_segment_options_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2386), 2, + ACTIONS(2428), 2, anon_sym_COMMA, anon_sym_GT_GT, - [55315] = 6, + [56529] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2258), 1, + ACTIONS(2307), 1, sym__name, - ACTIONS(2391), 1, - anon_sym_RPAREN, - STATE(1198), 1, + STATE(1065), 1, sym_record_update_argument, - STATE(1257), 1, + STATE(1317), 1, sym_label, + STATE(1371), 1, + sym_record_update_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55335] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2395), 1, - anon_sym_PIPE, - STATE(922), 1, - aux_sym_case_clause_patterns_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2393), 2, - anon_sym_if, - anon_sym_DASH_GT, - [55353] = 6, + [56549] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2258), 1, + ACTIONS(2307), 1, sym__name, - ACTIONS(2397), 1, + ACTIONS(2432), 1, anon_sym_RPAREN, - STATE(1198), 1, + STATE(1161), 1, sym_record_update_argument, - STATE(1257), 1, + STATE(1317), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55373] = 5, + [56569] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(843), 1, - anon_sym_RPAREN, - ACTIONS(2399), 1, - anon_sym_COMMA, - STATE(868), 1, - aux_sym_tuple_repeat1, + ACTIONS(2434), 1, + anon_sym_DQUOTE2, + STATE(980), 1, + aux_sym_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55390] = 3, + ACTIONS(2436), 2, + sym_quoted_content, + sym_escape_sequence, + [56587] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2439), 1, + anon_sym_DQUOTE2, + STATE(942), 1, + aux_sym_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2346), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DOT_DOT, - [55403] = 5, + ACTIONS(2441), 2, + sym_quoted_content, + sym_escape_sequence, + [56605] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1959), 1, - anon_sym_RPAREN, - ACTIONS(2401), 1, - anon_sym_COMMA, - STATE(1013), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(2443), 1, + anon_sym_DASH, + STATE(950), 1, + aux_sym_constant_bit_string_segment_options_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55420] = 5, + ACTIONS(1241), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [56623] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2403), 1, - anon_sym_LPAREN, - ACTIONS(2405), 1, - anon_sym_DASH_GT, - STATE(1277), 1, - sym_constant_function_parameter_types, + ACTIONS(2307), 1, + sym__name, + STATE(1065), 1, + sym_record_update_argument, + STATE(1304), 1, + sym_record_update_arguments, + STATE(1317), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55437] = 5, + [56643] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2407), 1, - anon_sym_if, - ACTIONS(2409), 1, - anon_sym_DASH_GT, - STATE(1281), 1, - sym_case_clause_guard, + ACTIONS(376), 1, + sym__upname, + ACTIONS(2307), 1, + sym__name, + STATE(113), 1, + sym_constructor_name, + STATE(606), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55454] = 3, + [56663] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2307), 1, + sym__name, + STATE(1065), 1, + sym_record_update_argument, + STATE(1281), 1, + sym_record_update_arguments, + STATE(1317), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2411), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [55467] = 5, + [56683] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1931), 1, - anon_sym_RPAREN, - ACTIONS(2413), 1, + ACTIONS(2445), 1, anon_sym_COMMA, - STATE(1010), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(2447), 1, + anon_sym_RPAREN, + STATE(1127), 1, + aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55484] = 5, + [56700] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2415), 1, + ACTIONS(2449), 1, anon_sym_COMMA, - ACTIONS(2418), 1, + ACTIONS(2451), 1, anon_sym_RPAREN, - STATE(976), 1, - aux_sym_anonymous_function_parameters_repeat1, + STATE(1027), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55501] = 5, + [56717] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2118), 1, + ACTIONS(2150), 1, anon_sym_RPAREN, - ACTIONS(2420), 1, + ACTIONS(2453), 1, anon_sym_COMMA, - STATE(1083), 1, + STATE(1132), 1, aux_sym_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55518] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(757), 1, - anon_sym_RPAREN, - ACTIONS(2422), 1, - anon_sym_COMMA, - STATE(1007), 1, - aux_sym_arguments_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [55535] = 3, + [56734] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2424), 3, + ACTIONS(2455), 3, anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DASH, - [55548] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2258), 1, - sym__name, - STATE(1198), 1, - sym_record_update_argument, - STATE(1257), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [55565] = 5, + anon_sym_RPAREN, + anon_sym_COLON, + [56747] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2426), 1, + ACTIONS(2457), 1, anon_sym_COMMA, - ACTIONS(2428), 1, + ACTIONS(2459), 1, anon_sym_RPAREN, - STATE(978), 1, + STATE(1068), 1, aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55582] = 3, + [56764] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2430), 3, + ACTIONS(2461), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [55595] = 3, + [56777] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2463), 1, + anon_sym_LPAREN, + ACTIONS(2465), 1, + anon_sym_DASH_GT, + STATE(1289), 1, + sym_function_parameter_types, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2432), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [55608] = 3, + [56794] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2434), 3, + ACTIONS(2467), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, - [55621] = 5, + [56807] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2436), 1, - anon_sym_COMMA, - ACTIONS(2438), 1, + ACTIONS(2432), 1, anon_sym_RPAREN, - STATE(1086), 1, - aux_sym_external_function_parameters_repeat1, + ACTIONS(2469), 1, + anon_sym_COMMA, + STATE(1046), 1, + aux_sym_record_update_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55638] = 5, + [56824] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(306), 1, - anon_sym_DQUOTE, - STATE(480), 1, - sym_external_function_body, - STATE(1243), 1, - sym_string, + ACTIONS(2471), 1, + anon_sym_COMMA, + ACTIONS(2474), 1, + anon_sym_RPAREN, + STATE(995), 1, + aux_sym_constant_record_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55655] = 3, + [56841] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2440), 3, + ACTIONS(2476), 1, anon_sym_COMMA, + ACTIONS(2478), 1, anon_sym_RPAREN, - anon_sym_COLON, - [55668] = 3, - ACTIONS(3), 1, - sym_module_comment, + STATE(1131), 1, + aux_sym_external_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2442), 3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DASH, - [55681] = 5, + [56858] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2444), 1, + ACTIONS(2196), 1, anon_sym_RPAREN, - ACTIONS(2446), 1, - sym__name, - STATE(1160), 1, - sym_type_parameter, + ACTIONS(2480), 1, + anon_sym_COMMA, + STATE(1010), 1, + aux_sym_anonymous_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55698] = 3, + [56875] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2482), 1, + anon_sym_RPAREN, + ACTIONS(2484), 1, + sym__name, + STATE(1165), 1, + sym_type_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2386), 3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DASH, - [55711] = 5, + [56892] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2444), 1, + ACTIONS(2482), 1, anon_sym_RPAREN, - ACTIONS(2448), 1, + ACTIONS(2486), 1, anon_sym_COMMA, - STATE(1098), 1, + STATE(1117), 1, aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55728] = 5, + [56909] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2450), 1, + ACTIONS(2488), 1, anon_sym_COMMA, - ACTIONS(2453), 1, - anon_sym_RPAREN, - STATE(992), 1, - aux_sym_record_update_arguments_repeat1, + ACTIONS(2491), 1, + anon_sym_GT_GT, + STATE(1000), 1, + aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55745] = 5, + [56926] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2455), 1, + ACTIONS(2493), 1, anon_sym_COMMA, - ACTIONS(2457), 1, + ACTIONS(2495), 1, anon_sym_RPAREN, - STATE(903), 1, - aux_sym_case_clause_pattern_repeat1, + STATE(997), 1, + aux_sym_anonymous_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55762] = 5, + [56943] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(306), 1, - anon_sym_DQUOTE, - STATE(460), 1, - sym_external_function_body, - STATE(1243), 1, - sym_string, + ACTIONS(2497), 1, + anon_sym_COMMA, + ACTIONS(2499), 1, + anon_sym_RPAREN, + STATE(919), 1, + aux_sym_case_clause_pattern_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55779] = 3, + [56960] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2459), 3, + ACTIONS(2501), 3, anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DASH, - [55792] = 5, + anon_sym_EQ, + anon_sym_RPAREN, + [56973] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2461), 1, - anon_sym_COMMA, - ACTIONS(2464), 1, - anon_sym_GT_GT, - STATE(996), 1, - aux_sym__pattern_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55809] = 3, + ACTIONS(2503), 3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DASH, + [56986] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2247), 1, + anon_sym_LT_DASH, + ACTIONS(2505), 1, + anon_sym_COMMA, + STATE(1005), 1, + aux_sym_case_clause_pattern_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2466), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [55822] = 5, + [57003] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2468), 1, + ACTIONS(2508), 1, anon_sym_EQ, - ACTIONS(2470), 1, + ACTIONS(2510), 1, anon_sym_COLON, - STATE(1328), 1, + STATE(1347), 1, sym__constant_type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55839] = 5, + [57020] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2472), 1, + ACTIONS(2512), 1, anon_sym_COMMA, - ACTIONS(2474), 1, + ACTIONS(2514), 1, anon_sym_LT_DASH, - STATE(888), 1, + STATE(1005), 1, aux_sym_case_clause_pattern_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55856] = 5, + [57037] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2470), 1, + ACTIONS(2510), 1, anon_sym_COLON, - ACTIONS(2476), 1, + ACTIONS(2516), 1, anon_sym_EQ, - STATE(1367), 1, + STATE(1381), 1, sym__constant_type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55873] = 5, + [57054] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2478), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2296), 3, anon_sym_COMMA, - ACTIONS(2481), 1, anon_sym_GT_GT, - STATE(1001), 1, - aux_sym__expression_bit_string_repeat1, + anon_sym_DASH, + [57067] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2518), 1, + anon_sym_COMMA, + ACTIONS(2521), 1, + anon_sym_RPAREN, + STATE(1010), 1, + aux_sym_anonymous_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55890] = 5, + [57084] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2483), 1, + ACTIONS(857), 1, + anon_sym_RPAREN, + ACTIONS(2523), 1, anon_sym_COMMA, - ACTIONS(2486), 1, + STATE(893), 1, + aux_sym_tuple_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [57101] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2525), 1, + anon_sym_COMMA, + ACTIONS(2527), 1, anon_sym_RPAREN, - STATE(1002), 1, - aux_sym_data_constructor_arguments_repeat1, + STATE(999), 1, + aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55907] = 4, + [57118] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2490), 1, + ACTIONS(2531), 1, anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2488), 2, + ACTIONS(2529), 2, anon_sym_COMMA, anon_sym_GT_GT, - [55922] = 5, + [57133] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2492), 1, + ACTIONS(1932), 1, + anon_sym_RPAREN, + ACTIONS(2533), 1, anon_sym_COMMA, - ACTIONS(2494), 1, - anon_sym_GT_GT, STATE(1093), 1, - aux_sym__expression_bit_string_repeat1, + aux_sym_data_constructor_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55939] = 5, + [57150] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(741), 1, - anon_sym_RPAREN, - ACTIONS(2496), 1, + ACTIONS(2535), 1, anon_sym_COMMA, - STATE(1007), 1, - aux_sym_arguments_repeat1, + ACTIONS(2537), 1, + anon_sym_RPAREN, + STATE(1002), 1, + aux_sym_case_clause_pattern_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55956] = 5, + [57167] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2498), 1, + ACTIONS(2539), 1, anon_sym_LBRACE, - ACTIONS(2500), 1, + ACTIONS(2541), 1, anon_sym_COMMA, - STATE(868), 1, + STATE(893), 1, aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55973] = 5, + [57184] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2502), 1, + ACTIONS(1692), 1, + anon_sym_GT_GT, + ACTIONS(2543), 1, anon_sym_COMMA, - ACTIONS(2505), 1, - anon_sym_RPAREN, - STATE(1007), 1, - aux_sym_arguments_repeat1, + STATE(1022), 1, + aux_sym__pattern_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55990] = 5, + [57201] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2148), 1, - anon_sym_RPAREN, - ACTIONS(2507), 1, + ACTIONS(2545), 1, anon_sym_COMMA, - STATE(976), 1, - aux_sym_anonymous_function_parameters_repeat1, + ACTIONS(2548), 1, + anon_sym_RPAREN, + STATE(1018), 1, + aux_sym_constant_tuple_type_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [57218] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(366), 1, + anon_sym_DQUOTE, + STATE(518), 1, + sym_external_function_body, + STATE(1195), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56007] = 5, + [57235] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2509), 1, + ACTIONS(2550), 1, anon_sym_COMMA, - ACTIONS(2511), 1, - anon_sym_RPAREN, - STATE(1005), 1, - aux_sym_arguments_repeat1, + ACTIONS(2552), 1, + anon_sym_GT_GT, + STATE(1123), 1, + aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56024] = 5, + [57252] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2513), 1, + ACTIONS(2554), 1, anon_sym_COMMA, - ACTIONS(2516), 1, + ACTIONS(2557), 1, anon_sym_RPAREN, - STATE(1010), 1, - aux_sym_type_arguments_repeat1, + STATE(1021), 1, + aux_sym_external_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56041] = 5, + [57269] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1001), 1, - anon_sym_GT_GT, - ACTIONS(2518), 1, + ACTIONS(2559), 1, anon_sym_COMMA, - STATE(1001), 1, - aux_sym__expression_bit_string_repeat1, + ACTIONS(2562), 1, + anon_sym_GT_GT, + STATE(1022), 1, + aux_sym__pattern_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56058] = 5, + [57286] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2175), 1, - anon_sym_RBRACE, - ACTIONS(2520), 1, + ACTIONS(763), 1, + anon_sym_RPAREN, + ACTIONS(2564), 1, anon_sym_COMMA, - STATE(1108), 1, - aux_sym_unqualified_imports_repeat1, + STATE(1058), 1, + aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56075] = 5, + [57303] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2522), 1, + ACTIONS(2566), 1, anon_sym_COMMA, - ACTIONS(2525), 1, - anon_sym_RPAREN, - STATE(1013), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(2568), 1, + anon_sym_RBRACK, + STATE(1083), 1, + aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56092] = 4, + [57320] = 5, ACTIONS(3), 1, sym_module_comment, - STATE(1297), 1, - sym_target, + ACTIONS(2570), 1, + anon_sym_LPAREN, + ACTIONS(2572), 1, + anon_sym_DASH_GT, + STATE(1360), 1, + sym_constant_function_parameter_types, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2527), 2, - anon_sym_erlang, - anon_sym_javascript, - [56107] = 5, + [57337] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2529), 1, - anon_sym_COMMA, - ACTIONS(2532), 1, + ACTIONS(1973), 1, anon_sym_RPAREN, - STATE(1015), 1, - aux_sym_constant_type_arguments_repeat1, + ACTIONS(2574), 1, + anon_sym_COMMA, + STATE(1075), 1, + aux_sym_type_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56124] = 5, + [57354] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2316), 1, - anon_sym_COLON, - ACTIONS(2534), 1, - anon_sym_EQ, - STATE(1254), 1, - sym__type_annotation, + ACTIONS(2003), 1, + anon_sym_RPAREN, + ACTIONS(2576), 1, + anon_sym_COMMA, + STATE(1060), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56141] = 3, + [57371] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(823), 1, + anon_sym_RPAREN, + ACTIONS(2578), 1, + anon_sym_COMMA, + STATE(893), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2536), 3, + [57388] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2580), 1, anon_sym_COMMA, - anon_sym_EQ, + ACTIONS(2582), 1, anon_sym_RPAREN, - [56154] = 5, + STATE(1023), 1, + aux_sym_arguments_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [57405] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2538), 1, - anon_sym_COMMA, - ACTIONS(2540), 1, + ACTIONS(963), 1, anon_sym_GT_GT, - STATE(1011), 1, + ACTIONS(2584), 1, + anon_sym_COMMA, + STATE(1000), 1, aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56171] = 5, + [57422] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2542), 1, - anon_sym_COMMA, - ACTIONS(2545), 1, + ACTIONS(2007), 1, anon_sym_RPAREN, - STATE(1019), 1, - aux_sym_constant_tuple_type_repeat1, + ACTIONS(2586), 1, + anon_sym_COMMA, + STATE(1060), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56188] = 5, + [57439] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2547), 1, - anon_sym_LPAREN, - ACTIONS(2549), 1, - anon_sym_DASH_GT, - STATE(1349), 1, - sym_function_parameter_types, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56205] = 5, + ACTIONS(2588), 3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DASH, + [57452] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2551), 1, - anon_sym_COMMA, - ACTIONS(2553), 1, - anon_sym_RPAREN, - STATE(1039), 1, - aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56222] = 3, + ACTIONS(2590), 3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DASH, + [57465] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2594), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2555), 3, + ACTIONS(2592), 2, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [56235] = 5, + anon_sym_GT_GT, + [57480] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1824), 1, - anon_sym_RBRACK, - ACTIONS(2557), 1, + ACTIONS(2011), 1, + anon_sym_RPAREN, + ACTIONS(2596), 1, anon_sym_COMMA, - STATE(954), 1, - aux_sym_constant_tuple_repeat1, + STATE(1051), 1, + aux_sym_constant_type_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56252] = 5, + [57497] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2559), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2598), 3, anon_sym_COMMA, - ACTIONS(2562), 1, + anon_sym_EQ, anon_sym_RPAREN, - STATE(1024), 1, - aux_sym_constant_record_arguments_repeat1, + [57510] = 3, + ACTIONS(3), 1, + sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56269] = 5, + ACTIONS(2600), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [57523] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(829), 1, - anon_sym_RPAREN, - ACTIONS(2564), 1, - anon_sym_COMMA, - STATE(868), 1, - aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56286] = 5, + ACTIONS(2602), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [57536] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1754), 1, - anon_sym_GT_GT, - ACTIONS(2566), 1, + ACTIONS(2031), 1, + anon_sym_RPAREN, + ACTIONS(2604), 1, anon_sym_COMMA, - STATE(1078), 1, - aux_sym__constant_bit_string_repeat1, + STATE(1018), 1, + aux_sym_constant_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56303] = 5, + [57553] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2568), 1, + ACTIONS(2606), 1, anon_sym_COMMA, - ACTIONS(2570), 1, + ACTIONS(2608), 1, anon_sym_GT_GT, - STATE(1090), 1, + STATE(1017), 1, aux_sym__pattern_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56320] = 5, + [57570] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2397), 1, - anon_sym_RPAREN, - ACTIONS(2572), 1, - anon_sym_COMMA, - STATE(992), 1, - aux_sym_record_update_arguments_repeat1, + STATE(1322), 1, + sym_target, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56337] = 4, + ACTIONS(2610), 2, + anon_sym_erlang, + anon_sym_javascript, + [57585] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2576), 1, + ACTIONS(2614), 1, anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2574), 2, + ACTIONS(2612), 2, anon_sym_COMMA, anon_sym_GT_GT, - [56352] = 5, + [57600] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2578), 1, - anon_sym_COMMA, - ACTIONS(2580), 1, + ACTIONS(2049), 1, anon_sym_RPAREN, - STATE(1074), 1, - aux_sym_constant_record_arguments_repeat1, + ACTIONS(2616), 1, + anon_sym_COMMA, + STATE(1018), 1, + aux_sym_constant_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56369] = 3, + [57617] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2582), 3, + ACTIONS(2618), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, - [56382] = 5, + [57630] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2584), 1, - anon_sym_RBRACE, - ACTIONS(2586), 1, - anon_sym_COMMA, - STATE(1012), 1, - aux_sym_unqualified_imports_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56399] = 5, + ACTIONS(2620), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DOT_DOT, + [57643] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2588), 1, + ACTIONS(2622), 1, anon_sym_COMMA, - ACTIONS(2590), 1, + ACTIONS(2625), 1, anon_sym_RPAREN, - STATE(1065), 1, - aux_sym_constant_tuple_type_repeat1, + STATE(1046), 1, + aux_sym_record_update_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56416] = 3, + [57660] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1764), 1, + anon_sym_RPAREN, + ACTIONS(2627), 1, + anon_sym_COMMA, + STATE(995), 1, + aux_sym_constant_record_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2376), 3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DASH, - [56429] = 5, + [57677] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2316), 1, + ACTIONS(2294), 1, anon_sym_COLON, - ACTIONS(2592), 1, + ACTIONS(2629), 1, anon_sym_EQ, - STATE(1263), 1, + STATE(1270), 1, sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56446] = 5, + [57694] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(747), 1, - anon_sym_RPAREN, - ACTIONS(2594), 1, + ACTIONS(2631), 1, anon_sym_COMMA, - STATE(1007), 1, - aux_sym_arguments_repeat1, + ACTIONS(2634), 1, + anon_sym_GT_GT, + STATE(1049), 1, + aux_sym__constant_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56463] = 5, + [57711] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1913), 1, - anon_sym_RPAREN, - ACTIONS(2596), 1, + ACTIONS(2636), 1, anon_sym_COMMA, - STATE(1002), 1, - aux_sym_data_constructor_arguments_repeat1, + ACTIONS(2638), 1, + anon_sym_GT_GT, + STATE(1030), 1, + aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56480] = 5, + [57728] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2598), 1, + ACTIONS(2640), 1, anon_sym_COMMA, - ACTIONS(2600), 1, + ACTIONS(2643), 1, anon_sym_RPAREN, - STATE(1063), 1, - aux_sym_constant_tuple_type_repeat1, + STATE(1051), 1, + aux_sym_constant_type_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56497] = 5, + [57745] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1786), 1, - anon_sym_RPAREN, - ACTIONS(2602), 1, - anon_sym_COMMA, - STATE(954), 1, - aux_sym_constant_tuple_repeat1, + ACTIONS(2645), 1, + anon_sym_if, + ACTIONS(2647), 1, + anon_sym_DASH_GT, + STATE(1295), 1, + sym_case_clause_guard, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56514] = 3, + [57762] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2604), 3, - anon_sym_COMMA, + ACTIONS(2294), 1, + anon_sym_COLON, + ACTIONS(2649), 1, anon_sym_EQ, - anon_sym_RPAREN, - [56527] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2446), 1, - sym__name, - ACTIONS(2606), 1, - anon_sym_RPAREN, - STATE(1076), 1, - sym_type_parameter, + STATE(1272), 1, + sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56544] = 3, + [57779] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2608), 3, + ACTIONS(2651), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, - [56557] = 5, + [57792] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2610), 1, - anon_sym_COMMA, - ACTIONS(2613), 1, - anon_sym_RPAREN, - STATE(1043), 1, - aux_sym_external_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56574] = 5, + ACTIONS(2416), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [57805] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(811), 1, + ACTIONS(755), 1, anon_sym_RPAREN, - ACTIONS(2615), 1, + ACTIONS(2653), 1, anon_sym_COMMA, - STATE(868), 1, - aux_sym_tuple_repeat1, + STATE(1058), 1, + aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56591] = 5, + [57822] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2617), 1, - anon_sym_COMMA, - ACTIONS(2619), 1, + ACTIONS(1818), 1, anon_sym_RPAREN, - STATE(1036), 1, - aux_sym_arguments_repeat1, + ACTIONS(2655), 1, + anon_sym_COMMA, + STATE(970), 1, + aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56608] = 5, + [57839] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1010), 1, - anon_sym_GT_GT, - ACTIONS(2621), 1, + ACTIONS(2657), 1, anon_sym_COMMA, - STATE(1001), 1, - aux_sym__expression_bit_string_repeat1, + ACTIONS(2660), 1, + anon_sym_RPAREN, + STATE(1058), 1, + aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56625] = 5, + [57856] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1927), 1, - anon_sym_RPAREN, - ACTIONS(2623), 1, + ACTIONS(2662), 1, + anon_sym_RBRACE, + ACTIONS(2664), 1, anon_sym_COMMA, - STATE(1010), 1, - aux_sym_type_arguments_repeat1, + STATE(1059), 1, + aux_sym_unqualified_imports_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56642] = 5, + [57873] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2625), 1, + ACTIONS(2667), 1, anon_sym_COMMA, - ACTIONS(2627), 1, + ACTIONS(2670), 1, anon_sym_RPAREN, - STATE(977), 1, - aux_sym_function_parameters_repeat1, + STATE(1060), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56659] = 4, + [57890] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2631), 1, - anon_sym_as, + ACTIONS(2484), 1, + sym__name, + ACTIONS(2672), 1, + anon_sym_RPAREN, + STATE(1012), 1, + sym_type_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2629), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [56674] = 5, + [57907] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1947), 1, + ACTIONS(837), 1, anon_sym_RPAREN, - ACTIONS(2633), 1, + ACTIONS(2674), 1, anon_sym_COMMA, - STATE(1013), 1, - aux_sym_tuple_type_repeat1, + STATE(893), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56691] = 5, + [57924] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2635), 1, + ACTIONS(2676), 1, anon_sym_COMMA, - ACTIONS(2637), 1, + ACTIONS(2678), 1, anon_sym_RPAREN, - STATE(1058), 1, - aux_sym_constant_type_arguments_repeat1, + STATE(1056), 1, + aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56708] = 5, + [57941] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1955), 1, - anon_sym_RPAREN, - ACTIONS(2639), 1, + ACTIONS(2210), 1, + anon_sym_RBRACE, + ACTIONS(2680), 1, anon_sym_COMMA, - STATE(1013), 1, - aux_sym_tuple_type_repeat1, + STATE(1059), 1, + aux_sym_unqualified_imports_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56725] = 3, + [57958] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2682), 1, + anon_sym_COMMA, + ACTIONS(2684), 1, + anon_sym_RPAREN, + STATE(994), 1, + aux_sym_record_update_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2641), 3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DASH, - [56738] = 4, + [57975] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2643), 1, - anon_sym_as, + ACTIONS(973), 1, + anon_sym_GT_GT, + ACTIONS(2686), 1, + anon_sym_COMMA, + STATE(1000), 1, + aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2629), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [56753] = 5, + [57992] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2316), 1, + ACTIONS(2294), 1, anon_sym_COLON, - ACTIONS(2645), 1, + ACTIONS(2688), 1, anon_sym_EQ, - STATE(1273), 1, + STATE(1301), 1, sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56770] = 3, + [58009] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(749), 1, + anon_sym_RPAREN, + ACTIONS(2690), 1, + anon_sym_COMMA, + STATE(1058), 1, + aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2647), 3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DASH, - [56783] = 5, + [58026] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2649), 1, + ACTIONS(2692), 1, anon_sym_COMMA, - ACTIONS(2651), 1, - anon_sym_LT_DASH, - STATE(999), 1, - aux_sym_case_clause_pattern_repeat1, + ACTIONS(2694), 1, + anon_sym_GT_GT, + STATE(1085), 1, + aux_sym__constant_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56800] = 5, + [58043] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1957), 1, - anon_sym_RPAREN, - ACTIONS(2653), 1, + ACTIONS(2696), 1, anon_sym_COMMA, - STATE(1015), 1, - aux_sym_constant_type_arguments_repeat1, + ACTIONS(2698), 1, + anon_sym_LT_DASH, + STATE(1007), 1, + aux_sym_case_clause_pattern_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56817] = 5, + [58060] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2316), 1, + ACTIONS(2294), 1, anon_sym_COLON, - ACTIONS(2655), 1, + ACTIONS(2700), 1, anon_sym_EQ, - STATE(1290), 1, + STATE(1324), 1, sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56834] = 3, + [58077] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2657), 3, + ACTIONS(2702), 1, + anon_sym_RBRACE, + ACTIONS(2704), 1, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [56847] = 3, - ACTIONS(3), 1, - sym_module_comment, + STATE(1064), 1, + aux_sym_unqualified_imports_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2659), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [56860] = 5, + [58094] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2661), 1, + ACTIONS(2706), 1, anon_sym_COMMA, - ACTIONS(2663), 1, + ACTIONS(2708), 1, anon_sym_GT_GT, - STATE(1046), 1, + STATE(1066), 1, aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56877] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2015), 1, - anon_sym_RPAREN, - ACTIONS(2665), 1, - anon_sym_COMMA, - STATE(1019), 1, - aux_sym_constant_tuple_type_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [56894] = 3, + [58111] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2712), 1, + anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2328), 3, + ACTIONS(2710), 2, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DASH, - [56907] = 5, + [58126] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2011), 1, - anon_sym_RPAREN, - ACTIONS(2667), 1, + ACTIONS(2714), 1, anon_sym_COMMA, - STATE(1019), 1, - aux_sym_constant_tuple_type_repeat1, + ACTIONS(2717), 1, + anon_sym_RPAREN, + STATE(1075), 1, + aux_sym_type_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56924] = 3, + [58143] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2669), 3, + ACTIONS(2719), 3, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DOT_DOT, - [56937] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(306), 1, - anon_sym_DQUOTE, - STATE(834), 1, - sym_external_function_body, - STATE(1182), 1, - sym_string, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [56954] = 5, + anon_sym_GT_GT, + anon_sym_DASH, + [58156] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2671), 1, + ACTIONS(2721), 1, anon_sym_COMMA, - ACTIONS(2673), 1, + ACTIONS(2723), 1, anon_sym_RPAREN, - STATE(1052), 1, - aux_sym_tuple_type_repeat1, + STATE(1057), 1, + aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56971] = 3, + [58173] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2307), 1, + sym__name, + STATE(1161), 1, + sym_record_update_argument, + STATE(1317), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2675), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [56984] = 5, + [58190] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2470), 1, + ACTIONS(2510), 1, anon_sym_COLON, - ACTIONS(2677), 1, + ACTIONS(2725), 1, anon_sym_EQ, - STATE(1338), 1, + STATE(1358), 1, sym__constant_type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57001] = 5, + [58207] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2679), 1, - anon_sym_COMMA, - ACTIONS(2681), 1, - anon_sym_RPAREN, - STATE(1008), 1, - aux_sym_anonymous_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57018] = 3, + ACTIONS(2396), 3, + anon_sym_if, + anon_sym_DASH_GT, + anon_sym_PIPE, + [58220] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2683), 3, + ACTIONS(2727), 3, anon_sym_COMMA, - anon_sym_EQ, anon_sym_RPAREN, - [57031] = 5, + anon_sym_DOT_DOT, + [58233] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2685), 1, + ACTIONS(2729), 1, anon_sym_COMMA, - ACTIONS(2687), 1, + ACTIONS(2731), 1, anon_sym_GT_GT, - STATE(1094), 1, + STATE(1104), 1, aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57048] = 5, + [58250] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1730), 1, - anon_sym_RPAREN, - ACTIONS(2689), 1, + ACTIONS(1826), 1, + anon_sym_RBRACK, + ACTIONS(2733), 1, anon_sym_COMMA, - STATE(1024), 1, - aux_sym_constant_record_arguments_repeat1, + STATE(970), 1, + aux_sym_constant_tuple_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [58267] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(366), 1, + anon_sym_DQUOTE, + STATE(850), 1, + sym_external_function_body, + STATE(1192), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57065] = 5, + [58284] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2691), 1, + ACTIONS(1792), 1, + anon_sym_GT_GT, + ACTIONS(2735), 1, anon_sym_COMMA, - ACTIONS(2693), 1, - anon_sym_RPAREN, - STATE(1050), 1, - aux_sym_tuple_type_repeat1, + STATE(1049), 1, + aux_sym__constant_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57082] = 5, + [58301] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2695), 1, + ACTIONS(2737), 1, anon_sym_COMMA, - ACTIONS(2697), 1, + ACTIONS(2739), 1, anon_sym_RPAREN, - STATE(991), 1, - aux_sym_type_parameters_repeat1, + STATE(1047), 1, + aux_sym_constant_record_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57099] = 5, + [58318] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2316), 1, + ACTIONS(2294), 1, anon_sym_COLON, - ACTIONS(2699), 1, + ACTIONS(2741), 1, anon_sym_EQ, - STATE(1342), 1, + STATE(1364), 1, sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57116] = 5, + [58335] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2701), 1, - anon_sym_COMMA, - ACTIONS(2704), 1, - anon_sym_GT_GT, - STATE(1078), 1, - aux_sym__constant_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57133] = 5, + ACTIONS(2743), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [58348] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2706), 1, + ACTIONS(2745), 1, anon_sym_COMMA, - ACTIONS(2708), 1, + ACTIONS(2747), 1, anon_sym_RPAREN, - STATE(1047), 1, - aux_sym_type_arguments_repeat1, + STATE(1043), 1, + aux_sym_constant_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57150] = 5, + [58365] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2316), 1, + ACTIONS(2294), 1, anon_sym_COLON, - ACTIONS(2710), 1, + ACTIONS(2749), 1, anon_sym_EQ, - STATE(1345), 1, + STATE(1368), 1, sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57167] = 5, + [58382] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2712), 1, + ACTIONS(2751), 1, anon_sym_COMMA, - ACTIONS(2714), 1, + ACTIONS(2753), 1, anon_sym_LT_DASH, - STATE(1102), 1, + STATE(1112), 1, aux_sym_case_clause_pattern_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57184] = 5, + [58399] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2716), 1, + ACTIONS(2755), 1, anon_sym_COMMA, - ACTIONS(2718), 1, + ACTIONS(2757), 1, anon_sym_RPAREN, - STATE(993), 1, - aux_sym_case_clause_pattern_repeat1, + STATE(1039), 1, + aux_sym_constant_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57201] = 5, + [58416] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2720), 1, + ACTIONS(2759), 1, anon_sym_COMMA, - ACTIONS(2723), 1, + ACTIONS(2762), 1, anon_sym_RPAREN, - STATE(1083), 1, - aux_sym_function_parameters_repeat1, + STATE(1093), 1, + aux_sym_data_constructor_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57218] = 5, + [58433] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2725), 1, - anon_sym_COMMA, - ACTIONS(2727), 1, - anon_sym_GT_GT, - STATE(1026), 1, - aux_sym__constant_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57235] = 3, + ACTIONS(2764), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [58446] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2729), 3, + ACTIONS(2766), 3, anon_sym_COMMA, - anon_sym_EQ, anon_sym_RPAREN, - [57248] = 5, + anon_sym_COLON, + [58459] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1925), 1, - anon_sym_RPAREN, - ACTIONS(2731), 1, - anon_sym_COMMA, - STATE(1043), 1, - aux_sym_external_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57265] = 5, + ACTIONS(2768), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [58472] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(306), 1, - anon_sym_DQUOTE, - STATE(829), 1, - sym_external_function_body, - STATE(1182), 1, - sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57282] = 5, + ACTIONS(2770), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [58485] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1726), 1, - anon_sym_RPAREN, - ACTIONS(2733), 1, + ACTIONS(2772), 1, anon_sym_COMMA, - STATE(1024), 1, - aux_sym_constant_record_arguments_repeat1, + ACTIONS(2774), 1, + anon_sym_RPAREN, + STATE(1035), 1, + aux_sym_constant_type_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57299] = 5, + [58502] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2735), 1, - anon_sym_COMMA, - ACTIONS(2737), 1, - anon_sym_RPAREN, - STATE(1037), 1, - aux_sym_data_constructor_arguments_repeat1, + ACTIONS(366), 1, + anon_sym_DQUOTE, + STATE(859), 1, + sym_external_function_body, + STATE(1192), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57316] = 5, + [58519] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1664), 1, - anon_sym_GT_GT, - ACTIONS(2739), 1, + ACTIONS(1979), 1, + anon_sym_RPAREN, + ACTIONS(2776), 1, anon_sym_COMMA, - STATE(996), 1, - aux_sym__pattern_bit_string_repeat1, + STATE(1075), 1, + aux_sym_type_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57333] = 5, + [58536] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1770), 1, - anon_sym_RPAREN, - ACTIONS(2741), 1, - anon_sym_COMMA, - STATE(954), 1, - aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57350] = 5, + ACTIONS(2384), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DOT_DOT, + [58549] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2446), 1, - sym__name, - ACTIONS(2743), 1, + ACTIONS(1999), 1, anon_sym_RPAREN, - STATE(1160), 1, - sym_type_parameter, + ACTIONS(2778), 1, + anon_sym_COMMA, + STATE(1060), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57367] = 5, + [58566] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1073), 1, - anon_sym_GT_GT, - ACTIONS(2745), 1, - anon_sym_COMMA, - STATE(1001), 1, - aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57384] = 5, + ACTIONS(2780), 3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DASH, + [58579] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1071), 1, + ACTIONS(1029), 1, anon_sym_GT_GT, - ACTIONS(2747), 1, + ACTIONS(2782), 1, anon_sym_COMMA, - STATE(1001), 1, + STATE(1000), 1, aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57401] = 5, + [58596] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2446), 1, + ACTIONS(2484), 1, sym__name, - ACTIONS(2749), 1, + ACTIONS(2784), 1, anon_sym_RPAREN, - STATE(1111), 1, + STATE(1125), 1, sym_type_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57418] = 5, + [58613] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2446), 1, - sym__name, - ACTIONS(2751), 1, - anon_sym_RPAREN, - STATE(1160), 1, - sym_type_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57435] = 5, + ACTIONS(2343), 3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DASH, + [58626] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2753), 1, - anon_sym_COMMA, - ACTIONS(2755), 1, - anon_sym_RPAREN, - STATE(975), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(2786), 1, + anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57452] = 5, + ACTIONS(2710), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [58641] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2757), 1, - anon_sym_COMMA, - ACTIONS(2760), 1, + ACTIONS(1762), 1, anon_sym_RPAREN, - STATE(1098), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(2788), 1, + anon_sym_COMMA, + STATE(995), 1, + aux_sym_constant_record_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57469] = 5, + [58658] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2762), 1, - anon_sym_COMMA, - ACTIONS(2764), 1, - anon_sym_RPAREN, - STATE(971), 1, - aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57486] = 5, + ACTIONS(2790), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [58671] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2766), 1, - anon_sym_COMMA, - ACTIONS(2768), 1, + ACTIONS(1864), 1, anon_sym_RPAREN, - STATE(1088), 1, - aux_sym_constant_record_arguments_repeat1, + ACTIONS(2792), 1, + anon_sym_COMMA, + STATE(970), 1, + aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57503] = 5, + [58688] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1758), 1, - anon_sym_GT_GT, - ACTIONS(2770), 1, + ACTIONS(2794), 1, anon_sym_COMMA, - STATE(1078), 1, - aux_sym__constant_bit_string_repeat1, + ACTIONS(2796), 1, + anon_sym_RPAREN, + STATE(1031), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57520] = 5, + [58705] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2772), 1, + ACTIONS(2798), 1, anon_sym_COMMA, - ACTIONS(2774), 1, + ACTIONS(2800), 1, anon_sym_LT_DASH, - STATE(888), 1, + STATE(1005), 1, aux_sym_case_clause_pattern_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57537] = 5, + [58722] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2470), 1, + ACTIONS(2510), 1, anon_sym_COLON, - ACTIONS(2776), 1, + ACTIONS(2802), 1, anon_sym_EQ, - STATE(1359), 1, + STATE(1378), 1, sym__constant_type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57554] = 5, + [58739] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1828), 1, - anon_sym_RBRACK, - ACTIONS(2778), 1, - anon_sym_COMMA, - STATE(954), 1, - aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57571] = 5, + ACTIONS(2804), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [58752] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2780), 1, + ACTIONS(2806), 1, anon_sym_COMMA, - ACTIONS(2782), 1, + ACTIONS(2808), 1, anon_sym_RPAREN, - STATE(1112), 1, - aux_sym_arguments_repeat1, + STATE(988), 1, + aux_sym_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57588] = 3, + [58769] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(366), 1, + anon_sym_DQUOTE, + STATE(494), 1, + sym_external_function_body, + STATE(1195), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2356), 3, + [58786] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2810), 1, anon_sym_COMMA, + ACTIONS(2813), 1, anon_sym_RPAREN, - anon_sym_RBRACK, - [57601] = 5, + STATE(1117), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [58803] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(827), 1, + ACTIONS(2484), 1, + sym__name, + ACTIONS(2815), 1, anon_sym_RPAREN, - ACTIONS(2784), 1, + STATE(1165), 1, + sym_type_parameter, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [58820] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2484), 1, + sym__name, + ACTIONS(2817), 1, + anon_sym_RPAREN, + STATE(1165), 1, + sym_type_parameter, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [58837] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(843), 1, + anon_sym_RPAREN, + ACTIONS(2819), 1, anon_sym_COMMA, - STATE(868), 1, + STATE(893), 1, aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57618] = 5, + [58854] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2786), 1, - anon_sym_RBRACE, - ACTIONS(2788), 1, + ACTIONS(2821), 1, anon_sym_COMMA, - STATE(1108), 1, - aux_sym_unqualified_imports_repeat1, + ACTIONS(2823), 1, + anon_sym_RPAREN, + STATE(1100), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [58871] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2825), 1, + anon_sym_COMMA, + ACTIONS(2827), 1, + anon_sym_RPAREN, + STATE(1102), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [58888] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1023), 1, + anon_sym_GT_GT, + ACTIONS(2829), 1, + anon_sym_COMMA, + STATE(1000), 1, + aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57635] = 5, + [58905] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2547), 1, + ACTIONS(2463), 1, anon_sym_LPAREN, - ACTIONS(2791), 1, + ACTIONS(2831), 1, anon_sym_DASH_GT, - STATE(1364), 1, + STATE(1280), 1, sym_function_parameter_types, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57652] = 5, + [58922] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2793), 1, + ACTIONS(2833), 1, anon_sym_COMMA, - ACTIONS(2795), 1, + ACTIONS(2835), 1, anon_sym_RPAREN, - STATE(1028), 1, - aux_sym_record_update_arguments_repeat1, + STATE(1134), 1, + aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57669] = 5, + [58939] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2797), 1, + ACTIONS(2837), 1, anon_sym_COMMA, - ACTIONS(2799), 1, + ACTIONS(2839), 1, anon_sym_RPAREN, - STATE(1120), 1, - aux_sym_type_parameters_repeat1, + STATE(1014), 1, + aux_sym_data_constructor_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57686] = 5, + [58956] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(743), 1, + ACTIONS(761), 1, anon_sym_RPAREN, - ACTIONS(2801), 1, + ACTIONS(2841), 1, anon_sym_COMMA, - STATE(1007), 1, + STATE(1058), 1, aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57703] = 5, + [58973] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2803), 1, + ACTIONS(2843), 1, anon_sym_RBRACE, - ACTIONS(2805), 1, + ACTIONS(2845), 1, anon_sym_COMMA, - STATE(1122), 1, + STATE(1136), 1, aux_sym_unqualified_imports_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57720] = 5, + [58990] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2807), 1, + ACTIONS(2847), 1, anon_sym_COMMA, - ACTIONS(2809), 1, + ACTIONS(2849), 1, anon_sym_RBRACK, - STATE(1104), 1, + STATE(1139), 1, aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57737] = 5, + [59007] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2811), 1, + ACTIONS(2851), 1, anon_sym_COMMA, - ACTIONS(2813), 1, + ACTIONS(2853), 1, anon_sym_GT_GT, - STATE(1101), 1, + STATE(1140), 1, aux_sym__constant_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57754] = 5, + [59024] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2815), 1, + ACTIONS(1961), 1, + anon_sym_RPAREN, + ACTIONS(2855), 1, anon_sym_COMMA, - ACTIONS(2817), 1, - anon_sym_RBRACK, - STATE(1023), 1, - aux_sym_constant_tuple_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [57771] = 3, - ACTIONS(3), 1, - sym_module_comment, + STATE(1021), 1, + aux_sym_external_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2348), 3, - anon_sym_if, - anon_sym_DASH_GT, - anon_sym_PIPE, - [57784] = 4, + [59041] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2821), 1, - anon_sym_COLON, + ACTIONS(2857), 1, + anon_sym_COMMA, + ACTIONS(2860), 1, + anon_sym_RPAREN, + STATE(1132), 1, + aux_sym_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2819), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [57799] = 5, + [59058] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2446), 1, + ACTIONS(2484), 1, sym__name, - ACTIONS(2823), 1, + ACTIONS(2862), 1, anon_sym_RPAREN, - STATE(1160), 1, + STATE(1165), 1, sym_type_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57816] = 5, + [59075] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2823), 1, + ACTIONS(2862), 1, anon_sym_RPAREN, - ACTIONS(2825), 1, + ACTIONS(2864), 1, anon_sym_COMMA, - STATE(1098), 1, + STATE(1117), 1, aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57833] = 3, + [59092] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2827), 3, + ACTIONS(2360), 3, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DOT_DOT, - [57846] = 5, + anon_sym_GT_GT, + anon_sym_DASH, + [59105] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2186), 1, + ACTIONS(2219), 1, anon_sym_RBRACE, - ACTIONS(2829), 1, + ACTIONS(2866), 1, anon_sym_COMMA, - STATE(1108), 1, + STATE(1059), 1, aux_sym_unqualified_imports_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57863] = 5, + [59122] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2831), 1, + ACTIONS(2868), 1, anon_sym_COMMA, - ACTIONS(2833), 1, + ACTIONS(2870), 1, anon_sym_RPAREN, - STATE(1091), 1, + STATE(1110), 1, aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57880] = 3, + [59139] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2872), 1, + anon_sym_COMMA, + ACTIONS(2874), 1, + anon_sym_RPAREN, + STATE(1026), 1, + aux_sym_type_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2835), 2, - anon_sym_LBRACE, - anon_sym_DASH_GT, - [57892] = 3, + [59156] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1844), 1, + anon_sym_RBRACK, + ACTIONS(2876), 1, + anon_sym_COMMA, + STATE(970), 1, + aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2525), 2, + [59173] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1806), 1, + anon_sym_GT_GT, + ACTIONS(2878), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [57904] = 4, + STATE(1049), 1, + aux_sym__constant_bit_string_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [59190] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2136), 1, - sym__name, - STATE(1131), 1, - sym_identifier, + ACTIONS(2880), 1, + anon_sym_COMMA, + ACTIONS(2882), 1, + anon_sym_RPAREN, + STATE(1108), 1, + aux_sym_constant_record_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57918] = 4, + [59207] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2136), 1, - sym__name, - STATE(1132), 1, - sym_identifier, + ACTIONS(61), 1, + sym__upname, + STATE(59), 1, + sym_constructor_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57932] = 3, + [59221] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2837), 2, - anon_sym_RBRACE, + ACTIONS(2884), 2, anon_sym_COMMA, - [57944] = 3, + anon_sym_RPAREN, + [59233] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2184), 1, + sym__name, + STATE(1147), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2839), 2, + [59247] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2886), 1, anon_sym_LBRACE, - anon_sym_DASH_GT, - [57956] = 4, + ACTIONS(2888), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [59261] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2841), 1, + ACTIONS(2184), 1, sym__name, - STATE(491), 1, + STATE(1150), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57970] = 4, + [59275] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2843), 1, + ACTIONS(2890), 1, anon_sym_LPAREN, - STATE(1356), 1, + STATE(1375), 1, sym_external_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57984] = 4, + [59289] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2843), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2860), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [59301] = 3, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2521), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [59313] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2890), 1, anon_sym_LPAREN, - STATE(1355), 1, + STATE(1374), 1, sym_external_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [57998] = 4, + [59327] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2845), 1, + ACTIONS(2892), 1, sym__name, - STATE(383), 1, - sym_module, + STATE(490), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58012] = 3, + [59341] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2894), 1, + sym__name, + STATE(400), 1, + sym_module, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2847), 2, - anon_sym_LBRACE, - anon_sym_DASH_GT, - [58024] = 4, + [59355] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2849), 1, - anon_sym_LBRACE, - STATE(419), 1, - sym_unqualified_imports, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58038] = 4, + ACTIONS(2896), 2, + anon_sym_LBRACE, + anon_sym_DASH_GT, + [59367] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2256), 1, + ACTIONS(2348), 1, anon_sym_LPAREN, - STATE(1150), 1, + STATE(1174), 1, sym_anonymous_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58052] = 4, + [59381] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2136), 1, - sym__name, - STATE(1000), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58066] = 3, + ACTIONS(2898), 2, + anon_sym_LBRACE, + anon_sym_DASH_GT, + [59393] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2418), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [58078] = 4, + ACTIONS(2900), 2, + anon_sym_RBRACE, + sym__upname, + [59405] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1979), 1, - sym__upname, - STATE(402), 1, - sym_type_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58092] = 4, + ACTIONS(2902), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [59417] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2256), 1, - anon_sym_LPAREN, - STATE(1247), 1, - sym_anonymous_function_parameters, + ACTIONS(2184), 1, + sym__name, + STATE(1008), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58106] = 4, + [59431] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2851), 1, - anon_sym_LBRACE, - ACTIONS(2853), 1, - anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58120] = 4, + ACTIONS(1788), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [59443] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2843), 1, + ACTIONS(2348), 1, anon_sym_LPAREN, STATE(1265), 1, - sym_external_function_parameters, + sym_anonymous_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58134] = 4, + [59457] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2855), 1, - anon_sym_LBRACE, - ACTIONS(2857), 1, - anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58148] = 4, + ACTIONS(2625), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [59469] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2859), 1, + ACTIONS(2904), 1, anon_sym_LBRACE, - ACTIONS(2861), 1, - anon_sym_EQ, + STATE(428), 1, + sym_unqualified_imports, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58162] = 3, + [59483] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2786), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [58174] = 4, + ACTIONS(2906), 2, + anon_sym_LBRACE, + anon_sym_DASH_GT, + [59495] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2136), 1, - sym__name, - STATE(1167), 1, - sym_identifier, + ACTIONS(2908), 1, + anon_sym_fn, + ACTIONS(2910), 1, + anon_sym_type, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58188] = 4, + [59509] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2256), 1, - anon_sym_LPAREN, - STATE(1153), 1, - sym_anonymous_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58202] = 4, + ACTIONS(2813), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [59521] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2863), 1, - anon_sym_LBRACE, - ACTIONS(2865), 1, - anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58216] = 4, + ACTIONS(2912), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [59533] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2867), 1, - anon_sym_fn, - ACTIONS(2869), 1, - anon_sym_type, + ACTIONS(2184), 1, + sym__name, + STATE(1182), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58230] = 4, + [59547] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2871), 1, - anon_sym_LBRACE, - ACTIONS(2873), 1, - anon_sym_DASH_GT, + ACTIONS(2348), 1, + anon_sym_LPAREN, + STATE(1176), 1, + sym_anonymous_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58244] = 3, + [59561] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2875), 2, - anon_sym_LBRACE, - anon_sym_DASH_GT, - [58256] = 3, + ACTIONS(2914), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [59573] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2916), 1, + anon_sym_LBRACE, + ACTIONS(2918), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2877), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [58268] = 4, + [59587] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2879), 1, - anon_sym_LBRACE, - ACTIONS(2881), 1, - anon_sym_DASH_GT, + ACTIONS(2208), 1, + sym__name, + STATE(868), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58282] = 4, + [59601] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(61), 1, - sym__upname, - STATE(49), 1, - sym_constructor_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58296] = 3, + ACTIONS(2920), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [59613] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2883), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [58308] = 4, + ACTIONS(2922), 2, + anon_sym_LBRACE, + anon_sym_DASH_GT, + [59625] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2337), 1, - sym__name, - STATE(58), 1, - sym_label, + ACTIONS(2924), 1, + anon_sym_LBRACE, + ACTIONS(2926), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58322] = 3, + [59639] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2885), 2, - anon_sym_RBRACE, - sym__upname, - [58334] = 3, + ACTIONS(2912), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [59651] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2928), 1, + anon_sym_LBRACE, + ACTIONS(2930), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2887), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [58346] = 4, + [59665] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2889), 1, + ACTIONS(2932), 1, sym__name, - STATE(807), 1, + STATE(824), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58360] = 3, + [59679] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2760), 2, + ACTIONS(2920), 2, anon_sym_COMMA, anon_sym_RPAREN, - [58372] = 4, + [59691] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(316), 1, - sym__upname, - STATE(93), 1, - sym_constructor_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58386] = 3, + ACTIONS(2934), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [59703] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2892), 1, + sym__name, + STATE(449), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2891), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [58398] = 3, + [59717] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2893), 2, + ACTIONS(2936), 2, anon_sym_COMMA, anon_sym_RPAREN, - [58410] = 3, + [59729] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2938), 1, + anon_sym_LPAREN, + STATE(1230), 1, + sym_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2895), 2, - anon_sym_LBRACE, - anon_sym_DASH_GT, - [58422] = 3, + [59743] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2887), 2, + ACTIONS(2940), 2, anon_sym_COMMA, anon_sym_RPAREN, - [58434] = 3, + [59755] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2942), 1, + anon_sym_LBRACE, + STATE(843), 1, + sym_unqualified_imports, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2891), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [58446] = 4, + [59769] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2897), 1, + ACTIONS(2938), 1, anon_sym_LPAREN, - STATE(1207), 1, + STATE(1241), 1, sym_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58460] = 3, + [59783] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2307), 1, + sym__name, + STATE(135), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2532), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [58472] = 4, + [59797] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2897), 1, - anon_sym_LPAREN, - STATE(1219), 1, - sym_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58486] = 4, + ACTIONS(2474), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [59809] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2899), 1, + ACTIONS(2944), 1, anon_sym_LBRACE, - ACTIONS(2901), 1, + ACTIONS(2946), 1, anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58500] = 4, + [59823] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2903), 1, - anon_sym_LBRACE, - STATE(827), 1, - sym_unqualified_imports, + ACTIONS(2948), 1, + anon_sym_fn, + ACTIONS(2950), 1, + anon_sym_type, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58514] = 3, + [59837] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2905), 2, + ACTIONS(2762), 2, anon_sym_COMMA, anon_sym_RPAREN, - [58526] = 3, + [59849] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2907), 2, + ACTIONS(2952), 2, anon_sym_COMMA, anon_sym_RPAREN, - [58538] = 3, + [59861] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(647), 1, + anon_sym_DQUOTE, + STATE(845), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1756), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [58550] = 4, + [59875] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2258), 1, - sym__name, - STATE(133), 1, - sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58564] = 3, + ACTIONS(2954), 2, + anon_sym_RBRACE, + sym__upname, + [59887] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2723), 2, + ACTIONS(2956), 2, anon_sym_COMMA, anon_sym_RPAREN, - [58576] = 4, + [59899] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2909), 1, - anon_sym_COMMA, - ACTIONS(2911), 1, - anon_sym_RPAREN, + ACTIONS(51), 1, + anon_sym_DQUOTE, + STATE(499), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58590] = 3, + [59913] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2405), 1, + sym__name, + STATE(62), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2913), 2, - anon_sym_LBRACE, - anon_sym_DASH_GT, - [58602] = 4, + [59927] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2915), 1, - anon_sym_fn, - ACTIONS(2917), 1, - anon_sym_type, + ACTIONS(2958), 1, + anon_sym_DOT, + ACTIONS(2960), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58616] = 3, + [59941] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2919), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [58628] = 3, + ACTIONS(2962), 2, + anon_sym_RBRACE, + sym__upname, + [59953] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2964), 1, + anon_sym_LBRACE, + ACTIONS(2966), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2704), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [58640] = 4, + [59967] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(711), 1, - anon_sym_DQUOTE, - STATE(837), 1, - sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58654] = 4, + ACTIONS(2968), 2, + anon_sym_RBRACE, + sym__upname, + [59979] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2921), 1, - anon_sym_DOT, - ACTIONS(2923), 1, - anon_sym_COLON, + ACTIONS(366), 1, + anon_sym_DQUOTE, + STATE(1282), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58668] = 4, + [59993] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1872), 1, - sym__upname, - STATE(1128), 1, - sym_type_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58682] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2925), 1, + ACTIONS(2970), 2, anon_sym_LBRACE, - ACTIONS(2927), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [58696] = 4, + anon_sym_DASH_GT, + [60005] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(306), 1, - anon_sym_DQUOTE, - STATE(1255), 1, - sym_string, + ACTIONS(2184), 1, + sym__name, + STATE(1185), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58710] = 4, + [60019] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2929), 1, + ACTIONS(2972), 1, anon_sym_LPAREN, - STATE(144), 1, + STATE(139), 1, sym_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58724] = 3, + [60033] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2931), 2, + ACTIONS(2974), 2, anon_sym_LBRACE, anon_sym_DASH_GT, - [58736] = 3, + [60045] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2976), 1, + anon_sym_LPAREN, + STATE(403), 1, + sym_arguments, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [60059] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2933), 2, + ACTIONS(2884), 2, anon_sym_COMMA, anon_sym_RPAREN, - [58748] = 4, + [60071] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2935), 1, + ACTIONS(2978), 1, anon_sym_fn, - ACTIONS(2937), 1, + ACTIONS(2980), 1, anon_sym_type, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58762] = 4, + [60085] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2939), 1, - anon_sym_LBRACE, - ACTIONS(2941), 1, - anon_sym_EQ, + ACTIONS(1914), 1, + sym__upname, + STATE(1234), 1, + sym_type_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58776] = 3, + [60099] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2943), 2, - anon_sym_RBRACE, - sym__upname, - [58788] = 4, + ACTIONS(2982), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [60111] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(306), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - STATE(1292), 1, + STATE(1325), 1, sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58802] = 4, + [60125] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2945), 1, - anon_sym_LPAREN, - STATE(53), 1, - sym_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58816] = 4, + ACTIONS(2717), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [60137] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2947), 1, - anon_sym_LPAREN, - STATE(391), 1, - sym_arguments, + ACTIONS(659), 1, + sym__upname, + STATE(323), 1, + sym_constructor_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58830] = 4, + [60151] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2136), 1, + ACTIONS(2176), 1, sym__name, - STATE(1220), 1, - sym_identifier, + STATE(396), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58844] = 4, + [60165] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2136), 1, + ACTIONS(2184), 1, sym__name, - STATE(998), 1, + STATE(1232), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58858] = 3, + [60179] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2453), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [58870] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2136), 1, + ACTIONS(2184), 1, sym__name, - STATE(1142), 1, + STATE(1006), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58884] = 4, + [60193] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2169), 1, + ACTIONS(2184), 1, sym__name, - STATE(830), 1, + STATE(1234), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58898] = 4, + [60207] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2136), 1, - sym__name, - STATE(1169), 1, - sym_identifier, + ACTIONS(2984), 1, + anon_sym_LBRACE, + ACTIONS(2986), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58912] = 4, + [60221] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2132), 1, - sym__name, - STATE(389), 1, - sym_label, + ACTIONS(2890), 1, + anon_sym_LPAREN, + STATE(1297), 1, + sym_external_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58926] = 4, + [60235] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2949), 1, + ACTIONS(2988), 1, sym__name, - STATE(811), 1, + STATE(828), 1, sym_module, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58940] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2841), 1, - sym__name, - STATE(444), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [58954] = 4, + [60249] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2951), 1, + ACTIONS(2990), 1, anon_sym_LBRACE, - ACTIONS(2953), 1, - anon_sym_DASH_GT, + ACTIONS(2992), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58968] = 4, + [60263] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2843), 1, + ACTIONS(2994), 1, anon_sym_LPAREN, - STATE(1252), 1, - sym_external_function_parameters, + STATE(52), 1, + sym_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58982] = 4, + [60277] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2955), 1, - anon_sym_LBRACE, - ACTIONS(2957), 1, - anon_sym_DASH_GT, + ACTIONS(2184), 1, + sym__name, + STATE(1237), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [58996] = 3, + [60291] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2959), 2, + ACTIONS(2491), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [59008] = 4, + anon_sym_GT_GT, + [60303] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(951), 1, - sym__upname, - STATE(335), 1, - sym_constructor_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59022] = 4, + ACTIONS(2996), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [60315] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2256), 1, - anon_sym_LPAREN, - STATE(1170), 1, - sym_anonymous_function_parameters, + ACTIONS(2998), 1, + anon_sym_LBRACE, + ACTIONS(3000), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59036] = 3, + [60329] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2961), 2, + ACTIONS(2662), 2, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_GT_GT, - [59048] = 3, + [60341] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2348), 1, + anon_sym_LPAREN, + STATE(1188), 1, + sym_anonymous_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2963), 2, - anon_sym_LBRACE, - anon_sym_DASH_GT, - [59060] = 3, + [60355] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2965), 2, + ACTIONS(1796), 2, anon_sym_COMMA, - anon_sym_GT_GT, - [59072] = 3, + anon_sym_RPAREN, + [60367] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3002), 1, + anon_sym_LBRACE, + ACTIONS(3004), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2464), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [59084] = 3, + [60381] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1914), 1, + sym__upname, + STATE(794), 1, + sym_type_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2613), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [59096] = 4, + [60395] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1872), 1, - sym__upname, - STATE(784), 1, - sym_type_identifier, + ACTIONS(2938), 1, + anon_sym_LPAREN, + STATE(1242), 1, + sym_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59110] = 4, + [60409] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(306), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - STATE(1260), 1, + STATE(1288), 1, sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59124] = 3, + [60423] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2967), 2, + ACTIONS(3006), 2, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_RPAREN, - [59136] = 4, + [60435] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(927), 1, + sym__upname, + STATE(337), 1, + sym_constructor_name, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [60449] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2969), 1, - anon_sym_LBRACE, - ACTIONS(2971), 1, - anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59150] = 4, + ACTIONS(2660), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [60461] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2897), 1, + ACTIONS(2890), 1, anon_sym_LPAREN, - STATE(1141), 1, - sym_function_parameters, + STATE(1305), 1, + sym_external_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59164] = 3, + [60475] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2973), 2, - anon_sym_RBRACE, - sym__upname, - [59176] = 4, + ACTIONS(3008), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [60487] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2446), 1, - sym__name, - STATE(1160), 1, - sym_type_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59190] = 4, + ACTIONS(2548), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [60499] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2136), 1, - sym__name, - STATE(1103), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59204] = 4, + ACTIONS(2670), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [60511] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(306), 1, - anon_sym_DQUOTE, - STATE(1352), 1, - sym_string, + ACTIONS(3010), 1, + anon_sym_LBRACE, + ACTIONS(3012), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59218] = 3, + [60525] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3014), 1, + anon_sym_LBRACE, + ACTIONS(3016), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2481), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [59230] = 3, + [60539] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1231), 1, + sym__upname, + STATE(873), 1, + sym_constructor_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2975), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [59242] = 4, + [60553] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2977), 1, - anon_sym_fn, - ACTIONS(2979), 1, - anon_sym_type, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59256] = 3, + ACTIONS(3018), 2, + anon_sym_LBRACE, + anon_sym_DASH_GT, + [60565] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2981), 2, + ACTIONS(3020), 2, anon_sym_COMMA, anon_sym_RPAREN, - [59268] = 4, + [60577] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2136), 1, + ACTIONS(2184), 1, sym__name, - STATE(1070), 1, + STATE(1113), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59282] = 3, + [60591] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(366), 1, + anon_sym_DQUOTE, + STATE(1365), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2562), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [59294] = 4, + [60605] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(3022), 1, + anon_sym_LPAREN, + STATE(335), 1, + sym_arguments, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [60619] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2136), 1, - sym__name, - STATE(807), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59308] = 3, + ACTIONS(3024), 2, + anon_sym_LBRACE, + anon_sym_DASH_GT, + [60631] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2486), 2, + ACTIONS(3026), 2, anon_sym_COMMA, anon_sym_RPAREN, - [59320] = 3, + [60643] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2983), 2, + ACTIONS(2562), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [59332] = 4, + anon_sym_GT_GT, + [60655] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2985), 1, - anon_sym_LPAREN, - STATE(328), 1, - sym_arguments, + ACTIONS(2484), 1, + sym__name, + STATE(1165), 1, + sym_type_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59346] = 3, + [60669] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3028), 1, + anon_sym_fn, + ACTIONS(3030), 1, + anon_sym_type, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2983), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [59358] = 4, + [60683] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2169), 1, - sym__name, - STATE(854), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59372] = 3, + ACTIONS(2634), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [60695] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2545), 2, + ACTIONS(2643), 2, anon_sym_COMMA, anon_sym_RPAREN, - [59384] = 3, + [60707] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3032), 1, + sym__name, + STATE(344), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2987), 2, - anon_sym_RBRACE, - sym__upname, - [59396] = 3, + [60721] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2184), 1, + sym__name, + STATE(1079), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2505), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [59408] = 4, + [60735] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1219), 1, - sym__upname, - STATE(853), 1, - sym_constructor_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59422] = 4, + ACTIONS(3034), 2, + anon_sym_RBRACE, + sym__upname, + [60747] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2989), 1, - sym__name, - STATE(323), 1, - sym_label, + ACTIONS(2025), 1, + sym__upname, + STATE(415), 1, + sym_type_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59436] = 3, + [60761] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3036), 1, + anon_sym_COMMA, + ACTIONS(3038), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2991), 2, - anon_sym_RBRACE, - sym__upname, - [59448] = 4, + [60775] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(51), 1, - anon_sym_DQUOTE, - STATE(463), 1, - sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59462] = 4, + ACTIONS(3040), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [60787] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2136), 1, + ACTIONS(2208), 1, sym__name, - STATE(1128), 1, + STATE(867), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59476] = 4, + [60801] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2993), 1, - anon_sym_LBRACE, - ACTIONS(2995), 1, - anon_sym_EQ, + ACTIONS(2184), 1, + sym__name, + STATE(824), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59490] = 4, + [60815] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(723), 1, - sym__upname, - STATE(316), 1, - sym_constructor_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59504] = 4, + ACTIONS(2557), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [60827] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2997), 1, + ACTIONS(3042), 1, anon_sym_LBRACE, - ACTIONS(2999), 1, + ACTIONS(3044), 1, anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59518] = 4, + [60841] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2897), 1, - anon_sym_LPAREN, - STATE(1205), 1, - sym_function_parameters, + ACTIONS(3046), 1, + anon_sym_LBRACE, + ACTIONS(3048), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59532] = 4, + [60855] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2136), 1, - sym__name, - STATE(1206), 1, - sym_identifier, + ACTIONS(376), 1, + sym__upname, + STATE(113), 1, + sym_constructor_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59546] = 3, + [60869] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2184), 1, + sym__name, + STATE(1219), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1762), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [59558] = 3, + [60883] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2938), 1, + anon_sym_LPAREN, + STATE(1218), 1, + sym_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2516), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [59570] = 3, + [60897] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3001), 1, - anon_sym_DASH_GT, + ACTIONS(3050), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59581] = 3, + [60908] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3003), 1, + ACTIONS(3052), 1, anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59592] = 3, + [60919] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3005), 1, + ACTIONS(3054), 1, anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59603] = 3, + [60930] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3007), 1, - anon_sym_RPAREN, + ACTIONS(3056), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59614] = 3, + [60941] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3009), 1, + ACTIONS(3058), 1, anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59625] = 3, + [60952] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3011), 1, - anon_sym_COLON, + ACTIONS(1233), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59636] = 3, + [60963] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3013), 1, - anon_sym_RBRACE, + ACTIONS(3060), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59647] = 3, + [60974] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2921), 1, - anon_sym_DOT, + ACTIONS(3062), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59658] = 3, + [60985] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3015), 1, - anon_sym_RPAREN, + ACTIONS(3064), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59669] = 3, + [60996] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3017), 1, - anon_sym_LPAREN, + ACTIONS(3066), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59680] = 3, + [61007] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3019), 1, + ACTIONS(3068), 1, anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59691] = 3, + [61018] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3021), 1, - anon_sym_EQ, + ACTIONS(3070), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59702] = 3, + [61029] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3023), 1, - anon_sym_RBRACE, + ACTIONS(3072), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59713] = 3, + [61040] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3025), 1, - anon_sym_DASH_GT, + ACTIONS(3074), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59724] = 3, + [61051] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3027), 1, - anon_sym_RPAREN, + ACTIONS(2958), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59735] = 3, + [61062] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3029), 1, - anon_sym_LPAREN, + ACTIONS(3076), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59746] = 3, + [61073] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2246), 1, - anon_sym_RPAREN, + ACTIONS(3078), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59757] = 3, + [61084] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3031), 1, - anon_sym_COLON, + ACTIONS(3080), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59768] = 3, + [61095] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3033), 1, - anon_sym_DOT, + ACTIONS(3082), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59779] = 3, + [61106] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3035), 1, - anon_sym_LBRACE, + ACTIONS(3084), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59790] = 3, + [61117] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3037), 1, + ACTIONS(3086), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59801] = 3, + [61128] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3039), 1, - anon_sym_EQ, + ACTIONS(3088), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59812] = 3, + [61139] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3041), 1, + ACTIONS(3090), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59823] = 3, + [61150] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3043), 1, - anon_sym_LPAREN, + ACTIONS(2231), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59834] = 3, + [61161] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3045), 1, - anon_sym_RPAREN, + ACTIONS(3092), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59845] = 3, + [61172] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3047), 1, + ACTIONS(3094), 1, anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59856] = 3, + [61183] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3049), 1, - anon_sym_EQ, + ACTIONS(3096), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [61194] = 3, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(3098), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59867] = 3, + [61205] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3051), 1, + ACTIONS(3100), 1, anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59878] = 3, + [61216] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3053), 1, + ACTIONS(3102), 1, anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59889] = 3, + [61227] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3055), 1, - anon_sym_DASH_GT, + ACTIONS(3104), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59900] = 3, + [61238] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3057), 1, - anon_sym_RPAREN, + ACTIONS(3106), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59911] = 3, + [61249] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3059), 1, - anon_sym_RPAREN, + ACTIONS(3108), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59922] = 3, + [61260] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1205), 1, - anon_sym_RPAREN, + ACTIONS(3110), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59933] = 3, + [61271] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3061), 1, + ACTIONS(3112), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59944] = 3, + [61282] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3063), 1, + ACTIONS(3114), 1, anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59955] = 3, + [61293] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3065), 1, - anon_sym_RBRACE, + ACTIONS(3116), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59966] = 3, + [61304] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3067), 1, - anon_sym_DOT, + ACTIONS(3118), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59977] = 3, + [61315] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3069), 1, - anon_sym_LBRACE, + ACTIONS(3120), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59988] = 3, + [61326] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3071), 1, - anon_sym_EQ, + ACTIONS(3122), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [59999] = 3, + [61337] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3073), 1, - anon_sym_LPAREN, + ACTIONS(3124), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60010] = 3, + [61348] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3075), 1, - anon_sym_RPAREN, + ACTIONS(3126), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60021] = 3, + [61359] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3077), 1, + ACTIONS(3128), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60032] = 3, + [61370] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3079), 1, - anon_sym_LPAREN, + ACTIONS(3130), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60043] = 3, + [61381] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3081), 1, - anon_sym_DASH_GT, + ACTIONS(3132), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60054] = 3, + [61392] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3083), 1, - anon_sym_RBRACK, + ACTIONS(3134), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60065] = 3, + [61403] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3085), 1, - anon_sym_LBRACE, + ACTIONS(3136), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60076] = 3, + [61414] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3087), 1, - anon_sym_LBRACE, + ACTIONS(3138), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60087] = 3, + [61425] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3089), 1, - anon_sym_LBRACE, + ACTIONS(3140), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60098] = 3, + [61436] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3091), 1, + ACTIONS(3142), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60109] = 3, + [61447] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3093), 1, - anon_sym_LPAREN, + ACTIONS(3144), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60120] = 3, + [61458] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3095), 1, + ACTIONS(3146), 1, anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60131] = 3, + [61469] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3097), 1, - anon_sym_DASH_GT, + ACTIONS(3148), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60142] = 3, + [61480] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3099), 1, + ACTIONS(3150), 1, anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60153] = 3, + [61491] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3101), 1, + ACTIONS(3152), 1, anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60164] = 3, + [61502] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3103), 1, + ACTIONS(3154), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60175] = 3, + [61513] = 3, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(3156), 1, + anon_sym_LPAREN, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [61524] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3105), 1, + ACTIONS(3158), 1, anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60186] = 3, + [61535] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3107), 1, - anon_sym_LPAREN, + ACTIONS(3160), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60197] = 3, + [61546] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3109), 1, - anon_sym_DOT, + ACTIONS(3162), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60208] = 3, + [61557] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3111), 1, + ACTIONS(3164), 1, anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60219] = 3, + [61568] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3113), 1, - anon_sym_EQ, + ACTIONS(3166), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60230] = 3, + [61579] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3115), 1, - ts_builtin_sym_end, + ACTIONS(3168), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60241] = 3, + [61590] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3117), 1, + ACTIONS(3170), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60252] = 3, + [61601] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3119), 1, - anon_sym_DASH_GT, + ACTIONS(3172), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60263] = 3, + [61612] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3121), 1, - anon_sym_DOT, + ACTIONS(3174), 1, + ts_builtin_sym_end, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60274] = 3, + [61623] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3123), 1, - anon_sym_RBRACE, + ACTIONS(3176), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60285] = 3, + [61634] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3125), 1, - anon_sym_LPAREN, + ACTIONS(3178), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60296] = 3, + [61645] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2232), 1, + ACTIONS(2239), 1, anon_sym_type, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60307] = 3, + [61656] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3127), 1, + ACTIONS(3180), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60318] = 3, + [61667] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3129), 1, + ACTIONS(3182), 1, anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60329] = 3, + [61678] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3131), 1, + ACTIONS(3184), 1, anon_sym_type, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60340] = 3, + [61689] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3133), 1, - anon_sym_DOT, + ACTIONS(3186), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60351] = 3, + [61700] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3135), 1, - anon_sym_DASH_GT, + ACTIONS(3188), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60362] = 3, + [61711] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3137), 1, - sym__name, + ACTIONS(3190), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60373] = 3, + [61722] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3139), 1, + ACTIONS(3192), 1, anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60384] = 3, + [61733] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3141), 1, - anon_sym_LBRACE, + ACTIONS(3194), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60395] = 3, + [61744] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3143), 1, - anon_sym_DASH_GT, + ACTIONS(3196), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60406] = 3, + [61755] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3145), 1, + ACTIONS(3198), 1, anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60417] = 3, + [61766] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2196), 1, + ACTIONS(2282), 1, anon_sym_type, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60428] = 3, + [61777] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3147), 1, - anon_sym_EQ, + ACTIONS(3200), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60439] = 3, + [61788] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3149), 1, - anon_sym_LPAREN, + ACTIONS(3202), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60450] = 3, + [61799] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3151), 1, + ACTIONS(3204), 1, anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60461] = 3, + [61810] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3153), 1, + ACTIONS(3206), 1, anon_sym_type, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60472] = 3, + [61821] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3155), 1, - anon_sym_LPAREN, + ACTIONS(3208), 1, + sym__name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60483] = 3, + [61832] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3157), 1, + ACTIONS(3210), 1, anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60494] = 3, + [61843] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3159), 1, + ACTIONS(3212), 1, anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60505] = 3, + [61854] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3161), 1, - anon_sym_RBRACK, + ACTIONS(3214), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60516] = 3, + [61865] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3163), 1, + ACTIONS(3216), 1, anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60527] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(3165), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [60538] = 3, + [61876] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3167), 1, + ACTIONS(1342), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60549] = 3, + [61887] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3169), 1, - anon_sym_RBRACE, + ACTIONS(3218), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60560] = 3, + [61898] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3171), 1, - anon_sym_EQ, + ACTIONS(3220), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60571] = 3, + [61909] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3173), 1, + ACTIONS(3222), 1, anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60582] = 3, + [61920] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3175), 1, + ACTIONS(3224), 1, anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60593] = 3, + [61931] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3177), 1, + ACTIONS(3226), 1, anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60604] = 3, + [61942] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3179), 1, - anon_sym_RBRACK, + ACTIONS(3228), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60615] = 3, + [61953] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3181), 1, + ACTIONS(3230), 1, anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60626] = 3, + [61964] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3183), 1, + ACTIONS(3232), 1, anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60637] = 3, + [61975] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3185), 1, - anon_sym_DASH_GT, + ACTIONS(3234), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60648] = 3, + [61986] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3187), 1, - anon_sym_LPAREN, + ACTIONS(3236), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60659] = 3, + [61997] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3189), 1, - anon_sym_COLON, + ACTIONS(3238), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60670] = 3, + [62008] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3191), 1, + ACTIONS(3240), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60681] = 3, + [62019] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3193), 1, + ACTIONS(3242), 1, anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60692] = 3, + [62030] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1189), 1, - anon_sym_RPAREN, + ACTIONS(3244), 1, + sym__name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60703] = 3, + [62041] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3195), 1, + ACTIONS(3246), 1, anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60714] = 3, + [62052] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3197), 1, + ACTIONS(3248), 1, anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60725] = 3, + [62063] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3199), 1, - sym__name, + ACTIONS(3250), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60736] = 3, + [62074] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3201), 1, - anon_sym_RBRACE, + ACTIONS(3252), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60747] = 3, + [62085] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3203), 1, + ACTIONS(3254), 1, anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60758] = 3, + [62096] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3205), 1, - anon_sym_RBRACE, + ACTIONS(3256), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60769] = 3, + [62107] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3207), 1, - anon_sym_RPAREN, + ACTIONS(3258), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60780] = 3, + [62118] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3209), 1, - anon_sym_RBRACE, + ACTIONS(3260), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60791] = 3, + [62129] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3211), 1, - anon_sym_DASH_GT, + ACTIONS(3262), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60802] = 3, + [62140] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3213), 1, - anon_sym_DASH_GT, + ACTIONS(3264), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60813] = 3, + [62151] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3215), 1, - anon_sym_RBRACE, + ACTIONS(3266), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60824] = 3, + [62162] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3217), 1, - anon_sym_RBRACK, + ACTIONS(3268), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60835] = 3, + [62173] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3219), 1, - anon_sym_EQ, + ACTIONS(3270), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [60846] = 3, + [62184] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(3221), 1, - anon_sym_LBRACE, + ACTIONS(3272), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, @@ -54723,1368 +55903,1387 @@ static const uint16_t ts_small_parse_table[] = { static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(6)] = 0, - [SMALL_STATE(7)] = 129, - [SMALL_STATE(8)] = 258, - [SMALL_STATE(9)] = 387, - [SMALL_STATE(10)] = 516, - [SMALL_STATE(11)] = 645, - [SMALL_STATE(12)] = 774, - [SMALL_STATE(13)] = 903, - [SMALL_STATE(14)] = 1032, - [SMALL_STATE(15)] = 1161, - [SMALL_STATE(16)] = 1290, - [SMALL_STATE(17)] = 1419, - [SMALL_STATE(18)] = 1548, - [SMALL_STATE(19)] = 1677, - [SMALL_STATE(20)] = 1806, - [SMALL_STATE(21)] = 1935, - [SMALL_STATE(22)] = 2064, - [SMALL_STATE(23)] = 2193, - [SMALL_STATE(24)] = 2322, - [SMALL_STATE(25)] = 2451, - [SMALL_STATE(26)] = 2580, - [SMALL_STATE(27)] = 2709, - [SMALL_STATE(28)] = 2838, - [SMALL_STATE(29)] = 2967, - [SMALL_STATE(30)] = 3038, - [SMALL_STATE(31)] = 3167, - [SMALL_STATE(32)] = 3296, - [SMALL_STATE(33)] = 3425, - [SMALL_STATE(34)] = 3554, - [SMALL_STATE(35)] = 3683, - [SMALL_STATE(36)] = 3812, - [SMALL_STATE(37)] = 3938, - [SMALL_STATE(38)] = 4064, - [SMALL_STATE(39)] = 4130, - [SMALL_STATE(40)] = 4196, - [SMALL_STATE(41)] = 4262, - [SMALL_STATE(42)] = 4388, - [SMALL_STATE(43)] = 4454, - [SMALL_STATE(44)] = 4580, - [SMALL_STATE(45)] = 4646, - [SMALL_STATE(46)] = 4712, - [SMALL_STATE(47)] = 4838, - [SMALL_STATE(48)] = 4904, - [SMALL_STATE(49)] = 4970, - [SMALL_STATE(50)] = 5036, - [SMALL_STATE(51)] = 5106, - [SMALL_STATE(52)] = 5232, - [SMALL_STATE(53)] = 5358, - [SMALL_STATE(54)] = 5424, - [SMALL_STATE(55)] = 5490, - [SMALL_STATE(56)] = 5616, - [SMALL_STATE(57)] = 5742, - [SMALL_STATE(58)] = 5868, - [SMALL_STATE(59)] = 5934, - [SMALL_STATE(60)] = 6060, - [SMALL_STATE(61)] = 6126, - [SMALL_STATE(62)] = 6192, - [SMALL_STATE(63)] = 6258, - [SMALL_STATE(64)] = 6384, - [SMALL_STATE(65)] = 6454, - [SMALL_STATE(66)] = 6520, - [SMALL_STATE(67)] = 6587, - [SMALL_STATE(68)] = 6652, - [SMALL_STATE(69)] = 6717, - [SMALL_STATE(70)] = 6782, - [SMALL_STATE(71)] = 6847, - [SMALL_STATE(72)] = 6914, - [SMALL_STATE(73)] = 6979, - [SMALL_STATE(74)] = 7044, - [SMALL_STATE(75)] = 7111, - [SMALL_STATE(76)] = 7176, - [SMALL_STATE(77)] = 7243, - [SMALL_STATE(78)] = 7308, - [SMALL_STATE(79)] = 7390, - [SMALL_STATE(80)] = 7474, - [SMALL_STATE(81)] = 7538, - [SMALL_STATE(82)] = 7622, - [SMALL_STATE(83)] = 7702, - [SMALL_STATE(84)] = 7766, - [SMALL_STATE(85)] = 7844, - [SMALL_STATE(86)] = 7908, - [SMALL_STATE(87)] = 7982, - [SMALL_STATE(88)] = 8046, - [SMALL_STATE(89)] = 8110, - [SMALL_STATE(90)] = 8182, - [SMALL_STATE(91)] = 8246, - [SMALL_STATE(92)] = 8310, - [SMALL_STATE(93)] = 8374, - [SMALL_STATE(94)] = 8438, - [SMALL_STATE(95)] = 8522, - [SMALL_STATE(96)] = 8586, - [SMALL_STATE(97)] = 8670, - [SMALL_STATE(98)] = 8754, - [SMALL_STATE(99)] = 8838, - [SMALL_STATE(100)] = 8902, - [SMALL_STATE(101)] = 8966, - [SMALL_STATE(102)] = 9050, - [SMALL_STATE(103)] = 9134, - [SMALL_STATE(104)] = 9198, - [SMALL_STATE(105)] = 9266, - [SMALL_STATE(106)] = 9330, - [SMALL_STATE(107)] = 9394, - [SMALL_STATE(108)] = 9458, - [SMALL_STATE(109)] = 9522, - [SMALL_STATE(110)] = 9586, - [SMALL_STATE(111)] = 9650, - [SMALL_STATE(112)] = 9714, - [SMALL_STATE(113)] = 9778, - [SMALL_STATE(114)] = 9862, - [SMALL_STATE(115)] = 9926, - [SMALL_STATE(116)] = 9990, - [SMALL_STATE(117)] = 10074, - [SMALL_STATE(118)] = 10199, - [SMALL_STATE(119)] = 10324, - [SMALL_STATE(120)] = 10391, - [SMALL_STATE(121)] = 10516, - [SMALL_STATE(122)] = 10641, - [SMALL_STATE(123)] = 10763, - [SMALL_STATE(124)] = 10825, - [SMALL_STATE(125)] = 10947, - [SMALL_STATE(126)] = 11069, - [SMALL_STATE(127)] = 11191, - [SMALL_STATE(128)] = 11313, - [SMALL_STATE(129)] = 11375, - [SMALL_STATE(130)] = 11497, - [SMALL_STATE(131)] = 11559, - [SMALL_STATE(132)] = 11681, - [SMALL_STATE(133)] = 11803, - [SMALL_STATE(134)] = 11865, - [SMALL_STATE(135)] = 11927, - [SMALL_STATE(136)] = 12049, - [SMALL_STATE(137)] = 12111, - [SMALL_STATE(138)] = 12173, - [SMALL_STATE(139)] = 12239, - [SMALL_STATE(140)] = 12301, - [SMALL_STATE(141)] = 12367, - [SMALL_STATE(142)] = 12489, - [SMALL_STATE(143)] = 12551, - [SMALL_STATE(144)] = 12613, - [SMALL_STATE(145)] = 12675, - [SMALL_STATE(146)] = 12797, - [SMALL_STATE(147)] = 12919, - [SMALL_STATE(148)] = 12982, - [SMALL_STATE(149)] = 13043, - [SMALL_STATE(150)] = 13104, - [SMALL_STATE(151)] = 13165, - [SMALL_STATE(152)] = 13226, - [SMALL_STATE(153)] = 13345, - [SMALL_STATE(154)] = 13406, - [SMALL_STATE(155)] = 13467, - [SMALL_STATE(156)] = 13530, - [SMALL_STATE(157)] = 13591, - [SMALL_STATE(158)] = 13654, - [SMALL_STATE(159)] = 13717, - [SMALL_STATE(160)] = 13778, - [SMALL_STATE(161)] = 13838, - [SMALL_STATE(162)] = 13898, - [SMALL_STATE(163)] = 13958, - [SMALL_STATE(164)] = 14018, - [SMALL_STATE(165)] = 14078, - [SMALL_STATE(166)] = 14138, - [SMALL_STATE(167)] = 14198, - [SMALL_STATE(168)] = 14258, - [SMALL_STATE(169)] = 14318, - [SMALL_STATE(170)] = 14378, - [SMALL_STATE(171)] = 14438, - [SMALL_STATE(172)] = 14498, - [SMALL_STATE(173)] = 14558, - [SMALL_STATE(174)] = 14618, - [SMALL_STATE(175)] = 14678, - [SMALL_STATE(176)] = 14791, - [SMALL_STATE(177)] = 14904, - [SMALL_STATE(178)] = 15017, - [SMALL_STATE(179)] = 15130, - [SMALL_STATE(180)] = 15243, - [SMALL_STATE(181)] = 15356, - [SMALL_STATE(182)] = 15469, - [SMALL_STATE(183)] = 15582, - [SMALL_STATE(184)] = 15695, - [SMALL_STATE(185)] = 15805, - [SMALL_STATE(186)] = 15915, - [SMALL_STATE(187)] = 16025, - [SMALL_STATE(188)] = 16135, - [SMALL_STATE(189)] = 16245, - [SMALL_STATE(190)] = 16355, - [SMALL_STATE(191)] = 16465, - [SMALL_STATE(192)] = 16575, - [SMALL_STATE(193)] = 16685, - [SMALL_STATE(194)] = 16795, - [SMALL_STATE(195)] = 16905, - [SMALL_STATE(196)] = 17015, - [SMALL_STATE(197)] = 17125, - [SMALL_STATE(198)] = 17235, - [SMALL_STATE(199)] = 17345, - [SMALL_STATE(200)] = 17455, - [SMALL_STATE(201)] = 17565, - [SMALL_STATE(202)] = 17675, - [SMALL_STATE(203)] = 17785, - [SMALL_STATE(204)] = 17895, - [SMALL_STATE(205)] = 17956, - [SMALL_STATE(206)] = 18063, - [SMALL_STATE(207)] = 18170, - [SMALL_STATE(208)] = 18277, - [SMALL_STATE(209)] = 18384, - [SMALL_STATE(210)] = 18491, - [SMALL_STATE(211)] = 18598, - [SMALL_STATE(212)] = 18705, - [SMALL_STATE(213)] = 18812, - [SMALL_STATE(214)] = 18919, - [SMALL_STATE(215)] = 19030, - [SMALL_STATE(216)] = 19137, - [SMALL_STATE(217)] = 19244, - [SMALL_STATE(218)] = 19351, - [SMALL_STATE(219)] = 19458, - [SMALL_STATE(220)] = 19535, - [SMALL_STATE(221)] = 19642, - [SMALL_STATE(222)] = 19749, - [SMALL_STATE(223)] = 19856, - [SMALL_STATE(224)] = 19933, - [SMALL_STATE(225)] = 20040, - [SMALL_STATE(226)] = 20117, - [SMALL_STATE(227)] = 20194, - [SMALL_STATE(228)] = 20301, - [SMALL_STATE(229)] = 20378, - [SMALL_STATE(230)] = 20485, - [SMALL_STATE(231)] = 20592, - [SMALL_STATE(232)] = 20703, - [SMALL_STATE(233)] = 20810, - [SMALL_STATE(234)] = 20917, - [SMALL_STATE(235)] = 21024, - [SMALL_STATE(236)] = 21131, - [SMALL_STATE(237)] = 21238, - [SMALL_STATE(238)] = 21345, - [SMALL_STATE(239)] = 21452, - [SMALL_STATE(240)] = 21529, - [SMALL_STATE(241)] = 21636, - [SMALL_STATE(242)] = 21743, - [SMALL_STATE(243)] = 21820, - [SMALL_STATE(244)] = 21927, - [SMALL_STATE(245)] = 22034, - [SMALL_STATE(246)] = 22111, - [SMALL_STATE(247)] = 22218, - [SMALL_STATE(248)] = 22329, - [SMALL_STATE(249)] = 22436, - [SMALL_STATE(250)] = 22543, - [SMALL_STATE(251)] = 22650, - [SMALL_STATE(252)] = 22757, - [SMALL_STATE(253)] = 22864, - [SMALL_STATE(254)] = 22971, - [SMALL_STATE(255)] = 23078, - [SMALL_STATE(256)] = 23143, - [SMALL_STATE(257)] = 23210, - [SMALL_STATE(258)] = 23281, - [SMALL_STATE(259)] = 23354, - [SMALL_STATE(260)] = 23429, - [SMALL_STATE(261)] = 23536, - [SMALL_STATE(262)] = 23593, - [SMALL_STATE(263)] = 23700, - [SMALL_STATE(264)] = 23807, - [SMALL_STATE(265)] = 23884, - [SMALL_STATE(266)] = 23991, - [SMALL_STATE(267)] = 24098, - [SMALL_STATE(268)] = 24209, - [SMALL_STATE(269)] = 24316, - [SMALL_STATE(270)] = 24427, - [SMALL_STATE(271)] = 24538, - [SMALL_STATE(272)] = 24649, - [SMALL_STATE(273)] = 24756, - [SMALL_STATE(274)] = 24863, - [SMALL_STATE(275)] = 24970, - [SMALL_STATE(276)] = 25077, - [SMALL_STATE(277)] = 25184, - [SMALL_STATE(278)] = 25291, - [SMALL_STATE(279)] = 25398, - [SMALL_STATE(280)] = 25505, - [SMALL_STATE(281)] = 25612, - [SMALL_STATE(282)] = 25719, - [SMALL_STATE(283)] = 25826, - [SMALL_STATE(284)] = 25933, - [SMALL_STATE(285)] = 26044, - [SMALL_STATE(286)] = 26151, - [SMALL_STATE(287)] = 26258, - [SMALL_STATE(288)] = 26365, - [SMALL_STATE(289)] = 26472, - [SMALL_STATE(290)] = 26579, - [SMALL_STATE(291)] = 26686, - [SMALL_STATE(292)] = 26793, - [SMALL_STATE(293)] = 26900, - [SMALL_STATE(294)] = 27007, - [SMALL_STATE(295)] = 27114, - [SMALL_STATE(296)] = 27221, - [SMALL_STATE(297)] = 27328, - [SMALL_STATE(298)] = 27435, - [SMALL_STATE(299)] = 27546, - [SMALL_STATE(300)] = 27653, - [SMALL_STATE(301)] = 27760, - [SMALL_STATE(302)] = 27871, - [SMALL_STATE(303)] = 27982, - [SMALL_STATE(304)] = 28059, - [SMALL_STATE(305)] = 28170, - [SMALL_STATE(306)] = 28277, - [SMALL_STATE(307)] = 28385, - [SMALL_STATE(308)] = 28490, - [SMALL_STATE(309)] = 28595, - [SMALL_STATE(310)] = 28700, - [SMALL_STATE(311)] = 28805, - [SMALL_STATE(312)] = 28910, - [SMALL_STATE(313)] = 28964, - [SMALL_STATE(314)] = 29018, - [SMALL_STATE(315)] = 29072, - [SMALL_STATE(316)] = 29126, - [SMALL_STATE(317)] = 29180, - [SMALL_STATE(318)] = 29232, - [SMALL_STATE(319)] = 29284, - [SMALL_STATE(320)] = 29336, - [SMALL_STATE(321)] = 29391, - [SMALL_STATE(322)] = 29441, - [SMALL_STATE(323)] = 29491, - [SMALL_STATE(324)] = 29541, - [SMALL_STATE(325)] = 29591, - [SMALL_STATE(326)] = 29641, - [SMALL_STATE(327)] = 29691, - [SMALL_STATE(328)] = 29741, - [SMALL_STATE(329)] = 29791, - [SMALL_STATE(330)] = 29841, - [SMALL_STATE(331)] = 29895, - [SMALL_STATE(332)] = 29949, - [SMALL_STATE(333)] = 29999, - [SMALL_STATE(334)] = 30049, - [SMALL_STATE(335)] = 30099, - [SMALL_STATE(336)] = 30149, - [SMALL_STATE(337)] = 30199, - [SMALL_STATE(338)] = 30249, - [SMALL_STATE(339)] = 30300, - [SMALL_STATE(340)] = 30349, - [SMALL_STATE(341)] = 30398, - [SMALL_STATE(342)] = 30447, - [SMALL_STATE(343)] = 30496, - [SMALL_STATE(344)] = 30545, - [SMALL_STATE(345)] = 30596, - [SMALL_STATE(346)] = 30645, - [SMALL_STATE(347)] = 30694, - [SMALL_STATE(348)] = 30745, - [SMALL_STATE(349)] = 30796, - [SMALL_STATE(350)] = 30845, - [SMALL_STATE(351)] = 30893, - [SMALL_STATE(352)] = 30941, - [SMALL_STATE(353)] = 30989, - [SMALL_STATE(354)] = 31037, - [SMALL_STATE(355)] = 31085, - [SMALL_STATE(356)] = 31133, - [SMALL_STATE(357)] = 31181, - [SMALL_STATE(358)] = 31229, - [SMALL_STATE(359)] = 31277, - [SMALL_STATE(360)] = 31345, - [SMALL_STATE(361)] = 31397, - [SMALL_STATE(362)] = 31463, - [SMALL_STATE(363)] = 31527, - [SMALL_STATE(364)] = 31575, - [SMALL_STATE(365)] = 31637, - [SMALL_STATE(366)] = 31695, - [SMALL_STATE(367)] = 31743, - [SMALL_STATE(368)] = 31799, - [SMALL_STATE(369)] = 31847, - [SMALL_STATE(370)] = 31895, - [SMALL_STATE(371)] = 31963, - [SMALL_STATE(372)] = 32011, - [SMALL_STATE(373)] = 32059, - [SMALL_STATE(374)] = 32107, - [SMALL_STATE(375)] = 32155, - [SMALL_STATE(376)] = 32223, - [SMALL_STATE(377)] = 32271, - [SMALL_STATE(378)] = 32339, - [SMALL_STATE(379)] = 32389, - [SMALL_STATE(380)] = 32439, - [SMALL_STATE(381)] = 32489, - [SMALL_STATE(382)] = 32538, - [SMALL_STATE(383)] = 32583, - [SMALL_STATE(384)] = 32631, - [SMALL_STATE(385)] = 32675, - [SMALL_STATE(386)] = 32723, - [SMALL_STATE(387)] = 32767, - [SMALL_STATE(388)] = 32811, - [SMALL_STATE(389)] = 32855, - [SMALL_STATE(390)] = 32899, - [SMALL_STATE(391)] = 32947, - [SMALL_STATE(392)] = 32991, - [SMALL_STATE(393)] = 33039, - [SMALL_STATE(394)] = 33083, - [SMALL_STATE(395)] = 33127, - [SMALL_STATE(396)] = 33171, - [SMALL_STATE(397)] = 33219, - [SMALL_STATE(398)] = 33267, - [SMALL_STATE(399)] = 33348, - [SMALL_STATE(400)] = 33429, - [SMALL_STATE(401)] = 33472, - [SMALL_STATE(402)] = 33517, - [SMALL_STATE(403)] = 33560, - [SMALL_STATE(404)] = 33605, - [SMALL_STATE(405)] = 33686, - [SMALL_STATE(406)] = 33765, - [SMALL_STATE(407)] = 33808, - [SMALL_STATE(408)] = 33853, - [SMALL_STATE(409)] = 33898, - [SMALL_STATE(410)] = 33977, - [SMALL_STATE(411)] = 34022, - [SMALL_STATE(412)] = 34079, - [SMALL_STATE(413)] = 34136, - [SMALL_STATE(414)] = 34181, - [SMALL_STATE(415)] = 34224, - [SMALL_STATE(416)] = 34303, - [SMALL_STATE(417)] = 34360, - [SMALL_STATE(418)] = 34439, - [SMALL_STATE(419)] = 34482, - [SMALL_STATE(420)] = 34527, - [SMALL_STATE(421)] = 34570, - [SMALL_STATE(422)] = 34613, - [SMALL_STATE(423)] = 34670, - [SMALL_STATE(424)] = 34727, - [SMALL_STATE(425)] = 34770, - [SMALL_STATE(426)] = 34813, - [SMALL_STATE(427)] = 34870, - [SMALL_STATE(428)] = 34949, - [SMALL_STATE(429)] = 34992, - [SMALL_STATE(430)] = 35071, - [SMALL_STATE(431)] = 35114, - [SMALL_STATE(432)] = 35157, - [SMALL_STATE(433)] = 35200, - [SMALL_STATE(434)] = 35243, - [SMALL_STATE(435)] = 35285, - [SMALL_STATE(436)] = 35331, - [SMALL_STATE(437)] = 35373, - [SMALL_STATE(438)] = 35415, - [SMALL_STATE(439)] = 35475, - [SMALL_STATE(440)] = 35517, - [SMALL_STATE(441)] = 35559, - [SMALL_STATE(442)] = 35601, - [SMALL_STATE(443)] = 35661, - [SMALL_STATE(444)] = 35703, - [SMALL_STATE(445)] = 35745, - [SMALL_STATE(446)] = 35787, - [SMALL_STATE(447)] = 35829, - [SMALL_STATE(448)] = 35885, - [SMALL_STATE(449)] = 35927, - [SMALL_STATE(450)] = 35969, - [SMALL_STATE(451)] = 36025, - [SMALL_STATE(452)] = 36067, - [SMALL_STATE(453)] = 36109, - [SMALL_STATE(454)] = 36151, - [SMALL_STATE(455)] = 36193, - [SMALL_STATE(456)] = 36235, - [SMALL_STATE(457)] = 36277, - [SMALL_STATE(458)] = 36319, - [SMALL_STATE(459)] = 36361, - [SMALL_STATE(460)] = 36403, - [SMALL_STATE(461)] = 36445, - [SMALL_STATE(462)] = 36487, - [SMALL_STATE(463)] = 36529, - [SMALL_STATE(464)] = 36571, - [SMALL_STATE(465)] = 36613, - [SMALL_STATE(466)] = 36655, - [SMALL_STATE(467)] = 36697, - [SMALL_STATE(468)] = 36739, - [SMALL_STATE(469)] = 36781, - [SMALL_STATE(470)] = 36823, - [SMALL_STATE(471)] = 36865, - [SMALL_STATE(472)] = 36921, - [SMALL_STATE(473)] = 36963, - [SMALL_STATE(474)] = 37005, - [SMALL_STATE(475)] = 37055, - [SMALL_STATE(476)] = 37097, - [SMALL_STATE(477)] = 37139, - [SMALL_STATE(478)] = 37191, - [SMALL_STATE(479)] = 37233, - [SMALL_STATE(480)] = 37287, - [SMALL_STATE(481)] = 37329, - [SMALL_STATE(482)] = 37371, - [SMALL_STATE(483)] = 37427, - [SMALL_STATE(484)] = 37485, - [SMALL_STATE(485)] = 37527, - [SMALL_STATE(486)] = 37569, - [SMALL_STATE(487)] = 37611, - [SMALL_STATE(488)] = 37653, - [SMALL_STATE(489)] = 37695, - [SMALL_STATE(490)] = 37737, - [SMALL_STATE(491)] = 37779, - [SMALL_STATE(492)] = 37821, - [SMALL_STATE(493)] = 37863, - [SMALL_STATE(494)] = 37905, - [SMALL_STATE(495)] = 37947, - [SMALL_STATE(496)] = 37989, - [SMALL_STATE(497)] = 38031, - [SMALL_STATE(498)] = 38073, - [SMALL_STATE(499)] = 38115, - [SMALL_STATE(500)] = 38157, - [SMALL_STATE(501)] = 38199, - [SMALL_STATE(502)] = 38241, - [SMALL_STATE(503)] = 38283, - [SMALL_STATE(504)] = 38325, - [SMALL_STATE(505)] = 38367, - [SMALL_STATE(506)] = 38409, - [SMALL_STATE(507)] = 38451, - [SMALL_STATE(508)] = 38493, - [SMALL_STATE(509)] = 38537, - [SMALL_STATE(510)] = 38579, - [SMALL_STATE(511)] = 38621, - [SMALL_STATE(512)] = 38663, - [SMALL_STATE(513)] = 38705, - [SMALL_STATE(514)] = 38747, - [SMALL_STATE(515)] = 38789, - [SMALL_STATE(516)] = 38831, - [SMALL_STATE(517)] = 38873, - [SMALL_STATE(518)] = 38915, - [SMALL_STATE(519)] = 38957, - [SMALL_STATE(520)] = 38999, - [SMALL_STATE(521)] = 39041, - [SMALL_STATE(522)] = 39083, - [SMALL_STATE(523)] = 39125, - [SMALL_STATE(524)] = 39167, - [SMALL_STATE(525)] = 39209, - [SMALL_STATE(526)] = 39251, - [SMALL_STATE(527)] = 39293, - [SMALL_STATE(528)] = 39368, - [SMALL_STATE(529)] = 39421, - [SMALL_STATE(530)] = 39496, - [SMALL_STATE(531)] = 39569, - [SMALL_STATE(532)] = 39644, - [SMALL_STATE(533)] = 39697, - [SMALL_STATE(534)] = 39750, - [SMALL_STATE(535)] = 39825, - [SMALL_STATE(536)] = 39900, - [SMALL_STATE(537)] = 39973, - [SMALL_STATE(538)] = 40041, - [SMALL_STATE(539)] = 40109, - [SMALL_STATE(540)] = 40177, - [SMALL_STATE(541)] = 40245, - [SMALL_STATE(542)] = 40317, - [SMALL_STATE(543)] = 40385, - [SMALL_STATE(544)] = 40429, - [SMALL_STATE(545)] = 40501, - [SMALL_STATE(546)] = 40559, - [SMALL_STATE(547)] = 40631, - [SMALL_STATE(548)] = 40703, - [SMALL_STATE(549)] = 40771, - [SMALL_STATE(550)] = 40843, - [SMALL_STATE(551)] = 40915, - [SMALL_STATE(552)] = 40983, - [SMALL_STATE(553)] = 41051, - [SMALL_STATE(554)] = 41119, - [SMALL_STATE(555)] = 41187, - [SMALL_STATE(556)] = 41256, - [SMALL_STATE(557)] = 41325, - [SMALL_STATE(558)] = 41388, - [SMALL_STATE(559)] = 41457, - [SMALL_STATE(560)] = 41526, - [SMALL_STATE(561)] = 41595, - [SMALL_STATE(562)] = 41664, - [SMALL_STATE(563)] = 41727, - [SMALL_STATE(564)] = 41796, - [SMALL_STATE(565)] = 41865, - [SMALL_STATE(566)] = 41934, - [SMALL_STATE(567)] = 41997, - [SMALL_STATE(568)] = 42066, - [SMALL_STATE(569)] = 42135, - [SMALL_STATE(570)] = 42204, - [SMALL_STATE(571)] = 42273, - [SMALL_STATE(572)] = 42342, - [SMALL_STATE(573)] = 42411, - [SMALL_STATE(574)] = 42480, - [SMALL_STATE(575)] = 42549, - [SMALL_STATE(576)] = 42612, - [SMALL_STATE(577)] = 42681, - [SMALL_STATE(578)] = 42747, - [SMALL_STATE(579)] = 42785, - [SMALL_STATE(580)] = 42851, - [SMALL_STATE(581)] = 42911, - [SMALL_STATE(582)] = 42971, - [SMALL_STATE(583)] = 43009, - [SMALL_STATE(584)] = 43047, - [SMALL_STATE(585)] = 43085, - [SMALL_STATE(586)] = 43145, - [SMALL_STATE(587)] = 43211, - [SMALL_STATE(588)] = 43249, - [SMALL_STATE(589)] = 43287, - [SMALL_STATE(590)] = 43325, - [SMALL_STATE(591)] = 43363, - [SMALL_STATE(592)] = 43401, - [SMALL_STATE(593)] = 43439, - [SMALL_STATE(594)] = 43505, - [SMALL_STATE(595)] = 43571, - [SMALL_STATE(596)] = 43609, - [SMALL_STATE(597)] = 43669, - [SMALL_STATE(598)] = 43707, - [SMALL_STATE(599)] = 43745, - [SMALL_STATE(600)] = 43783, - [SMALL_STATE(601)] = 43849, - [SMALL_STATE(602)] = 43887, - [SMALL_STATE(603)] = 43953, - [SMALL_STATE(604)] = 44019, - [SMALL_STATE(605)] = 44079, - [SMALL_STATE(606)] = 44145, - [SMALL_STATE(607)] = 44211, - [SMALL_STATE(608)] = 44249, - [SMALL_STATE(609)] = 44287, - [SMALL_STATE(610)] = 44353, - [SMALL_STATE(611)] = 44391, - [SMALL_STATE(612)] = 44454, - [SMALL_STATE(613)] = 44517, - [SMALL_STATE(614)] = 44580, - [SMALL_STATE(615)] = 44643, - [SMALL_STATE(616)] = 44698, - [SMALL_STATE(617)] = 44761, - [SMALL_STATE(618)] = 44824, - [SMALL_STATE(619)] = 44879, - [SMALL_STATE(620)] = 44942, - [SMALL_STATE(621)] = 44997, - [SMALL_STATE(622)] = 45060, - [SMALL_STATE(623)] = 45123, - [SMALL_STATE(624)] = 45183, - [SMALL_STATE(625)] = 45237, - [SMALL_STATE(626)] = 45297, - [SMALL_STATE(627)] = 45351, - [SMALL_STATE(628)] = 45411, - [SMALL_STATE(629)] = 45465, - [SMALL_STATE(630)] = 45525, - [SMALL_STATE(631)] = 45579, - [SMALL_STATE(632)] = 45633, - [SMALL_STATE(633)] = 45687, - [SMALL_STATE(634)] = 45747, - [SMALL_STATE(635)] = 45801, - [SMALL_STATE(636)] = 45861, - [SMALL_STATE(637)] = 45921, - [SMALL_STATE(638)] = 45981, - [SMALL_STATE(639)] = 46035, - [SMALL_STATE(640)] = 46095, - [SMALL_STATE(641)] = 46149, - [SMALL_STATE(642)] = 46209, - [SMALL_STATE(643)] = 46269, - [SMALL_STATE(644)] = 46323, - [SMALL_STATE(645)] = 46377, - [SMALL_STATE(646)] = 46431, - [SMALL_STATE(647)] = 46491, - [SMALL_STATE(648)] = 46545, - [SMALL_STATE(649)] = 46605, - [SMALL_STATE(650)] = 46659, - [SMALL_STATE(651)] = 46713, - [SMALL_STATE(652)] = 46767, - [SMALL_STATE(653)] = 46821, - [SMALL_STATE(654)] = 46878, - [SMALL_STATE(655)] = 46935, - [SMALL_STATE(656)] = 46992, - [SMALL_STATE(657)] = 47027, - [SMALL_STATE(658)] = 47084, - [SMALL_STATE(659)] = 47141, - [SMALL_STATE(660)] = 47198, - [SMALL_STATE(661)] = 47255, - [SMALL_STATE(662)] = 47290, - [SMALL_STATE(663)] = 47347, - [SMALL_STATE(664)] = 47404, - [SMALL_STATE(665)] = 47439, - [SMALL_STATE(666)] = 47496, - [SMALL_STATE(667)] = 47543, - [SMALL_STATE(668)] = 47586, - [SMALL_STATE(669)] = 47629, - [SMALL_STATE(670)] = 47676, - [SMALL_STATE(671)] = 47723, - [SMALL_STATE(672)] = 47766, - [SMALL_STATE(673)] = 47810, - [SMALL_STATE(674)] = 47854, - [SMALL_STATE(675)] = 47898, - [SMALL_STATE(676)] = 47942, - [SMALL_STATE(677)] = 47986, - [SMALL_STATE(678)] = 48030, - [SMALL_STATE(679)] = 48074, - [SMALL_STATE(680)] = 48118, - [SMALL_STATE(681)] = 48162, - [SMALL_STATE(682)] = 48206, - [SMALL_STATE(683)] = 48235, - [SMALL_STATE(684)] = 48276, - [SMALL_STATE(685)] = 48317, - [SMALL_STATE(686)] = 48358, - [SMALL_STATE(687)] = 48401, - [SMALL_STATE(688)] = 48442, - [SMALL_STATE(689)] = 48485, - [SMALL_STATE(690)] = 48526, - [SMALL_STATE(691)] = 48567, - [SMALL_STATE(692)] = 48608, - [SMALL_STATE(693)] = 48649, - [SMALL_STATE(694)] = 48690, - [SMALL_STATE(695)] = 48733, - [SMALL_STATE(696)] = 48774, - [SMALL_STATE(697)] = 48815, - [SMALL_STATE(698)] = 48853, - [SMALL_STATE(699)] = 48891, - [SMALL_STATE(700)] = 48929, - [SMALL_STATE(701)] = 48955, - [SMALL_STATE(702)] = 48981, - [SMALL_STATE(703)] = 49007, - [SMALL_STATE(704)] = 49045, - [SMALL_STATE(705)] = 49083, - [SMALL_STATE(706)] = 49109, - [SMALL_STATE(707)] = 49147, - [SMALL_STATE(708)] = 49173, - [SMALL_STATE(709)] = 49201, - [SMALL_STATE(710)] = 49239, - [SMALL_STATE(711)] = 49267, - [SMALL_STATE(712)] = 49305, - [SMALL_STATE(713)] = 49343, - [SMALL_STATE(714)] = 49381, - [SMALL_STATE(715)] = 49419, - [SMALL_STATE(716)] = 49457, - [SMALL_STATE(717)] = 49497, - [SMALL_STATE(718)] = 49535, - [SMALL_STATE(719)] = 49573, - [SMALL_STATE(720)] = 49599, - [SMALL_STATE(721)] = 49625, - [SMALL_STATE(722)] = 49663, - [SMALL_STATE(723)] = 49689, - [SMALL_STATE(724)] = 49715, - [SMALL_STATE(725)] = 49753, - [SMALL_STATE(726)] = 49793, - [SMALL_STATE(727)] = 49833, - [SMALL_STATE(728)] = 49871, - [SMALL_STATE(729)] = 49911, - [SMALL_STATE(730)] = 49939, - [SMALL_STATE(731)] = 49979, - [SMALL_STATE(732)] = 50017, - [SMALL_STATE(733)] = 50057, - [SMALL_STATE(734)] = 50095, - [SMALL_STATE(735)] = 50135, - [SMALL_STATE(736)] = 50173, - [SMALL_STATE(737)] = 50197, - [SMALL_STATE(738)] = 50235, - [SMALL_STATE(739)] = 50273, - [SMALL_STATE(740)] = 50311, - [SMALL_STATE(741)] = 50349, - [SMALL_STATE(742)] = 50387, - [SMALL_STATE(743)] = 50425, - [SMALL_STATE(744)] = 50448, - [SMALL_STATE(745)] = 50479, - [SMALL_STATE(746)] = 50502, - [SMALL_STATE(747)] = 50539, - [SMALL_STATE(748)] = 50564, - [SMALL_STATE(749)] = 50587, - [SMALL_STATE(750)] = 50612, - [SMALL_STATE(751)] = 50639, - [SMALL_STATE(752)] = 50664, - [SMALL_STATE(753)] = 50687, - [SMALL_STATE(754)] = 50714, - [SMALL_STATE(755)] = 50737, - [SMALL_STATE(756)] = 50760, - [SMALL_STATE(757)] = 50783, - [SMALL_STATE(758)] = 50806, - [SMALL_STATE(759)] = 50829, - [SMALL_STATE(760)] = 50854, - [SMALL_STATE(761)] = 50883, - [SMALL_STATE(762)] = 50906, - [SMALL_STATE(763)] = 50929, - [SMALL_STATE(764)] = 50952, - [SMALL_STATE(765)] = 50975, - [SMALL_STATE(766)] = 51000, - [SMALL_STATE(767)] = 51029, - [SMALL_STATE(768)] = 51052, - [SMALL_STATE(769)] = 51075, - [SMALL_STATE(770)] = 51098, - [SMALL_STATE(771)] = 51121, - [SMALL_STATE(772)] = 51158, - [SMALL_STATE(773)] = 51181, - [SMALL_STATE(774)] = 51204, - [SMALL_STATE(775)] = 51227, - [SMALL_STATE(776)] = 51260, - [SMALL_STATE(777)] = 51283, - [SMALL_STATE(778)] = 51306, - [SMALL_STATE(779)] = 51343, - [SMALL_STATE(780)] = 51376, - [SMALL_STATE(781)] = 51399, - [SMALL_STATE(782)] = 51422, - [SMALL_STATE(783)] = 51445, - [SMALL_STATE(784)] = 51468, - [SMALL_STATE(785)] = 51491, - [SMALL_STATE(786)] = 51528, - [SMALL_STATE(787)] = 51559, - [SMALL_STATE(788)] = 51582, - [SMALL_STATE(789)] = 51605, - [SMALL_STATE(790)] = 51627, - [SMALL_STATE(791)] = 51649, - [SMALL_STATE(792)] = 51671, - [SMALL_STATE(793)] = 51693, - [SMALL_STATE(794)] = 51719, - [SMALL_STATE(795)] = 51741, - [SMALL_STATE(796)] = 51763, - [SMALL_STATE(797)] = 51789, - [SMALL_STATE(798)] = 51815, - [SMALL_STATE(799)] = 51837, - [SMALL_STATE(800)] = 51859, - [SMALL_STATE(801)] = 51881, - [SMALL_STATE(802)] = 51907, - [SMALL_STATE(803)] = 51929, - [SMALL_STATE(804)] = 51951, - [SMALL_STATE(805)] = 51973, - [SMALL_STATE(806)] = 52014, - [SMALL_STATE(807)] = 52055, - [SMALL_STATE(808)] = 52076, - [SMALL_STATE(809)] = 52099, - [SMALL_STATE(810)] = 52140, - [SMALL_STATE(811)] = 52160, - [SMALL_STATE(812)] = 52184, - [SMALL_STATE(813)] = 52204, - [SMALL_STATE(814)] = 52224, - [SMALL_STATE(815)] = 52258, - [SMALL_STATE(816)] = 52278, - [SMALL_STATE(817)] = 52300, - [SMALL_STATE(818)] = 52338, - [SMALL_STATE(819)] = 52372, - [SMALL_STATE(820)] = 52392, - [SMALL_STATE(821)] = 52411, - [SMALL_STATE(822)] = 52438, - [SMALL_STATE(823)] = 52457, - [SMALL_STATE(824)] = 52476, - [SMALL_STATE(825)] = 52497, - [SMALL_STATE(826)] = 52516, - [SMALL_STATE(827)] = 52539, - [SMALL_STATE(828)] = 52560, - [SMALL_STATE(829)] = 52578, - [SMALL_STATE(830)] = 52596, - [SMALL_STATE(831)] = 52614, - [SMALL_STATE(832)] = 52632, - [SMALL_STATE(833)] = 52650, - [SMALL_STATE(834)] = 52682, - [SMALL_STATE(835)] = 52700, - [SMALL_STATE(836)] = 52718, - [SMALL_STATE(837)] = 52736, - [SMALL_STATE(838)] = 52754, - [SMALL_STATE(839)] = 52772, - [SMALL_STATE(840)] = 52790, - [SMALL_STATE(841)] = 52808, - [SMALL_STATE(842)] = 52826, - [SMALL_STATE(843)] = 52844, - [SMALL_STATE(844)] = 52862, - [SMALL_STATE(845)] = 52880, - [SMALL_STATE(846)] = 52898, - [SMALL_STATE(847)] = 52916, - [SMALL_STATE(848)] = 52948, - [SMALL_STATE(849)] = 52966, - [SMALL_STATE(850)] = 52984, - [SMALL_STATE(851)] = 53002, - [SMALL_STATE(852)] = 53020, - [SMALL_STATE(853)] = 53052, - [SMALL_STATE(854)] = 53070, - [SMALL_STATE(855)] = 53088, - [SMALL_STATE(856)] = 53106, - [SMALL_STATE(857)] = 53124, - [SMALL_STATE(858)] = 53142, - [SMALL_STATE(859)] = 53160, - [SMALL_STATE(860)] = 53178, - [SMALL_STATE(861)] = 53198, - [SMALL_STATE(862)] = 53227, - [SMALL_STATE(863)] = 53248, - [SMALL_STATE(864)] = 53265, - [SMALL_STATE(865)] = 53282, - [SMALL_STATE(866)] = 53299, - [SMALL_STATE(867)] = 53316, - [SMALL_STATE(868)] = 53338, - [SMALL_STATE(869)] = 53358, - [SMALL_STATE(870)] = 53382, - [SMALL_STATE(871)] = 53404, - [SMALL_STATE(872)] = 53428, - [SMALL_STATE(873)] = 53452, - [SMALL_STATE(874)] = 53474, - [SMALL_STATE(875)] = 53500, - [SMALL_STATE(876)] = 53524, - [SMALL_STATE(877)] = 53550, - [SMALL_STATE(878)] = 53572, - [SMALL_STATE(879)] = 53598, - [SMALL_STATE(880)] = 53624, - [SMALL_STATE(881)] = 53648, - [SMALL_STATE(882)] = 53670, - [SMALL_STATE(883)] = 53694, - [SMALL_STATE(884)] = 53720, - [SMALL_STATE(885)] = 53744, - [SMALL_STATE(886)] = 53766, - [SMALL_STATE(887)] = 53790, - [SMALL_STATE(888)] = 53814, - [SMALL_STATE(889)] = 53834, - [SMALL_STATE(890)] = 53860, - [SMALL_STATE(891)] = 53884, - [SMALL_STATE(892)] = 53902, - [SMALL_STATE(893)] = 53925, - [SMALL_STATE(894)] = 53948, - [SMALL_STATE(895)] = 53967, - [SMALL_STATE(896)] = 53990, - [SMALL_STATE(897)] = 54011, - [SMALL_STATE(898)] = 54032, - [SMALL_STATE(899)] = 54053, - [SMALL_STATE(900)] = 54074, - [SMALL_STATE(901)] = 54093, - [SMALL_STATE(902)] = 54116, - [SMALL_STATE(903)] = 54137, - [SMALL_STATE(904)] = 54156, - [SMALL_STATE(905)] = 54177, - [SMALL_STATE(906)] = 54200, - [SMALL_STATE(907)] = 54219, - [SMALL_STATE(908)] = 54238, - [SMALL_STATE(909)] = 54259, - [SMALL_STATE(910)] = 54282, - [SMALL_STATE(911)] = 54303, - [SMALL_STATE(912)] = 54324, - [SMALL_STATE(913)] = 54347, - [SMALL_STATE(914)] = 54367, - [SMALL_STATE(915)] = 54385, - [SMALL_STATE(916)] = 54401, - [SMALL_STATE(917)] = 54421, - [SMALL_STATE(918)] = 54441, - [SMALL_STATE(919)] = 54461, - [SMALL_STATE(920)] = 54479, - [SMALL_STATE(921)] = 54499, - [SMALL_STATE(922)] = 54517, - [SMALL_STATE(923)] = 54535, - [SMALL_STATE(924)] = 54553, - [SMALL_STATE(925)] = 54571, - [SMALL_STATE(926)] = 54589, - [SMALL_STATE(927)] = 54605, - [SMALL_STATE(928)] = 54623, - [SMALL_STATE(929)] = 54641, - [SMALL_STATE(930)] = 54657, - [SMALL_STATE(931)] = 54677, - [SMALL_STATE(932)] = 54697, - [SMALL_STATE(933)] = 54717, - [SMALL_STATE(934)] = 54735, - [SMALL_STATE(935)] = 54753, - [SMALL_STATE(936)] = 54771, - [SMALL_STATE(937)] = 54787, - [SMALL_STATE(938)] = 54807, - [SMALL_STATE(939)] = 54825, - [SMALL_STATE(940)] = 54843, - [SMALL_STATE(941)] = 54861, - [SMALL_STATE(942)] = 54879, - [SMALL_STATE(943)] = 54897, - [SMALL_STATE(944)] = 54915, - [SMALL_STATE(945)] = 54935, - [SMALL_STATE(946)] = 54951, - [SMALL_STATE(947)] = 54969, - [SMALL_STATE(948)] = 54987, - [SMALL_STATE(949)] = 55007, - [SMALL_STATE(950)] = 55025, - [SMALL_STATE(951)] = 55043, - [SMALL_STATE(952)] = 55061, - [SMALL_STATE(953)] = 55079, - [SMALL_STATE(954)] = 55097, - [SMALL_STATE(955)] = 55115, - [SMALL_STATE(956)] = 55135, - [SMALL_STATE(957)] = 55153, - [SMALL_STATE(958)] = 55171, - [SMALL_STATE(959)] = 55189, - [SMALL_STATE(960)] = 55207, - [SMALL_STATE(961)] = 55227, - [SMALL_STATE(962)] = 55245, - [SMALL_STATE(963)] = 55261, - [SMALL_STATE(964)] = 55279, - [SMALL_STATE(965)] = 55297, - [SMALL_STATE(966)] = 55315, - [SMALL_STATE(967)] = 55335, - [SMALL_STATE(968)] = 55353, - [SMALL_STATE(969)] = 55373, - [SMALL_STATE(970)] = 55390, - [SMALL_STATE(971)] = 55403, - [SMALL_STATE(972)] = 55420, - [SMALL_STATE(973)] = 55437, - [SMALL_STATE(974)] = 55454, - [SMALL_STATE(975)] = 55467, - [SMALL_STATE(976)] = 55484, - [SMALL_STATE(977)] = 55501, - [SMALL_STATE(978)] = 55518, - [SMALL_STATE(979)] = 55535, - [SMALL_STATE(980)] = 55548, - [SMALL_STATE(981)] = 55565, - [SMALL_STATE(982)] = 55582, - [SMALL_STATE(983)] = 55595, - [SMALL_STATE(984)] = 55608, - [SMALL_STATE(985)] = 55621, - [SMALL_STATE(986)] = 55638, - [SMALL_STATE(987)] = 55655, - [SMALL_STATE(988)] = 55668, - [SMALL_STATE(989)] = 55681, - [SMALL_STATE(990)] = 55698, - [SMALL_STATE(991)] = 55711, - [SMALL_STATE(992)] = 55728, - [SMALL_STATE(993)] = 55745, - [SMALL_STATE(994)] = 55762, - [SMALL_STATE(995)] = 55779, - [SMALL_STATE(996)] = 55792, - [SMALL_STATE(997)] = 55809, - [SMALL_STATE(998)] = 55822, - [SMALL_STATE(999)] = 55839, - [SMALL_STATE(1000)] = 55856, - [SMALL_STATE(1001)] = 55873, - [SMALL_STATE(1002)] = 55890, - [SMALL_STATE(1003)] = 55907, - [SMALL_STATE(1004)] = 55922, - [SMALL_STATE(1005)] = 55939, - [SMALL_STATE(1006)] = 55956, - [SMALL_STATE(1007)] = 55973, - [SMALL_STATE(1008)] = 55990, - [SMALL_STATE(1009)] = 56007, - [SMALL_STATE(1010)] = 56024, - [SMALL_STATE(1011)] = 56041, - [SMALL_STATE(1012)] = 56058, - [SMALL_STATE(1013)] = 56075, - [SMALL_STATE(1014)] = 56092, - [SMALL_STATE(1015)] = 56107, - [SMALL_STATE(1016)] = 56124, - [SMALL_STATE(1017)] = 56141, - [SMALL_STATE(1018)] = 56154, - [SMALL_STATE(1019)] = 56171, - [SMALL_STATE(1020)] = 56188, - [SMALL_STATE(1021)] = 56205, - [SMALL_STATE(1022)] = 56222, - [SMALL_STATE(1023)] = 56235, - [SMALL_STATE(1024)] = 56252, - [SMALL_STATE(1025)] = 56269, - [SMALL_STATE(1026)] = 56286, - [SMALL_STATE(1027)] = 56303, - [SMALL_STATE(1028)] = 56320, - [SMALL_STATE(1029)] = 56337, - [SMALL_STATE(1030)] = 56352, - [SMALL_STATE(1031)] = 56369, - [SMALL_STATE(1032)] = 56382, - [SMALL_STATE(1033)] = 56399, - [SMALL_STATE(1034)] = 56416, - [SMALL_STATE(1035)] = 56429, - [SMALL_STATE(1036)] = 56446, - [SMALL_STATE(1037)] = 56463, - [SMALL_STATE(1038)] = 56480, - [SMALL_STATE(1039)] = 56497, - [SMALL_STATE(1040)] = 56514, - [SMALL_STATE(1041)] = 56527, - [SMALL_STATE(1042)] = 56544, - [SMALL_STATE(1043)] = 56557, - [SMALL_STATE(1044)] = 56574, - [SMALL_STATE(1045)] = 56591, - [SMALL_STATE(1046)] = 56608, - [SMALL_STATE(1047)] = 56625, - [SMALL_STATE(1048)] = 56642, - [SMALL_STATE(1049)] = 56659, - [SMALL_STATE(1050)] = 56674, - [SMALL_STATE(1051)] = 56691, - [SMALL_STATE(1052)] = 56708, - [SMALL_STATE(1053)] = 56725, - [SMALL_STATE(1054)] = 56738, - [SMALL_STATE(1055)] = 56753, - [SMALL_STATE(1056)] = 56770, - [SMALL_STATE(1057)] = 56783, - [SMALL_STATE(1058)] = 56800, - [SMALL_STATE(1059)] = 56817, - [SMALL_STATE(1060)] = 56834, - [SMALL_STATE(1061)] = 56847, - [SMALL_STATE(1062)] = 56860, - [SMALL_STATE(1063)] = 56877, - [SMALL_STATE(1064)] = 56894, - [SMALL_STATE(1065)] = 56907, - [SMALL_STATE(1066)] = 56924, - [SMALL_STATE(1067)] = 56937, - [SMALL_STATE(1068)] = 56954, - [SMALL_STATE(1069)] = 56971, - [SMALL_STATE(1070)] = 56984, - [SMALL_STATE(1071)] = 57001, - [SMALL_STATE(1072)] = 57018, - [SMALL_STATE(1073)] = 57031, - [SMALL_STATE(1074)] = 57048, - [SMALL_STATE(1075)] = 57065, - [SMALL_STATE(1076)] = 57082, - [SMALL_STATE(1077)] = 57099, - [SMALL_STATE(1078)] = 57116, - [SMALL_STATE(1079)] = 57133, - [SMALL_STATE(1080)] = 57150, - [SMALL_STATE(1081)] = 57167, - [SMALL_STATE(1082)] = 57184, - [SMALL_STATE(1083)] = 57201, - [SMALL_STATE(1084)] = 57218, - [SMALL_STATE(1085)] = 57235, - [SMALL_STATE(1086)] = 57248, - [SMALL_STATE(1087)] = 57265, - [SMALL_STATE(1088)] = 57282, - [SMALL_STATE(1089)] = 57299, - [SMALL_STATE(1090)] = 57316, - [SMALL_STATE(1091)] = 57333, - [SMALL_STATE(1092)] = 57350, - [SMALL_STATE(1093)] = 57367, - [SMALL_STATE(1094)] = 57384, - [SMALL_STATE(1095)] = 57401, - [SMALL_STATE(1096)] = 57418, - [SMALL_STATE(1097)] = 57435, - [SMALL_STATE(1098)] = 57452, - [SMALL_STATE(1099)] = 57469, - [SMALL_STATE(1100)] = 57486, - [SMALL_STATE(1101)] = 57503, - [SMALL_STATE(1102)] = 57520, - [SMALL_STATE(1103)] = 57537, - [SMALL_STATE(1104)] = 57554, - [SMALL_STATE(1105)] = 57571, - [SMALL_STATE(1106)] = 57588, - [SMALL_STATE(1107)] = 57601, - [SMALL_STATE(1108)] = 57618, - [SMALL_STATE(1109)] = 57635, - [SMALL_STATE(1110)] = 57652, - [SMALL_STATE(1111)] = 57669, - [SMALL_STATE(1112)] = 57686, - [SMALL_STATE(1113)] = 57703, - [SMALL_STATE(1114)] = 57720, - [SMALL_STATE(1115)] = 57737, - [SMALL_STATE(1116)] = 57754, - [SMALL_STATE(1117)] = 57771, - [SMALL_STATE(1118)] = 57784, - [SMALL_STATE(1119)] = 57799, - [SMALL_STATE(1120)] = 57816, - [SMALL_STATE(1121)] = 57833, - [SMALL_STATE(1122)] = 57846, - [SMALL_STATE(1123)] = 57863, - [SMALL_STATE(1124)] = 57880, - [SMALL_STATE(1125)] = 57892, - [SMALL_STATE(1126)] = 57904, - [SMALL_STATE(1127)] = 57918, - [SMALL_STATE(1128)] = 57932, - [SMALL_STATE(1129)] = 57944, - [SMALL_STATE(1130)] = 57956, - [SMALL_STATE(1131)] = 57970, - [SMALL_STATE(1132)] = 57984, - [SMALL_STATE(1133)] = 57998, - [SMALL_STATE(1134)] = 58012, - [SMALL_STATE(1135)] = 58024, - [SMALL_STATE(1136)] = 58038, - [SMALL_STATE(1137)] = 58052, - [SMALL_STATE(1138)] = 58066, - [SMALL_STATE(1139)] = 58078, - [SMALL_STATE(1140)] = 58092, - [SMALL_STATE(1141)] = 58106, - [SMALL_STATE(1142)] = 58120, - [SMALL_STATE(1143)] = 58134, - [SMALL_STATE(1144)] = 58148, - [SMALL_STATE(1145)] = 58162, - [SMALL_STATE(1146)] = 58174, - [SMALL_STATE(1147)] = 58188, - [SMALL_STATE(1148)] = 58202, - [SMALL_STATE(1149)] = 58216, - [SMALL_STATE(1150)] = 58230, - [SMALL_STATE(1151)] = 58244, - [SMALL_STATE(1152)] = 58256, - [SMALL_STATE(1153)] = 58268, - [SMALL_STATE(1154)] = 58282, - [SMALL_STATE(1155)] = 58296, - [SMALL_STATE(1156)] = 58308, - [SMALL_STATE(1157)] = 58322, - [SMALL_STATE(1158)] = 58334, - [SMALL_STATE(1159)] = 58346, - [SMALL_STATE(1160)] = 58360, - [SMALL_STATE(1161)] = 58372, - [SMALL_STATE(1162)] = 58386, - [SMALL_STATE(1163)] = 58398, - [SMALL_STATE(1164)] = 58410, - [SMALL_STATE(1165)] = 58422, - [SMALL_STATE(1166)] = 58434, - [SMALL_STATE(1167)] = 58446, - [SMALL_STATE(1168)] = 58460, - [SMALL_STATE(1169)] = 58472, - [SMALL_STATE(1170)] = 58486, - [SMALL_STATE(1171)] = 58500, - [SMALL_STATE(1172)] = 58514, - [SMALL_STATE(1173)] = 58526, - [SMALL_STATE(1174)] = 58538, - [SMALL_STATE(1175)] = 58550, - [SMALL_STATE(1176)] = 58564, - [SMALL_STATE(1177)] = 58576, - [SMALL_STATE(1178)] = 58590, - [SMALL_STATE(1179)] = 58602, - [SMALL_STATE(1180)] = 58616, - [SMALL_STATE(1181)] = 58628, - [SMALL_STATE(1182)] = 58640, - [SMALL_STATE(1183)] = 58654, - [SMALL_STATE(1184)] = 58668, - [SMALL_STATE(1185)] = 58682, - [SMALL_STATE(1186)] = 58696, - [SMALL_STATE(1187)] = 58710, - [SMALL_STATE(1188)] = 58724, - [SMALL_STATE(1189)] = 58736, - [SMALL_STATE(1190)] = 58748, - [SMALL_STATE(1191)] = 58762, - [SMALL_STATE(1192)] = 58776, - [SMALL_STATE(1193)] = 58788, - [SMALL_STATE(1194)] = 58802, - [SMALL_STATE(1195)] = 58816, - [SMALL_STATE(1196)] = 58830, - [SMALL_STATE(1197)] = 58844, - [SMALL_STATE(1198)] = 58858, - [SMALL_STATE(1199)] = 58870, - [SMALL_STATE(1200)] = 58884, - [SMALL_STATE(1201)] = 58898, - [SMALL_STATE(1202)] = 58912, - [SMALL_STATE(1203)] = 58926, - [SMALL_STATE(1204)] = 58940, - [SMALL_STATE(1205)] = 58954, - [SMALL_STATE(1206)] = 58968, - [SMALL_STATE(1207)] = 58982, - [SMALL_STATE(1208)] = 58996, - [SMALL_STATE(1209)] = 59008, - [SMALL_STATE(1210)] = 59022, - [SMALL_STATE(1211)] = 59036, - [SMALL_STATE(1212)] = 59048, - [SMALL_STATE(1213)] = 59060, - [SMALL_STATE(1214)] = 59072, - [SMALL_STATE(1215)] = 59084, - [SMALL_STATE(1216)] = 59096, - [SMALL_STATE(1217)] = 59110, - [SMALL_STATE(1218)] = 59124, - [SMALL_STATE(1219)] = 59136, - [SMALL_STATE(1220)] = 59150, - [SMALL_STATE(1221)] = 59164, - [SMALL_STATE(1222)] = 59176, - [SMALL_STATE(1223)] = 59190, - [SMALL_STATE(1224)] = 59204, - [SMALL_STATE(1225)] = 59218, - [SMALL_STATE(1226)] = 59230, - [SMALL_STATE(1227)] = 59242, - [SMALL_STATE(1228)] = 59256, - [SMALL_STATE(1229)] = 59268, - [SMALL_STATE(1230)] = 59282, - [SMALL_STATE(1231)] = 59294, - [SMALL_STATE(1232)] = 59308, - [SMALL_STATE(1233)] = 59320, - [SMALL_STATE(1234)] = 59332, - [SMALL_STATE(1235)] = 59346, - [SMALL_STATE(1236)] = 59358, - [SMALL_STATE(1237)] = 59372, - [SMALL_STATE(1238)] = 59384, - [SMALL_STATE(1239)] = 59396, - [SMALL_STATE(1240)] = 59408, - [SMALL_STATE(1241)] = 59422, - [SMALL_STATE(1242)] = 59436, - [SMALL_STATE(1243)] = 59448, - [SMALL_STATE(1244)] = 59462, - [SMALL_STATE(1245)] = 59476, - [SMALL_STATE(1246)] = 59490, - [SMALL_STATE(1247)] = 59504, - [SMALL_STATE(1248)] = 59518, - [SMALL_STATE(1249)] = 59532, - [SMALL_STATE(1250)] = 59546, - [SMALL_STATE(1251)] = 59558, - [SMALL_STATE(1252)] = 59570, - [SMALL_STATE(1253)] = 59581, - [SMALL_STATE(1254)] = 59592, - [SMALL_STATE(1255)] = 59603, - [SMALL_STATE(1256)] = 59614, - [SMALL_STATE(1257)] = 59625, - [SMALL_STATE(1258)] = 59636, - [SMALL_STATE(1259)] = 59647, - [SMALL_STATE(1260)] = 59658, - [SMALL_STATE(1261)] = 59669, - [SMALL_STATE(1262)] = 59680, - [SMALL_STATE(1263)] = 59691, - [SMALL_STATE(1264)] = 59702, - [SMALL_STATE(1265)] = 59713, - [SMALL_STATE(1266)] = 59724, - [SMALL_STATE(1267)] = 59735, - [SMALL_STATE(1268)] = 59746, - [SMALL_STATE(1269)] = 59757, - [SMALL_STATE(1270)] = 59768, - [SMALL_STATE(1271)] = 59779, - [SMALL_STATE(1272)] = 59790, - [SMALL_STATE(1273)] = 59801, - [SMALL_STATE(1274)] = 59812, - [SMALL_STATE(1275)] = 59823, - [SMALL_STATE(1276)] = 59834, - [SMALL_STATE(1277)] = 59845, - [SMALL_STATE(1278)] = 59856, - [SMALL_STATE(1279)] = 59867, - [SMALL_STATE(1280)] = 59878, - [SMALL_STATE(1281)] = 59889, - [SMALL_STATE(1282)] = 59900, - [SMALL_STATE(1283)] = 59911, - [SMALL_STATE(1284)] = 59922, - [SMALL_STATE(1285)] = 59933, - [SMALL_STATE(1286)] = 59944, - [SMALL_STATE(1287)] = 59955, - [SMALL_STATE(1288)] = 59966, - [SMALL_STATE(1289)] = 59977, - [SMALL_STATE(1290)] = 59988, - [SMALL_STATE(1291)] = 59999, - [SMALL_STATE(1292)] = 60010, - [SMALL_STATE(1293)] = 60021, - [SMALL_STATE(1294)] = 60032, - [SMALL_STATE(1295)] = 60043, - [SMALL_STATE(1296)] = 60054, - [SMALL_STATE(1297)] = 60065, - [SMALL_STATE(1298)] = 60076, - [SMALL_STATE(1299)] = 60087, - [SMALL_STATE(1300)] = 60098, - [SMALL_STATE(1301)] = 60109, - [SMALL_STATE(1302)] = 60120, - [SMALL_STATE(1303)] = 60131, - [SMALL_STATE(1304)] = 60142, - [SMALL_STATE(1305)] = 60153, - [SMALL_STATE(1306)] = 60164, - [SMALL_STATE(1307)] = 60175, - [SMALL_STATE(1308)] = 60186, - [SMALL_STATE(1309)] = 60197, - [SMALL_STATE(1310)] = 60208, - [SMALL_STATE(1311)] = 60219, - [SMALL_STATE(1312)] = 60230, - [SMALL_STATE(1313)] = 60241, - [SMALL_STATE(1314)] = 60252, - [SMALL_STATE(1315)] = 60263, - [SMALL_STATE(1316)] = 60274, - [SMALL_STATE(1317)] = 60285, - [SMALL_STATE(1318)] = 60296, - [SMALL_STATE(1319)] = 60307, - [SMALL_STATE(1320)] = 60318, - [SMALL_STATE(1321)] = 60329, - [SMALL_STATE(1322)] = 60340, - [SMALL_STATE(1323)] = 60351, - [SMALL_STATE(1324)] = 60362, - [SMALL_STATE(1325)] = 60373, - [SMALL_STATE(1326)] = 60384, - [SMALL_STATE(1327)] = 60395, - [SMALL_STATE(1328)] = 60406, - [SMALL_STATE(1329)] = 60417, - [SMALL_STATE(1330)] = 60428, - [SMALL_STATE(1331)] = 60439, - [SMALL_STATE(1332)] = 60450, - [SMALL_STATE(1333)] = 60461, - [SMALL_STATE(1334)] = 60472, - [SMALL_STATE(1335)] = 60483, - [SMALL_STATE(1336)] = 60494, - [SMALL_STATE(1337)] = 60505, - [SMALL_STATE(1338)] = 60516, - [SMALL_STATE(1339)] = 60527, - [SMALL_STATE(1340)] = 60538, - [SMALL_STATE(1341)] = 60549, - [SMALL_STATE(1342)] = 60560, - [SMALL_STATE(1343)] = 60571, - [SMALL_STATE(1344)] = 60582, - [SMALL_STATE(1345)] = 60593, - [SMALL_STATE(1346)] = 60604, - [SMALL_STATE(1347)] = 60615, - [SMALL_STATE(1348)] = 60626, - [SMALL_STATE(1349)] = 60637, - [SMALL_STATE(1350)] = 60648, - [SMALL_STATE(1351)] = 60659, - [SMALL_STATE(1352)] = 60670, - [SMALL_STATE(1353)] = 60681, - [SMALL_STATE(1354)] = 60692, - [SMALL_STATE(1355)] = 60703, - [SMALL_STATE(1356)] = 60714, - [SMALL_STATE(1357)] = 60725, - [SMALL_STATE(1358)] = 60736, - [SMALL_STATE(1359)] = 60747, - [SMALL_STATE(1360)] = 60758, - [SMALL_STATE(1361)] = 60769, - [SMALL_STATE(1362)] = 60780, - [SMALL_STATE(1363)] = 60791, - [SMALL_STATE(1364)] = 60802, - [SMALL_STATE(1365)] = 60813, - [SMALL_STATE(1366)] = 60824, - [SMALL_STATE(1367)] = 60835, - [SMALL_STATE(1368)] = 60846, + [SMALL_STATE(7)] = 130, + [SMALL_STATE(8)] = 260, + [SMALL_STATE(9)] = 390, + [SMALL_STATE(10)] = 520, + [SMALL_STATE(11)] = 650, + [SMALL_STATE(12)] = 780, + [SMALL_STATE(13)] = 910, + [SMALL_STATE(14)] = 1040, + [SMALL_STATE(15)] = 1170, + [SMALL_STATE(16)] = 1300, + [SMALL_STATE(17)] = 1430, + [SMALL_STATE(18)] = 1560, + [SMALL_STATE(19)] = 1690, + [SMALL_STATE(20)] = 1820, + [SMALL_STATE(21)] = 1950, + [SMALL_STATE(22)] = 2080, + [SMALL_STATE(23)] = 2210, + [SMALL_STATE(24)] = 2340, + [SMALL_STATE(25)] = 2470, + [SMALL_STATE(26)] = 2600, + [SMALL_STATE(27)] = 2730, + [SMALL_STATE(28)] = 2860, + [SMALL_STATE(29)] = 2990, + [SMALL_STATE(30)] = 3120, + [SMALL_STATE(31)] = 3250, + [SMALL_STATE(32)] = 3380, + [SMALL_STATE(33)] = 3510, + [SMALL_STATE(34)] = 3640, + [SMALL_STATE(35)] = 3770, + [SMALL_STATE(36)] = 3897, + [SMALL_STATE(37)] = 4024, + [SMALL_STATE(38)] = 4151, + [SMALL_STATE(39)] = 4278, + [SMALL_STATE(40)] = 4349, + [SMALL_STATE(41)] = 4476, + [SMALL_STATE(42)] = 4603, + [SMALL_STATE(43)] = 4730, + [SMALL_STATE(44)] = 4857, + [SMALL_STATE(45)] = 4984, + [SMALL_STATE(46)] = 5111, + [SMALL_STATE(47)] = 5238, + [SMALL_STATE(48)] = 5365, + [SMALL_STATE(49)] = 5431, + [SMALL_STATE(50)] = 5497, + [SMALL_STATE(51)] = 5567, + [SMALL_STATE(52)] = 5633, + [SMALL_STATE(53)] = 5699, + [SMALL_STATE(54)] = 5765, + [SMALL_STATE(55)] = 5831, + [SMALL_STATE(56)] = 5897, + [SMALL_STATE(57)] = 5963, + [SMALL_STATE(58)] = 6029, + [SMALL_STATE(59)] = 6095, + [SMALL_STATE(60)] = 6161, + [SMALL_STATE(61)] = 6227, + [SMALL_STATE(62)] = 6297, + [SMALL_STATE(63)] = 6363, + [SMALL_STATE(64)] = 6429, + [SMALL_STATE(65)] = 6495, + [SMALL_STATE(66)] = 6561, + [SMALL_STATE(67)] = 6626, + [SMALL_STATE(68)] = 6693, + [SMALL_STATE(69)] = 6758, + [SMALL_STATE(70)] = 6823, + [SMALL_STATE(71)] = 6888, + [SMALL_STATE(72)] = 6955, + [SMALL_STATE(73)] = 7020, + [SMALL_STATE(74)] = 7085, + [SMALL_STATE(75)] = 7150, + [SMALL_STATE(76)] = 7217, + [SMALL_STATE(77)] = 7282, + [SMALL_STATE(78)] = 7349, + [SMALL_STATE(79)] = 7413, + [SMALL_STATE(80)] = 7477, + [SMALL_STATE(81)] = 7561, + [SMALL_STATE(82)] = 7625, + [SMALL_STATE(83)] = 7709, + [SMALL_STATE(84)] = 7773, + [SMALL_STATE(85)] = 7857, + [SMALL_STATE(86)] = 7921, + [SMALL_STATE(87)] = 7985, + [SMALL_STATE(88)] = 8069, + [SMALL_STATE(89)] = 8133, + [SMALL_STATE(90)] = 8197, + [SMALL_STATE(91)] = 8261, + [SMALL_STATE(92)] = 8387, + [SMALL_STATE(93)] = 8451, + [SMALL_STATE(94)] = 8535, + [SMALL_STATE(95)] = 8619, + [SMALL_STATE(96)] = 8683, + [SMALL_STATE(97)] = 8747, + [SMALL_STATE(98)] = 8819, + [SMALL_STATE(99)] = 8893, + [SMALL_STATE(100)] = 8957, + [SMALL_STATE(101)] = 9035, + [SMALL_STATE(102)] = 9099, + [SMALL_STATE(103)] = 9225, + [SMALL_STATE(104)] = 9351, + [SMALL_STATE(105)] = 9431, + [SMALL_STATE(106)] = 9557, + [SMALL_STATE(107)] = 9639, + [SMALL_STATE(108)] = 9707, + [SMALL_STATE(109)] = 9791, + [SMALL_STATE(110)] = 9855, + [SMALL_STATE(111)] = 9919, + [SMALL_STATE(112)] = 9983, + [SMALL_STATE(113)] = 10067, + [SMALL_STATE(114)] = 10131, + [SMALL_STATE(115)] = 10195, + [SMALL_STATE(116)] = 10279, + [SMALL_STATE(117)] = 10343, + [SMALL_STATE(118)] = 10407, + [SMALL_STATE(119)] = 10471, + [SMALL_STATE(120)] = 10555, + [SMALL_STATE(121)] = 10619, + [SMALL_STATE(122)] = 10683, + [SMALL_STATE(123)] = 10806, + [SMALL_STATE(124)] = 10929, + [SMALL_STATE(125)] = 11052, + [SMALL_STATE(126)] = 11175, + [SMALL_STATE(127)] = 11298, + [SMALL_STATE(128)] = 11365, + [SMALL_STATE(129)] = 11488, + [SMALL_STATE(130)] = 11611, + [SMALL_STATE(131)] = 11734, + [SMALL_STATE(132)] = 11857, + [SMALL_STATE(133)] = 11980, + [SMALL_STATE(134)] = 12103, + [SMALL_STATE(135)] = 12226, + [SMALL_STATE(136)] = 12288, + [SMALL_STATE(137)] = 12350, + [SMALL_STATE(138)] = 12412, + [SMALL_STATE(139)] = 12474, + [SMALL_STATE(140)] = 12536, + [SMALL_STATE(141)] = 12602, + [SMALL_STATE(142)] = 12668, + [SMALL_STATE(143)] = 12730, + [SMALL_STATE(144)] = 12792, + [SMALL_STATE(145)] = 12912, + [SMALL_STATE(146)] = 12974, + [SMALL_STATE(147)] = 13036, + [SMALL_STATE(148)] = 13098, + [SMALL_STATE(149)] = 13160, + [SMALL_STATE(150)] = 13221, + [SMALL_STATE(151)] = 13282, + [SMALL_STATE(152)] = 13343, + [SMALL_STATE(153)] = 13404, + [SMALL_STATE(154)] = 13465, + [SMALL_STATE(155)] = 13526, + [SMALL_STATE(156)] = 13589, + [SMALL_STATE(157)] = 13652, + [SMALL_STATE(158)] = 13713, + [SMALL_STATE(159)] = 13776, + [SMALL_STATE(160)] = 13837, + [SMALL_STATE(161)] = 13900, + [SMALL_STATE(162)] = 13960, + [SMALL_STATE(163)] = 14074, + [SMALL_STATE(164)] = 14134, + [SMALL_STATE(165)] = 14194, + [SMALL_STATE(166)] = 14254, + [SMALL_STATE(167)] = 14314, + [SMALL_STATE(168)] = 14374, + [SMALL_STATE(169)] = 14488, + [SMALL_STATE(170)] = 14602, + [SMALL_STATE(171)] = 14716, + [SMALL_STATE(172)] = 14830, + [SMALL_STATE(173)] = 14890, + [SMALL_STATE(174)] = 14950, + [SMALL_STATE(175)] = 15010, + [SMALL_STATE(176)] = 15124, + [SMALL_STATE(177)] = 15184, + [SMALL_STATE(178)] = 15298, + [SMALL_STATE(179)] = 15358, + [SMALL_STATE(180)] = 15418, + [SMALL_STATE(181)] = 15478, + [SMALL_STATE(182)] = 15592, + [SMALL_STATE(183)] = 15652, + [SMALL_STATE(184)] = 15766, + [SMALL_STATE(185)] = 15826, + [SMALL_STATE(186)] = 15886, + [SMALL_STATE(187)] = 15946, + [SMALL_STATE(188)] = 16057, + [SMALL_STATE(189)] = 16168, + [SMALL_STATE(190)] = 16279, + [SMALL_STATE(191)] = 16390, + [SMALL_STATE(192)] = 16501, + [SMALL_STATE(193)] = 16612, + [SMALL_STATE(194)] = 16723, + [SMALL_STATE(195)] = 16834, + [SMALL_STATE(196)] = 16945, + [SMALL_STATE(197)] = 17056, + [SMALL_STATE(198)] = 17167, + [SMALL_STATE(199)] = 17278, + [SMALL_STATE(200)] = 17389, + [SMALL_STATE(201)] = 17500, + [SMALL_STATE(202)] = 17611, + [SMALL_STATE(203)] = 17722, + [SMALL_STATE(204)] = 17781, + [SMALL_STATE(205)] = 17892, + [SMALL_STATE(206)] = 18003, + [SMALL_STATE(207)] = 18114, + [SMALL_STATE(208)] = 18225, + [SMALL_STATE(209)] = 18337, + [SMALL_STATE(210)] = 18445, + [SMALL_STATE(211)] = 18553, + [SMALL_STATE(212)] = 18661, + [SMALL_STATE(213)] = 18773, + [SMALL_STATE(214)] = 18881, + [SMALL_STATE(215)] = 18989, + [SMALL_STATE(216)] = 19097, + [SMALL_STATE(217)] = 19205, + [SMALL_STATE(218)] = 19313, + [SMALL_STATE(219)] = 19421, + [SMALL_STATE(220)] = 19529, + [SMALL_STATE(221)] = 19637, + [SMALL_STATE(222)] = 19745, + [SMALL_STATE(223)] = 19853, + [SMALL_STATE(224)] = 19961, + [SMALL_STATE(225)] = 20069, + [SMALL_STATE(226)] = 20177, + [SMALL_STATE(227)] = 20285, + [SMALL_STATE(228)] = 20393, + [SMALL_STATE(229)] = 20501, + [SMALL_STATE(230)] = 20609, + [SMALL_STATE(231)] = 20717, + [SMALL_STATE(232)] = 20825, + [SMALL_STATE(233)] = 20933, + [SMALL_STATE(234)] = 21041, + [SMALL_STATE(235)] = 21153, + [SMALL_STATE(236)] = 21261, + [SMALL_STATE(237)] = 21369, + [SMALL_STATE(238)] = 21477, + [SMALL_STATE(239)] = 21585, + [SMALL_STATE(240)] = 21697, + [SMALL_STATE(241)] = 21809, + [SMALL_STATE(242)] = 21917, + [SMALL_STATE(243)] = 22029, + [SMALL_STATE(244)] = 22141, + [SMALL_STATE(245)] = 22249, + [SMALL_STATE(246)] = 22361, + [SMALL_STATE(247)] = 22469, + [SMALL_STATE(248)] = 22577, + [SMALL_STATE(249)] = 22685, + [SMALL_STATE(250)] = 22793, + [SMALL_STATE(251)] = 22901, + [SMALL_STATE(252)] = 23009, + [SMALL_STATE(253)] = 23117, + [SMALL_STATE(254)] = 23225, + [SMALL_STATE(255)] = 23333, + [SMALL_STATE(256)] = 23441, + [SMALL_STATE(257)] = 23549, + [SMALL_STATE(258)] = 23657, + [SMALL_STATE(259)] = 23765, + [SMALL_STATE(260)] = 23873, + [SMALL_STATE(261)] = 23981, + [SMALL_STATE(262)] = 24089, + [SMALL_STATE(263)] = 24197, + [SMALL_STATE(264)] = 24305, + [SMALL_STATE(265)] = 24413, + [SMALL_STATE(266)] = 24521, + [SMALL_STATE(267)] = 24629, + [SMALL_STATE(268)] = 24737, + [SMALL_STATE(269)] = 24849, + [SMALL_STATE(270)] = 24957, + [SMALL_STATE(271)] = 25069, + [SMALL_STATE(272)] = 25177, + [SMALL_STATE(273)] = 25285, + [SMALL_STATE(274)] = 25397, + [SMALL_STATE(275)] = 25505, + [SMALL_STATE(276)] = 25613, + [SMALL_STATE(277)] = 25725, + [SMALL_STATE(278)] = 25833, + [SMALL_STATE(279)] = 25941, + [SMALL_STATE(280)] = 26049, + [SMALL_STATE(281)] = 26157, + [SMALL_STATE(282)] = 26265, + [SMALL_STATE(283)] = 26373, + [SMALL_STATE(284)] = 26481, + [SMALL_STATE(285)] = 26589, + [SMALL_STATE(286)] = 26697, + [SMALL_STATE(287)] = 26805, + [SMALL_STATE(288)] = 26913, + [SMALL_STATE(289)] = 27021, + [SMALL_STATE(290)] = 27129, + [SMALL_STATE(291)] = 27237, + [SMALL_STATE(292)] = 27345, + [SMALL_STATE(293)] = 27453, + [SMALL_STATE(294)] = 27530, + [SMALL_STATE(295)] = 27639, + [SMALL_STATE(296)] = 27716, + [SMALL_STATE(297)] = 27793, + [SMALL_STATE(298)] = 27870, + [SMALL_STATE(299)] = 27947, + [SMALL_STATE(300)] = 28024, + [SMALL_STATE(301)] = 28101, + [SMALL_STATE(302)] = 28178, + [SMALL_STATE(303)] = 28255, + [SMALL_STATE(304)] = 28320, + [SMALL_STATE(305)] = 28387, + [SMALL_STATE(306)] = 28458, + [SMALL_STATE(307)] = 28519, + [SMALL_STATE(308)] = 28594, + [SMALL_STATE(309)] = 28671, + [SMALL_STATE(310)] = 28744, + [SMALL_STATE(311)] = 28801, + [SMALL_STATE(312)] = 28907, + [SMALL_STATE(313)] = 29013, + [SMALL_STATE(314)] = 29119, + [SMALL_STATE(315)] = 29225, + [SMALL_STATE(316)] = 29331, + [SMALL_STATE(317)] = 29437, + [SMALL_STATE(318)] = 29543, + [SMALL_STATE(319)] = 29649, + [SMALL_STATE(320)] = 29755, + [SMALL_STATE(321)] = 29861, + [SMALL_STATE(322)] = 29915, + [SMALL_STATE(323)] = 29969, + [SMALL_STATE(324)] = 30023, + [SMALL_STATE(325)] = 30077, + [SMALL_STATE(326)] = 30129, + [SMALL_STATE(327)] = 30181, + [SMALL_STATE(328)] = 30233, + [SMALL_STATE(329)] = 30288, + [SMALL_STATE(330)] = 30338, + [SMALL_STATE(331)] = 30388, + [SMALL_STATE(332)] = 30442, + [SMALL_STATE(333)] = 30496, + [SMALL_STATE(334)] = 30546, + [SMALL_STATE(335)] = 30596, + [SMALL_STATE(336)] = 30646, + [SMALL_STATE(337)] = 30696, + [SMALL_STATE(338)] = 30746, + [SMALL_STATE(339)] = 30796, + [SMALL_STATE(340)] = 30846, + [SMALL_STATE(341)] = 30896, + [SMALL_STATE(342)] = 30946, + [SMALL_STATE(343)] = 30996, + [SMALL_STATE(344)] = 31046, + [SMALL_STATE(345)] = 31096, + [SMALL_STATE(346)] = 31146, + [SMALL_STATE(347)] = 31195, + [SMALL_STATE(348)] = 31244, + [SMALL_STATE(349)] = 31295, + [SMALL_STATE(350)] = 31344, + [SMALL_STATE(351)] = 31395, + [SMALL_STATE(352)] = 31446, + [SMALL_STATE(353)] = 31495, + [SMALL_STATE(354)] = 31546, + [SMALL_STATE(355)] = 31595, + [SMALL_STATE(356)] = 31644, + [SMALL_STATE(357)] = 31693, + [SMALL_STATE(358)] = 31742, + [SMALL_STATE(359)] = 31790, + [SMALL_STATE(360)] = 31838, + [SMALL_STATE(361)] = 31886, + [SMALL_STATE(362)] = 31934, + [SMALL_STATE(363)] = 32002, + [SMALL_STATE(364)] = 32050, + [SMALL_STATE(365)] = 32098, + [SMALL_STATE(366)] = 32166, + [SMALL_STATE(367)] = 32214, + [SMALL_STATE(368)] = 32262, + [SMALL_STATE(369)] = 32310, + [SMALL_STATE(370)] = 32358, + [SMALL_STATE(371)] = 32406, + [SMALL_STATE(372)] = 32454, + [SMALL_STATE(373)] = 32522, + [SMALL_STATE(374)] = 32574, + [SMALL_STATE(375)] = 32622, + [SMALL_STATE(376)] = 32670, + [SMALL_STATE(377)] = 32718, + [SMALL_STATE(378)] = 32786, + [SMALL_STATE(379)] = 32834, + [SMALL_STATE(380)] = 32882, + [SMALL_STATE(381)] = 32930, + [SMALL_STATE(382)] = 32978, + [SMALL_STATE(383)] = 33026, + [SMALL_STATE(384)] = 33082, + [SMALL_STATE(385)] = 33140, + [SMALL_STATE(386)] = 33202, + [SMALL_STATE(387)] = 33266, + [SMALL_STATE(388)] = 33332, + [SMALL_STATE(389)] = 33382, + [SMALL_STATE(390)] = 33432, + [SMALL_STATE(391)] = 33482, + [SMALL_STATE(392)] = 33527, + [SMALL_STATE(393)] = 33576, + [SMALL_STATE(394)] = 33621, + [SMALL_STATE(395)] = 33665, + [SMALL_STATE(396)] = 33709, + [SMALL_STATE(397)] = 33753, + [SMALL_STATE(398)] = 33797, + [SMALL_STATE(399)] = 33841, + [SMALL_STATE(400)] = 33885, + [SMALL_STATE(401)] = 33933, + [SMALL_STATE(402)] = 33977, + [SMALL_STATE(403)] = 34021, + [SMALL_STATE(404)] = 34065, + [SMALL_STATE(405)] = 34113, + [SMALL_STATE(406)] = 34161, + [SMALL_STATE(407)] = 34209, + [SMALL_STATE(408)] = 34257, + [SMALL_STATE(409)] = 34305, + [SMALL_STATE(410)] = 34384, + [SMALL_STATE(411)] = 34465, + [SMALL_STATE(412)] = 34522, + [SMALL_STATE(413)] = 34579, + [SMALL_STATE(414)] = 34622, + [SMALL_STATE(415)] = 34701, + [SMALL_STATE(416)] = 34744, + [SMALL_STATE(417)] = 34787, + [SMALL_STATE(418)] = 34830, + [SMALL_STATE(419)] = 34909, + [SMALL_STATE(420)] = 34952, + [SMALL_STATE(421)] = 35031, + [SMALL_STATE(422)] = 35074, + [SMALL_STATE(423)] = 35117, + [SMALL_STATE(424)] = 35174, + [SMALL_STATE(425)] = 35217, + [SMALL_STATE(426)] = 35296, + [SMALL_STATE(427)] = 35377, + [SMALL_STATE(428)] = 35434, + [SMALL_STATE(429)] = 35479, + [SMALL_STATE(430)] = 35536, + [SMALL_STATE(431)] = 35579, + [SMALL_STATE(432)] = 35622, + [SMALL_STATE(433)] = 35665, + [SMALL_STATE(434)] = 35710, + [SMALL_STATE(435)] = 35753, + [SMALL_STATE(436)] = 35832, + [SMALL_STATE(437)] = 35877, + [SMALL_STATE(438)] = 35920, + [SMALL_STATE(439)] = 35965, + [SMALL_STATE(440)] = 36010, + [SMALL_STATE(441)] = 36055, + [SMALL_STATE(442)] = 36136, + [SMALL_STATE(443)] = 36179, + [SMALL_STATE(444)] = 36236, + [SMALL_STATE(445)] = 36281, + [SMALL_STATE(446)] = 36323, + [SMALL_STATE(447)] = 36369, + [SMALL_STATE(448)] = 36411, + [SMALL_STATE(449)] = 36453, + [SMALL_STATE(450)] = 36495, + [SMALL_STATE(451)] = 36537, + [SMALL_STATE(452)] = 36579, + [SMALL_STATE(453)] = 36621, + [SMALL_STATE(454)] = 36663, + [SMALL_STATE(455)] = 36705, + [SMALL_STATE(456)] = 36761, + [SMALL_STATE(457)] = 36803, + [SMALL_STATE(458)] = 36845, + [SMALL_STATE(459)] = 36887, + [SMALL_STATE(460)] = 36929, + [SMALL_STATE(461)] = 36971, + [SMALL_STATE(462)] = 37013, + [SMALL_STATE(463)] = 37055, + [SMALL_STATE(464)] = 37097, + [SMALL_STATE(465)] = 37139, + [SMALL_STATE(466)] = 37181, + [SMALL_STATE(467)] = 37223, + [SMALL_STATE(468)] = 37265, + [SMALL_STATE(469)] = 37307, + [SMALL_STATE(470)] = 37349, + [SMALL_STATE(471)] = 37391, + [SMALL_STATE(472)] = 37433, + [SMALL_STATE(473)] = 37475, + [SMALL_STATE(474)] = 37531, + [SMALL_STATE(475)] = 37573, + [SMALL_STATE(476)] = 37615, + [SMALL_STATE(477)] = 37657, + [SMALL_STATE(478)] = 37699, + [SMALL_STATE(479)] = 37741, + [SMALL_STATE(480)] = 37783, + [SMALL_STATE(481)] = 37825, + [SMALL_STATE(482)] = 37867, + [SMALL_STATE(483)] = 37909, + [SMALL_STATE(484)] = 37951, + [SMALL_STATE(485)] = 37993, + [SMALL_STATE(486)] = 38035, + [SMALL_STATE(487)] = 38077, + [SMALL_STATE(488)] = 38119, + [SMALL_STATE(489)] = 38161, + [SMALL_STATE(490)] = 38203, + [SMALL_STATE(491)] = 38245, + [SMALL_STATE(492)] = 38287, + [SMALL_STATE(493)] = 38329, + [SMALL_STATE(494)] = 38371, + [SMALL_STATE(495)] = 38413, + [SMALL_STATE(496)] = 38455, + [SMALL_STATE(497)] = 38497, + [SMALL_STATE(498)] = 38539, + [SMALL_STATE(499)] = 38581, + [SMALL_STATE(500)] = 38623, + [SMALL_STATE(501)] = 38665, + [SMALL_STATE(502)] = 38707, + [SMALL_STATE(503)] = 38749, + [SMALL_STATE(504)] = 38791, + [SMALL_STATE(505)] = 38833, + [SMALL_STATE(506)] = 38889, + [SMALL_STATE(507)] = 38931, + [SMALL_STATE(508)] = 38989, + [SMALL_STATE(509)] = 39045, + [SMALL_STATE(510)] = 39087, + [SMALL_STATE(511)] = 39141, + [SMALL_STATE(512)] = 39193, + [SMALL_STATE(513)] = 39243, + [SMALL_STATE(514)] = 39285, + [SMALL_STATE(515)] = 39327, + [SMALL_STATE(516)] = 39369, + [SMALL_STATE(517)] = 39411, + [SMALL_STATE(518)] = 39453, + [SMALL_STATE(519)] = 39495, + [SMALL_STATE(520)] = 39537, + [SMALL_STATE(521)] = 39579, + [SMALL_STATE(522)] = 39639, + [SMALL_STATE(523)] = 39681, + [SMALL_STATE(524)] = 39723, + [SMALL_STATE(525)] = 39765, + [SMALL_STATE(526)] = 39807, + [SMALL_STATE(527)] = 39867, + [SMALL_STATE(528)] = 39909, + [SMALL_STATE(529)] = 39951, + [SMALL_STATE(530)] = 39993, + [SMALL_STATE(531)] = 40035, + [SMALL_STATE(532)] = 40077, + [SMALL_STATE(533)] = 40119, + [SMALL_STATE(534)] = 40161, + [SMALL_STATE(535)] = 40203, + [SMALL_STATE(536)] = 40245, + [SMALL_STATE(537)] = 40287, + [SMALL_STATE(538)] = 40329, + [SMALL_STATE(539)] = 40373, + [SMALL_STATE(540)] = 40415, + [SMALL_STATE(541)] = 40488, + [SMALL_STATE(542)] = 40563, + [SMALL_STATE(543)] = 40638, + [SMALL_STATE(544)] = 40691, + [SMALL_STATE(545)] = 40766, + [SMALL_STATE(546)] = 40839, + [SMALL_STATE(547)] = 40892, + [SMALL_STATE(548)] = 40967, + [SMALL_STATE(549)] = 41042, + [SMALL_STATE(550)] = 41095, + [SMALL_STATE(551)] = 41163, + [SMALL_STATE(552)] = 41231, + [SMALL_STATE(553)] = 41299, + [SMALL_STATE(554)] = 41367, + [SMALL_STATE(555)] = 41439, + [SMALL_STATE(556)] = 41511, + [SMALL_STATE(557)] = 41583, + [SMALL_STATE(558)] = 41655, + [SMALL_STATE(559)] = 41727, + [SMALL_STATE(560)] = 41799, + [SMALL_STATE(561)] = 41867, + [SMALL_STATE(562)] = 41935, + [SMALL_STATE(563)] = 42003, + [SMALL_STATE(564)] = 42071, + [SMALL_STATE(565)] = 42139, + [SMALL_STATE(566)] = 42197, + [SMALL_STATE(567)] = 42241, + [SMALL_STATE(568)] = 42309, + [SMALL_STATE(569)] = 42378, + [SMALL_STATE(570)] = 42447, + [SMALL_STATE(571)] = 42516, + [SMALL_STATE(572)] = 42585, + [SMALL_STATE(573)] = 42654, + [SMALL_STATE(574)] = 42717, + [SMALL_STATE(575)] = 42786, + [SMALL_STATE(576)] = 42855, + [SMALL_STATE(577)] = 42918, + [SMALL_STATE(578)] = 42987, + [SMALL_STATE(579)] = 43056, + [SMALL_STATE(580)] = 43125, + [SMALL_STATE(581)] = 43188, + [SMALL_STATE(582)] = 43257, + [SMALL_STATE(583)] = 43326, + [SMALL_STATE(584)] = 43395, + [SMALL_STATE(585)] = 43464, + [SMALL_STATE(586)] = 43533, + [SMALL_STATE(587)] = 43602, + [SMALL_STATE(588)] = 43671, + [SMALL_STATE(589)] = 43734, + [SMALL_STATE(590)] = 43803, + [SMALL_STATE(591)] = 43841, + [SMALL_STATE(592)] = 43901, + [SMALL_STATE(593)] = 43967, + [SMALL_STATE(594)] = 44005, + [SMALL_STATE(595)] = 44043, + [SMALL_STATE(596)] = 44081, + [SMALL_STATE(597)] = 44119, + [SMALL_STATE(598)] = 44157, + [SMALL_STATE(599)] = 44195, + [SMALL_STATE(600)] = 44261, + [SMALL_STATE(601)] = 44327, + [SMALL_STATE(602)] = 44387, + [SMALL_STATE(603)] = 44453, + [SMALL_STATE(604)] = 44491, + [SMALL_STATE(605)] = 44557, + [SMALL_STATE(606)] = 44623, + [SMALL_STATE(607)] = 44661, + [SMALL_STATE(608)] = 44699, + [SMALL_STATE(609)] = 44737, + [SMALL_STATE(610)] = 44775, + [SMALL_STATE(611)] = 44813, + [SMALL_STATE(612)] = 44873, + [SMALL_STATE(613)] = 44911, + [SMALL_STATE(614)] = 44977, + [SMALL_STATE(615)] = 45043, + [SMALL_STATE(616)] = 45109, + [SMALL_STATE(617)] = 45147, + [SMALL_STATE(618)] = 45213, + [SMALL_STATE(619)] = 45251, + [SMALL_STATE(620)] = 45317, + [SMALL_STATE(621)] = 45355, + [SMALL_STATE(622)] = 45393, + [SMALL_STATE(623)] = 45459, + [SMALL_STATE(624)] = 45519, + [SMALL_STATE(625)] = 45579, + [SMALL_STATE(626)] = 45634, + [SMALL_STATE(627)] = 45697, + [SMALL_STATE(628)] = 45760, + [SMALL_STATE(629)] = 45823, + [SMALL_STATE(630)] = 45878, + [SMALL_STATE(631)] = 45941, + [SMALL_STATE(632)] = 45996, + [SMALL_STATE(633)] = 46059, + [SMALL_STATE(634)] = 46122, + [SMALL_STATE(635)] = 46185, + [SMALL_STATE(636)] = 46248, + [SMALL_STATE(637)] = 46311, + [SMALL_STATE(638)] = 46374, + [SMALL_STATE(639)] = 46428, + [SMALL_STATE(640)] = 46488, + [SMALL_STATE(641)] = 46542, + [SMALL_STATE(642)] = 46602, + [SMALL_STATE(643)] = 46656, + [SMALL_STATE(644)] = 46710, + [SMALL_STATE(645)] = 46764, + [SMALL_STATE(646)] = 46824, + [SMALL_STATE(647)] = 46884, + [SMALL_STATE(648)] = 46938, + [SMALL_STATE(649)] = 46992, + [SMALL_STATE(650)] = 47046, + [SMALL_STATE(651)] = 47106, + [SMALL_STATE(652)] = 47160, + [SMALL_STATE(653)] = 47220, + [SMALL_STATE(654)] = 47280, + [SMALL_STATE(655)] = 47340, + [SMALL_STATE(656)] = 47394, + [SMALL_STATE(657)] = 47448, + [SMALL_STATE(658)] = 47508, + [SMALL_STATE(659)] = 47562, + [SMALL_STATE(660)] = 47616, + [SMALL_STATE(661)] = 47670, + [SMALL_STATE(662)] = 47730, + [SMALL_STATE(663)] = 47784, + [SMALL_STATE(664)] = 47838, + [SMALL_STATE(665)] = 47898, + [SMALL_STATE(666)] = 47958, + [SMALL_STATE(667)] = 48012, + [SMALL_STATE(668)] = 48072, + [SMALL_STATE(669)] = 48129, + [SMALL_STATE(670)] = 48186, + [SMALL_STATE(671)] = 48221, + [SMALL_STATE(672)] = 48278, + [SMALL_STATE(673)] = 48335, + [SMALL_STATE(674)] = 48392, + [SMALL_STATE(675)] = 48427, + [SMALL_STATE(676)] = 48484, + [SMALL_STATE(677)] = 48541, + [SMALL_STATE(678)] = 48598, + [SMALL_STATE(679)] = 48655, + [SMALL_STATE(680)] = 48690, + [SMALL_STATE(681)] = 48747, + [SMALL_STATE(682)] = 48780, + [SMALL_STATE(683)] = 48810, + [SMALL_STATE(684)] = 48857, + [SMALL_STATE(685)] = 48900, + [SMALL_STATE(686)] = 48947, + [SMALL_STATE(687)] = 48990, + [SMALL_STATE(688)] = 49037, + [SMALL_STATE(689)] = 49080, + [SMALL_STATE(690)] = 49124, + [SMALL_STATE(691)] = 49168, + [SMALL_STATE(692)] = 49212, + [SMALL_STATE(693)] = 49256, + [SMALL_STATE(694)] = 49300, + [SMALL_STATE(695)] = 49344, + [SMALL_STATE(696)] = 49388, + [SMALL_STATE(697)] = 49432, + [SMALL_STATE(698)] = 49476, + [SMALL_STATE(699)] = 49520, + [SMALL_STATE(700)] = 49561, + [SMALL_STATE(701)] = 49602, + [SMALL_STATE(702)] = 49643, + [SMALL_STATE(703)] = 49672, + [SMALL_STATE(704)] = 49713, + [SMALL_STATE(705)] = 49756, + [SMALL_STATE(706)] = 49797, + [SMALL_STATE(707)] = 49838, + [SMALL_STATE(708)] = 49881, + [SMALL_STATE(709)] = 49922, + [SMALL_STATE(710)] = 49963, + [SMALL_STATE(711)] = 50004, + [SMALL_STATE(712)] = 50045, + [SMALL_STATE(713)] = 50086, + [SMALL_STATE(714)] = 50129, + [SMALL_STATE(715)] = 50153, + [SMALL_STATE(716)] = 50191, + [SMALL_STATE(717)] = 50217, + [SMALL_STATE(718)] = 50243, + [SMALL_STATE(719)] = 50281, + [SMALL_STATE(720)] = 50319, + [SMALL_STATE(721)] = 50347, + [SMALL_STATE(722)] = 50385, + [SMALL_STATE(723)] = 50423, + [SMALL_STATE(724)] = 50461, + [SMALL_STATE(725)] = 50499, + [SMALL_STATE(726)] = 50537, + [SMALL_STATE(727)] = 50577, + [SMALL_STATE(728)] = 50615, + [SMALL_STATE(729)] = 50653, + [SMALL_STATE(730)] = 50691, + [SMALL_STATE(731)] = 50731, + [SMALL_STATE(732)] = 50769, + [SMALL_STATE(733)] = 50807, + [SMALL_STATE(734)] = 50845, + [SMALL_STATE(735)] = 50871, + [SMALL_STATE(736)] = 50911, + [SMALL_STATE(737)] = 50951, + [SMALL_STATE(738)] = 50977, + [SMALL_STATE(739)] = 51017, + [SMALL_STATE(740)] = 51055, + [SMALL_STATE(741)] = 51083, + [SMALL_STATE(742)] = 51123, + [SMALL_STATE(743)] = 51151, + [SMALL_STATE(744)] = 51177, + [SMALL_STATE(745)] = 51203, + [SMALL_STATE(746)] = 51229, + [SMALL_STATE(747)] = 51255, + [SMALL_STATE(748)] = 51293, + [SMALL_STATE(749)] = 51331, + [SMALL_STATE(750)] = 51369, + [SMALL_STATE(751)] = 51407, + [SMALL_STATE(752)] = 51445, + [SMALL_STATE(753)] = 51485, + [SMALL_STATE(754)] = 51523, + [SMALL_STATE(755)] = 51561, + [SMALL_STATE(756)] = 51599, + [SMALL_STATE(757)] = 51625, + [SMALL_STATE(758)] = 51663, + [SMALL_STATE(759)] = 51701, + [SMALL_STATE(760)] = 51739, + [SMALL_STATE(761)] = 51762, + [SMALL_STATE(762)] = 51795, + [SMALL_STATE(763)] = 51818, + [SMALL_STATE(764)] = 51841, + [SMALL_STATE(765)] = 51864, + [SMALL_STATE(766)] = 51887, + [SMALL_STATE(767)] = 51910, + [SMALL_STATE(768)] = 51933, + [SMALL_STATE(769)] = 51964, + [SMALL_STATE(770)] = 51987, + [SMALL_STATE(771)] = 52016, + [SMALL_STATE(772)] = 52039, + [SMALL_STATE(773)] = 52062, + [SMALL_STATE(774)] = 52085, + [SMALL_STATE(775)] = 52108, + [SMALL_STATE(776)] = 52131, + [SMALL_STATE(777)] = 52158, + [SMALL_STATE(778)] = 52181, + [SMALL_STATE(779)] = 52204, + [SMALL_STATE(780)] = 52241, + [SMALL_STATE(781)] = 52274, + [SMALL_STATE(782)] = 52297, + [SMALL_STATE(783)] = 52320, + [SMALL_STATE(784)] = 52343, + [SMALL_STATE(785)] = 52366, + [SMALL_STATE(786)] = 52389, + [SMALL_STATE(787)] = 52412, + [SMALL_STATE(788)] = 52435, + [SMALL_STATE(789)] = 52458, + [SMALL_STATE(790)] = 52483, + [SMALL_STATE(791)] = 52506, + [SMALL_STATE(792)] = 52533, + [SMALL_STATE(793)] = 52556, + [SMALL_STATE(794)] = 52581, + [SMALL_STATE(795)] = 52604, + [SMALL_STATE(796)] = 52629, + [SMALL_STATE(797)] = 52658, + [SMALL_STATE(798)] = 52681, + [SMALL_STATE(799)] = 52718, + [SMALL_STATE(800)] = 52755, + [SMALL_STATE(801)] = 52792, + [SMALL_STATE(802)] = 52815, + [SMALL_STATE(803)] = 52840, + [SMALL_STATE(804)] = 52863, + [SMALL_STATE(805)] = 52894, + [SMALL_STATE(806)] = 52920, + [SMALL_STATE(807)] = 52946, + [SMALL_STATE(808)] = 52968, + [SMALL_STATE(809)] = 52990, + [SMALL_STATE(810)] = 53012, + [SMALL_STATE(811)] = 53034, + [SMALL_STATE(812)] = 53056, + [SMALL_STATE(813)] = 53078, + [SMALL_STATE(814)] = 53100, + [SMALL_STATE(815)] = 53122, + [SMALL_STATE(816)] = 53148, + [SMALL_STATE(817)] = 53174, + [SMALL_STATE(818)] = 53196, + [SMALL_STATE(819)] = 53218, + [SMALL_STATE(820)] = 53240, + [SMALL_STATE(821)] = 53262, + [SMALL_STATE(822)] = 53303, + [SMALL_STATE(823)] = 53326, + [SMALL_STATE(824)] = 53367, + [SMALL_STATE(825)] = 53388, + [SMALL_STATE(826)] = 53429, + [SMALL_STATE(827)] = 53449, + [SMALL_STATE(828)] = 53483, + [SMALL_STATE(829)] = 53507, + [SMALL_STATE(830)] = 53527, + [SMALL_STATE(831)] = 53547, + [SMALL_STATE(832)] = 53585, + [SMALL_STATE(833)] = 53607, + [SMALL_STATE(834)] = 53627, + [SMALL_STATE(835)] = 53647, + [SMALL_STATE(836)] = 53681, + [SMALL_STATE(837)] = 53700, + [SMALL_STATE(838)] = 53723, + [SMALL_STATE(839)] = 53750, + [SMALL_STATE(840)] = 53769, + [SMALL_STATE(841)] = 53788, + [SMALL_STATE(842)] = 53807, + [SMALL_STATE(843)] = 53828, + [SMALL_STATE(844)] = 53849, + [SMALL_STATE(845)] = 53867, + [SMALL_STATE(846)] = 53885, + [SMALL_STATE(847)] = 53903, + [SMALL_STATE(848)] = 53935, + [SMALL_STATE(849)] = 53953, + [SMALL_STATE(850)] = 53985, + [SMALL_STATE(851)] = 54003, + [SMALL_STATE(852)] = 54021, + [SMALL_STATE(853)] = 54039, + [SMALL_STATE(854)] = 54057, + [SMALL_STATE(855)] = 54075, + [SMALL_STATE(856)] = 54093, + [SMALL_STATE(857)] = 54125, + [SMALL_STATE(858)] = 54143, + [SMALL_STATE(859)] = 54161, + [SMALL_STATE(860)] = 54179, + [SMALL_STATE(861)] = 54197, + [SMALL_STATE(862)] = 54217, + [SMALL_STATE(863)] = 54235, + [SMALL_STATE(864)] = 54253, + [SMALL_STATE(865)] = 54271, + [SMALL_STATE(866)] = 54289, + [SMALL_STATE(867)] = 54307, + [SMALL_STATE(868)] = 54325, + [SMALL_STATE(869)] = 54343, + [SMALL_STATE(870)] = 54361, + [SMALL_STATE(871)] = 54379, + [SMALL_STATE(872)] = 54397, + [SMALL_STATE(873)] = 54415, + [SMALL_STATE(874)] = 54433, + [SMALL_STATE(875)] = 54451, + [SMALL_STATE(876)] = 54469, + [SMALL_STATE(877)] = 54487, + [SMALL_STATE(878)] = 54504, + [SMALL_STATE(879)] = 54521, + [SMALL_STATE(880)] = 54550, + [SMALL_STATE(881)] = 54567, + [SMALL_STATE(882)] = 54589, + [SMALL_STATE(883)] = 54613, + [SMALL_STATE(884)] = 54635, + [SMALL_STATE(885)] = 54653, + [SMALL_STATE(886)] = 54679, + [SMALL_STATE(887)] = 54703, + [SMALL_STATE(888)] = 54725, + [SMALL_STATE(889)] = 54751, + [SMALL_STATE(890)] = 54775, + [SMALL_STATE(891)] = 54797, + [SMALL_STATE(892)] = 54819, + [SMALL_STATE(893)] = 54843, + [SMALL_STATE(894)] = 54863, + [SMALL_STATE(895)] = 54887, + [SMALL_STATE(896)] = 54911, + [SMALL_STATE(897)] = 54935, + [SMALL_STATE(898)] = 54959, + [SMALL_STATE(899)] = 54985, + [SMALL_STATE(900)] = 55011, + [SMALL_STATE(901)] = 55035, + [SMALL_STATE(902)] = 55055, + [SMALL_STATE(903)] = 55079, + [SMALL_STATE(904)] = 55105, + [SMALL_STATE(905)] = 55127, + [SMALL_STATE(906)] = 55153, + [SMALL_STATE(907)] = 55175, + [SMALL_STATE(908)] = 55196, + [SMALL_STATE(909)] = 55219, + [SMALL_STATE(910)] = 55242, + [SMALL_STATE(911)] = 55263, + [SMALL_STATE(912)] = 55284, + [SMALL_STATE(913)] = 55307, + [SMALL_STATE(914)] = 55326, + [SMALL_STATE(915)] = 55345, + [SMALL_STATE(916)] = 55368, + [SMALL_STATE(917)] = 55391, + [SMALL_STATE(918)] = 55412, + [SMALL_STATE(919)] = 55433, + [SMALL_STATE(920)] = 55452, + [SMALL_STATE(921)] = 55471, + [SMALL_STATE(922)] = 55494, + [SMALL_STATE(923)] = 55513, + [SMALL_STATE(924)] = 55534, + [SMALL_STATE(925)] = 55555, + [SMALL_STATE(926)] = 55578, + [SMALL_STATE(927)] = 55599, + [SMALL_STATE(928)] = 55618, + [SMALL_STATE(929)] = 55639, + [SMALL_STATE(930)] = 55657, + [SMALL_STATE(931)] = 55675, + [SMALL_STATE(932)] = 55693, + [SMALL_STATE(933)] = 55709, + [SMALL_STATE(934)] = 55729, + [SMALL_STATE(935)] = 55747, + [SMALL_STATE(936)] = 55765, + [SMALL_STATE(937)] = 55785, + [SMALL_STATE(938)] = 55803, + [SMALL_STATE(939)] = 55821, + [SMALL_STATE(940)] = 55837, + [SMALL_STATE(941)] = 55853, + [SMALL_STATE(942)] = 55871, + [SMALL_STATE(943)] = 55889, + [SMALL_STATE(944)] = 55909, + [SMALL_STATE(945)] = 55927, + [SMALL_STATE(946)] = 55945, + [SMALL_STATE(947)] = 55965, + [SMALL_STATE(948)] = 55983, + [SMALL_STATE(949)] = 55999, + [SMALL_STATE(950)] = 56017, + [SMALL_STATE(951)] = 56035, + [SMALL_STATE(952)] = 56053, + [SMALL_STATE(953)] = 56073, + [SMALL_STATE(954)] = 56091, + [SMALL_STATE(955)] = 56111, + [SMALL_STATE(956)] = 56129, + [SMALL_STATE(957)] = 56147, + [SMALL_STATE(958)] = 56165, + [SMALL_STATE(959)] = 56185, + [SMALL_STATE(960)] = 56203, + [SMALL_STATE(961)] = 56221, + [SMALL_STATE(962)] = 56237, + [SMALL_STATE(963)] = 56253, + [SMALL_STATE(964)] = 56271, + [SMALL_STATE(965)] = 56289, + [SMALL_STATE(966)] = 56307, + [SMALL_STATE(967)] = 56327, + [SMALL_STATE(968)] = 56347, + [SMALL_STATE(969)] = 56365, + [SMALL_STATE(970)] = 56383, + [SMALL_STATE(971)] = 56401, + [SMALL_STATE(972)] = 56419, + [SMALL_STATE(973)] = 56439, + [SMALL_STATE(974)] = 56457, + [SMALL_STATE(975)] = 56475, + [SMALL_STATE(976)] = 56493, + [SMALL_STATE(977)] = 56511, + [SMALL_STATE(978)] = 56529, + [SMALL_STATE(979)] = 56549, + [SMALL_STATE(980)] = 56569, + [SMALL_STATE(981)] = 56587, + [SMALL_STATE(982)] = 56605, + [SMALL_STATE(983)] = 56623, + [SMALL_STATE(984)] = 56643, + [SMALL_STATE(985)] = 56663, + [SMALL_STATE(986)] = 56683, + [SMALL_STATE(987)] = 56700, + [SMALL_STATE(988)] = 56717, + [SMALL_STATE(989)] = 56734, + [SMALL_STATE(990)] = 56747, + [SMALL_STATE(991)] = 56764, + [SMALL_STATE(992)] = 56777, + [SMALL_STATE(993)] = 56794, + [SMALL_STATE(994)] = 56807, + [SMALL_STATE(995)] = 56824, + [SMALL_STATE(996)] = 56841, + [SMALL_STATE(997)] = 56858, + [SMALL_STATE(998)] = 56875, + [SMALL_STATE(999)] = 56892, + [SMALL_STATE(1000)] = 56909, + [SMALL_STATE(1001)] = 56926, + [SMALL_STATE(1002)] = 56943, + [SMALL_STATE(1003)] = 56960, + [SMALL_STATE(1004)] = 56973, + [SMALL_STATE(1005)] = 56986, + [SMALL_STATE(1006)] = 57003, + [SMALL_STATE(1007)] = 57020, + [SMALL_STATE(1008)] = 57037, + [SMALL_STATE(1009)] = 57054, + [SMALL_STATE(1010)] = 57067, + [SMALL_STATE(1011)] = 57084, + [SMALL_STATE(1012)] = 57101, + [SMALL_STATE(1013)] = 57118, + [SMALL_STATE(1014)] = 57133, + [SMALL_STATE(1015)] = 57150, + [SMALL_STATE(1016)] = 57167, + [SMALL_STATE(1017)] = 57184, + [SMALL_STATE(1018)] = 57201, + [SMALL_STATE(1019)] = 57218, + [SMALL_STATE(1020)] = 57235, + [SMALL_STATE(1021)] = 57252, + [SMALL_STATE(1022)] = 57269, + [SMALL_STATE(1023)] = 57286, + [SMALL_STATE(1024)] = 57303, + [SMALL_STATE(1025)] = 57320, + [SMALL_STATE(1026)] = 57337, + [SMALL_STATE(1027)] = 57354, + [SMALL_STATE(1028)] = 57371, + [SMALL_STATE(1029)] = 57388, + [SMALL_STATE(1030)] = 57405, + [SMALL_STATE(1031)] = 57422, + [SMALL_STATE(1032)] = 57439, + [SMALL_STATE(1033)] = 57452, + [SMALL_STATE(1034)] = 57465, + [SMALL_STATE(1035)] = 57480, + [SMALL_STATE(1036)] = 57497, + [SMALL_STATE(1037)] = 57510, + [SMALL_STATE(1038)] = 57523, + [SMALL_STATE(1039)] = 57536, + [SMALL_STATE(1040)] = 57553, + [SMALL_STATE(1041)] = 57570, + [SMALL_STATE(1042)] = 57585, + [SMALL_STATE(1043)] = 57600, + [SMALL_STATE(1044)] = 57617, + [SMALL_STATE(1045)] = 57630, + [SMALL_STATE(1046)] = 57643, + [SMALL_STATE(1047)] = 57660, + [SMALL_STATE(1048)] = 57677, + [SMALL_STATE(1049)] = 57694, + [SMALL_STATE(1050)] = 57711, + [SMALL_STATE(1051)] = 57728, + [SMALL_STATE(1052)] = 57745, + [SMALL_STATE(1053)] = 57762, + [SMALL_STATE(1054)] = 57779, + [SMALL_STATE(1055)] = 57792, + [SMALL_STATE(1056)] = 57805, + [SMALL_STATE(1057)] = 57822, + [SMALL_STATE(1058)] = 57839, + [SMALL_STATE(1059)] = 57856, + [SMALL_STATE(1060)] = 57873, + [SMALL_STATE(1061)] = 57890, + [SMALL_STATE(1062)] = 57907, + [SMALL_STATE(1063)] = 57924, + [SMALL_STATE(1064)] = 57941, + [SMALL_STATE(1065)] = 57958, + [SMALL_STATE(1066)] = 57975, + [SMALL_STATE(1067)] = 57992, + [SMALL_STATE(1068)] = 58009, + [SMALL_STATE(1069)] = 58026, + [SMALL_STATE(1070)] = 58043, + [SMALL_STATE(1071)] = 58060, + [SMALL_STATE(1072)] = 58077, + [SMALL_STATE(1073)] = 58094, + [SMALL_STATE(1074)] = 58111, + [SMALL_STATE(1075)] = 58126, + [SMALL_STATE(1076)] = 58143, + [SMALL_STATE(1077)] = 58156, + [SMALL_STATE(1078)] = 58173, + [SMALL_STATE(1079)] = 58190, + [SMALL_STATE(1080)] = 58207, + [SMALL_STATE(1081)] = 58220, + [SMALL_STATE(1082)] = 58233, + [SMALL_STATE(1083)] = 58250, + [SMALL_STATE(1084)] = 58267, + [SMALL_STATE(1085)] = 58284, + [SMALL_STATE(1086)] = 58301, + [SMALL_STATE(1087)] = 58318, + [SMALL_STATE(1088)] = 58335, + [SMALL_STATE(1089)] = 58348, + [SMALL_STATE(1090)] = 58365, + [SMALL_STATE(1091)] = 58382, + [SMALL_STATE(1092)] = 58399, + [SMALL_STATE(1093)] = 58416, + [SMALL_STATE(1094)] = 58433, + [SMALL_STATE(1095)] = 58446, + [SMALL_STATE(1096)] = 58459, + [SMALL_STATE(1097)] = 58472, + [SMALL_STATE(1098)] = 58485, + [SMALL_STATE(1099)] = 58502, + [SMALL_STATE(1100)] = 58519, + [SMALL_STATE(1101)] = 58536, + [SMALL_STATE(1102)] = 58549, + [SMALL_STATE(1103)] = 58566, + [SMALL_STATE(1104)] = 58579, + [SMALL_STATE(1105)] = 58596, + [SMALL_STATE(1106)] = 58613, + [SMALL_STATE(1107)] = 58626, + [SMALL_STATE(1108)] = 58641, + [SMALL_STATE(1109)] = 58658, + [SMALL_STATE(1110)] = 58671, + [SMALL_STATE(1111)] = 58688, + [SMALL_STATE(1112)] = 58705, + [SMALL_STATE(1113)] = 58722, + [SMALL_STATE(1114)] = 58739, + [SMALL_STATE(1115)] = 58752, + [SMALL_STATE(1116)] = 58769, + [SMALL_STATE(1117)] = 58786, + [SMALL_STATE(1118)] = 58803, + [SMALL_STATE(1119)] = 58820, + [SMALL_STATE(1120)] = 58837, + [SMALL_STATE(1121)] = 58854, + [SMALL_STATE(1122)] = 58871, + [SMALL_STATE(1123)] = 58888, + [SMALL_STATE(1124)] = 58905, + [SMALL_STATE(1125)] = 58922, + [SMALL_STATE(1126)] = 58939, + [SMALL_STATE(1127)] = 58956, + [SMALL_STATE(1128)] = 58973, + [SMALL_STATE(1129)] = 58990, + [SMALL_STATE(1130)] = 59007, + [SMALL_STATE(1131)] = 59024, + [SMALL_STATE(1132)] = 59041, + [SMALL_STATE(1133)] = 59058, + [SMALL_STATE(1134)] = 59075, + [SMALL_STATE(1135)] = 59092, + [SMALL_STATE(1136)] = 59105, + [SMALL_STATE(1137)] = 59122, + [SMALL_STATE(1138)] = 59139, + [SMALL_STATE(1139)] = 59156, + [SMALL_STATE(1140)] = 59173, + [SMALL_STATE(1141)] = 59190, + [SMALL_STATE(1142)] = 59207, + [SMALL_STATE(1143)] = 59221, + [SMALL_STATE(1144)] = 59233, + [SMALL_STATE(1145)] = 59247, + [SMALL_STATE(1146)] = 59261, + [SMALL_STATE(1147)] = 59275, + [SMALL_STATE(1148)] = 59289, + [SMALL_STATE(1149)] = 59301, + [SMALL_STATE(1150)] = 59313, + [SMALL_STATE(1151)] = 59327, + [SMALL_STATE(1152)] = 59341, + [SMALL_STATE(1153)] = 59355, + [SMALL_STATE(1154)] = 59367, + [SMALL_STATE(1155)] = 59381, + [SMALL_STATE(1156)] = 59393, + [SMALL_STATE(1157)] = 59405, + [SMALL_STATE(1158)] = 59417, + [SMALL_STATE(1159)] = 59431, + [SMALL_STATE(1160)] = 59443, + [SMALL_STATE(1161)] = 59457, + [SMALL_STATE(1162)] = 59469, + [SMALL_STATE(1163)] = 59483, + [SMALL_STATE(1164)] = 59495, + [SMALL_STATE(1165)] = 59509, + [SMALL_STATE(1166)] = 59521, + [SMALL_STATE(1167)] = 59533, + [SMALL_STATE(1168)] = 59547, + [SMALL_STATE(1169)] = 59561, + [SMALL_STATE(1170)] = 59573, + [SMALL_STATE(1171)] = 59587, + [SMALL_STATE(1172)] = 59601, + [SMALL_STATE(1173)] = 59613, + [SMALL_STATE(1174)] = 59625, + [SMALL_STATE(1175)] = 59639, + [SMALL_STATE(1176)] = 59651, + [SMALL_STATE(1177)] = 59665, + [SMALL_STATE(1178)] = 59679, + [SMALL_STATE(1179)] = 59691, + [SMALL_STATE(1180)] = 59703, + [SMALL_STATE(1181)] = 59717, + [SMALL_STATE(1182)] = 59729, + [SMALL_STATE(1183)] = 59743, + [SMALL_STATE(1184)] = 59755, + [SMALL_STATE(1185)] = 59769, + [SMALL_STATE(1186)] = 59783, + [SMALL_STATE(1187)] = 59797, + [SMALL_STATE(1188)] = 59809, + [SMALL_STATE(1189)] = 59823, + [SMALL_STATE(1190)] = 59837, + [SMALL_STATE(1191)] = 59849, + [SMALL_STATE(1192)] = 59861, + [SMALL_STATE(1193)] = 59875, + [SMALL_STATE(1194)] = 59887, + [SMALL_STATE(1195)] = 59899, + [SMALL_STATE(1196)] = 59913, + [SMALL_STATE(1197)] = 59927, + [SMALL_STATE(1198)] = 59941, + [SMALL_STATE(1199)] = 59953, + [SMALL_STATE(1200)] = 59967, + [SMALL_STATE(1201)] = 59979, + [SMALL_STATE(1202)] = 59993, + [SMALL_STATE(1203)] = 60005, + [SMALL_STATE(1204)] = 60019, + [SMALL_STATE(1205)] = 60033, + [SMALL_STATE(1206)] = 60045, + [SMALL_STATE(1207)] = 60059, + [SMALL_STATE(1208)] = 60071, + [SMALL_STATE(1209)] = 60085, + [SMALL_STATE(1210)] = 60099, + [SMALL_STATE(1211)] = 60111, + [SMALL_STATE(1212)] = 60125, + [SMALL_STATE(1213)] = 60137, + [SMALL_STATE(1214)] = 60151, + [SMALL_STATE(1215)] = 60165, + [SMALL_STATE(1216)] = 60179, + [SMALL_STATE(1217)] = 60193, + [SMALL_STATE(1218)] = 60207, + [SMALL_STATE(1219)] = 60221, + [SMALL_STATE(1220)] = 60235, + [SMALL_STATE(1221)] = 60249, + [SMALL_STATE(1222)] = 60263, + [SMALL_STATE(1223)] = 60277, + [SMALL_STATE(1224)] = 60291, + [SMALL_STATE(1225)] = 60303, + [SMALL_STATE(1226)] = 60315, + [SMALL_STATE(1227)] = 60329, + [SMALL_STATE(1228)] = 60341, + [SMALL_STATE(1229)] = 60355, + [SMALL_STATE(1230)] = 60367, + [SMALL_STATE(1231)] = 60381, + [SMALL_STATE(1232)] = 60395, + [SMALL_STATE(1233)] = 60409, + [SMALL_STATE(1234)] = 60423, + [SMALL_STATE(1235)] = 60435, + [SMALL_STATE(1236)] = 60449, + [SMALL_STATE(1237)] = 60461, + [SMALL_STATE(1238)] = 60475, + [SMALL_STATE(1239)] = 60487, + [SMALL_STATE(1240)] = 60499, + [SMALL_STATE(1241)] = 60511, + [SMALL_STATE(1242)] = 60525, + [SMALL_STATE(1243)] = 60539, + [SMALL_STATE(1244)] = 60553, + [SMALL_STATE(1245)] = 60565, + [SMALL_STATE(1246)] = 60577, + [SMALL_STATE(1247)] = 60591, + [SMALL_STATE(1248)] = 60605, + [SMALL_STATE(1249)] = 60619, + [SMALL_STATE(1250)] = 60631, + [SMALL_STATE(1251)] = 60643, + [SMALL_STATE(1252)] = 60655, + [SMALL_STATE(1253)] = 60669, + [SMALL_STATE(1254)] = 60683, + [SMALL_STATE(1255)] = 60695, + [SMALL_STATE(1256)] = 60707, + [SMALL_STATE(1257)] = 60721, + [SMALL_STATE(1258)] = 60735, + [SMALL_STATE(1259)] = 60747, + [SMALL_STATE(1260)] = 60761, + [SMALL_STATE(1261)] = 60775, + [SMALL_STATE(1262)] = 60787, + [SMALL_STATE(1263)] = 60801, + [SMALL_STATE(1264)] = 60815, + [SMALL_STATE(1265)] = 60827, + [SMALL_STATE(1266)] = 60841, + [SMALL_STATE(1267)] = 60855, + [SMALL_STATE(1268)] = 60869, + [SMALL_STATE(1269)] = 60883, + [SMALL_STATE(1270)] = 60897, + [SMALL_STATE(1271)] = 60908, + [SMALL_STATE(1272)] = 60919, + [SMALL_STATE(1273)] = 60930, + [SMALL_STATE(1274)] = 60941, + [SMALL_STATE(1275)] = 60952, + [SMALL_STATE(1276)] = 60963, + [SMALL_STATE(1277)] = 60974, + [SMALL_STATE(1278)] = 60985, + [SMALL_STATE(1279)] = 60996, + [SMALL_STATE(1280)] = 61007, + [SMALL_STATE(1281)] = 61018, + [SMALL_STATE(1282)] = 61029, + [SMALL_STATE(1283)] = 61040, + [SMALL_STATE(1284)] = 61051, + [SMALL_STATE(1285)] = 61062, + [SMALL_STATE(1286)] = 61073, + [SMALL_STATE(1287)] = 61084, + [SMALL_STATE(1288)] = 61095, + [SMALL_STATE(1289)] = 61106, + [SMALL_STATE(1290)] = 61117, + [SMALL_STATE(1291)] = 61128, + [SMALL_STATE(1292)] = 61139, + [SMALL_STATE(1293)] = 61150, + [SMALL_STATE(1294)] = 61161, + [SMALL_STATE(1295)] = 61172, + [SMALL_STATE(1296)] = 61183, + [SMALL_STATE(1297)] = 61194, + [SMALL_STATE(1298)] = 61205, + [SMALL_STATE(1299)] = 61216, + [SMALL_STATE(1300)] = 61227, + [SMALL_STATE(1301)] = 61238, + [SMALL_STATE(1302)] = 61249, + [SMALL_STATE(1303)] = 61260, + [SMALL_STATE(1304)] = 61271, + [SMALL_STATE(1305)] = 61282, + [SMALL_STATE(1306)] = 61293, + [SMALL_STATE(1307)] = 61304, + [SMALL_STATE(1308)] = 61315, + [SMALL_STATE(1309)] = 61326, + [SMALL_STATE(1310)] = 61337, + [SMALL_STATE(1311)] = 61348, + [SMALL_STATE(1312)] = 61359, + [SMALL_STATE(1313)] = 61370, + [SMALL_STATE(1314)] = 61381, + [SMALL_STATE(1315)] = 61392, + [SMALL_STATE(1316)] = 61403, + [SMALL_STATE(1317)] = 61414, + [SMALL_STATE(1318)] = 61425, + [SMALL_STATE(1319)] = 61436, + [SMALL_STATE(1320)] = 61447, + [SMALL_STATE(1321)] = 61458, + [SMALL_STATE(1322)] = 61469, + [SMALL_STATE(1323)] = 61480, + [SMALL_STATE(1324)] = 61491, + [SMALL_STATE(1325)] = 61502, + [SMALL_STATE(1326)] = 61513, + [SMALL_STATE(1327)] = 61524, + [SMALL_STATE(1328)] = 61535, + [SMALL_STATE(1329)] = 61546, + [SMALL_STATE(1330)] = 61557, + [SMALL_STATE(1331)] = 61568, + [SMALL_STATE(1332)] = 61579, + [SMALL_STATE(1333)] = 61590, + [SMALL_STATE(1334)] = 61601, + [SMALL_STATE(1335)] = 61612, + [SMALL_STATE(1336)] = 61623, + [SMALL_STATE(1337)] = 61634, + [SMALL_STATE(1338)] = 61645, + [SMALL_STATE(1339)] = 61656, + [SMALL_STATE(1340)] = 61667, + [SMALL_STATE(1341)] = 61678, + [SMALL_STATE(1342)] = 61689, + [SMALL_STATE(1343)] = 61700, + [SMALL_STATE(1344)] = 61711, + [SMALL_STATE(1345)] = 61722, + [SMALL_STATE(1346)] = 61733, + [SMALL_STATE(1347)] = 61744, + [SMALL_STATE(1348)] = 61755, + [SMALL_STATE(1349)] = 61766, + [SMALL_STATE(1350)] = 61777, + [SMALL_STATE(1351)] = 61788, + [SMALL_STATE(1352)] = 61799, + [SMALL_STATE(1353)] = 61810, + [SMALL_STATE(1354)] = 61821, + [SMALL_STATE(1355)] = 61832, + [SMALL_STATE(1356)] = 61843, + [SMALL_STATE(1357)] = 61854, + [SMALL_STATE(1358)] = 61865, + [SMALL_STATE(1359)] = 61876, + [SMALL_STATE(1360)] = 61887, + [SMALL_STATE(1361)] = 61898, + [SMALL_STATE(1362)] = 61909, + [SMALL_STATE(1363)] = 61920, + [SMALL_STATE(1364)] = 61931, + [SMALL_STATE(1365)] = 61942, + [SMALL_STATE(1366)] = 61953, + [SMALL_STATE(1367)] = 61964, + [SMALL_STATE(1368)] = 61975, + [SMALL_STATE(1369)] = 61986, + [SMALL_STATE(1370)] = 61997, + [SMALL_STATE(1371)] = 62008, + [SMALL_STATE(1372)] = 62019, + [SMALL_STATE(1373)] = 62030, + [SMALL_STATE(1374)] = 62041, + [SMALL_STATE(1375)] = 62052, + [SMALL_STATE(1376)] = 62063, + [SMALL_STATE(1377)] = 62074, + [SMALL_STATE(1378)] = 62085, + [SMALL_STATE(1379)] = 62096, + [SMALL_STATE(1380)] = 62107, + [SMALL_STATE(1381)] = 62118, + [SMALL_STATE(1382)] = 62129, + [SMALL_STATE(1383)] = 62140, + [SMALL_STATE(1384)] = 62151, + [SMALL_STATE(1385)] = 62162, + [SMALL_STATE(1386)] = 62173, + [SMALL_STATE(1387)] = 62184, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -56093,1539 +57292,1563 @@ 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(1014), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), [63] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), [65] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), - [67] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1014), - [70] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(56), - [73] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1133), - [76] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1137), - [79] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1334), - [82] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(198), - [85] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(214), - [88] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(915), - [91] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(916), - [94] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1149), - [97] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(890), - [100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(579), - [103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(71), - [106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(106), - [109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(191), - [112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(547), - [115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(573), - [118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(568), - [121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(310), - [124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(905), - [127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1318), - [130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(919), - [133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(79), - [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(48), - [139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(48), - [142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(65), - [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(47), + [67] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1041), + [70] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(38), + [73] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1152), + [76] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1158), + [79] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1379), + [82] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(189), + [85] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(212), + [88] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(318), + [91] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(946), + [94] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1164), + [97] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(895), + [100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(605), + [103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(67), + [106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(120), + [109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(206), + [112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(555), + [115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(589), + [118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(586), + [121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(312), + [124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(912), + [127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1338), + [130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(981), + [133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(119), + [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(57), + [139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(57), + [142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(56), + [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(54), [148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), [150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), - [152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(56), - [155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(1334), - [158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(198), - [161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(214), - [164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(915), - [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(1140), - [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(579), - [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(71), - [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(106), - [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(191), - [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(547), - [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(573), - [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(568), - [191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(310), - [194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(919), - [197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(79), - [200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(48), - [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(48), - [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(65), - [209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(47), + [152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(38), + [155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(1379), + [158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(189), + [161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(212), + [164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(318), + [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(1160), + [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(605), + [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(67), + [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(120), + [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(206), + [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(555), + [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(589), + [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(586), + [191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(312), + [194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(981), + [197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(119), + [200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(57), + [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(57), + [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(56), + [209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(54), [212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), [214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), - [216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(56), - [219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(1334), - [222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(198), - [225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(214), - [228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(915), - [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(1140), - [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(579), - [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(71), - [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(106), - [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(191), - [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(547), - [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(573), - [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(568), - [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(310), - [258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(919), - [261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(79), - [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(48), - [267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(48), - [270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(65), - [273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(47), - [276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), - [288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), - [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), - [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(36), - [347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(1275), - [350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(201), - [353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(304), - [356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(962), - [359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(1210), - [362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(609), - [365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(155), - [368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(171), - [371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(193), - [374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(546), - [377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(569), - [380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(570), - [383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(307), - [386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(961), - [389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(303), - [392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(103), - [395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(103), - [398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(44), - [401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(95), - [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record, 1, .production_id = 1), - [422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record, 1, .production_id = 1), - [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), - [440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), - [442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), - [444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), - [446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_access, 3, .production_id = 14), - [448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_access, 3, .production_id = 14), - [450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), - [452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), - [454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1), - [456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 1), - [458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 1), - [460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 1), - [462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_name, 1), - [464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_name, 1), - [466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer, 1), - [468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer, 1), - [470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_constructor_name, 3, .production_id = 16), - [472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_constructor_name, 3, .production_id = 16), - [474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_unit, 1), - [476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_unit, 1), - [478] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(1154), - [482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__maybe_function_expression, 1), - [484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 2, .production_id = 6), - [486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 2, .production_id = 6), - [488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer, 2), - [490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer, 2), - [492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 3, .production_id = 15), - [494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 3, .production_id = 15), - [496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case, 5, .production_id = 45), - [498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case, 5, .production_id = 45), - [500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), - [502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), - [504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), - [506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), - [508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), - [511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__maybe_record_expression, 1), - [513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 6), - [515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 6), - [517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 4), - [519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 4), - [521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 5, .production_id = 36), - [523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 5, .production_id = 36), - [525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3), - [527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3), - [529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_todo, 1), - [531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_todo, 1), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 5), - [537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 5), - [539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record, 2, .production_id = 7), - [541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record, 2, .production_id = 7), - [543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), - [545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update, 7, .production_id = 70), - [547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_update, 7, .production_id = 70), - [549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 7, .production_id = 65), - [551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 7, .production_id = 65), - [553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 13), - [555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 13), - [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), - [577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert, 2, .production_id = 5), - [583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert, 2, .production_id = 5), - [585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use, 4, .production_id = 32), - [587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use, 4, .production_id = 32), - [589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negation, 2), - [591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negation, 2), - [593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_todo, 4, .production_id = 29), - [595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_todo, 4, .production_id = 29), - [597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string, 2), - [599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 2), - [601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), - [603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), - [605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), - [607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), - [609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 7, .production_id = 64), - [611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 7, .production_id = 64), - [613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use, 5, .production_id = 48), - [615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use, 5, .production_id = 48), - [617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try, 4, .production_id = 27), - [619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try, 4, .production_id = 27), - [621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use, 6, .production_id = 59), - [623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use, 6, .production_id = 59), - [625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment, 3, .production_id = 31), - [627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment, 3, .production_id = 31), - [629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 6, .production_id = 53), - [631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 6, .production_id = 53), - [633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 4), - [635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 4), - [637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use, 5, .production_id = 47), - [639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use, 5, .production_id = 47), - [641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment, 4, .production_id = 46), - [643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment, 4, .production_id = 46), - [645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_panic, 1), - [647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_panic, 1), - [649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string, 5), - [651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 5), - [653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 5, .production_id = 35), - [655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 5, .production_id = 35), - [657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 5), - [659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 5), - [661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string, 4), - [663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 4), - [665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), - [667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), - [669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), - [671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), - [673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try, 5, .production_id = 44), - [675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try, 5, .production_id = 44), - [677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string, 3), - [679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 3), - [681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use, 3, .production_id = 12), - [683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use, 3, .production_id = 12), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), - [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), - [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [753] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(1161), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), - [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), - [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [1003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_subjects, 2), SHIFT(41), - [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [1022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [1036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [1042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_subjects, 3), SHIFT(41), - [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [1089] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(1209), - [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [1095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 3, .production_id = 58), - [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [1117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 3, .production_id = 58), - [1119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 4, .production_id = 68), - [1121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 4, .production_id = 68), - [1123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2), - [1125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2), - [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), - [1129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), - [1131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), - [1133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1357), - [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1), - [1138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 1), - [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [1142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 2, .production_id = 2), - [1144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 2, .production_id = 2), - [1146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [1148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), - [1150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 1, .production_id = 1), - [1152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 1, .production_id = 1), - [1154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [1156] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(1246), - [1160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), - [1163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record, 1, .production_id = 1), - [1165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record, 1, .production_id = 1), - [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [1169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, .production_id = 1), - [1171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, .production_id = 1), - [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [1191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_imports, 4), - [1193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unqualified_imports, 4), - [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [1197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_type_identifier, 3, .production_id = 16), - [1199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_type_identifier, 3, .production_id = 16), - [1201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_var, 1), - [1203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_var, 1), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), - [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), - [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), - [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [1221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_imports, 2), - [1223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unqualified_imports, 2), - [1225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_value, 1), - [1227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_value, 1), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [1231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__maybe_record_expression, 1), - [1233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__maybe_tuple_expression, 1), - [1235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment_options, 3), - [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), - [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [1247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment_options, 2), - [1249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment_options, 3), - [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [1253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), - [1255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(1267), - [1258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(535), - [1261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(541), - [1264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(936), - [1267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(935), - [1270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(862), - [1273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(865), - [1276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(865), - [1279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(752), - [1282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(828), - [1285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(832), - [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 4, .production_id = 18), - [1290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 4, .production_id = 18), - [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), - [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment_options, 2), - [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment_options, 3), - [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment_options, 2), - [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clauses, 1), - [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_identifier, 1), - [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_identifier, 1), - [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_imports, 5), - [1310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unqualified_imports, 5), - [1312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_imports, 3), - [1314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unqualified_imports, 3), - [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 5), - [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 5), - [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string, 4), - [1342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string, 4), - [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 6, .production_id = 51), - [1346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 6, .production_id = 51), - [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple, 3), - [1350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_tuple, 3), - [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_list, 3), - [1354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_list, 3), - [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_type, 4), - [1358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_type, 4), - [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string, 3), - [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string, 3), - [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_field_access, 3, .production_id = 15), - [1366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_field_access, 3, .production_id = 15), - [1368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_arguments, 2), - [1370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record_arguments, 2), - [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 4), - [1374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 4), - [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, .production_id = 66), - [1378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 7, .production_id = 66), - [1380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 5, .production_id = 49), - [1382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 5, .production_id = 49), - [1384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function, 9, .production_id = 75), - [1386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function, 9, .production_id = 75), - [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 9, .production_id = 74), - [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 9, .production_id = 74), - [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 2, .production_id = 9), - [1394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 2, .production_id = 9), - [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_arguments, 5), - [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), - [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_arguments, 5), - [1406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record_arguments, 5), - [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let, 2, .production_id = 5), - [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let, 2, .production_id = 5), - [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 5, .production_id = 34), - [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 5, .production_id = 34), - [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record, 2, .production_id = 7), - [1418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record, 2, .production_id = 7), - [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple, 6), - [1422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_tuple, 6), - [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target_group, 4, .production_id = 17), - [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_target_group, 4, .production_id = 17), - [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 6), - [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 6), - [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target_group, 5, .production_id = 17), - [1434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_target_group, 5, .production_id = 17), - [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, .production_id = 73), - [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 8, .production_id = 73), - [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), - [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), - [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_assert, 3, .production_id = 11), - [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_assert, 3, .production_id = 11), - [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function, 8, .production_id = 72), - [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function, 8, .production_id = 72), - [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, .production_id = 71), - [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 8, .production_id = 71), - [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_hole, 1), - [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_hole, 1), - [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 2), - [1462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 2), - [1464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string, 2), - [1466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string, 2), - [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_arguments, 3), - [1470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record_arguments, 3), - [1472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 4, .production_id = 19), - [1474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 4, .production_id = 19), - [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, .production_id = 54), - [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 6, .production_id = 54), - [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 2, .production_id = 7), - [1482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 2, .production_id = 7), - [1484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_arguments, 4), - [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record_arguments, 4), - [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string, 5), - [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string, 5), - [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), - [1494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), - [1496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_list, 5), - [1498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_list, 5), - [1500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple, 5), - [1502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_tuple, 5), - [1504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 4, .production_id = 20), - [1506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 4, .production_id = 20), - [1508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5), - [1510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5), - [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 7), - [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 7), - [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statement_seq, 1), - [1518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statement_seq, 1), - [1520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, .production_id = 69), - [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 7, .production_id = 69), - [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), - [1526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), - [1528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, .production_id = 39), - [1530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5, .production_id = 39), - [1532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 52), - [1534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 52), - [1536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 2), - [1538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 2), - [1540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 6, .production_id = 60), - [1542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 6, .production_id = 60), - [1544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, .production_id = 61), - [1546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 6, .production_id = 61), - [1548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), - [1550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), - [1552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), - [1554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), - [1556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple, 4), - [1558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_tuple, 4), - [1560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 63), - [1562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 63), - [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6), - [1566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6), - [1568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_list, 4), - [1570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_list, 4), - [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 6), - [1574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 6), - [1576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), - [1578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), - [1580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), - [1582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), - [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_list, 2), - [1586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_list, 2), - [1588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), - [1590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), - [1592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_type, 3), - [1594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_type, 3), - [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [1600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_patterns, 2), - [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_patterns, 2), - [1604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_pattern, 2, .production_id = 30), - [1606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_pattern, 2, .production_id = 30), - [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [1610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_patterns, 3), - [1612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_patterns, 3), - [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_pattern, 3, .production_id = 33), - [1618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_pattern, 3, .production_id = 33), - [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [1630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), - [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [1638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_repeat1, 2), - [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [1660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_subjects, 1), - [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [1756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 1, .production_id = 3), - [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 3, .production_id = 50), - [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update_argument, 3, .production_id = 50), - [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [1858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [1866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), - [1868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [1870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), - [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [1876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), - [1892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1203), - [1895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1229), - [1898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1201), - [1901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1227), - [1904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(886), - [1907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(892), - [1910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1329), - [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 1, .production_id = 1), - [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [1953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), - [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), - [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [1981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_guard_binary_expression, 3, .production_id = 13), - [1983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_binary_expression, 3, .production_id = 13), - [1985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_tuple_access, 3, .production_id = 14), - [1987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_tuple_access, 3, .production_id = 14), - [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [1991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__constant_value, 1), REDUCE(sym__case_clause_guard_unit, 1), - [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [1996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__constant_value, 1), REDUCE(sym__case_clause_guard_unit, 1), - [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_guard_expression, 1, .production_id = 4), - [2001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_expression, 1, .production_id = 4), - [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_guard_unit, 1, .production_id = 57), - [2005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_unit, 1, .production_id = 57), - [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_guard_unit, 3), - [2009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_unit, 3), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [2025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string, 2), - [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, .production_id = 41), - [2037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 4, .production_id = 25), - [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [2043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discard, 1), - [2045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_expression, 1, .production_id = 4), - [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 2), - [2049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 4, .production_id = 42), - [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 5, .production_id = 25), - [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 4), - [2055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string, 3), - [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string, 4), - [2059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 6), - [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_binary_expression, 3, .production_id = 13), - [2065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, .production_id = 41), - [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3), - [2069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 3), - [2071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2), - [2073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 5, .production_id = 42), - [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), - [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [2081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, .production_id = 25), - [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 5), - [2085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_guard, 2), - [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string, 5), - [2093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, .production_id = 55), - [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 2, .production_id = 7), - [2097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 6, .production_id = 55), - [2099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 6, .production_id = 42), - [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), - [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [2105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1324), - [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), - [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [2116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 3, .production_id = 26), - [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [2128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [2130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_expression, 1), - [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1), - [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 25), - [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [2164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_repeat1, 2), SHIFT_REPEAT(217), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [2181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 33), - [2183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 33), SHIFT_REPEAT(577), - [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_pattern, 2, .production_id = 33), - [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [2210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructors, 1), - [2212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern_tail, 1), - [2214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_data_constructors_repeat1, 2), - [2216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_constructors_repeat1, 2), SHIFT_REPEAT(95), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [2223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 33), SHIFT_REPEAT(586), - [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [2236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_pattern, 1, .production_id = 30), - [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [2240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type, 1, .production_id = 1), - [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [2254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), - [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [2264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment_options, 1), - [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment_options, 1), - [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [2284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [2294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [2308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 1, .production_id = 24), - [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 1, .production_id = 8), - [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [2326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [2328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_bit_string_segment_options_repeat1, 2), - [2330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_bit_string_segment_options_repeat1, 2), SHIFT_REPEAT(533), - [2333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor, 1, .production_id = 1), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [2343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_pattern_arguments_repeat1, 2), SHIFT_REPEAT(549), - [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_pattern_arguments_repeat1, 2), - [2348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_patterns_repeat1, 2), - [2350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_patterns_repeat1, 2), SHIFT_REPEAT(571), - [2353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_tuple_repeat1, 2), SHIFT_REPEAT(654), - [2356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_tuple_repeat1, 2), - [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [2360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment_options, 1), - [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [2364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameter, 1, .production_id = 8), - [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [2374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), - [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pattern_bit_string_segment_options_repeat1, 2), - [2378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_bit_string_segment_options_repeat1, 2), SHIFT_REPEAT(528), - [2381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), - [2383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(964), - [2386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_bit_string_segment_options_repeat1, 2), - [2388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_bit_string_segment_options_repeat1, 2), SHIFT_REPEAT(532), - [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update_arguments, 3), - [2393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_patterns, 1), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update_arguments, 2), - [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple_type, 6), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [2415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_anonymous_function_parameters_repeat1, 2), SHIFT_REPEAT(861), - [2418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_anonymous_function_parameters_repeat1, 2), - [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [2424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string_segment_option_size, 4), - [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [2430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__labeled_name_param, 2, .production_id = 38), - [2432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__labeled_discard_param, 2, .production_id = 38), - [2434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_arguments, 5), - [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [2440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discard_param, 1, .production_id = 1), - [2442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bit_string_segment_option, 1), - [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [2450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_update_arguments_repeat1, 2), SHIFT_REPEAT(980), - [2453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_update_arguments_repeat1, 2), - [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [2459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string_segment_option_size, 4), - [2461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_bit_string_repeat1, 2), SHIFT_REPEAT(558), - [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pattern_bit_string_repeat1, 2), - [2466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type, 2, .production_id = 7), - [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [2478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_bit_string_repeat1, 2), SHIFT_REPEAT(306), - [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_bit_string_repeat1, 2), - [2483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_constructor_arguments_repeat1, 2), SHIFT_REPEAT(678), - [2486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_data_constructor_arguments_repeat1, 2), - [2488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment, 1, .production_id = 3), - [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_subjects, 2), - [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [2502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(152), - [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), - [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [2513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(691), - [2516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), - [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [2522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(718), - [2525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), - [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [2529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_type_arguments_repeat1, 2), SHIFT_REPEAT(716), - [2532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_type_arguments_repeat1, 2), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [2536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_arguments, 4), - [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [2542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_tuple_type_repeat1, 2), SHIFT_REPEAT(785), - [2545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_tuple_type_repeat1, 2), - [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [2555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple_type, 5), - [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [2559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_record_arguments_repeat1, 2), SHIFT_REPEAT(621), - [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_record_arguments_repeat1, 2), - [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment, 1, .production_id = 10), - [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple_type, 3), - [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [2604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_function_type, 3, .production_id = 52), - [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_arguments, 2), - [2610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_external_function_parameters_repeat1, 2), SHIFT_REPEAT(690), - [2613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_external_function_parameters_repeat1, 2), - [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [2629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_import, 1, .production_id = 1), - [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bit_string_segment_option, 4), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [2647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string_segment_option_size, 4), - [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_arguments, 3), - [2659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_function_type, 4, .production_id = 63), - [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [2669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_argument, 1, .production_id = 28), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [2675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name_param, 1, .production_id = 1), - [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [2683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple_type, 4), - [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [2701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__constant_bit_string_repeat1, 2), SHIFT_REPEAT(641), - [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__constant_bit_string_repeat1, 2), - [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [2720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_parameters_repeat1, 2), SHIFT_REPEAT(817), - [2723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_parameters_repeat1, 2), - [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [2729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 2, .production_id = 21), - [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [2757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(1222), - [2760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unqualified_imports_repeat1, 2), - [2788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unqualified_imports_repeat1, 2), SHIFT_REPEAT(912), - [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [2795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update_arguments, 1), - [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment, 1, .production_id = 3), - [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [2827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_argument, 3, .production_id = 56), - [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [2835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameters, 3), - [2837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_import, 3, .production_id = 62), - [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 2), - [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameters, 4), - [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 3), - [2877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_argument, 3, .production_id = 50), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [2883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment, 3, .production_id = 22), - [2885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_arguments, 5), - [2887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 2, .production_id = 37), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [2891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 2, .production_id = 23), - [2893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_argument, 1, .production_id = 3), - [2895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameters, 2), - [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [2905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hole, 1), - [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameter, 1, .production_id = 40), - [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [2911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_spread, 1), - [2913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 4), - [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument, 1), - [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [2931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameters, 5), - [2933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [2943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor, 2, .production_id = 7), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [2959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_argument, 1), - [2961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment, 3, .production_id = 43), - [2963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 5), - [2965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment, 3, .production_id = 22), - [2967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameter, 3, .production_id = 67), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [2973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_arguments, 3), - [2975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_argument, 3, .production_id = 50), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [2981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_argument, 1, .production_id = 3), - [2983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameter, 2, .production_id = 23), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [2987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_arguments, 4), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_arguments, 2), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [3003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameters, 4), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [3009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_types, 4), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [3019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_function_parameter_types, 4), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [3061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_spread, 2), - [3063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_function_parameter_types, 2), - [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [3081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_types, 3), - [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [3087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target, 1), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [3097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_function_parameter_types, 3), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [3113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_type_annotation, 2, .production_id = 21), - [3115] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [3119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameters, 5), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [3135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameters, 3), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [3139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameters, 2), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [3143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_function_parameter_types, 5), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [3159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_types, 5), - [3161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern_tail, 2), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [3211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_types, 2), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(38), + [219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(1379), + [222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(189), + [225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(212), + [228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(318), + [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(1160), + [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(605), + [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(67), + [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(120), + [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(206), + [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(555), + [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(589), + [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(586), + [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(312), + [258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(981), + [261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(119), + [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(57), + [267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(57), + [270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(56), + [273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(54), + [276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(47), + [279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(1291), + [282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(205), + [285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(276), + [288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(313), + [291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(1228), + [294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(615), + [297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(155), + [300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(185), + [303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(197), + [306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(558), + [309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(568), + [312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(578), + [315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(317), + [318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(965), + [321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(293), + [324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(79), + [327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(79), + [330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(49), + [333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(121), + [336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), + [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), + [374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), + [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record, 1, .production_id = 1), + [434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record, 1, .production_id = 1), + [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), + [440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), + [442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1), + [444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 1), + [446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_unit, 1), + [448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_unit, 1), + [450] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(1142), + [454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__maybe_function_expression, 1), + [456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer, 2), + [458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer, 2), + [460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 2, .production_id = 6), + [462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 2, .production_id = 6), + [464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), + [466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), + [468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_name, 1), + [470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_name, 1), + [472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), + [476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer, 1), + [478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer, 1), + [480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), + [482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), + [484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_constructor_name, 3, .production_id = 16), + [486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_constructor_name, 3, .production_id = 16), + [488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), + [490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), + [492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), + [495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 3, .production_id = 15), + [497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 3, .production_id = 15), + [499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 1), + [501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 1), + [503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case, 5, .production_id = 45), + [505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case, 5, .production_id = 45), + [507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_access, 3, .production_id = 14), + [509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_access, 3, .production_id = 14), + [511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 5), + [513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 5), + [515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_todo, 1), + [517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_todo, 1), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 7, .production_id = 65), + [523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 7, .production_id = 65), + [525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 4), + [527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 4), + [529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 5, .production_id = 36), + [531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 5, .production_id = 36), + [533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__maybe_record_expression, 1), + [535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update, 7, .production_id = 70), + [537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_update, 7, .production_id = 70), + [539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3), + [541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3), + [543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record, 2, .production_id = 7), + [545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record, 2, .production_id = 7), + [547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 6), + [549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 6), + [551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), + [553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string, 2), + [555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 2), + [557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use, 6, .production_id = 59), + [559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use, 6, .production_id = 59), + [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_todo, 4, .production_id = 29), + [583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_todo, 4, .production_id = 29), + [585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use, 5, .production_id = 47), + [587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use, 5, .production_id = 47), + [589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 5), + [591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 5), + [593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment, 3, .production_id = 31), + [595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment, 3, .production_id = 31), + [597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 4), + [599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 4), + [601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string, 4), + [603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 4), + [605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use, 4, .production_id = 32), + [607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use, 4, .production_id = 32), + [609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 5, .production_id = 35), + [611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 5, .production_id = 35), + [613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert, 2, .production_id = 5), + [615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert, 2, .production_id = 5), + [617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 7, .production_id = 64), + [619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 7, .production_id = 64), + [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), + [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), + [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_negation, 2), + [663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_negation, 2), + [665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use, 5, .production_id = 48), + [667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use, 5, .production_id = 48), + [669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try, 5, .production_id = 44), + [671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try, 5, .production_id = 44), + [673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), + [675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), + [677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string, 5), + [679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 5), + [681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 13), + [683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 13), + [685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string, 3), + [687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 3), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use, 3, .production_id = 12), + [703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use, 3, .production_id = 12), + [705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer_negation, 2), + [707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer_negation, 2), + [709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_integer, 1), REDUCE(sym_integer, 2), + [712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_integer, 1), REDUCE(sym_integer, 2), + [715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try, 4, .production_id = 27), + [717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try, 4, .production_id = 27), + [719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), + [721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), + [723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment, 4, .production_id = 46), + [725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment, 4, .production_id = 46), + [727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), + [729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), + [731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 6, .production_id = 53), + [733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 6, .production_id = 53), + [735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), + [737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), + [739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), + [741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), + [743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_panic, 1), + [745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_panic, 1), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [765] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(1267), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), + [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), + [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [1033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_subjects, 2), SHIFT(37), + [1036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [1042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [1044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [1064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_subjects, 3), SHIFT(37), + [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [1125] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(1235), + [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [1131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 3, .production_id = 58), + [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [1153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 3, .production_id = 58), + [1155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 4, .production_id = 68), + [1157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 4, .production_id = 68), + [1159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), + [1161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), + [1163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1373), + [1166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1), + [1168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 1), + [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2), + [1174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2), + [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 2, .production_id = 2), + [1180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 2, .production_id = 2), + [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record, 1, .production_id = 1), + [1188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record, 1, .production_id = 1), + [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 1, .production_id = 1), + [1194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 1, .production_id = 1), + [1196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [1198] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(1213), + [1202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), + [1205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, .production_id = 1), + [1207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, .production_id = 1), + [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), + [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [1241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment_options, 2), + [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), + [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [1253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment_options, 3), + [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [1257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_imports, 5), + [1259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unqualified_imports, 5), + [1261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_type_identifier, 3, .production_id = 16), + [1263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_type_identifier, 3, .production_id = 16), + [1265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), + [1267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(1290), + [1270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(548), + [1273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(556), + [1276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(948), + [1279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(934), + [1282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(901), + [1285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(878), + [1288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(878), + [1291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(797), + [1294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(872), + [1297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(854), + [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment_options, 2), + [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment_options, 3), + [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 4, .production_id = 18), + [1310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 4, .production_id = 18), + [1312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment_options, 3), + [1316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_imports, 2), + [1318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unqualified_imports, 2), + [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_value, 1), + [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_value, 1), + [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_identifier, 1), + [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_identifier, 1), + [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clauses, 1), + [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_imports, 4), + [1334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unqualified_imports, 4), + [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__maybe_tuple_expression, 1), + [1338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__maybe_record_expression, 1), + [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_imports, 3), + [1346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unqualified_imports, 3), + [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment_options, 2), + [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_var, 1), + [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_var, 1), + [1354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 2, .production_id = 7), + [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 2, .production_id = 7), + [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_import, 6, .production_id = 51), + [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 6, .production_id = 51), + [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple, 3), + [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_tuple, 3), + [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 52), + [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 52), + [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), + [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), + [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_list, 3), + [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_list, 3), + [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), + [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), + [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 2), + [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 2), + [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string, 3), + [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string, 3), + [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_hole, 1), + [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_hole, 1), + [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_field_access, 3, .production_id = 15), + [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_field_access, 3, .production_id = 15), + [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_arguments, 2), + [1408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record_arguments, 2), + [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), + [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), + [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 63), + [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 63), + [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), + [1420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), + [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), + [1424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), + [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 4), + [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 4), + [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), + [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), + [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 5, .production_id = 34), + [1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 5, .production_id = 34), + [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string, 4), + [1440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string, 4), + [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__constant_bit_string, 2), + [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string, 2), + [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_list, 4), + [1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_list, 4), + [1454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), + [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), + [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 2, .production_id = 9), + [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 2, .production_id = 9), + [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 6), + [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 6), + [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 5, .production_id = 49), + [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 5, .production_id = 49), + [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple, 4), + [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_tuple, 4), + [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, .production_id = 66), + [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 7, .production_id = 66), + [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), + [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), + [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, .production_id = 39), + [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5, .production_id = 39), + [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 4, .production_id = 20), + [1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 4, .production_id = 20), + [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_type, 4), + [1492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_type, 4), + [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 4, .production_id = 19), + [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 4, .production_id = 19), + [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target_group, 5, .production_id = 17), + [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_target_group, 5, .production_id = 17), + [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_assert, 3, .production_id = 11), + [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_assert, 3, .production_id = 11), + [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_type, 3), + [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_type, 3), + [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function, 9, .production_id = 75), + [1512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function, 9, .production_id = 75), + [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, .production_id = 54), + [1516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 6, .production_id = 54), + [1518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_list, 2), + [1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_list, 2), + [1522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 9, .production_id = 74), + [1524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 9, .production_id = 74), + [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), + [1528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), + [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_body, 2), + [1532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function_body, 2), + [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5), + [1536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5), + [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 6), + [1540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 6), + [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_arguments, 5), + [1544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record_arguments, 5), + [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_arguments, 3), + [1548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record_arguments, 3), + [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [1556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple, 6), + [1566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_tuple, 6), + [1568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statement_seq, 1), + [1570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statement_seq, 1), + [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, .production_id = 73), + [1574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 8, .production_id = 73), + [1576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6), + [1578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6), + [1580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function, 8, .production_id = 72), + [1582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function, 8, .production_id = 72), + [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, .production_id = 71), + [1586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 8, .production_id = 71), + [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [1590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, .production_id = 69), + [1592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 7, .production_id = 69), + [1594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 7), + [1596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 7), + [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_arguments, 4), + [1600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record_arguments, 4), + [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string, 5), + [1604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string, 5), + [1606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, .production_id = 61), + [1608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 6, .production_id = 61), + [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target_group, 4, .production_id = 17), + [1612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_target_group, 4, .production_id = 17), + [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let, 2, .production_id = 5), + [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let, 2, .production_id = 5), + [1618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_list, 5), + [1620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_list, 5), + [1622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple, 5), + [1624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_tuple, 5), + [1626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 6, .production_id = 60), + [1628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 6, .production_id = 60), + [1630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record, 2, .production_id = 7), + [1632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record, 2, .production_id = 7), + [1634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_pattern, 3, .production_id = 33), + [1636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_pattern, 3, .production_id = 33), + [1638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_patterns, 3), + [1640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_patterns, 3), + [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [1648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_pattern, 2, .production_id = 30), + [1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_pattern, 2, .production_id = 30), + [1652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_patterns, 2), + [1654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_patterns, 2), + [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), + [1674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), + [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_repeat1, 2), + [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_subjects, 1), + [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [1788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 1, .production_id = 3), + [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [1796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 3, .production_id = 50), + [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update_argument, 3, .production_id = 50), + [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [1858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [1868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [1876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [1890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), + [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [1908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), + [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), + [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), + [1936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1220), + [1939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1257), + [1942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1203), + [1945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1253), + [1948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(896), + [1951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(925), + [1954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1349), + [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), + [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [1985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 1, .production_id = 1), + [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [2013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_tuple_access, 3, .production_id = 14), + [2015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_tuple_access, 3, .production_id = 14), + [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_guard_binary_expression, 3, .production_id = 13), + [2037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_binary_expression, 3, .production_id = 13), + [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [2043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__constant_value, 1), REDUCE(sym__case_clause_guard_unit, 1), + [2046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__constant_value, 1), REDUCE(sym__case_clause_guard_unit, 1), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_guard_unit, 3), + [2055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_unit, 3), + [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_guard_unit, 1, .production_id = 57), + [2059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_unit, 1, .production_id = 57), + [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_guard_expression, 1, .production_id = 4), + [2063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_expression, 1, .production_id = 4), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 4, .production_id = 25), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [2081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 4), + [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 5, .production_id = 42), + [2085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, .production_id = 41), + [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 6, .production_id = 42), + [2089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 2), + [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 6), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [2101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_binary_expression, 3, .production_id = 13), + [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string, 2), + [2105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string, 5), + [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 4, .production_id = 42), + [2109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string, 3), + [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 5), + [2113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_guard, 2), + [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [2117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3), + [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string, 4), + [2121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 3), + [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 5, .production_id = 25), + [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, .production_id = 25), + [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, .production_id = 55), + [2129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, .production_id = 41), + [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 2, .production_id = 7), + [2133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), + [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 6, .production_id = 55), + [2137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discard, 1), + [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2), + [2141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_expression, 1, .production_id = 4), + [2143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1354), + [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), + [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 3, .production_id = 26), + [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [2172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_expression, 1), + [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [2180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1), + [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [2190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 25), + [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [2214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_repeat1, 2), SHIFT_REPEAT(229), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type, 1, .production_id = 1), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 33), + [2249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 33), SHIFT_REPEAT(614), + [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_data_constructors_repeat1, 2), + [2260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_constructors_repeat1, 2), SHIFT_REPEAT(121), + [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern_tail, 1), + [2265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 33), SHIFT_REPEAT(604), + [2268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_pattern, 1, .production_id = 30), + [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_pattern, 2, .production_id = 33), + [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructors, 1), + [2292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 1, .production_id = 24), + [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [2296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pattern_bit_string_segment_options_repeat1, 2), + [2298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_bit_string_segment_options_repeat1, 2), SHIFT_REPEAT(546), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [2319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_patterns, 1), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_bit_string_segment_options_repeat1, 2), + [2345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_bit_string_segment_options_repeat1, 2), SHIFT_REPEAT(543), + [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [2356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [2360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_bit_string_segment_options_repeat1, 2), + [2362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_bit_string_segment_options_repeat1, 2), SHIFT_REPEAT(549), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameter, 1, .production_id = 8), + [2369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update_arguments, 3), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [2381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_pattern_arguments_repeat1, 2), SHIFT_REPEAT(554), + [2384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_pattern_arguments_repeat1, 2), + [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [2388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [2392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [2396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_patterns_repeat1, 2), + [2398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_patterns_repeat1, 2), SHIFT_REPEAT(575), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [2407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor, 1, .production_id = 1), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [2413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_tuple_repeat1, 2), SHIFT_REPEAT(673), + [2416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_tuple_repeat1, 2), + [2418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment_options, 1), + [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 1, .production_id = 8), + [2424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment_options, 1), + [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment_options, 1), + [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [2432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update_arguments, 2), + [2434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), + [2436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(980), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__labeled_name_param, 2, .production_id = 38), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [2461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__labeled_discard_param, 2, .production_id = 38), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [2467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_arguments, 4), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [2471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_record_arguments_repeat1, 2), SHIFT_REPEAT(633), + [2474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_record_arguments_repeat1, 2), + [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [2488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_bit_string_repeat1, 2), SHIFT_REPEAT(294), + [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_bit_string_repeat1, 2), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple_type, 5), + [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bit_string_segment_option, 1), + [2505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 33), SHIFT_REPEAT(602), + [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [2518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_anonymous_function_parameters_repeat1, 2), SHIFT_REPEAT(879), + [2521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_anonymous_function_parameters_repeat1, 2), + [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment, 1, .production_id = 3), + [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [2539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_subjects, 2), + [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [2545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_tuple_type_repeat1, 2), SHIFT_REPEAT(799), + [2548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_tuple_type_repeat1, 2), + [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [2554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_external_function_parameters_repeat1, 2), SHIFT_REPEAT(701), + [2557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_external_function_parameters_repeat1, 2), + [2559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_bit_string_repeat1, 2), SHIFT_REPEAT(574), + [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pattern_bit_string_repeat1, 2), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [2588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bit_string_segment_option, 4), + [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string_segment_option_size, 4), + [2592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment, 1, .production_id = 3), + [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_arguments, 3), + [2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 2, .production_id = 21), + [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_function_type, 4, .production_id = 63), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment, 1, .production_id = 10), + [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple_type, 4), + [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_argument, 1, .production_id = 28), + [2622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_update_arguments_repeat1, 2), SHIFT_REPEAT(1078), + [2625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_update_arguments_repeat1, 2), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [2631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__constant_bit_string_repeat1, 2), SHIFT_REPEAT(664), + [2634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__constant_bit_string_repeat1, 2), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [2640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_type_arguments_repeat1, 2), SHIFT_REPEAT(726), + [2643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_type_arguments_repeat1, 2), + [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [2651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type, 2, .production_id = 7), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [2657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(144), + [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), + [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unqualified_imports_repeat1, 2), + [2664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unqualified_imports_repeat1, 2), SHIFT_REPEAT(908), + [2667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(728), + [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update_arguments, 1), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_import, 1, .production_id = 1), + [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [2714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(712), + [2717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), + [2719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string_segment_option_size, 4), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [2727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_argument, 3, .production_id = 56), + [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [2743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple_type, 3), + [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [2759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_constructor_arguments_repeat1, 2), SHIFT_REPEAT(697), + [2762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_data_constructor_arguments_repeat1, 2), + [2764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_function_type, 3, .production_id = 52), + [2766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discard_param, 1, .production_id = 1), + [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name_param, 1, .production_id = 1), + [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_arguments, 2), + [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string_segment_option_size, 4), + [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_arguments, 5), + [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [2804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple_type, 6), + [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [2810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(1252), + [2813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), + [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [2857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_parameters_repeat1, 2), SHIFT_REPEAT(831), + [2860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_parameters_repeat1, 2), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [2884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameter, 2, .production_id = 23), + [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [2896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 3), + [2898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 4), + [2900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_arguments, 2), + [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument, 1), + [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [2906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameters, 2), + [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [2912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 2, .production_id = 37), + [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment, 3, .production_id = 22), + [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [2920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 2, .production_id = 23), + [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameters, 5), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_argument, 3, .production_id = 50), + [2936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hole, 1), + [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [2940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_argument, 1), + [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [2952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameter, 1, .production_id = 40), + [2954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_arguments, 4), + [2956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_argument, 1, .production_id = 3), + [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [2962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor, 2, .production_id = 7), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [2968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_arguments, 5), + [2970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameters, 3), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [2974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 5), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [2982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_argument, 3, .production_id = 50), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [2996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment, 3, .production_id = 22), + [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_import, 3, .production_id = 62), + [3008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment, 3, .production_id = 43), + [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [3018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameters, 4), + [3020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_argument, 1, .production_id = 3), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [3024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 2), + [3026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [3034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_arguments, 3), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [3038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_spread, 1), + [3040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameter, 3, .production_id = 67), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [3052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_function_parameter_types, 4), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [3058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_types, 3), + [3060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameters, 3), + [3062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_spread, 2), + [3064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_type_annotation, 2, .production_id = 21), + [3066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameters, 4), + [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [3076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_function_parameter_types, 3), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [3080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern_tail, 2), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [3150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target, 1), + [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [3162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_types, 4), + [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [3174] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [3190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameters, 5), + [3192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_types, 5), + [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [3202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_function_parameter_types, 2), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [3212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameters, 2), + [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [3236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_function_parameter_types, 5), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [3252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_types, 2), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), }; #ifdef __cplusplus diff --git a/test/corpus/expressions.txt b/test/corpus/expressions.txt index 6fed402df..d46ca7720 100644 --- a/test/corpus/expressions.txt +++ b/test/corpus/expressions.txt @@ -22,7 +22,7 @@ Bit-string expression (bit_string_segment_option))))) ================================================================================ -Negation +Boolean Negation ================================================================================ !False @@ -31,16 +31,42 @@ True && !False -------------------------------------------------------------------------------- (source_file - (negation + (boolean_negation (record (constructor_name))) (binary_expression (record (constructor_name)) - (negation + (boolean_negation (record (constructor_name))))) +================================================================================ +Integer Negation +================================================================================ + +{-x} +{-{5*30}} +{-my_fun()} + +-------------------------------------------------------------------------------- + +(source_file + (block + (integer_negation + (identifier))) + (block + (integer_negation + (block + (binary_expression + (integer) + (integer))))) + (block + (integer_negation + (function_call + (identifier) + (arguments))))) + ================================================================================ Concatenation ================================================================================ diff --git a/test/highlight/expressions.gleam b/test/highlight/expressions.gleam index 83ef1f8b9..e8dcb622a 100644 --- a/test/highlight/expressions.gleam +++ b/test/highlight/expressions.gleam @@ -6,3 +6,7 @@ case "12345" { _ -> "" // ^ string } + +-x +^ operator + ^ variable