diff --git a/corpus/constants.txt b/corpus/constants.txt index fa2ffaf1e..c27f9552b 100644 --- a/corpus/constants.txt +++ b/corpus/constants.txt @@ -3,6 +3,7 @@ Constants ================================================================================ const a = "hello" +const a = "hello\nworld\!" const a = 1_234 const a = 0b110 const a = 0o7224 @@ -30,7 +31,14 @@ const a: option.Option(String) = option.Some("Hello, World!") (source_file (constant name: (identifier) - value: (string)) + value: (string + (quoted_content))) + (constant + name: (identifier) + value: (string + (quoted_content) + (escape_sequence) + (quoted_content))) (constant name: (identifier) value: (integer)) @@ -62,7 +70,8 @@ const a: option.Option(String) = option.Some("Hello, World!") name: (type_identifier))) value: (tuple (integer) - (string))) + (string + (quoted_content)))) (constant name: (identifier) type: (tuple_type) @@ -125,7 +134,8 @@ const a: option.Option(String) = option.Some("Hello, World!") name: (identifier) value: (bit_string (bit_string_segment - value: (string) + value: (string + (quoted_content)) options: (bit_string_segment_options (bit_string_segment_option_utf8))))) (constant @@ -143,7 +153,8 @@ const a: option.Option(String) = option.Some("Hello, World!") name: (type_identifier) arguments: (arguments (argument - value: (string)) + value: (string + (quoted_content))) (argument value: (integer))))) (constant @@ -153,7 +164,8 @@ const a: option.Option(String) = option.Some("Hello, World!") arguments: (arguments (argument label: (label) - value: (string)) + value: (string + (quoted_content))) (argument label: (label) value: (integer))))) @@ -166,7 +178,8 @@ const a: option.Option(String) = option.Some("Hello, World!") arguments: (arguments (argument label: (label) - value: (string))))) + value: (string + (quoted_content)))))) (constant name: (identifier) type: (type @@ -183,7 +196,8 @@ const a: option.Option(String) = option.Some("Hello, World!") name: (type_identifier)) arguments: (arguments (argument - value: (string)))))) + value: (string + (quoted_content))))))) ================================================================================ Public constants @@ -212,7 +226,8 @@ pub const a = uri.Uri(host: "github.com") (source_file (public_constant name: (identifier) - value: (string)) + value: (string + (quoted_content))) (public_constant name: (identifier) type: (type @@ -232,7 +247,8 @@ pub const a = uri.Uri(host: "github.com") name: (type_identifier))) value: (tuple (integer) - (string))) + (string + (quoted_content)))) (public_constant name: (identifier) type: (tuple_type) @@ -295,7 +311,8 @@ pub const a = uri.Uri(host: "github.com") name: (identifier) value: (bit_string (bit_string_segment - value: (string) + value: (string + (quoted_content)) options: (bit_string_segment_options (bit_string_segment_option_utf8))))) (public_constant @@ -313,7 +330,8 @@ pub const a = uri.Uri(host: "github.com") name: (type_identifier) arguments: (arguments (argument - value: (string)) + value: (string + (quoted_content))) (argument value: (integer))))) (public_constant @@ -323,7 +341,8 @@ pub const a = uri.Uri(host: "github.com") arguments: (arguments (argument label: (label) - value: (string)) + value: (string + (quoted_content))) (argument label: (label) value: (integer))))) @@ -336,4 +355,5 @@ pub const a = uri.Uri(host: "github.com") arguments: (arguments (argument label: (label) - value: (string)))))) + value: (string + (quoted_content))))))) diff --git a/corpus/destructuring.txt b/corpus/destructuring.txt index 9f7f34979..a4a7ac67a 100644 --- a/corpus/destructuring.txt +++ b/corpus/destructuring.txt @@ -31,7 +31,8 @@ pub fn main() { (label)) (arguments (argument - (string))))) + (string + (quoted_content)))))) (case_clause (case_clause_patterns (case_clause_pattern @@ -44,4 +45,5 @@ pub fn main() { (label)) (arguments (argument - (string)))))))))) + (string + (quoted_content))))))))))) diff --git a/corpus/external_functions.txt b/corpus/external_functions.txt index 9b46c64c0..faf56ed62 100644 --- a/corpus/external_functions.txt +++ b/corpus/external_functions.txt @@ -26,8 +26,10 @@ external fn a() -> #(List(Int), fn(Int) -> String) = "x" "y" (type name: (type_identifier))))) body: (external_function_body - (string) - (string))) + (string + (quoted_content)) + (string + (quoted_content)))) (external_function name: (identifier) parameters: (function_parameters @@ -38,8 +40,10 @@ external fn a() -> #(List(Int), fn(Int) -> String) = "x" "y" return_type: (type name: (type_identifier)) body: (external_function_body - (string) - (string))) + (string + (quoted_content)) + (string + (quoted_content)))) (external_function name: (identifier) parameters: (function_parameters) @@ -57,8 +61,10 @@ external fn a() -> #(List(Int), fn(Int) -> String) = "x" "y" return_type: (type name: (type_identifier)))) body: (external_function_body - (string) - (string)))) + (string + (quoted_content)) + (string + (quoted_content))))) ========================== Public external functions @@ -88,8 +94,10 @@ pub external fn a() -> #(List(Int), fn(Int) -> String) = "x" "y" (type name: (type_identifier))))) body: (external_function_body - (string) - (string))) + (string + (quoted_content)) + (string + (quoted_content)))) (public_external_function name: (identifier) parameters: (function_parameters @@ -100,8 +108,10 @@ pub external fn a() -> #(List(Int), fn(Int) -> String) = "x" "y" return_type: (type name: (type_identifier)) body: (external_function_body - (string) - (string))) + (string + (quoted_content)) + (string + (quoted_content)))) (public_external_function name: (identifier) parameters: (function_parameters) @@ -119,5 +129,7 @@ pub external fn a() -> #(List(Int), fn(Int) -> String) = "x" "y" return_type: (type name: (type_identifier)))) body: (external_function_body - (string) - (string)))) + (string + (quoted_content)) + (string + (quoted_content))))) diff --git a/corpus/functions.txt b/corpus/functions.txt index ec2c3b906..2749d7f09 100644 --- a/corpus/functions.txt +++ b/corpus/functions.txt @@ -294,7 +294,8 @@ fn field_access(x) { name: (identifier) parameters: (function_parameters) body: (function_body - (string))) + (string + (quoted_content)))) (function name: (identifier) parameters: (function_parameters) @@ -314,7 +315,8 @@ fn field_access(x) { arguments: (arguments (argument label: (label) - value: (string)))))) + value: (string + (quoted_content))))))) (function name: (identifier) parameters: (function_parameters) @@ -326,7 +328,8 @@ fn field_access(x) { arguments: (arguments (argument label: (label) - value: (string)))))) + value: (string + (quoted_content))))))) (function name: (identifier) parameters: (function_parameters @@ -346,7 +349,8 @@ fn field_access(x) { parameters: (function_parameters) body: (function_body (todo - message: (string)))) + message: (string + (quoted_content))))) (function name: (identifier) parameters: (function_parameters @@ -408,7 +412,8 @@ fn field_access(x) { (binary_expression left: (integer) right: (integer)) - (string)))) + (string + (quoted_content))))) (function name: (identifier) parameters: (function_parameters @@ -448,7 +453,8 @@ fn field_access(x) { (binary_expression left: (integer) right: (integer)) - (string))) + (string + (quoted_content)))) (let pattern: (identifier) value: (identifier)) @@ -469,7 +475,8 @@ fn field_access(x) { (binary_expression left: (integer) right: (integer)) - (string))) + (string + (quoted_content)))) (assert pattern: (identifier) value: (identifier)) @@ -492,7 +499,8 @@ fn field_access(x) { arguments: (record_update_arguments (record_update_argument label: (label) - value: (string)) + value: (string + (quoted_content))) (record_update_argument label: (label) value: (binary_expression @@ -508,7 +516,8 @@ fn field_access(x) { arguments: (record_update_arguments (record_update_argument label: (label) - value: (string)) + value: (string + (quoted_content))) (record_update_argument label: (label) value: (integer)))))) @@ -672,7 +681,8 @@ fn trial(x, y, z) { name: (type_identifier) arguments: (record_pattern_arguments (record_pattern_argument - pattern: (string))))) + pattern: (string + (quoted_content)))))) (pattern_spread))))) value: (record name: (type_identifier))) @@ -731,7 +741,8 @@ fn try_try_again(x, y) -> Int { name: (type_identifier)) value: (todo)) (try - pattern: (string) + pattern: (string + (quoted_content)) value: (todo)) (try pattern: (integer) @@ -849,7 +860,8 @@ fn complex_data_fun(x, y) { index: (integer)) arguments: (arguments (argument - value: (string)) + value: (string + (quoted_content))) (argument value: (integer)))) (function_call @@ -864,7 +876,8 @@ fn complex_data_fun(x, y) { (argument value: (float)) (argument - value: (string))))))) + value: (string + (quoted_content)))))))) ================================================================================ Unusual function invocations @@ -896,7 +909,8 @@ fn weird(x) { arguments: (arguments (argument label: (label) - value: (string)))) + value: (string + (quoted_content))))) (function_call function: (anonymous_function parameters: (function_parameters diff --git a/corpus/targets.txt b/corpus/targets.txt index 323b1e914..43db4820c 100644 --- a/corpus/targets.txt +++ b/corpus/targets.txt @@ -26,7 +26,8 @@ if javascript { value: (integer)) (constant name: (identifier) - value: (string)))) + value: (string + (quoted_content))))) ======================== Target group edge cases diff --git a/corpus/whole_files.txt b/corpus/whole_files.txt index d7e416143..3cd3c6b2f 100644 --- a/corpus/whole_files.txt +++ b/corpus/whole_files.txt @@ -78,7 +78,8 @@ if javascript { (argument value: (identifier)) (argument - value: (string)) + value: (string + (quoted_content))) (argument value: (string))))))))) (target_group @@ -92,8 +93,10 @@ if javascript { return_type: (type name: (type_identifier)) body: (external_function_body - (string) - (string)))) + (string + (quoted_content)) + (string + (quoted_content))))) (target_group target: (target) (external_function @@ -105,8 +108,10 @@ if javascript { return_type: (type name: (type_identifier)) body: (external_function_body - (string) - (string))))) + (string + (quoted_content)) + (string + (quoted_content)))))) ================================================================================ Excerpt from stdlib's bool.gleam @@ -252,7 +257,8 @@ fn foo(a,) { (arguments (argument (label) - (string))))) + (string + (quoted_content)))))) (type_definition (type_name (type_identifier)) @@ -273,8 +279,10 @@ fn foo(a,) { (type (type_identifier)) (external_function_body - (string) - (string))) + (string + (quoted_content)) + (string + (quoted_content)))) (function (identifier) (function_parameters @@ -299,7 +307,8 @@ fn foo(a,) { (record_update_arguments (record_update_argument (label) - (string))))) + (string + (quoted_content)))))) (let (tuple_pattern (identifier)) diff --git a/grammar.js b/grammar.js index 84c179296..cccee9acb 100644 --- a/grammar.js +++ b/grammar.js @@ -582,7 +582,10 @@ module.exports = grammar({ _type_alias: ($) => seq($.type_name, "=", $._type), /* Literals */ - string: ($) => /\"(?:\\[efnrt\"\\]|[^\"])*\"/, + string: ($) => seq('"', repeat($._string_part), '"'), + _string_part: ($) => choice($.escape_sequence, $.quoted_content), + escape_sequence: ($) => /\\[efnrt\"\\]/, + quoted_content: ($) => /(?:[^\\\"]|\\[^efnrt\"\\])+/, float: ($) => /-?[0-9_]+\.[0-9_]+/, integer: ($) => seq(optional("-"), choice($._hex, $._decimal, $._octal, $._binary)), diff --git a/src/grammar.json b/src/grammar.json index 9fc094e21..9750b4af2 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -5144,8 +5144,45 @@ ] }, "string": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "\"" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_string_part" + } + }, + { + "type": "STRING", + "value": "\"" + } + ] + }, + "_string_part": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "escape_sequence" + }, + { + "type": "SYMBOL", + "name": "quoted_content" + } + ] + }, + "escape_sequence": { + "type": "PATTERN", + "value": "\\\\[efnrt\\\"\\\\]" + }, + "quoted_content": { "type": "PATTERN", - "value": "\\\"(?:\\\\[efnrt\\\"\\\\]|[^\\\"])*\\\"" + "value": "(?:[^\\\\\\\"]|\\\\[^efnrt\\\"\\\\])+" }, "float": { "type": "PATTERN", diff --git a/src/node-types.json b/src/node-types.json index 9f8c87d39..fc59b9625 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -3275,6 +3275,25 @@ ] } }, + { + "type": "string", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "escape_sequence", + "named": true + }, + { + "type": "quoted_content", + "named": true + } + ] + } + }, { "type": "target", "named": true, @@ -4128,6 +4147,10 @@ "type": "!=", "named": false }, + { + "type": "\"", + "named": false + }, { "type": "#", "named": false @@ -4340,6 +4363,10 @@ "type": "erlang", "named": false }, + { + "type": "escape_sequence", + "named": true + }, { "type": "external", "named": false @@ -4380,6 +4407,10 @@ "type": "pub", "named": false }, + { + "type": "quoted_content", + "named": true + }, { "type": "size", "named": false @@ -4388,10 +4419,6 @@ "type": "statement_comment", "named": true }, - { - "type": "string", - "named": true - }, { "type": "todo", "named": false diff --git a/src/parser.c b/src/parser.c index c411e7d00..a0da674d0 100644 --- a/src/parser.c +++ b/src/parser.c @@ -5,12 +5,20 @@ #pragma GCC diagnostic ignored "-Wmissing-field-initializers" #endif +#ifdef _MSC_VER +#pragma optimize("", off) +#elif defined(__clang__) +#pragma clang optimize off +#elif defined(__GNUC__) +#pragma GCC optimize ("O0") +#endif + #define LANGUAGE_VERSION 13 -#define STATE_COUNT 1069 +#define STATE_COUNT 1090 #define LARGE_STATE_COUNT 2 -#define SYMBOL_COUNT 252 +#define SYMBOL_COUNT 257 #define ALIAS_COUNT 2 -#define TOKEN_COUNT 86 +#define TOKEN_COUNT 88 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 31 #define MAX_ALIAS_SEQUENCE_LENGTH 8 @@ -75,201 +83,206 @@ enum { anon_sym_let = 56, anon_sym_assert = 57, anon_sym_opaque = 58, - sym_string = 59, - sym_float = 60, - sym__hex = 61, - sym__decimal = 62, - sym__octal = 63, - sym__binary = 64, - anon_sym_unit = 65, - anon_sym_binary = 66, - anon_sym_bytes = 67, - anon_sym_int = 68, - anon_sym_float = 69, - anon_sym_bit_string = 70, - anon_sym_bits = 71, - anon_sym_utf8 = 72, - anon_sym_utf16 = 73, - anon_sym_utf32 = 74, - anon_sym_utf8_codepoint = 75, - anon_sym_utf16_codepoint = 76, - anon_sym_utf32_codepoint = 77, - anon_sym_signed = 78, - anon_sym_unsigned = 79, - anon_sym_big = 80, - anon_sym_little = 81, - anon_sym_native = 82, - sym__discard_name = 83, - sym__name = 84, - sym__upname = 85, - sym_source_file = 86, - sym__statement = 87, - sym_target_group = 88, - sym_target = 89, - sym_import = 90, - sym_module = 91, - sym_unqualified_imports = 92, - sym_unqualified_import = 93, - sym_public_constant = 94, - sym_constant = 95, - sym__constant = 96, - sym__constant_value = 97, - sym_constant_tuple = 98, - sym_constant_list = 99, - sym__constant_bit_string = 100, - sym_constant_bit_string_segment = 101, - sym_constant_bit_string_segment_options = 102, - sym__constant_bit_string_segment_option = 103, - sym__constant_bit_string_named_segment_option = 104, - sym__constant_bit_string_segment_option_size = 105, - sym_constant_record = 106, - sym_constant_record_arguments = 107, - sym_constant_record_argument = 108, - sym__constant_type = 109, - sym__constant_type_annotation = 110, - sym_constant_tuple_type = 111, - sym_constant_type = 112, - sym_constant_type_arguments = 113, - sym_constant_type_argument = 114, - sym_public_external_type = 115, - sym_external_type = 116, - sym__external_type = 117, - sym_public_external_function = 118, - sym_external_function = 119, - sym__external_function = 120, - sym_external_function_parameters = 121, - sym_external_function_parameter = 122, - sym_external_function_body = 123, - sym_function = 124, - sym__function = 125, - sym_function_parameters = 126, - sym_function_parameter = 127, - sym__labeled_discard_param = 128, - sym__discard_param = 129, - sym__labeled_name_param = 130, - sym__name_param = 131, - aux_sym__expression_seq = 132, - sym_try = 133, - sym__expression = 134, - sym_binary_expression = 135, - sym__expression_unit = 136, - sym_record = 137, - sym_todo = 138, - sym_tuple = 139, - sym_list = 140, - sym__expression_bit_string = 141, - sym_expression_bit_string_segment = 142, - sym_expression_bit_string_segment_options = 143, - sym__expression_bit_string_segment_option = 144, - sym__expression_bit_string_named_segment_option = 145, - sym__expression_bit_string_segment_option_size = 146, - sym_anonymous_function = 147, - sym_expression_group = 148, - sym_case = 149, - sym_case_subjects = 150, - sym_case_clauses = 151, - sym_case_clause = 152, - sym_case_clause_patterns = 153, - sym_case_clause_pattern = 154, - sym_case_clause_guard = 155, - sym__case_clause_guard_expression = 156, - sym__case_clause_guard_binary_expression = 157, - sym__case_clause_guard_unit = 158, - sym__case_clause_tuple_access = 159, - sym_let = 160, - sym_assert = 161, - sym__assignment = 162, - sym_record_update = 163, - sym_record_update_arguments = 164, - sym_record_update_argument = 165, - sym__maybe_tuple_expression = 166, - sym_tuple_access = 167, - sym__maybe_record_expression = 168, - sym_field_access = 169, - sym__maybe_function_expression = 170, - sym_arguments = 171, - sym_argument = 172, - sym_hole = 173, - sym_function_call = 174, - sym__pattern = 175, - sym_record_pattern = 176, - sym_record_pattern_arguments = 177, - sym_record_pattern_argument = 178, - sym_pattern_spread = 179, - sym_tuple_pattern = 180, - sym__pattern_bit_string = 181, - sym_pattern_bit_string_segment = 182, - sym_pattern_bit_string_segment_options = 183, - sym__pattern_bit_string_segment_option = 184, - sym__pattern_bit_string_named_segment_option = 185, - sym__pattern_bit_string_segment_option_size = 186, - sym__pattern_bit_string_segment_argument = 187, - sym_list_pattern = 188, - sym_list_pattern_tail = 189, - sym_public_function = 190, - sym_type_definition = 191, - sym_public_type_definition = 192, - sym_public_opaque_type_definition = 193, - sym__custom_type_definition = 194, - sym_type_constructors = 195, - sym_type_constructor = 196, - sym_type_constructor_arguments = 197, - sym_type_constructor_argument = 198, - sym_type_alias = 199, - sym_public_type_alias = 200, - sym_public_opaque_type_alias = 201, - sym__type_alias = 202, - sym_integer = 203, - sym__bit_string_segment_option_unit = 204, - sym__bit_string_segment_option_literal = 205, - sym__type = 206, - sym__type_annotation = 207, - sym_type_hole = 208, - sym_tuple_type = 209, - sym_function_type = 210, - sym_function_parameter_types = 211, - sym_type = 212, - sym_type_arguments = 213, - sym_type_argument = 214, - sym_type_var = 215, - sym_type_name = 216, - sym_type_parameters = 217, - sym_type_parameter = 218, - sym_identifier = 219, - sym_label = 220, - sym_discard = 221, - sym_type_identifier = 222, - sym_remote_type_identifier = 223, - aux_sym_source_file_repeat1 = 224, - aux_sym_target_group_repeat1 = 225, - aux_sym_module_repeat1 = 226, - aux_sym_unqualified_imports_repeat1 = 227, - aux_sym_constant_tuple_repeat1 = 228, - aux_sym__constant_bit_string_repeat1 = 229, - aux_sym_constant_bit_string_segment_options_repeat1 = 230, - aux_sym_constant_record_arguments_repeat1 = 231, - aux_sym_constant_tuple_type_repeat1 = 232, - aux_sym_constant_type_arguments_repeat1 = 233, - aux_sym_external_function_parameters_repeat1 = 234, - aux_sym_function_parameters_repeat1 = 235, - aux_sym_tuple_repeat1 = 236, - aux_sym__expression_bit_string_repeat1 = 237, - aux_sym_expression_bit_string_segment_options_repeat1 = 238, - aux_sym_case_clauses_repeat1 = 239, - aux_sym_case_clause_patterns_repeat1 = 240, - aux_sym_case_clause_pattern_repeat1 = 241, - aux_sym_record_update_arguments_repeat1 = 242, - aux_sym_arguments_repeat1 = 243, - aux_sym_record_pattern_arguments_repeat1 = 244, - aux_sym__pattern_bit_string_repeat1 = 245, - aux_sym_pattern_bit_string_segment_options_repeat1 = 246, - aux_sym_type_constructors_repeat1 = 247, - aux_sym_type_constructor_arguments_repeat1 = 248, - aux_sym_tuple_type_repeat1 = 249, - aux_sym_type_arguments_repeat1 = 250, - aux_sym_type_parameters_repeat1 = 251, - alias_sym_bit_string_segment_option_unit = 252, - alias_sym_function_body = 253, + anon_sym_DQUOTE = 59, + sym_escape_sequence = 60, + sym_quoted_content = 61, + sym_float = 62, + sym__hex = 63, + sym__decimal = 64, + sym__octal = 65, + sym__binary = 66, + anon_sym_unit = 67, + anon_sym_binary = 68, + anon_sym_bytes = 69, + anon_sym_int = 70, + anon_sym_float = 71, + anon_sym_bit_string = 72, + anon_sym_bits = 73, + anon_sym_utf8 = 74, + anon_sym_utf16 = 75, + anon_sym_utf32 = 76, + anon_sym_utf8_codepoint = 77, + anon_sym_utf16_codepoint = 78, + anon_sym_utf32_codepoint = 79, + anon_sym_signed = 80, + anon_sym_unsigned = 81, + anon_sym_big = 82, + anon_sym_little = 83, + anon_sym_native = 84, + sym__discard_name = 85, + sym__name = 86, + sym__upname = 87, + sym_source_file = 88, + sym__statement = 89, + sym_target_group = 90, + sym_target = 91, + sym_import = 92, + sym_module = 93, + sym_unqualified_imports = 94, + sym_unqualified_import = 95, + sym_public_constant = 96, + sym_constant = 97, + sym__constant = 98, + sym__constant_value = 99, + sym_constant_tuple = 100, + sym_constant_list = 101, + sym__constant_bit_string = 102, + sym_constant_bit_string_segment = 103, + sym_constant_bit_string_segment_options = 104, + sym__constant_bit_string_segment_option = 105, + sym__constant_bit_string_named_segment_option = 106, + sym__constant_bit_string_segment_option_size = 107, + sym_constant_record = 108, + sym_constant_record_arguments = 109, + sym_constant_record_argument = 110, + sym__constant_type = 111, + sym__constant_type_annotation = 112, + sym_constant_tuple_type = 113, + sym_constant_type = 114, + sym_constant_type_arguments = 115, + sym_constant_type_argument = 116, + sym_public_external_type = 117, + sym_external_type = 118, + sym__external_type = 119, + sym_public_external_function = 120, + sym_external_function = 121, + sym__external_function = 122, + sym_external_function_parameters = 123, + sym_external_function_parameter = 124, + sym_external_function_body = 125, + sym_function = 126, + sym__function = 127, + sym_function_parameters = 128, + sym_function_parameter = 129, + sym__labeled_discard_param = 130, + sym__discard_param = 131, + sym__labeled_name_param = 132, + sym__name_param = 133, + aux_sym__expression_seq = 134, + sym_try = 135, + sym__expression = 136, + sym_binary_expression = 137, + sym__expression_unit = 138, + sym_record = 139, + sym_todo = 140, + sym_tuple = 141, + sym_list = 142, + sym__expression_bit_string = 143, + sym_expression_bit_string_segment = 144, + sym_expression_bit_string_segment_options = 145, + sym__expression_bit_string_segment_option = 146, + sym__expression_bit_string_named_segment_option = 147, + sym__expression_bit_string_segment_option_size = 148, + sym_anonymous_function = 149, + sym_expression_group = 150, + sym_case = 151, + sym_case_subjects = 152, + sym_case_clauses = 153, + sym_case_clause = 154, + sym_case_clause_patterns = 155, + sym_case_clause_pattern = 156, + sym_case_clause_guard = 157, + sym__case_clause_guard_expression = 158, + sym__case_clause_guard_binary_expression = 159, + sym__case_clause_guard_unit = 160, + sym__case_clause_tuple_access = 161, + sym_let = 162, + sym_assert = 163, + sym__assignment = 164, + sym_record_update = 165, + sym_record_update_arguments = 166, + sym_record_update_argument = 167, + sym__maybe_tuple_expression = 168, + sym_tuple_access = 169, + sym__maybe_record_expression = 170, + sym_field_access = 171, + sym__maybe_function_expression = 172, + sym_arguments = 173, + sym_argument = 174, + sym_hole = 175, + sym_function_call = 176, + sym__pattern = 177, + sym_record_pattern = 178, + sym_record_pattern_arguments = 179, + sym_record_pattern_argument = 180, + sym_pattern_spread = 181, + sym_tuple_pattern = 182, + sym__pattern_bit_string = 183, + sym_pattern_bit_string_segment = 184, + sym_pattern_bit_string_segment_options = 185, + sym__pattern_bit_string_segment_option = 186, + sym__pattern_bit_string_named_segment_option = 187, + sym__pattern_bit_string_segment_option_size = 188, + sym__pattern_bit_string_segment_argument = 189, + sym_list_pattern = 190, + sym_list_pattern_tail = 191, + sym_public_function = 192, + sym_type_definition = 193, + sym_public_type_definition = 194, + sym_public_opaque_type_definition = 195, + sym__custom_type_definition = 196, + sym_type_constructors = 197, + sym_type_constructor = 198, + sym_type_constructor_arguments = 199, + sym_type_constructor_argument = 200, + sym_type_alias = 201, + sym_public_type_alias = 202, + sym_public_opaque_type_alias = 203, + sym__type_alias = 204, + sym_string = 205, + sym__string_part = 206, + sym_integer = 207, + sym__bit_string_segment_option_unit = 208, + sym__bit_string_segment_option_literal = 209, + sym__type = 210, + sym__type_annotation = 211, + sym_type_hole = 212, + sym_tuple_type = 213, + sym_function_type = 214, + sym_function_parameter_types = 215, + sym_type = 216, + sym_type_arguments = 217, + sym_type_argument = 218, + sym_type_var = 219, + sym_type_name = 220, + sym_type_parameters = 221, + sym_type_parameter = 222, + sym_identifier = 223, + sym_label = 224, + sym_discard = 225, + sym_type_identifier = 226, + sym_remote_type_identifier = 227, + aux_sym_source_file_repeat1 = 228, + aux_sym_target_group_repeat1 = 229, + aux_sym_module_repeat1 = 230, + aux_sym_unqualified_imports_repeat1 = 231, + aux_sym_constant_tuple_repeat1 = 232, + aux_sym__constant_bit_string_repeat1 = 233, + aux_sym_constant_bit_string_segment_options_repeat1 = 234, + aux_sym_constant_record_arguments_repeat1 = 235, + aux_sym_constant_tuple_type_repeat1 = 236, + aux_sym_constant_type_arguments_repeat1 = 237, + aux_sym_external_function_parameters_repeat1 = 238, + aux_sym_function_parameters_repeat1 = 239, + aux_sym_tuple_repeat1 = 240, + aux_sym__expression_bit_string_repeat1 = 241, + aux_sym_expression_bit_string_segment_options_repeat1 = 242, + aux_sym_case_clauses_repeat1 = 243, + aux_sym_case_clause_patterns_repeat1 = 244, + aux_sym_case_clause_pattern_repeat1 = 245, + aux_sym_record_update_arguments_repeat1 = 246, + aux_sym_arguments_repeat1 = 247, + aux_sym_record_pattern_arguments_repeat1 = 248, + aux_sym__pattern_bit_string_repeat1 = 249, + aux_sym_pattern_bit_string_segment_options_repeat1 = 250, + aux_sym_type_constructors_repeat1 = 251, + aux_sym_type_constructor_arguments_repeat1 = 252, + aux_sym_string_repeat1 = 253, + aux_sym_tuple_type_repeat1 = 254, + aux_sym_type_arguments_repeat1 = 255, + aux_sym_type_parameters_repeat1 = 256, + alias_sym_bit_string_segment_option_unit = 257, + alias_sym_function_body = 258, }; static const char * const ts_symbol_names[] = { @@ -332,7 +345,9 @@ static const char * const ts_symbol_names[] = { [anon_sym_let] = "let", [anon_sym_assert] = "assert", [anon_sym_opaque] = "opaque", - [sym_string] = "string", + [anon_sym_DQUOTE] = "\"", + [sym_escape_sequence] = "escape_sequence", + [sym_quoted_content] = "quoted_content", [sym_float] = "float", [sym__hex] = "_hex", [sym__decimal] = "_decimal", @@ -476,6 +491,8 @@ static const char * const ts_symbol_names[] = { [sym_public_type_alias] = "public_type_alias", [sym_public_opaque_type_alias] = "public_opaque_type_alias", [sym__type_alias] = "_type_alias", + [sym_string] = "string", + [sym__string_part] = "_string_part", [sym_integer] = "integer", [sym__bit_string_segment_option_unit] = "_bit_string_segment_option_unit", [sym__bit_string_segment_option_literal] = "_bit_string_segment_option_literal", @@ -522,6 +539,7 @@ static const char * const ts_symbol_names[] = { [aux_sym_pattern_bit_string_segment_options_repeat1] = "pattern_bit_string_segment_options_repeat1", [aux_sym_type_constructors_repeat1] = "type_constructors_repeat1", [aux_sym_type_constructor_arguments_repeat1] = "type_constructor_arguments_repeat1", + [aux_sym_string_repeat1] = "string_repeat1", [aux_sym_tuple_type_repeat1] = "tuple_type_repeat1", [aux_sym_type_arguments_repeat1] = "type_arguments_repeat1", [aux_sym_type_parameters_repeat1] = "type_parameters_repeat1", @@ -589,7 +607,9 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_let] = anon_sym_let, [anon_sym_assert] = anon_sym_assert, [anon_sym_opaque] = anon_sym_opaque, - [sym_string] = sym_string, + [anon_sym_DQUOTE] = anon_sym_DQUOTE, + [sym_escape_sequence] = sym_escape_sequence, + [sym_quoted_content] = sym_quoted_content, [sym_float] = sym_float, [sym__hex] = sym__hex, [sym__decimal] = sym__decimal, @@ -733,6 +753,8 @@ static const TSSymbol ts_symbol_map[] = { [sym_public_type_alias] = sym_public_type_alias, [sym_public_opaque_type_alias] = sym_public_opaque_type_alias, [sym__type_alias] = sym__type_alias, + [sym_string] = sym_string, + [sym__string_part] = sym__string_part, [sym_integer] = sym_integer, [sym__bit_string_segment_option_unit] = sym__bit_string_segment_option_unit, [sym__bit_string_segment_option_literal] = sym__bit_string_segment_option_literal, @@ -779,6 +801,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_pattern_bit_string_segment_options_repeat1] = aux_sym_pattern_bit_string_segment_options_repeat1, [aux_sym_type_constructors_repeat1] = aux_sym_type_constructors_repeat1, [aux_sym_type_constructor_arguments_repeat1] = aux_sym_type_constructor_arguments_repeat1, + [aux_sym_string_repeat1] = aux_sym_string_repeat1, [aux_sym_tuple_type_repeat1] = aux_sym_tuple_type_repeat1, [aux_sym_type_arguments_repeat1] = aux_sym_type_arguments_repeat1, [aux_sym_type_parameters_repeat1] = aux_sym_type_parameters_repeat1, @@ -1023,7 +1046,15 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [sym_string] = { + [anon_sym_DQUOTE] = { + .visible = true, + .named = false, + }, + [sym_escape_sequence] = { + .visible = true, + .named = true, + }, + [sym_quoted_content] = { .visible = true, .named = true, }, @@ -1599,6 +1630,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [sym_string] = { + .visible = true, + .named = true, + }, + [sym__string_part] = { + .visible = false, + .named = true, + }, [sym_integer] = { .visible = true, .named = true, @@ -1783,6 +1822,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_string_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_tuple_type_repeat1] = { .visible = false, .named = false, @@ -2193,320 +2236,320 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1] = 1, [2] = 2, [3] = 3, - [4] = 4, - [5] = 4, + [4] = 3, + [5] = 3, [6] = 6, - [7] = 4, - [8] = 8, + [7] = 7, + [8] = 6, [9] = 9, - [10] = 10, - [11] = 8, - [12] = 12, - [13] = 8, - [14] = 10, - [15] = 9, - [16] = 10, - [17] = 9, - [18] = 18, + [10] = 7, + [11] = 11, + [12] = 6, + [13] = 11, + [14] = 14, + [15] = 11, + [16] = 7, + [17] = 17, + [18] = 17, [19] = 19, [20] = 20, [21] = 21, [22] = 22, [23] = 23, - [24] = 24, - [25] = 25, - [26] = 20, - [27] = 27, - [28] = 25, - [29] = 29, - [30] = 19, - [31] = 31, - [32] = 32, + [24] = 22, + [25] = 23, + [26] = 26, + [27] = 23, + [28] = 28, + [29] = 20, + [30] = 28, + [31] = 17, + [32] = 28, [33] = 33, - [34] = 27, + [34] = 34, [35] = 35, - [36] = 36, + [36] = 34, [37] = 37, [38] = 38, [39] = 39, - [40] = 29, - [41] = 29, - [42] = 19, - [43] = 20, + [40] = 35, + [41] = 41, + [42] = 42, + [43] = 35, [44] = 44, - [45] = 45, - [46] = 45, - [47] = 45, - [48] = 44, - [49] = 49, + [45] = 34, + [46] = 38, + [47] = 47, + [48] = 48, + [49] = 42, [50] = 50, - [51] = 51, + [51] = 50, [52] = 52, [53] = 53, - [54] = 50, - [55] = 50, + [54] = 54, + [55] = 55, [56] = 56, - [57] = 57, + [57] = 42, [58] = 58, [59] = 59, [60] = 60, - [61] = 53, + [61] = 61, [62] = 62, - [63] = 53, + [63] = 63, [64] = 64, [65] = 65, - [66] = 64, + [66] = 66, [67] = 67, - [68] = 68, + [68] = 61, [69] = 69, [70] = 70, - [71] = 71, - [72] = 72, - [73] = 69, + [71] = 70, + [72] = 61, + [73] = 73, [74] = 74, [75] = 75, - [76] = 69, - [77] = 77, + [76] = 76, + [77] = 70, [78] = 78, [79] = 79, [80] = 80, - [81] = 78, + [81] = 81, [82] = 82, [83] = 83, [84] = 84, [85] = 85, - [86] = 86, + [86] = 80, [87] = 87, [88] = 88, - [89] = 78, + [89] = 89, [90] = 90, [91] = 91, - [92] = 92, + [92] = 91, [93] = 93, [94] = 94, - [95] = 95, - [96] = 90, + [95] = 84, + [96] = 96, [97] = 97, - [98] = 92, - [99] = 90, - [100] = 93, - [101] = 93, - [102] = 94, - [103] = 97, - [104] = 97, - [105] = 94, + [98] = 94, + [99] = 84, + [100] = 85, + [101] = 91, + [102] = 102, + [103] = 85, + [104] = 94, + [105] = 80, [106] = 106, - [107] = 92, + [107] = 107, [108] = 108, [109] = 109, - [110] = 110, - [111] = 111, + [110] = 108, + [111] = 109, [112] = 112, [113] = 113, - [114] = 108, + [114] = 107, [115] = 115, [116] = 116, [117] = 117, [118] = 118, [119] = 119, - [120] = 110, + [120] = 120, [121] = 121, - [122] = 112, - [123] = 119, + [122] = 122, + [123] = 123, [124] = 124, - [125] = 110, + [125] = 125, [126] = 126, - [127] = 111, - [128] = 128, + [127] = 127, + [128] = 127, [129] = 129, - [130] = 130, - [131] = 130, + [130] = 129, + [131] = 122, [132] = 132, - [133] = 133, - [134] = 134, + [133] = 127, + [134] = 108, [135] = 135, - [136] = 129, + [136] = 136, [137] = 137, - [138] = 119, - [139] = 109, - [140] = 129, - [141] = 118, - [142] = 142, - [143] = 109, - [144] = 130, - [145] = 117, - [146] = 146, - [147] = 146, - [148] = 124, - [149] = 118, - [150] = 117, - [151] = 116, - [152] = 115, - [153] = 108, - [154] = 124, - [155] = 155, - [156] = 128, - [157] = 112, - [158] = 113, - [159] = 113, - [160] = 115, - [161] = 111, - [162] = 116, - [163] = 146, - [164] = 128, - [165] = 165, - [166] = 166, + [138] = 112, + [139] = 139, + [140] = 140, + [141] = 115, + [142] = 137, + [143] = 117, + [144] = 122, + [145] = 107, + [146] = 123, + [147] = 116, + [148] = 118, + [149] = 119, + [150] = 121, + [151] = 137, + [152] = 152, + [153] = 153, + [154] = 109, + [155] = 123, + [156] = 113, + [157] = 117, + [158] = 129, + [159] = 159, + [160] = 113, + [161] = 119, + [162] = 121, + [163] = 118, + [164] = 116, + [165] = 112, + [166] = 115, [167] = 167, [168] = 168, [169] = 169, - [170] = 170, + [170] = 124, [171] = 171, [172] = 172, - [173] = 91, + [173] = 173, [174] = 174, [175] = 175, [176] = 176, [177] = 177, [178] = 178, [179] = 179, - [180] = 6, - [181] = 2, - [182] = 3, - [183] = 106, - [184] = 12, - [185] = 95, - [186] = 31, - [187] = 6, - [188] = 32, - [189] = 2, - [190] = 91, - [191] = 106, - [192] = 38, - [193] = 35, - [194] = 21, - [195] = 36, - [196] = 33, - [197] = 24, - [198] = 37, - [199] = 22, - [200] = 3, - [201] = 18, - [202] = 58, - [203] = 56, - [204] = 52, - [205] = 60, - [206] = 49, - [207] = 68, - [208] = 62, - [209] = 65, - [210] = 67, - [211] = 51, - [212] = 59, - [213] = 57, - [214] = 79, - [215] = 170, - [216] = 71, - [217] = 165, - [218] = 82, - [219] = 88, - [220] = 74, - [221] = 221, - [222] = 172, - [223] = 85, - [224] = 83, - [225] = 84, - [226] = 70, - [227] = 171, - [228] = 75, - [229] = 77, - [230] = 87, - [231] = 80, - [232] = 177, - [233] = 166, - [234] = 86, - [235] = 168, - [236] = 169, - [237] = 179, - [238] = 238, - [239] = 175, - [240] = 240, - [241] = 241, - [242] = 242, - [243] = 12, - [244] = 244, - [245] = 245, - [246] = 246, - [247] = 18, - [248] = 37, + [180] = 180, + [181] = 181, + [182] = 140, + [183] = 9, + [184] = 2, + [185] = 14, + [186] = 47, + [187] = 41, + [188] = 21, + [189] = 9, + [190] = 139, + [191] = 55, + [192] = 52, + [193] = 39, + [194] = 54, + [195] = 37, + [196] = 14, + [197] = 48, + [198] = 33, + [199] = 44, + [200] = 2, + [201] = 56, + [202] = 124, + [203] = 140, + [204] = 53, + [205] = 58, + [206] = 63, + [207] = 67, + [208] = 66, + [209] = 60, + [210] = 64, + [211] = 73, + [212] = 69, + [213] = 74, + [214] = 62, + [215] = 65, + [216] = 75, + [217] = 76, + [218] = 106, + [219] = 93, + [220] = 90, + [221] = 88, + [222] = 83, + [223] = 172, + [224] = 179, + [225] = 171, + [226] = 169, + [227] = 168, + [228] = 89, + [229] = 78, + [230] = 230, + [231] = 173, + [232] = 232, + [233] = 41, + [234] = 47, + [235] = 102, + [236] = 87, + [237] = 176, + [238] = 175, + [239] = 96, + [240] = 177, + [241] = 97, + [242] = 81, + [243] = 82, + [244] = 79, + [245] = 181, + [246] = 21, + [247] = 247, + [248] = 248, [249] = 249, [250] = 250, - [251] = 95, - [252] = 22, - [253] = 253, - [254] = 21, - [255] = 33, - [256] = 36, - [257] = 35, - [258] = 38, - [259] = 32, - [260] = 24, - [261] = 31, - [262] = 60, - [263] = 59, - [264] = 264, - [265] = 265, + [251] = 251, + [252] = 252, + [253] = 48, + [254] = 139, + [255] = 39, + [256] = 256, + [257] = 257, + [258] = 58, + [259] = 52, + [260] = 37, + [261] = 44, + [262] = 55, + [263] = 53, + [264] = 54, + [265] = 56, [266] = 266, - [267] = 52, - [268] = 56, - [269] = 58, + [267] = 33, + [268] = 69, + [269] = 67, [270] = 270, - [271] = 67, - [272] = 62, - [273] = 273, - [274] = 49, - [275] = 68, - [276] = 51, - [277] = 65, - [278] = 57, - [279] = 279, - [280] = 171, - [281] = 71, - [282] = 166, - [283] = 168, - [284] = 169, - [285] = 82, - [286] = 170, - [287] = 175, - [288] = 179, - [289] = 177, - [290] = 86, - [291] = 87, - [292] = 165, - [293] = 70, - [294] = 74, - [295] = 79, - [296] = 88, - [297] = 77, - [298] = 83, - [299] = 85, - [300] = 84, - [301] = 75, - [302] = 172, - [303] = 80, - [304] = 304, - [305] = 305, - [306] = 306, - [307] = 307, + [271] = 66, + [272] = 64, + [273] = 60, + [274] = 274, + [275] = 275, + [276] = 74, + [277] = 277, + [278] = 278, + [279] = 63, + [280] = 75, + [281] = 65, + [282] = 62, + [283] = 76, + [284] = 73, + [285] = 169, + [286] = 93, + [287] = 287, + [288] = 288, + [289] = 90, + [290] = 88, + [291] = 83, + [292] = 287, + [293] = 293, + [294] = 179, + [295] = 295, + [296] = 296, + [297] = 89, + [298] = 176, + [299] = 175, + [300] = 173, + [301] = 78, + [302] = 102, + [303] = 87, + [304] = 181, + [305] = 172, + [306] = 177, + [307] = 82, [308] = 308, - [309] = 309, + [309] = 79, [310] = 310, - [311] = 311, - [312] = 306, - [313] = 306, - [314] = 314, - [315] = 315, - [316] = 316, - [317] = 317, + [311] = 81, + [312] = 171, + [313] = 287, + [314] = 106, + [315] = 97, + [316] = 168, + [317] = 96, [318] = 318, [319] = 319, [320] = 320, @@ -2517,28 +2560,28 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [325] = 325, [326] = 326, [327] = 327, - [328] = 318, - [329] = 323, - [330] = 330, - [331] = 323, + [328] = 328, + [329] = 321, + [330] = 325, + [331] = 331, [332] = 332, - [333] = 333, - [334] = 322, - [335] = 333, - [336] = 330, + [333] = 323, + [334] = 332, + [335] = 335, + [336] = 336, [337] = 337, [338] = 338, [339] = 339, [340] = 340, - [341] = 341, - [342] = 342, + [341] = 340, + [342] = 340, [343] = 343, [344] = 344, [345] = 345, [346] = 346, [347] = 347, [348] = 348, - [349] = 337, + [349] = 349, [350] = 350, [351] = 351, [352] = 352, @@ -2546,155 +2589,155 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [354] = 354, [355] = 355, [356] = 356, - [357] = 337, + [357] = 357, [358] = 358, [359] = 359, [360] = 360, [361] = 361, [362] = 362, [363] = 363, - [364] = 364, + [364] = 352, [365] = 365, [366] = 366, - [367] = 367, - [368] = 368, + [367] = 361, + [368] = 354, [369] = 369, - [370] = 369, - [371] = 369, + [370] = 354, + [371] = 371, [372] = 372, - [373] = 373, - [374] = 367, + [373] = 361, + [374] = 374, [375] = 375, - [376] = 362, - [377] = 362, - [378] = 378, - [379] = 366, - [380] = 362, - [381] = 369, - [382] = 364, - [383] = 383, - [384] = 384, - [385] = 385, + [376] = 376, + [377] = 354, + [378] = 361, + [379] = 379, + [380] = 380, + [381] = 380, + [382] = 382, + [383] = 375, + [384] = 374, + [385] = 374, [386] = 386, [387] = 387, [388] = 388, - [389] = 388, + [389] = 389, [390] = 390, - [391] = 384, - [392] = 384, + [391] = 391, + [392] = 388, [393] = 393, [394] = 394, [395] = 395, - [396] = 388, - [397] = 397, - [398] = 398, - [399] = 397, - [400] = 400, - [401] = 386, - [402] = 393, - [403] = 390, - [404] = 390, - [405] = 393, - [406] = 398, - [407] = 385, + [396] = 396, + [397] = 395, + [398] = 391, + [399] = 399, + [400] = 387, + [401] = 401, + [402] = 402, + [403] = 403, + [404] = 403, + [405] = 405, + [406] = 406, + [407] = 402, [408] = 408, [409] = 409, - [410] = 410, + [410] = 408, [411] = 411, - [412] = 412, - [413] = 410, - [414] = 408, - [415] = 415, - [416] = 412, - [417] = 417, - [418] = 417, - [419] = 409, - [420] = 415, - [421] = 421, - [422] = 422, - [423] = 423, - [424] = 424, - [425] = 423, - [426] = 422, + [412] = 409, + [413] = 413, + [414] = 413, + [415] = 411, + [416] = 416, + [417] = 405, + [418] = 408, + [419] = 419, + [420] = 406, + [421] = 416, + [422] = 419, + [423] = 409, + [424] = 405, + [425] = 419, + [426] = 426, [427] = 427, - [428] = 106, - [429] = 2, - [430] = 91, - [431] = 431, + [428] = 428, + [429] = 429, + [430] = 428, + [431] = 427, [432] = 432, - [433] = 6, - [434] = 3, - [435] = 435, - [436] = 436, - [437] = 437, + [433] = 433, + [434] = 2, + [435] = 124, + [436] = 140, + [437] = 9, [438] = 438, - [439] = 438, + [439] = 41, [440] = 440, [441] = 441, - [442] = 442, - [443] = 442, - [444] = 440, + [442] = 47, + [443] = 14, + [444] = 444, [445] = 445, [446] = 446, [447] = 447, - [448] = 448, - [449] = 449, + [448] = 446, + [449] = 445, [450] = 450, [451] = 451, - [452] = 448, - [453] = 453, + [452] = 452, + [453] = 452, [454] = 454, - [455] = 446, - [456] = 449, + [455] = 455, + [456] = 454, [457] = 457, [458] = 458, [459] = 459, [460] = 460, - [461] = 461, + [461] = 459, [462] = 462, - [463] = 463, + [463] = 457, [464] = 464, [465] = 465, [466] = 466, [467] = 467, - [468] = 463, - [469] = 469, - [470] = 466, + [468] = 468, + [469] = 466, + [470] = 470, [471] = 471, - [472] = 461, + [472] = 472, [473] = 473, [474] = 474, - [475] = 466, - [476] = 471, - [477] = 465, - [478] = 457, - [479] = 479, - [480] = 462, - [481] = 457, - [482] = 471, + [475] = 471, + [476] = 476, + [477] = 477, + [478] = 465, + [479] = 470, + [480] = 466, + [481] = 474, + [482] = 476, [483] = 483, - [484] = 484, + [484] = 483, [485] = 485, [486] = 486, - [487] = 487, + [487] = 474, [488] = 488, - [489] = 489, + [489] = 471, [490] = 490, [491] = 491, - [492] = 490, + [492] = 492, [493] = 493, [494] = 494, - [495] = 483, - [496] = 488, + [495] = 495, + [496] = 496, [497] = 497, [498] = 498, [499] = 499, - [500] = 500, - [501] = 501, - [502] = 502, + [500] = 491, + [501] = 494, + [502] = 498, [503] = 503, [504] = 504, - [505] = 503, + [505] = 505, [506] = 506, [507] = 507, [508] = 508, @@ -2721,15 +2764,15 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [529] = 529, [530] = 530, [531] = 531, - [532] = 532, + [532] = 509, [533] = 533, [534] = 534, [535] = 535, [536] = 536, - [537] = 537, + [537] = 508, [538] = 538, [539] = 539, - [540] = 498, + [540] = 540, [541] = 541, [542] = 542, [543] = 543, @@ -2737,208 +2780,208 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [545] = 545, [546] = 546, [547] = 547, - [548] = 499, + [548] = 506, [549] = 549, [550] = 550, [551] = 551, [552] = 552, - [553] = 535, + [553] = 553, [554] = 554, [555] = 555, - [556] = 485, - [557] = 315, - [558] = 522, + [556] = 556, + [557] = 557, + [558] = 558, [559] = 559, - [560] = 560, - [561] = 2, + [560] = 513, + [561] = 338, [562] = 562, [563] = 563, [564] = 564, - [565] = 91, - [566] = 566, - [567] = 554, + [565] = 495, + [566] = 552, + [567] = 124, [568] = 568, [569] = 569, [570] = 570, [571] = 571, [572] = 572, [573] = 573, - [574] = 572, - [575] = 486, + [574] = 574, + [575] = 504, [576] = 576, - [577] = 577, - [578] = 578, - [579] = 338, - [580] = 562, - [581] = 3, - [582] = 346, - [583] = 348, - [584] = 536, + [577] = 2, + [578] = 563, + [579] = 579, + [580] = 580, + [581] = 580, + [582] = 582, + [583] = 583, + [584] = 584, [585] = 585, - [586] = 537, + [586] = 586, [587] = 587, - [588] = 356, - [589] = 589, - [590] = 353, - [591] = 576, + [588] = 550, + [589] = 540, + [590] = 525, + [591] = 591, [592] = 592, - [593] = 352, - [594] = 515, - [595] = 358, - [596] = 361, - [597] = 597, - [598] = 6, - [599] = 350, - [600] = 354, - [601] = 525, - [602] = 573, - [603] = 603, + [593] = 593, + [594] = 544, + [595] = 546, + [596] = 596, + [597] = 547, + [598] = 360, + [599] = 569, + [600] = 9, + [601] = 574, + [602] = 602, + [603] = 529, [604] = 604, - [605] = 605, + [605] = 369, [606] = 606, - [607] = 607, - [608] = 360, - [609] = 609, - [610] = 550, + [607] = 363, + [608] = 362, + [609] = 357, + [610] = 359, [611] = 611, - [612] = 359, - [613] = 541, - [614] = 542, + [612] = 358, + [613] = 613, + [614] = 614, [615] = 615, - [616] = 616, - [617] = 526, + [616] = 356, + [617] = 617, [618] = 618, - [619] = 607, - [620] = 347, - [621] = 345, - [622] = 622, + [619] = 353, + [620] = 620, + [621] = 371, + [622] = 41, [623] = 623, - [624] = 341, - [625] = 339, - [626] = 559, - [627] = 355, + [624] = 614, + [625] = 518, + [626] = 573, + [627] = 627, [628] = 628, - [629] = 629, + [629] = 372, [630] = 630, - [631] = 564, - [632] = 570, - [633] = 560, - [634] = 634, + [631] = 587, + [632] = 568, + [633] = 633, + [634] = 47, [635] = 635, [636] = 636, - [637] = 571, + [637] = 637, [638] = 638, - [639] = 639, - [640] = 106, - [641] = 609, - [642] = 577, - [643] = 531, + [639] = 14, + [640] = 376, + [641] = 571, + [642] = 140, + [643] = 347, [644] = 644, - [645] = 527, - [646] = 516, - [647] = 647, - [648] = 511, - [649] = 649, - [650] = 650, + [645] = 584, + [646] = 646, + [647] = 583, + [648] = 366, + [649] = 365, + [650] = 582, [651] = 651, - [652] = 568, - [653] = 569, - [654] = 605, + [652] = 530, + [653] = 386, + [654] = 350, [655] = 655, - [656] = 651, - [657] = 639, - [658] = 638, - [659] = 636, - [660] = 634, - [661] = 629, - [662] = 628, - [663] = 623, - [664] = 622, - [665] = 618, - [666] = 644, - [667] = 604, - [668] = 592, - [669] = 603, - [670] = 587, - [671] = 578, + [656] = 572, + [657] = 516, + [658] = 576, + [659] = 659, + [660] = 536, + [661] = 636, + [662] = 627, + [663] = 542, + [664] = 664, + [665] = 617, + [666] = 659, + [667] = 606, + [668] = 638, + [669] = 655, + [670] = 591, + [671] = 671, [672] = 615, - [673] = 597, - [674] = 616, - [675] = 589, - [676] = 647, - [677] = 649, - [678] = 650, - [679] = 635, - [680] = 630, - [681] = 681, - [682] = 682, - [683] = 683, - [684] = 684, - [685] = 685, - [686] = 682, - [687] = 566, - [688] = 688, - [689] = 684, - [690] = 690, - [691] = 685, + [673] = 592, + [674] = 611, + [675] = 604, + [676] = 633, + [677] = 664, + [678] = 635, + [679] = 593, + [680] = 628, + [681] = 585, + [682] = 596, + [683] = 651, + [684] = 630, + [685] = 637, + [686] = 602, + [687] = 618, + [688] = 620, + [689] = 613, + [690] = 586, + [691] = 691, [692] = 692, - [693] = 683, - [694] = 684, - [695] = 681, - [696] = 696, + [693] = 693, + [694] = 694, + [695] = 695, + [696] = 691, [697] = 697, - [698] = 698, + [698] = 692, [699] = 699, - [700] = 700, - [701] = 701, - [702] = 702, - [703] = 606, - [704] = 279, - [705] = 705, - [706] = 705, - [707] = 707, + [700] = 692, + [701] = 697, + [702] = 694, + [703] = 693, + [704] = 704, + [705] = 579, + [706] = 706, + [707] = 646, [708] = 708, [709] = 709, - [710] = 710, - [711] = 95, + [710] = 708, + [711] = 709, [712] = 712, - [713] = 710, + [713] = 713, [714] = 714, - [715] = 715, + [715] = 308, [716] = 716, - [717] = 716, - [718] = 718, + [717] = 709, + [718] = 708, [719] = 719, - [720] = 714, - [721] = 714, - [722] = 719, - [723] = 723, + [720] = 720, + [721] = 721, + [722] = 722, + [723] = 720, [724] = 724, - [725] = 719, + [725] = 713, [726] = 726, - [727] = 727, - [728] = 714, + [727] = 708, + [728] = 709, [729] = 729, - [730] = 730, + [730] = 709, [731] = 731, [732] = 732, - [733] = 733, - [734] = 714, + [733] = 139, + [734] = 708, [735] = 735, [736] = 736, [737] = 737, [738] = 738, [739] = 739, - [740] = 716, - [741] = 741, + [740] = 740, + [741] = 736, [742] = 742, [743] = 743, [744] = 744, [745] = 745, [746] = 746, [747] = 747, - [748] = 748, - [749] = 749, + [748] = 737, + [749] = 739, [750] = 750, [751] = 751, [752] = 752, @@ -2948,15 +2991,15 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [756] = 756, [757] = 757, [758] = 758, - [759] = 759, - [760] = 760, + [759] = 739, + [760] = 739, [761] = 761, [762] = 762, [763] = 763, - [764] = 764, + [764] = 739, [765] = 765, - [766] = 766, - [767] = 767, + [766] = 736, + [767] = 737, [768] = 768, [769] = 769, [770] = 770, @@ -2971,197 +3014,197 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [779] = 779, [780] = 780, [781] = 781, - [782] = 748, + [782] = 782, [783] = 783, [784] = 784, [785] = 785, [786] = 786, - [787] = 768, - [788] = 786, + [787] = 787, + [788] = 788, [789] = 789, [790] = 790, - [791] = 783, - [792] = 792, + [791] = 791, + [792] = 773, [793] = 793, - [794] = 794, + [794] = 783, [795] = 795, [796] = 796, [797] = 797, [798] = 798, [799] = 799, [800] = 800, - [801] = 780, + [801] = 801, [802] = 802, [803] = 803, [804] = 804, [805] = 805, [806] = 806, - [807] = 785, + [807] = 799, [808] = 808, - [809] = 789, + [809] = 809, [810] = 810, [811] = 811, [812] = 812, [813] = 813, [814] = 814, - [815] = 786, - [816] = 768, - [817] = 817, + [815] = 815, + [816] = 816, + [817] = 801, [818] = 818, [819] = 819, [820] = 820, [821] = 821, [822] = 822, - [823] = 794, + [823] = 823, [824] = 824, [825] = 825, [826] = 826, - [827] = 761, - [828] = 757, + [827] = 827, + [828] = 828, [829] = 829, [830] = 830, [831] = 831, [832] = 832, [833] = 833, - [834] = 758, + [834] = 834, [835] = 835, [836] = 836, [837] = 837, - [838] = 785, + [838] = 791, [839] = 839, - [840] = 833, + [840] = 783, [841] = 841, [842] = 842, [843] = 843, - [844] = 789, - [845] = 780, - [846] = 837, + [844] = 844, + [845] = 845, + [846] = 846, [847] = 847, - [848] = 848, - [849] = 849, - [850] = 850, - [851] = 783, - [852] = 852, + [848] = 799, + [849] = 801, + [850] = 811, + [851] = 851, + [852] = 820, [853] = 853, [854] = 854, - [855] = 855, - [856] = 856, - [857] = 820, - [858] = 762, - [859] = 772, - [860] = 855, - [861] = 861, - [862] = 752, + [855] = 823, + [856] = 812, + [857] = 857, + [858] = 858, + [859] = 859, + [860] = 826, + [861] = 835, + [862] = 844, [863] = 863, - [864] = 856, - [865] = 865, - [866] = 775, + [864] = 864, + [865] = 811, + [866] = 866, [867] = 867, - [868] = 784, - [869] = 869, - [870] = 810, - [871] = 813, - [872] = 872, - [873] = 819, - [874] = 829, - [875] = 817, - [876] = 758, - [877] = 842, + [868] = 868, + [869] = 812, + [870] = 870, + [871] = 871, + [872] = 864, + [873] = 866, + [874] = 874, + [875] = 871, + [876] = 791, + [877] = 877, [878] = 878, - [879] = 879, + [879] = 771, [880] = 880, [881] = 881, - [882] = 882, - [883] = 883, - [884] = 884, + [882] = 881, + [883] = 880, + [884] = 870, [885] = 885, - [886] = 886, - [887] = 887, - [888] = 888, - [889] = 889, - [890] = 890, - [891] = 887, + [886] = 878, + [887] = 877, + [888] = 778, + [889] = 845, + [890] = 841, + [891] = 891, [892] = 892, [893] = 893, [894] = 894, - [895] = 895, - [896] = 896, - [897] = 897, - [898] = 889, - [899] = 899, - [900] = 900, - [901] = 884, + [895] = 773, + [896] = 793, + [897] = 818, + [898] = 898, + [899] = 825, + [900] = 829, + [901] = 901, [902] = 902, - [903] = 902, + [903] = 903, [904] = 904, [905] = 905, - [906] = 878, + [906] = 906, [907] = 907, [908] = 908, [909] = 909, [910] = 910, [911] = 911, - [912] = 883, - [913] = 878, + [912] = 912, + [913] = 913, [914] = 914, [915] = 915, [916] = 916, - [917] = 917, - [918] = 907, - [919] = 887, + [917] = 907, + [918] = 915, + [919] = 919, [920] = 920, [921] = 921, [922] = 922, - [923] = 923, + [923] = 908, [924] = 924, - [925] = 878, + [925] = 925, [926] = 926, - [927] = 909, - [928] = 928, - [929] = 929, + [927] = 927, + [928] = 921, + [929] = 912, [930] = 930, [931] = 931, [932] = 932, [933] = 933, [934] = 934, - [935] = 935, - [936] = 878, - [937] = 890, - [938] = 888, - [939] = 939, - [940] = 940, - [941] = 917, - [942] = 942, - [943] = 943, + [935] = 904, + [936] = 913, + [937] = 937, + [938] = 919, + [939] = 920, + [940] = 915, + [941] = 941, + [942] = 912, + [943] = 916, [944] = 944, - [945] = 939, - [946] = 946, - [947] = 947, + [945] = 921, + [946] = 931, + [947] = 944, [948] = 948, - [949] = 949, - [950] = 882, - [951] = 951, - [952] = 880, - [953] = 902, - [954] = 893, + [949] = 912, + [950] = 950, + [951] = 905, + [952] = 912, + [953] = 953, + [954] = 934, [955] = 955, [956] = 956, - [957] = 957, + [957] = 932, [958] = 958, [959] = 959, - [960] = 878, + [960] = 960, [961] = 961, - [962] = 892, + [962] = 962, [963] = 963, [964] = 964, [965] = 965, - [966] = 917, - [967] = 967, + [966] = 966, + [967] = 944, [968] = 968, - [969] = 889, - [970] = 894, - [971] = 886, - [972] = 967, + [969] = 969, + [970] = 914, + [971] = 909, + [972] = 972, [973] = 973, [974] = 974, [975] = 975, @@ -3169,95 +3212,116 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [977] = 977, [978] = 978, [979] = 979, - [980] = 980, + [980] = 958, [981] = 981, [982] = 982, - [983] = 983, + [983] = 906, [984] = 984, [985] = 985, - [986] = 986, + [986] = 913, [987] = 987, [988] = 988, - [989] = 985, - [990] = 990, + [989] = 989, + [990] = 972, [991] = 991, - [992] = 984, - [993] = 993, + [992] = 992, + [993] = 932, [994] = 994, - [995] = 993, + [995] = 995, [996] = 996, [997] = 997, - [998] = 998, + [998] = 912, [999] = 999, [1000] = 1000, - [1001] = 982, + [1001] = 1001, [1002] = 1002, - [1003] = 1003, - [1004] = 1002, - [1005] = 985, + [1003] = 1002, + [1004] = 1001, + [1005] = 1005, [1006] = 1006, - [1007] = 987, - [1008] = 984, + [1007] = 1007, + [1008] = 1008, [1009] = 1009, [1010] = 1010, [1011] = 1011, [1012] = 1012, [1013] = 1013, [1014] = 1014, - [1015] = 1010, + [1015] = 1015, [1016] = 1016, [1017] = 1017, - [1018] = 977, - [1019] = 998, + [1018] = 1015, + [1019] = 1015, [1020] = 1020, - [1021] = 1006, - [1022] = 1013, - [1023] = 975, + [1021] = 1002, + [1022] = 1022, + [1023] = 1023, [1024] = 1024, [1025] = 1025, - [1026] = 1026, + [1026] = 1010, [1027] = 1027, [1028] = 1028, [1029] = 1029, [1030] = 1030, - [1031] = 986, + [1031] = 1013, [1032] = 1032, - [1033] = 1013, - [1034] = 1016, - [1035] = 1017, - [1036] = 998, + [1033] = 1033, + [1034] = 1034, + [1035] = 1035, + [1036] = 1036, [1037] = 1037, - [1038] = 1016, + [1038] = 1038, [1039] = 1039, - [1040] = 1040, - [1041] = 1009, - [1042] = 993, + [1040] = 1010, + [1041] = 1041, + [1042] = 1030, [1043] = 1043, [1044] = 1044, [1045] = 1045, - [1046] = 1046, + [1046] = 1001, [1047] = 1047, - [1048] = 999, + [1048] = 1048, [1049] = 1049, - [1050] = 1017, + [1050] = 1050, [1051] = 1051, - [1052] = 999, - [1053] = 1049, - [1054] = 982, - [1055] = 1055, - [1056] = 1024, + [1052] = 1041, + [1053] = 1053, + [1054] = 1034, + [1055] = 1037, + [1056] = 1038, [1057] = 1057, - [1058] = 1058, - [1059] = 987, - [1060] = 1049, - [1061] = 986, - [1062] = 978, - [1063] = 1046, + [1058] = 1034, + [1059] = 1059, + [1060] = 1037, + [1061] = 1028, + [1062] = 1038, + [1063] = 1063, [1064] = 1064, - [1065] = 994, + [1065] = 1065, [1066] = 1066, - [1067] = 1067, + [1067] = 1065, [1068] = 1068, + [1069] = 1049, + [1070] = 1047, + [1071] = 1071, + [1072] = 1039, + [1073] = 1049, + [1074] = 1047, + [1075] = 1027, + [1076] = 1076, + [1077] = 1017, + [1078] = 1078, + [1079] = 1028, + [1080] = 1080, + [1081] = 1081, + [1082] = 1059, + [1083] = 1050, + [1084] = 1084, + [1085] = 1085, + [1086] = 1086, + [1087] = 1087, + [1088] = 1016, + [1089] = 1041, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -3265,512 +3329,572 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(163); + if (eof) ADVANCE(165); if (lookahead == '\t' || lookahead == '\n' || lookahead == ' ' || lookahead == ';') SKIP(0) if (lookahead == '\r') SKIP(0) - if (lookahead == '!') ADVANCE(11); - if (lookahead == '"') ADVANCE(1); - if (lookahead == '#') ADVANCE(185); - if (lookahead == '%') ADVANCE(228); - if (lookahead == '&') ADVANCE(3); - if (lookahead == '(') ADVANCE(186); - if (lookahead == ')') ADVANCE(187); - if (lookahead == '*') ADVANCE(225); - if (lookahead == '+') ADVANCE(222); - if (lookahead == ',') ADVANCE(180); - if (lookahead == '-') ADVANCE(195); - if (lookahead == '.') ADVANCE(177); - if (lookahead == '/') ADVANCE(179); - if (lookahead == '0') ADVANCE(245); - if (lookahead == ':') ADVANCE(192); - if (lookahead == '<') ADVANCE(211); - if (lookahead == '=') ADVANCE(184); - if (lookahead == '>') ADVANCE(217); - if (lookahead == '[') ADVANCE(188); - if (lookahead == ']') ADVANCE(189); - if (lookahead == '_') ADVANCE(269); - if (lookahead == 'a') ADVANCE(113); - if (lookahead == 'b') ADVANCE(60); - if (lookahead == 'c') ADVANCE(20); - if (lookahead == 'e') ADVANCE(107); - if (lookahead == 'f') ADVANCE(71); - if (lookahead == 'i') ADVANCE(53); - if (lookahead == 'j') ADVANCE(17); - if (lookahead == 'l') ADVANCE(45); - if (lookahead == 'n') ADVANCE(24); - if (lookahead == 'o') ADVANCE(100); - if (lookahead == 'p') ADVANCE(135); - if (lookahead == 's') ADVANCE(61); - if (lookahead == 't') ADVANCE(89); - if (lookahead == 'u') ADVANCE(78); - if (lookahead == '{') ADVANCE(171); - if (lookahead == '|') ADVANCE(235); - if (lookahead == '}') ADVANCE(172); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(246); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(290); + if (lookahead == '!') ADVANCE(9); + if (lookahead == '"') ADVANCE(251); + if (lookahead == '#') ADVANCE(195); + if (lookahead == '%') ADVANCE(238); + if (lookahead == '&') ADVANCE(1); + if (lookahead == '(') ADVANCE(196); + if (lookahead == ')') ADVANCE(197); + if (lookahead == '*') ADVANCE(235); + if (lookahead == '+') ADVANCE(232); + if (lookahead == ',') ADVANCE(190); + if (lookahead == '-') ADVANCE(205); + if (lookahead == '.') ADVANCE(187); + if (lookahead == '/') ADVANCE(189); + if (lookahead == '0') ADVANCE(258); + if (lookahead == ':') ADVANCE(202); + if (lookahead == '<') ADVANCE(221); + if (lookahead == '=') ADVANCE(194); + if (lookahead == '>') ADVANCE(227); + if (lookahead == '[') ADVANCE(198); + if (lookahead == '\\') ADVANCE(159); + if (lookahead == ']') ADVANCE(199); + if (lookahead == '_') ADVANCE(282); + if (lookahead == 'a') ADVANCE(111); + if (lookahead == 'b') ADVANCE(58); + if (lookahead == 'c') ADVANCE(18); + if (lookahead == 'e') ADVANCE(105); + if (lookahead == 'f') ADVANCE(69); + if (lookahead == 'i') ADVANCE(51); + if (lookahead == 'j') ADVANCE(15); + if (lookahead == 'l') ADVANCE(43); + if (lookahead == 'n') ADVANCE(22); + if (lookahead == 'o') ADVANCE(98); + if (lookahead == 'p') ADVANCE(133); + if (lookahead == 's') ADVANCE(59); + if (lookahead == 't') ADVANCE(87); + if (lookahead == 'u') ADVANCE(76); + if (lookahead == '{') ADVANCE(181); + if (lookahead == '|') ADVANCE(245); + if (lookahead == '}') ADVANCE(182); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(259); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(303); END_STATE(); case 1: - if (lookahead == '"') ADVANCE(241); - if (lookahead == '\\') ADVANCE(2); - if (lookahead != 0) ADVANCE(1); + if (lookahead == '&') ADVANCE(218); END_STATE(); case 2: - if (lookahead == '"') ADVANCE(242); - if (lookahead == '\\') ADVANCE(2); - if (lookahead != 0) ADVANCE(1); + if (lookahead == '.') ADVANCE(241); END_STATE(); case 3: - if (lookahead == '&') ADVANCE(208); + if (lookahead == '.') ADVANCE(162); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_') ADVANCE(3); END_STATE(); case 4: - if (lookahead == '.') ADVANCE(231); + if (lookahead == '/') ADVANCE(177); END_STATE(); case 5: - if (lookahead == '.') ADVANCE(161); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(5); + if (lookahead == '1') ADVANCE(7); + if (lookahead == '3') ADVANCE(6); + if (lookahead == '8') ADVANCE(271); END_STATE(); case 6: - if (lookahead == '/') ADVANCE(167); + if (lookahead == '2') ADVANCE(273); END_STATE(); case 7: - if (lookahead == '1') ADVANCE(9); - if (lookahead == '3') ADVANCE(8); - if (lookahead == '8') ADVANCE(258); + if (lookahead == '6') ADVANCE(272); END_STATE(); case 8: - if (lookahead == '2') ADVANCE(260); + if (lookahead == '<') ADVANCE(200); END_STATE(); case 9: - if (lookahead == '6') ADVANCE(259); + if (lookahead == '=') ADVANCE(220); END_STATE(); case 10: - if (lookahead == '<') ADVANCE(190); + if (lookahead == '=') ADVANCE(219); END_STATE(); case 11: - if (lookahead == '=') ADVANCE(210); + if (lookahead == '>') ADVANCE(214); END_STATE(); case 12: - if (lookahead == '=') ADVANCE(209); + if (lookahead == '>') ADVANCE(201); END_STATE(); case 13: - if (lookahead == '>') ADVANCE(204); + if (lookahead == '>') ADVANCE(231); + if (lookahead == '|') ADVANCE(217); END_STATE(); case 14: - if (lookahead == '>') ADVANCE(191); + if (lookahead == '_') ADVANCE(116); + if (lookahead == 's') ADVANCE(270); END_STATE(); case 15: - if (lookahead == '>') ADVANCE(221); - if (lookahead == '|') ADVANCE(207); + if (lookahead == 'a') ADVANCE(135); END_STATE(); case 16: - if (lookahead == '_') ADVANCE(118); - if (lookahead == 's') ADVANCE(257); + if (lookahead == 'a') ADVANCE(104); END_STATE(); case 17: - if (lookahead == 'a') ADVANCE(137); + if (lookahead == 'a') ADVANCE(106); END_STATE(); case 18: - if (lookahead == 'a') ADVANCE(106); + if (lookahead == 'a') ADVANCE(114); + if (lookahead == 'o') ADVANCE(78); END_STATE(); case 19: - if (lookahead == 'a') ADVANCE(108); + if (lookahead == 'a') ADVANCE(77); END_STATE(); case 20: - if (lookahead == 'a') ADVANCE(116); - if (lookahead == 'o') ADVANCE(80); + if (lookahead == 'a') ADVANCE(70); END_STATE(); case 21: - if (lookahead == 'a') ADVANCE(79); + if (lookahead == 'a') ADVANCE(113); END_STATE(); case 22: - if (lookahead == 'a') ADVANCE(72); + if (lookahead == 'a') ADVANCE(128); END_STATE(); case 23: - if (lookahead == 'a') ADVANCE(115); + if (lookahead == 'a') ADVANCE(122); END_STATE(); case 24: - if (lookahead == 'a') ADVANCE(130); + if (lookahead == 'b') ADVANCE(191); END_STATE(); case 25: - if (lookahead == 'a') ADVANCE(124); + if (lookahead == 'c') ADVANCE(90); END_STATE(); case 26: - if (lookahead == 'b') ADVANCE(181); + if (lookahead == 'c') ADVANCE(109); END_STATE(); case 27: - if (lookahead == 'c') ADVANCE(92); + if (lookahead == 'c') ADVANCE(95); END_STATE(); case 28: - if (lookahead == 'c') ADVANCE(111); + if (lookahead == 'c') ADVANCE(96); END_STATE(); case 29: - if (lookahead == 'c') ADVANCE(97); + if (lookahead == 'd') ADVANCE(277); END_STATE(); case 30: - if (lookahead == 'c') ADVANCE(98); + if (lookahead == 'd') ADVANCE(278); END_STATE(); case 31: - if (lookahead == 'd') ADVANCE(264); + if (lookahead == 'd') ADVANCE(88); END_STATE(); case 32: - if (lookahead == 'd') ADVANCE(265); + if (lookahead == 'd') ADVANCE(46); END_STATE(); case 33: - if (lookahead == 'd') ADVANCE(90); + if (lookahead == 'd') ADVANCE(47); END_STATE(); case 34: if (lookahead == 'd') ADVANCE(48); END_STATE(); case 35: - if (lookahead == 'd') ADVANCE(49); + if (lookahead == 'e') ADVANCE(242); END_STATE(); case 36: - if (lookahead == 'd') ADVANCE(50); + if (lookahead == 'e') ADVANCE(209); END_STATE(); case 37: - if (lookahead == 'e') ADVANCE(232); + if (lookahead == 'e') ADVANCE(211); END_STATE(); case 38: - if (lookahead == 'e') ADVANCE(199); + if (lookahead == 'e') ADVANCE(280); END_STATE(); case 39: - if (lookahead == 'e') ADVANCE(201); + if (lookahead == 'e') ADVANCE(281); END_STATE(); case 40: - if (lookahead == 'e') ADVANCE(267); + if (lookahead == 'e') ADVANCE(250); END_STATE(); case 41: - if (lookahead == 'e') ADVANCE(268); + if (lookahead == 'e') ADVANCE(29); END_STATE(); case 42: - if (lookahead == 'e') ADVANCE(240); + if (lookahead == 'e') ADVANCE(108); END_STATE(); case 43: - if (lookahead == 'e') ADVANCE(31); + if (lookahead == 'e') ADVANCE(119); + if (lookahead == 'i') ADVANCE(132); END_STATE(); case 44: - if (lookahead == 'e') ADVANCE(110); + if (lookahead == 'e') ADVANCE(30); END_STATE(); case 45: - if (lookahead == 'e') ADVANCE(121); - if (lookahead == 'i') ADVANCE(134); + if (lookahead == 'e') ADVANCE(112); END_STATE(); case 46: - if (lookahead == 'e') ADVANCE(32); + if (lookahead == 'e') ADVANCE(99); END_STATE(); case 47: - if (lookahead == 'e') ADVANCE(114); + if (lookahead == 'e') ADVANCE(102); END_STATE(); case 48: - if (lookahead == 'e') ADVANCE(101); + if (lookahead == 'e') ADVANCE(103); END_STATE(); case 49: - if (lookahead == 'e') ADVANCE(104); + if (lookahead == 'f') ADVANCE(179); END_STATE(); case 50: - if (lookahead == 'e') ADVANCE(105); + if (lookahead == 'f') ADVANCE(179); + if (lookahead == 'm') ADVANCE(97); END_STATE(); case 51: - if (lookahead == 'f') ADVANCE(169); + if (lookahead == 'f') ADVANCE(179); + if (lookahead == 'm') ADVANCE(97); + if (lookahead == 'n') ADVANCE(118); END_STATE(); case 52: - if (lookahead == 'f') ADVANCE(169); - if (lookahead == 'm') ADVANCE(99); + if (lookahead == 'f') ADVANCE(5); END_STATE(); case 53: - if (lookahead == 'f') ADVANCE(169); - if (lookahead == 'm') ADVANCE(99); - if (lookahead == 'n') ADVANCE(120); + if (lookahead == 'g') ADVANCE(279); + if (lookahead == 'n') ADVANCE(17); + if (lookahead == 't') ADVANCE(14); END_STATE(); case 54: - if (lookahead == 'f') ADVANCE(7); + if (lookahead == 'g') ADVANCE(183); END_STATE(); case 55: - if (lookahead == 'g') ADVANCE(266); - if (lookahead == 'n') ADVANCE(19); - if (lookahead == 't') ADVANCE(16); + if (lookahead == 'g') ADVANCE(269); END_STATE(); case 56: - if (lookahead == 'g') ADVANCE(173); + if (lookahead == 'g') ADVANCE(80); + if (lookahead == 'z') ADVANCE(36); END_STATE(); case 57: - if (lookahead == 'g') ADVANCE(256); + if (lookahead == 'g') ADVANCE(82); END_STATE(); case 58: - if (lookahead == 'g') ADVANCE(82); - if (lookahead == 'z') ADVANCE(38); + if (lookahead == 'i') ADVANCE(53); + if (lookahead == 'y') ADVANCE(117); END_STATE(); case 59: - if (lookahead == 'g') ADVANCE(84); + if (lookahead == 'i') ADVANCE(56); END_STATE(); case 60: - if (lookahead == 'i') ADVANCE(55); - if (lookahead == 'y') ADVANCE(119); + if (lookahead == 'i') ADVANCE(57); END_STATE(); case 61: - if (lookahead == 'i') ADVANCE(58); + if (lookahead == 'i') ADVANCE(136); END_STATE(); case 62: - if (lookahead == 'i') ADVANCE(59); + if (lookahead == 'i') ADVANCE(101); END_STATE(); case 63: - if (lookahead == 'i') ADVANCE(138); + if (lookahead == 'i') ADVANCE(132); END_STATE(); case 64: - if (lookahead == 'i') ADVANCE(103); + if (lookahead == 'i') ADVANCE(79); END_STATE(); case 65: - if (lookahead == 'i') ADVANCE(134); + if (lookahead == 'i') ADVANCE(83); END_STATE(); case 66: - if (lookahead == 'i') ADVANCE(81); + if (lookahead == 'i') ADVANCE(120); + if (lookahead == 's') ADVANCE(60); END_STATE(); case 67: - if (lookahead == 'i') ADVANCE(85); + if (lookahead == 'i') ADVANCE(84); END_STATE(); case 68: - if (lookahead == 'i') ADVANCE(122); - if (lookahead == 's') ADVANCE(62); + if (lookahead == 'i') ADVANCE(85); END_STATE(); case 69: - if (lookahead == 'i') ADVANCE(86); + if (lookahead == 'l') ADVANCE(91); + if (lookahead == 'n') ADVANCE(212); END_STATE(); case 70: - if (lookahead == 'i') ADVANCE(87); + if (lookahead == 'l') ADVANCE(210); END_STATE(); case 71: - if (lookahead == 'l') ADVANCE(93); - if (lookahead == 'n') ADVANCE(202); + if (lookahead == 'l') ADVANCE(19); END_STATE(); case 72: - if (lookahead == 'l') ADVANCE(200); + if (lookahead == 'l') ADVANCE(38); END_STATE(); case 73: - if (lookahead == 'l') ADVANCE(21); + if (lookahead == 'm') ADVANCE(97); END_STATE(); case 74: - if (lookahead == 'l') ADVANCE(40); + if (lookahead == 'm') ADVANCE(97); + if (lookahead == 'n') ADVANCE(118); END_STATE(); case 75: - if (lookahead == 'm') ADVANCE(99); + if (lookahead == 'n') ADVANCE(212); END_STATE(); case 76: - if (lookahead == 'm') ADVANCE(99); - if (lookahead == 'n') ADVANCE(120); + if (lookahead == 'n') ADVANCE(66); + if (lookahead == 't') ADVANCE(52); END_STATE(); case 77: - if (lookahead == 'n') ADVANCE(202); + if (lookahead == 'n') ADVANCE(54); END_STATE(); case 78: - if (lookahead == 'n') ADVANCE(68); - if (lookahead == 't') ADVANCE(54); + if (lookahead == 'n') ADVANCE(115); END_STATE(); case 79: - if (lookahead == 'n') ADVANCE(56); + if (lookahead == 'n') ADVANCE(55); END_STATE(); case 80: - if (lookahead == 'n') ADVANCE(117); + if (lookahead == 'n') ADVANCE(41); END_STATE(); case 81: - if (lookahead == 'n') ADVANCE(57); + if (lookahead == 'n') ADVANCE(20); END_STATE(); case 82: - if (lookahead == 'n') ADVANCE(43); + if (lookahead == 'n') ADVANCE(44); END_STATE(); case 83: - if (lookahead == 'n') ADVANCE(22); + if (lookahead == 'n') ADVANCE(125); END_STATE(); case 84: - if (lookahead == 'n') ADVANCE(46); + if (lookahead == 'n') ADVANCE(126); END_STATE(); case 85: if (lookahead == 'n') ADVANCE(127); END_STATE(); case 86: - if (lookahead == 'n') ADVANCE(128); + if (lookahead == 'o') ADVANCE(78); END_STATE(); case 87: - if (lookahead == 'n') ADVANCE(129); + if (lookahead == 'o') ADVANCE(31); + if (lookahead == 'r') ADVANCE(138); + if (lookahead == 'y') ADVANCE(100); END_STATE(); case 88: - if (lookahead == 'o') ADVANCE(80); + if (lookahead == 'o') ADVANCE(239); END_STATE(); case 89: - if (lookahead == 'o') ADVANCE(33); - if (lookahead == 'r') ADVANCE(140); - if (lookahead == 'y') ADVANCE(102); + if (lookahead == 'o') ADVANCE(110); END_STATE(); case 90: - if (lookahead == 'o') ADVANCE(229); + if (lookahead == 'o') ADVANCE(32); END_STATE(); case 91: - if (lookahead == 'o') ADVANCE(112); + if (lookahead == 'o') ADVANCE(23); END_STATE(); case 92: - if (lookahead == 'o') ADVANCE(34); + if (lookahead == 'o') ADVANCE(65); END_STATE(); case 93: - if (lookahead == 'o') ADVANCE(25); + if (lookahead == 'o') ADVANCE(67); END_STATE(); case 94: - if (lookahead == 'o') ADVANCE(67); + if (lookahead == 'o') ADVANCE(68); END_STATE(); case 95: - if (lookahead == 'o') ADVANCE(69); + if (lookahead == 'o') ADVANCE(33); END_STATE(); case 96: - if (lookahead == 'o') ADVANCE(70); + if (lookahead == 'o') ADVANCE(34); END_STATE(); case 97: - if (lookahead == 'o') ADVANCE(35); + if (lookahead == 'p') ADVANCE(89); END_STATE(); case 98: - if (lookahead == 'o') ADVANCE(36); + if (lookahead == 'p') ADVANCE(16); END_STATE(); case 99: - if (lookahead == 'p') ADVANCE(91); + if (lookahead == 'p') ADVANCE(92); END_STATE(); case 100: - if (lookahead == 'p') ADVANCE(18); + if (lookahead == 'p') ADVANCE(37); END_STATE(); case 101: - if (lookahead == 'p') ADVANCE(94); + if (lookahead == 'p') ADVANCE(124); END_STATE(); case 102: - if (lookahead == 'p') ADVANCE(39); + if (lookahead == 'p') ADVANCE(93); END_STATE(); case 103: - if (lookahead == 'p') ADVANCE(126); + if (lookahead == 'p') ADVANCE(94); END_STATE(); case 104: - if (lookahead == 'p') ADVANCE(95); + if (lookahead == 'q') ADVANCE(134); END_STATE(); case 105: - if (lookahead == 'p') ADVANCE(96); + if (lookahead == 'r') ADVANCE(71); + if (lookahead == 'x') ADVANCE(130); END_STATE(); case 106: - if (lookahead == 'q') ADVANCE(136); + if (lookahead == 'r') ADVANCE(139); END_STATE(); case 107: - if (lookahead == 'r') ADVANCE(73); - if (lookahead == 'x') ADVANCE(132); + if (lookahead == 'r') ADVANCE(64); END_STATE(); case 108: - if (lookahead == 'r') ADVANCE(141); + if (lookahead == 'r') ADVANCE(81); END_STATE(); case 109: - if (lookahead == 'r') ADVANCE(66); + if (lookahead == 'r') ADVANCE(62); END_STATE(); case 110: - if (lookahead == 'r') ADVANCE(83); + if (lookahead == 'r') ADVANCE(123); END_STATE(); case 111: - if (lookahead == 'r') ADVANCE(64); + if (lookahead == 's') ADVANCE(188); END_STATE(); case 112: - if (lookahead == 'r') ADVANCE(125); + if (lookahead == 's') ADVANCE(266); END_STATE(); case 113: - if (lookahead == 's') ADVANCE(178); + if (lookahead == 's') ADVANCE(26); END_STATE(); case 114: - if (lookahead == 's') ADVANCE(253); + if (lookahead == 's') ADVANCE(35); END_STATE(); case 115: - if (lookahead == 's') ADVANCE(28); + if (lookahead == 's') ADVANCE(121); END_STATE(); case 116: - if (lookahead == 's') ADVANCE(37); + if (lookahead == 's') ADVANCE(131); END_STATE(); case 117: - if (lookahead == 's') ADVANCE(123); + if (lookahead == 't') ADVANCE(45); END_STATE(); case 118: - if (lookahead == 's') ADVANCE(133); + if (lookahead == 't') ADVANCE(267); END_STATE(); case 119: - if (lookahead == 't') ADVANCE(47); + if (lookahead == 't') ADVANCE(247); END_STATE(); case 120: - if (lookahead == 't') ADVANCE(254); + if (lookahead == 't') ADVANCE(264); END_STATE(); case 121: - if (lookahead == 't') ADVANCE(237); + if (lookahead == 't') ADVANCE(192); END_STATE(); case 122: - if (lookahead == 't') ADVANCE(251); + if (lookahead == 't') ADVANCE(268); END_STATE(); case 123: - if (lookahead == 't') ADVANCE(182); + if (lookahead == 't') ADVANCE(185); END_STATE(); case 124: - if (lookahead == 't') ADVANCE(255); + if (lookahead == 't') ADVANCE(184); END_STATE(); case 125: - if (lookahead == 't') ADVANCE(175); + if (lookahead == 't') ADVANCE(274); END_STATE(); case 126: - if (lookahead == 't') ADVANCE(174); + if (lookahead == 't') ADVANCE(275); END_STATE(); case 127: - if (lookahead == 't') ADVANCE(261); + if (lookahead == 't') ADVANCE(276); END_STATE(); case 128: - if (lookahead == 't') ADVANCE(262); + if (lookahead == 't') ADVANCE(61); END_STATE(); case 129: - if (lookahead == 't') ADVANCE(263); + if (lookahead == 't') ADVANCE(72); END_STATE(); case 130: - if (lookahead == 't') ADVANCE(63); + if (lookahead == 't') ADVANCE(42); END_STATE(); case 131: - if (lookahead == 't') ADVANCE(74); + if (lookahead == 't') ADVANCE(107); END_STATE(); case 132: - if (lookahead == 't') ADVANCE(44); + if (lookahead == 't') ADVANCE(129); END_STATE(); case 133: - if (lookahead == 't') ADVANCE(109); + if (lookahead == 'u') ADVANCE(24); END_STATE(); case 134: - if (lookahead == 't') ADVANCE(131); + if (lookahead == 'u') ADVANCE(40); END_STATE(); case 135: - if (lookahead == 'u') ADVANCE(26); + if (lookahead == 'v') ADVANCE(21); END_STATE(); case 136: - if (lookahead == 'u') ADVANCE(42); + if (lookahead == 'v') ADVANCE(39); END_STATE(); case 137: - if (lookahead == 'v') ADVANCE(23); + if (lookahead == 'x') ADVANCE(130); END_STATE(); case 138: - if (lookahead == 'v') ADVANCE(41); + if (lookahead == 'y') ADVANCE(215); END_STATE(); case 139: - if (lookahead == 'x') ADVANCE(132); + if (lookahead == 'y') ADVANCE(265); END_STATE(); case 140: - if (lookahead == 'y') ADVANCE(205); + if (lookahead == 'y') ADVANCE(100); END_STATE(); case 141: - if (lookahead == 'y') ADVANCE(252); + if (lookahead == '|') ADVANCE(217); END_STATE(); case 142: - if (lookahead == 'y') ADVANCE(102); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(263); END_STATE(); case 143: - if (lookahead == '|') ADVANCE(207); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ' || + lookahead == ';') SKIP(143) + if (lookahead == '\r') SKIP(143) + if (lookahead == '!') ADVANCE(9); + if (lookahead == '"') ADVANCE(251); + if (lookahead == '#') ADVANCE(195); + if (lookahead == '%') ADVANCE(238); + if (lookahead == '&') ADVANCE(1); + if (lookahead == '(') ADVANCE(196); + if (lookahead == ')') ADVANCE(197); + if (lookahead == '*') ADVANCE(235); + if (lookahead == '+') ADVANCE(232); + if (lookahead == ',') ADVANCE(190); + if (lookahead == '-') ADVANCE(206); + if (lookahead == '.') ADVANCE(186); + if (lookahead == '/') ADVANCE(189); + if (lookahead == '0') ADVANCE(258); + if (lookahead == ':') ADVANCE(202); + if (lookahead == '<') ADVANCE(221); + if (lookahead == '=') ADVANCE(194); + if (lookahead == '>') ADVANCE(227); + if (lookahead == '[') ADVANCE(198); + if (lookahead == ']') ADVANCE(199); + if (lookahead == '_') ADVANCE(284); + if (lookahead == 'a') ADVANCE(296); + if (lookahead == 'c') ADVANCE(285); + if (lookahead == 'f') ADVANCE(291); + if (lookahead == 'l') ADVANCE(287); + if (lookahead == 't') ADVANCE(292); + if (lookahead == '{') ADVANCE(181); + if (lookahead == '|') ADVANCE(13); + if (lookahead == '}') ADVANCE(182); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(259); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(302); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(303); END_STATE(); case 144: - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(250); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ' || + lookahead == ';') SKIP(144) + if (lookahead == '\r') SKIP(144) + if (lookahead == '"') ADVANCE(251); + if (lookahead == '#') ADVANCE(195); + if (lookahead == '(') ADVANCE(196); + if (lookahead == ')') ADVANCE(197); + if (lookahead == ',') ADVANCE(190); + if (lookahead == '-') ADVANCE(208); + if (lookahead == '.') ADVANCE(2); + if (lookahead == '/') ADVANCE(4); + if (lookahead == '0') ADVANCE(258); + if (lookahead == ':') ADVANCE(202); + if (lookahead == '<') ADVANCE(8); + if (lookahead == '=') ADVANCE(193); + if (lookahead == '[') ADVANCE(198); + if (lookahead == '_') ADVANCE(282); + if (lookahead == 'a') ADVANCE(296); + if (lookahead == 'c') ADVANCE(285); + if (lookahead == 'f') ADVANCE(291); + if (lookahead == 'l') ADVANCE(287); + if (lookahead == 't') ADVANCE(293); + if (lookahead == '{') ADVANCE(181); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(259); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(302); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(303); END_STATE(); case 145: if (lookahead == '\t' || @@ -3778,38 +3902,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == ';') SKIP(145) if (lookahead == '\r') SKIP(145) - if (lookahead == '!') ADVANCE(11); - if (lookahead == '"') ADVANCE(1); - if (lookahead == '#') ADVANCE(185); - if (lookahead == '%') ADVANCE(228); - if (lookahead == '&') ADVANCE(3); - if (lookahead == '(') ADVANCE(186); - if (lookahead == ')') ADVANCE(187); - if (lookahead == '*') ADVANCE(225); - if (lookahead == '+') ADVANCE(222); - if (lookahead == ',') ADVANCE(180); - if (lookahead == '-') ADVANCE(196); - if (lookahead == '.') ADVANCE(176); - if (lookahead == '/') ADVANCE(179); - if (lookahead == '0') ADVANCE(245); - if (lookahead == ':') ADVANCE(192); - if (lookahead == '<') ADVANCE(211); - if (lookahead == '=') ADVANCE(184); - if (lookahead == '>') ADVANCE(217); - if (lookahead == '[') ADVANCE(188); - if (lookahead == ']') ADVANCE(189); - if (lookahead == '_') ADVANCE(271); - if (lookahead == 'a') ADVANCE(283); - if (lookahead == 'c') ADVANCE(272); - if (lookahead == 'f') ADVANCE(278); - if (lookahead == 'l') ADVANCE(274); - if (lookahead == 't') ADVANCE(279); - if (lookahead == '{') ADVANCE(171); - if (lookahead == '|') ADVANCE(15); - if (lookahead == '}') ADVANCE(172); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(246); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(289); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(290); + if (lookahead == '"') ADVANCE(251); + if (lookahead == '#') ADVANCE(195); + if (lookahead == ')') ADVANCE(197); + if (lookahead == '-') ADVANCE(208); + if (lookahead == '.') ADVANCE(2); + if (lookahead == '/') ADVANCE(4); + if (lookahead == '0') ADVANCE(258); + if (lookahead == '<') ADVANCE(8); + if (lookahead == '>') ADVANCE(12); + if (lookahead == '[') ADVANCE(198); + if (lookahead == ']') ADVANCE(199); + if (lookahead == '_') ADVANCE(284); + if (lookahead == 'a') ADVANCE(296); + if (lookahead == 'c') ADVANCE(285); + if (lookahead == 'f') ADVANCE(291); + if (lookahead == 'l') ADVANCE(287); + if (lookahead == 't') ADVANCE(293); + if (lookahead == '{') ADVANCE(181); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(259); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(302); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(303); END_STATE(); case 146: if (lookahead == '\t' || @@ -3817,29 +3930,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == ';') SKIP(146) if (lookahead == '\r') SKIP(146) - if (lookahead == '"') ADVANCE(1); - if (lookahead == '#') ADVANCE(185); - if (lookahead == '(') ADVANCE(186); - if (lookahead == ')') ADVANCE(187); - if (lookahead == ',') ADVANCE(180); - if (lookahead == '-') ADVANCE(198); - if (lookahead == '.') ADVANCE(4); - if (lookahead == '/') ADVANCE(6); - if (lookahead == '0') ADVANCE(245); - if (lookahead == ':') ADVANCE(192); - if (lookahead == '<') ADVANCE(10); - if (lookahead == '=') ADVANCE(183); - if (lookahead == '[') ADVANCE(188); - if (lookahead == '_') ADVANCE(269); - if (lookahead == 'a') ADVANCE(283); - if (lookahead == 'c') ADVANCE(272); - if (lookahead == 'f') ADVANCE(278); - if (lookahead == 'l') ADVANCE(274); - if (lookahead == 't') ADVANCE(280); - if (lookahead == '{') ADVANCE(171); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(246); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(289); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(290); + if (lookahead == '!') ADVANCE(9); + if (lookahead == '%') ADVANCE(238); + if (lookahead == '&') ADVANCE(1); + if (lookahead == '(') ADVANCE(196); + if (lookahead == ')') ADVANCE(197); + if (lookahead == '*') ADVANCE(235); + if (lookahead == '+') ADVANCE(232); + if (lookahead == ',') ADVANCE(190); + if (lookahead == '-') ADVANCE(204); + if (lookahead == '.') ADVANCE(187); + if (lookahead == '/') ADVANCE(189); + if (lookahead == '0') ADVANCE(260); + if (lookahead == ':') ADVANCE(202); + if (lookahead == '<') ADVANCE(222); + if (lookahead == '=') ADVANCE(194); + if (lookahead == '>') ADVANCE(227); + if (lookahead == ']') ADVANCE(199); + if (lookahead == 'a') ADVANCE(111); + if (lookahead == 'b') ADVANCE(58); + if (lookahead == 'c') ADVANCE(86); + if (lookahead == 'e') ADVANCE(137); + if (lookahead == 'f') ADVANCE(69); + if (lookahead == 'i') ADVANCE(74); + if (lookahead == 'l') ADVANCE(63); + if (lookahead == 'n') ADVANCE(22); + if (lookahead == 'p') ADVANCE(133); + if (lookahead == 's') ADVANCE(59); + if (lookahead == 't') ADVANCE(140); + if (lookahead == 'u') ADVANCE(76); + if (lookahead == '{') ADVANCE(181); + if (lookahead == '|') ADVANCE(13); + if (lookahead == '}') ADVANCE(182); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(261); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(303); END_STATE(); case 147: if (lookahead == '\t' || @@ -3847,27 +3971,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == ';') SKIP(147) if (lookahead == '\r') SKIP(147) - if (lookahead == '"') ADVANCE(1); - if (lookahead == '#') ADVANCE(185); - if (lookahead == ')') ADVANCE(187); - if (lookahead == '-') ADVANCE(198); - if (lookahead == '.') ADVANCE(4); - if (lookahead == '/') ADVANCE(6); - if (lookahead == '0') ADVANCE(245); - if (lookahead == '<') ADVANCE(10); - if (lookahead == '>') ADVANCE(14); - if (lookahead == '[') ADVANCE(188); - if (lookahead == ']') ADVANCE(189); - if (lookahead == '_') ADVANCE(271); - if (lookahead == 'a') ADVANCE(283); - if (lookahead == 'c') ADVANCE(272); - if (lookahead == 'f') ADVANCE(278); - if (lookahead == 'l') ADVANCE(274); - if (lookahead == 't') ADVANCE(280); - if (lookahead == '{') ADVANCE(171); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(246); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(289); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(290); + if (lookahead == '!') ADVANCE(9); + if (lookahead == '"') ADVANCE(251); + if (lookahead == '#') ADVANCE(195); + if (lookahead == '%') ADVANCE(238); + if (lookahead == '&') ADVANCE(1); + if (lookahead == '(') ADVANCE(196); + if (lookahead == ')') ADVANCE(197); + if (lookahead == '*') ADVANCE(235); + if (lookahead == '+') ADVANCE(232); + if (lookahead == '-') ADVANCE(206); + if (lookahead == '.') ADVANCE(187); + if (lookahead == '/') ADVANCE(189); + if (lookahead == '0') ADVANCE(258); + if (lookahead == '<') ADVANCE(221); + if (lookahead == '=') ADVANCE(10); + if (lookahead == '>') ADVANCE(227); + if (lookahead == '[') ADVANCE(198); + if (lookahead == ']') ADVANCE(199); + if (lookahead == '_') ADVANCE(282); + if (lookahead == '|') ADVANCE(13); + if (lookahead == '}') ADVANCE(182); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(259); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(303); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(302); END_STATE(); case 148: if (lookahead == '\t' || @@ -3875,40 +4002,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == ';') SKIP(148) if (lookahead == '\r') SKIP(148) - if (lookahead == '!') ADVANCE(11); - if (lookahead == '%') ADVANCE(228); - if (lookahead == '&') ADVANCE(3); - if (lookahead == '(') ADVANCE(186); - if (lookahead == ')') ADVANCE(187); - if (lookahead == '*') ADVANCE(225); - if (lookahead == '+') ADVANCE(222); - if (lookahead == ',') ADVANCE(180); - if (lookahead == '-') ADVANCE(194); - if (lookahead == '.') ADVANCE(177); - if (lookahead == '/') ADVANCE(179); - if (lookahead == '0') ADVANCE(247); - if (lookahead == ':') ADVANCE(192); - if (lookahead == '<') ADVANCE(212); - if (lookahead == '=') ADVANCE(184); - if (lookahead == '>') ADVANCE(217); - if (lookahead == ']') ADVANCE(189); - if (lookahead == 'a') ADVANCE(113); - if (lookahead == 'b') ADVANCE(60); - if (lookahead == 'c') ADVANCE(88); - if (lookahead == 'e') ADVANCE(139); - if (lookahead == 'f') ADVANCE(71); - if (lookahead == 'i') ADVANCE(76); - if (lookahead == 'l') ADVANCE(65); - if (lookahead == 'n') ADVANCE(24); - if (lookahead == 'p') ADVANCE(135); - if (lookahead == 's') ADVANCE(61); - if (lookahead == 't') ADVANCE(142); - if (lookahead == 'u') ADVANCE(78); - if (lookahead == '{') ADVANCE(171); - if (lookahead == '|') ADVANCE(15); - if (lookahead == '}') ADVANCE(172); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(248); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(290); + if (lookahead == '!') ADVANCE(9); + if (lookahead == '%') ADVANCE(238); + if (lookahead == '&') ADVANCE(1); + if (lookahead == '(') ADVANCE(196); + if (lookahead == ')') ADVANCE(197); + if (lookahead == '*') ADVANCE(235); + if (lookahead == '+') ADVANCE(232); + if (lookahead == ',') ADVANCE(190); + if (lookahead == '-') ADVANCE(204); + if (lookahead == '.') ADVANCE(187); + if (lookahead == '/') ADVANCE(189); + if (lookahead == ':') ADVANCE(202); + if (lookahead == '<') ADVANCE(222); + if (lookahead == '=') ADVANCE(10); + if (lookahead == '>') ADVANCE(227); + if (lookahead == ']') ADVANCE(199); + if (lookahead == 'a') ADVANCE(111); + if (lookahead == '{') ADVANCE(181); + if (lookahead == '|') ADVANCE(13); + if (lookahead == '}') ADVANCE(182); END_STATE(); case 149: if (lookahead == '\t' || @@ -3916,30 +4029,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == ';') SKIP(149) if (lookahead == '\r') SKIP(149) - if (lookahead == '!') ADVANCE(11); - if (lookahead == '"') ADVANCE(1); - if (lookahead == '#') ADVANCE(185); - if (lookahead == '%') ADVANCE(228); - if (lookahead == '&') ADVANCE(3); - if (lookahead == '(') ADVANCE(186); - if (lookahead == ')') ADVANCE(187); - if (lookahead == '*') ADVANCE(225); - if (lookahead == '+') ADVANCE(222); - if (lookahead == '-') ADVANCE(196); - if (lookahead == '.') ADVANCE(177); - if (lookahead == '/') ADVANCE(179); - if (lookahead == '0') ADVANCE(245); - if (lookahead == '<') ADVANCE(211); - if (lookahead == '=') ADVANCE(12); - if (lookahead == '>') ADVANCE(217); - if (lookahead == '[') ADVANCE(188); - if (lookahead == ']') ADVANCE(189); - if (lookahead == '_') ADVANCE(269); - if (lookahead == '|') ADVANCE(15); - if (lookahead == '}') ADVANCE(172); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(246); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(290); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(289); + if (lookahead == '"') ADVANCE(251); + if (lookahead == '#') ADVANCE(195); + if (lookahead == ')') ADVANCE(197); + if (lookahead == '-') ADVANCE(208); + if (lookahead == '/') ADVANCE(4); + if (lookahead == '0') ADVANCE(258); + if (lookahead == '<') ADVANCE(8); + if (lookahead == '>') ADVANCE(12); + if (lookahead == '[') ADVANCE(198); + if (lookahead == ']') ADVANCE(199); + if (lookahead == '_') ADVANCE(284); + if (lookahead == '{') ADVANCE(181); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(259); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(303); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(302); END_STATE(); case 150: if (lookahead == '\t' || @@ -3947,26 +4051,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == ';') SKIP(150) if (lookahead == '\r') SKIP(150) - if (lookahead == '!') ADVANCE(11); - if (lookahead == '%') ADVANCE(228); - if (lookahead == '&') ADVANCE(3); - if (lookahead == '(') ADVANCE(186); - if (lookahead == ')') ADVANCE(187); - if (lookahead == '*') ADVANCE(225); - if (lookahead == '+') ADVANCE(222); - if (lookahead == ',') ADVANCE(180); - if (lookahead == '-') ADVANCE(194); - if (lookahead == '.') ADVANCE(177); - if (lookahead == '/') ADVANCE(179); - if (lookahead == ':') ADVANCE(192); - if (lookahead == '<') ADVANCE(212); - if (lookahead == '=') ADVANCE(12); - if (lookahead == '>') ADVANCE(217); - if (lookahead == ']') ADVANCE(189); - if (lookahead == 'a') ADVANCE(113); - if (lookahead == '{') ADVANCE(171); - if (lookahead == '|') ADVANCE(15); - if (lookahead == '}') ADVANCE(172); + if (lookahead == '"') ADVANCE(251); + if (lookahead == '#') ADVANCE(195); + if (lookahead == '-') ADVANCE(207); + if (lookahead == '/') ADVANCE(4); + if (lookahead == '0') ADVANCE(258); + if (lookahead == '<') ADVANCE(8); + if (lookahead == '[') ADVANCE(198); + if (lookahead == '_') ADVANCE(282); + if (lookahead == 'i') ADVANCE(290); + if (lookahead == '|') ADVANCE(244); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(259); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(302); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(303); END_STATE(); case 151: if (lookahead == '\t' || @@ -3974,27 +4071,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == ';') SKIP(151) if (lookahead == '\r') SKIP(151) - if (lookahead == '!') ADVANCE(11); - if (lookahead == '&') ADVANCE(3); - if (lookahead == '(') ADVANCE(186); - if (lookahead == ')') ADVANCE(187); - if (lookahead == ',') ADVANCE(180); - if (lookahead == '-') ADVANCE(13); - if (lookahead == '.') ADVANCE(176); - if (lookahead == '/') ADVANCE(6); - if (lookahead == ':') ADVANCE(192); - if (lookahead == '<') ADVANCE(212); - if (lookahead == '=') ADVANCE(12); - if (lookahead == '>') ADVANCE(217); - if (lookahead == ']') ADVANCE(189); - if (lookahead == 'c') ADVANCE(88); - if (lookahead == 'e') ADVANCE(139); - if (lookahead == 'f') ADVANCE(77); - if (lookahead == 'i') ADVANCE(75); - if (lookahead == 'p') ADVANCE(135); - if (lookahead == 't') ADVANCE(142); - if (lookahead == '|') ADVANCE(143); - if (lookahead == '}') ADVANCE(172); + if (lookahead == '!') ADVANCE(9); + if (lookahead == '&') ADVANCE(1); + if (lookahead == '(') ADVANCE(196); + if (lookahead == ')') ADVANCE(197); + if (lookahead == ',') ADVANCE(190); + if (lookahead == '-') ADVANCE(11); + if (lookahead == '.') ADVANCE(186); + if (lookahead == '/') ADVANCE(4); + if (lookahead == ':') ADVANCE(202); + if (lookahead == '<') ADVANCE(222); + if (lookahead == '=') ADVANCE(10); + if (lookahead == '>') ADVANCE(227); + if (lookahead == ']') ADVANCE(199); + if (lookahead == 'c') ADVANCE(86); + if (lookahead == 'e') ADVANCE(137); + if (lookahead == 'f') ADVANCE(75); + if (lookahead == 'i') ADVANCE(73); + if (lookahead == 'p') ADVANCE(133); + if (lookahead == 't') ADVANCE(140); + if (lookahead == '|') ADVANCE(141); + if (lookahead == '}') ADVANCE(182); END_STATE(); case 152: if (lookahead == '\t' || @@ -4002,19 +4099,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == ';') SKIP(152) if (lookahead == '\r') SKIP(152) - if (lookahead == '"') ADVANCE(1); - if (lookahead == '#') ADVANCE(185); - if (lookahead == '-') ADVANCE(197); - if (lookahead == '/') ADVANCE(6); - if (lookahead == '0') ADVANCE(245); - if (lookahead == '<') ADVANCE(10); - if (lookahead == '[') ADVANCE(188); - if (lookahead == '_') ADVANCE(269); - if (lookahead == 'i') ADVANCE(277); - if (lookahead == '|') ADVANCE(234); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(246); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(289); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(290); + if (lookahead == '!') ADVANCE(9); + if (lookahead == '&') ADVANCE(1); + if (lookahead == '(') ADVANCE(196); + if (lookahead == ',') ADVANCE(190); + if (lookahead == '-') ADVANCE(11); + if (lookahead == '.') ADVANCE(186); + if (lookahead == '/') ADVANCE(4); + if (lookahead == '<') ADVANCE(222); + if (lookahead == '=') ADVANCE(10); + if (lookahead == '>') ADVANCE(226); + if (lookahead == 'a') ADVANCE(111); + if (lookahead == 'i') ADVANCE(49); + if (lookahead == '|') ADVANCE(246); END_STATE(); case 153: if (lookahead == '\t' || @@ -4022,21 +4119,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == ';') SKIP(153) if (lookahead == '\r') SKIP(153) - if (lookahead == '"') ADVANCE(1); - if (lookahead == '#') ADVANCE(185); - if (lookahead == ')') ADVANCE(187); - if (lookahead == '-') ADVANCE(198); - if (lookahead == '/') ADVANCE(6); - if (lookahead == '0') ADVANCE(245); - if (lookahead == '<') ADVANCE(10); - if (lookahead == '>') ADVANCE(14); - if (lookahead == '[') ADVANCE(188); - if (lookahead == ']') ADVANCE(189); - if (lookahead == '_') ADVANCE(271); - if (lookahead == '{') ADVANCE(171); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(246); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(290); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(289); + if (lookahead == '#') ADVANCE(195); + if (lookahead == ')') ADVANCE(197); + if (lookahead == '/') ADVANCE(4); + if (lookahead == '_') ADVANCE(283); + if (lookahead == 'f') ADVANCE(291); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(302); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(303); END_STATE(); case 154: if (lookahead == '\t' || @@ -4044,19 +4133,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == ';') SKIP(154) if (lookahead == '\r') SKIP(154) - if (lookahead == '!') ADVANCE(11); - if (lookahead == '&') ADVANCE(3); - if (lookahead == '(') ADVANCE(186); - if (lookahead == ',') ADVANCE(180); - if (lookahead == '-') ADVANCE(13); - if (lookahead == '.') ADVANCE(176); - if (lookahead == '/') ADVANCE(6); - if (lookahead == '<') ADVANCE(212); - if (lookahead == '=') ADVANCE(12); - if (lookahead == '>') ADVANCE(216); - if (lookahead == 'a') ADVANCE(113); - if (lookahead == 'i') ADVANCE(51); - if (lookahead == '|') ADVANCE(236); + if (lookahead == '#') ADVANCE(195); + if (lookahead == ')') ADVANCE(197); + if (lookahead == ',') ADVANCE(190); + if (lookahead == '/') ADVANCE(4); + if (lookahead == ':') ADVANCE(202); + if (lookahead == ']') ADVANCE(199); + if (lookahead == '_') ADVANCE(283); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(303); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(302); END_STATE(); case 155: if (lookahead == '\t' || @@ -4064,13 +4149,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == ';') SKIP(155) if (lookahead == '\r') SKIP(155) - if (lookahead == '#') ADVANCE(185); - if (lookahead == ')') ADVANCE(187); - if (lookahead == '/') ADVANCE(6); - if (lookahead == '_') ADVANCE(270); - if (lookahead == 'f') ADVANCE(278); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(289); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(290); + if (lookahead == '(') ADVANCE(196); + if (lookahead == ')') ADVANCE(197); + if (lookahead == ',') ADVANCE(190); + if (lookahead == '-') ADVANCE(11); + if (lookahead == '.') ADVANCE(187); + if (lookahead == '/') ADVANCE(4); + if (lookahead == ':') ADVANCE(202); + if (lookahead == '=') ADVANCE(193); + if (lookahead == '>') ADVANCE(12); + if (lookahead == ']') ADVANCE(199); + if (lookahead == 'a') ADVANCE(111); + if (lookahead == 'c') ADVANCE(86); + if (lookahead == 'e') ADVANCE(137); + if (lookahead == 'f') ADVANCE(75); + if (lookahead == 'i') ADVANCE(50); + if (lookahead == 'p') ADVANCE(133); + if (lookahead == 't') ADVANCE(140); + if (lookahead == '{') ADVANCE(181); + if (lookahead == '|') ADVANCE(244); + if (lookahead == '}') ADVANCE(182); END_STATE(); case 156: if (lookahead == '\t' || @@ -4078,42 +4176,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == ';') SKIP(156) if (lookahead == '\r') SKIP(156) - if (lookahead == '#') ADVANCE(185); - if (lookahead == ')') ADVANCE(187); - if (lookahead == ',') ADVANCE(180); - if (lookahead == '/') ADVANCE(6); - if (lookahead == ':') ADVANCE(192); - if (lookahead == ']') ADVANCE(189); - if (lookahead == '_') ADVANCE(270); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(290); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(289); + if (lookahead == ')') ADVANCE(197); + if (lookahead == '-') ADVANCE(203); + if (lookahead == '/') ADVANCE(4); + if (lookahead == '0') ADVANCE(260); + if (lookahead == '}') ADVANCE(182); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(261); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(303); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(302); END_STATE(); case 157: if (lookahead == '\t' || lookahead == '\n' || lookahead == ' ' || - lookahead == ';') SKIP(157) - if (lookahead == '\r') SKIP(157) - if (lookahead == '(') ADVANCE(186); - if (lookahead == ')') ADVANCE(187); - if (lookahead == ',') ADVANCE(180); - if (lookahead == '-') ADVANCE(13); - if (lookahead == '.') ADVANCE(177); - if (lookahead == '/') ADVANCE(6); - if (lookahead == ':') ADVANCE(192); - if (lookahead == '=') ADVANCE(183); - if (lookahead == '>') ADVANCE(14); - if (lookahead == ']') ADVANCE(189); - if (lookahead == 'a') ADVANCE(113); - if (lookahead == 'c') ADVANCE(88); - if (lookahead == 'e') ADVANCE(139); - if (lookahead == 'f') ADVANCE(77); - if (lookahead == 'i') ADVANCE(52); - if (lookahead == 'p') ADVANCE(135); - if (lookahead == 't') ADVANCE(142); - if (lookahead == '{') ADVANCE(171); - if (lookahead == '|') ADVANCE(234); - if (lookahead == '}') ADVANCE(172); + lookahead == ';') ADVANCE(255); + if (lookahead == '\r') ADVANCE(255); + if (lookahead == '"') ADVANCE(251); + if (lookahead == '/') ADVANCE(253); + if (lookahead == '\\') ADVANCE(160); + if (lookahead != 0) ADVANCE(254); END_STATE(); case 158: if (lookahead == '\t' || @@ -4121,644 +4203,752 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == ';') SKIP(158) if (lookahead == '\r') SKIP(158) - if (lookahead == ')') ADVANCE(187); - if (lookahead == '-') ADVANCE(193); - if (lookahead == '/') ADVANCE(6); - if (lookahead == '0') ADVANCE(247); - if (lookahead == '}') ADVANCE(172); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(248); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(290); - if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(289); + if (lookahead == '!') ADVANCE(9); + if (lookahead == '"') ADVANCE(251); + if (lookahead == '#') ADVANCE(195); + if (lookahead == '%') ADVANCE(238); + if (lookahead == '&') ADVANCE(1); + if (lookahead == '(') ADVANCE(196); + if (lookahead == ')') ADVANCE(197); + if (lookahead == '*') ADVANCE(235); + if (lookahead == '+') ADVANCE(232); + if (lookahead == ',') ADVANCE(190); + if (lookahead == '-') ADVANCE(206); + if (lookahead == '.') ADVANCE(186); + if (lookahead == '/') ADVANCE(189); + if (lookahead == '0') ADVANCE(258); + if (lookahead == ':') ADVANCE(202); + if (lookahead == '<') ADVANCE(221); + if (lookahead == '=') ADVANCE(10); + if (lookahead == '>') ADVANCE(227); + if (lookahead == '[') ADVANCE(198); + if (lookahead == ']') ADVANCE(199); + if (lookahead == '_') ADVANCE(284); + if (lookahead == 'a') ADVANCE(296); + if (lookahead == 'c') ADVANCE(285); + if (lookahead == 'f') ADVANCE(291); + if (lookahead == 'l') ADVANCE(287); + if (lookahead == 't') ADVANCE(292); + if (lookahead == '{') ADVANCE(181); + if (lookahead == '|') ADVANCE(13); + if (lookahead == '}') ADVANCE(182); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(259); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(302); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(303); END_STATE(); case 159: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ' || - lookahead == ';') SKIP(159) - if (lookahead == '\r') SKIP(159) - if (lookahead == '!') ADVANCE(11); - if (lookahead == '"') ADVANCE(1); - if (lookahead == '#') ADVANCE(185); - if (lookahead == '%') ADVANCE(228); - if (lookahead == '&') ADVANCE(3); - if (lookahead == '(') ADVANCE(186); - if (lookahead == ')') ADVANCE(187); - if (lookahead == '*') ADVANCE(225); - if (lookahead == '+') ADVANCE(222); - if (lookahead == ',') ADVANCE(180); - if (lookahead == '-') ADVANCE(196); - if (lookahead == '.') ADVANCE(176); - if (lookahead == '/') ADVANCE(179); - if (lookahead == '0') ADVANCE(245); - if (lookahead == ':') ADVANCE(192); - if (lookahead == '<') ADVANCE(211); - if (lookahead == '=') ADVANCE(12); - if (lookahead == '>') ADVANCE(217); - if (lookahead == '[') ADVANCE(188); - if (lookahead == ']') ADVANCE(189); - if (lookahead == '_') ADVANCE(271); - if (lookahead == 'a') ADVANCE(283); - if (lookahead == 'c') ADVANCE(272); - if (lookahead == 'f') ADVANCE(278); - if (lookahead == 'l') ADVANCE(274); - if (lookahead == 't') ADVANCE(279); - if (lookahead == '{') ADVANCE(171); - if (lookahead == '|') ADVANCE(15); - if (lookahead == '}') ADVANCE(172); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(246); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(289); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(290); + if (lookahead == '"' || + lookahead == '\\' || + lookahead == 'e' || + lookahead == 'f' || + lookahead == 'n' || + lookahead == 'r' || + lookahead == 't') ADVANCE(252); END_STATE(); case 160: - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(249); + if (lookahead == '"' || + lookahead == '\\' || + lookahead == 'e' || + lookahead == 'f' || + lookahead == 'n' || + lookahead == 'r' || + lookahead == 't') ADVANCE(252); + if (lookahead != 0) ADVANCE(254); END_STATE(); case 161: - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(243); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(262); END_STATE(); case 162: + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_') ADVANCE(256); + END_STATE(); + case 163: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(244); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(257); END_STATE(); - case 163: + case 164: + if (lookahead != 0 && + lookahead != '"' && + lookahead != '\\' && + lookahead != 'e' && + lookahead != 'f' && + lookahead != 'n' && + lookahead != 'r' && + lookahead != 't') ADVANCE(254); + END_STATE(); + case 165: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 164: + case 166: + ACCEPT_TOKEN(sym_module_comment); + if (lookahead == '\n') ADVANCE(254); + if (lookahead == '"') ADVANCE(168); + if (lookahead == '\\') ADVANCE(167); + if (lookahead != 0) ADVANCE(166); + END_STATE(); + case 167: + ACCEPT_TOKEN(sym_module_comment); + if (lookahead == '\n') ADVANCE(254); + if (lookahead == '"' || + lookahead == '\\' || + lookahead == 'e' || + lookahead == 'f' || + lookahead == 'n' || + lookahead == 'r' || + lookahead == 't') ADVANCE(168); + if (lookahead != 0) ADVANCE(166); + END_STATE(); + case 168: ACCEPT_TOKEN(sym_module_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(164); + lookahead != '\n') ADVANCE(168); END_STATE(); - case 165: + case 169: + ACCEPT_TOKEN(sym_statement_comment); + if (lookahead == '\n') ADVANCE(254); + if (lookahead == '"') ADVANCE(173); + if (lookahead == '/') ADVANCE(166); + if (lookahead == '\\') ADVANCE(171); + if (lookahead != 0) ADVANCE(170); + END_STATE(); + case 170: ACCEPT_TOKEN(sym_statement_comment); - if (lookahead == '/') ADVANCE(164); + if (lookahead == '\n') ADVANCE(254); + if (lookahead == '"') ADVANCE(173); + if (lookahead == '\\') ADVANCE(171); + if (lookahead != 0) ADVANCE(170); + END_STATE(); + case 171: + ACCEPT_TOKEN(sym_statement_comment); + if (lookahead == '\n') ADVANCE(254); + if (lookahead == '"' || + lookahead == '\\' || + lookahead == 'e' || + lookahead == 'f' || + lookahead == 'n' || + lookahead == 'r' || + lookahead == 't') ADVANCE(173); + if (lookahead != 0) ADVANCE(170); + END_STATE(); + case 172: + ACCEPT_TOKEN(sym_statement_comment); + if (lookahead == '/') ADVANCE(168); if (lookahead != 0 && - lookahead != '\n') ADVANCE(166); + lookahead != '\n') ADVANCE(173); END_STATE(); - case 166: + case 173: ACCEPT_TOKEN(sym_statement_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(166); + lookahead != '\n') ADVANCE(173); END_STATE(); - case 167: + case 174: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\n') ADVANCE(254); + if (lookahead == '"') ADVANCE(178); + if (lookahead == '/') ADVANCE(169); + if (lookahead == '\\') ADVANCE(176); + if (lookahead != 0) ADVANCE(175); + END_STATE(); + case 175: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\n') ADVANCE(254); + if (lookahead == '"') ADVANCE(178); + if (lookahead == '\\') ADVANCE(176); + if (lookahead != 0) ADVANCE(175); + END_STATE(); + case 176: ACCEPT_TOKEN(sym_comment); - if (lookahead == '/') ADVANCE(165); + if (lookahead == '\n') ADVANCE(254); + if (lookahead == '"' || + lookahead == '\\' || + lookahead == 'e' || + lookahead == 'f' || + lookahead == 'n' || + lookahead == 'r' || + lookahead == 't') ADVANCE(178); + if (lookahead != 0) ADVANCE(175); + END_STATE(); + case 177: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '/') ADVANCE(172); if (lookahead != 0 && - lookahead != '\n') ADVANCE(168); + lookahead != '\n') ADVANCE(178); END_STATE(); - case 168: + case 178: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(168); + lookahead != '\n') ADVANCE(178); END_STATE(); - case 169: + case 179: ACCEPT_TOKEN(anon_sym_if); END_STATE(); - case 170: + case 180: ACCEPT_TOKEN(anon_sym_if); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(289); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(302); END_STATE(); - case 171: + case 181: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 172: + case 182: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 173: + case 183: ACCEPT_TOKEN(anon_sym_erlang); END_STATE(); - case 174: + case 184: ACCEPT_TOKEN(anon_sym_javascript); END_STATE(); - case 175: + case 185: ACCEPT_TOKEN(anon_sym_import); END_STATE(); - case 176: + case 186: ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); - case 177: + case 187: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(231); + if (lookahead == '.') ADVANCE(241); END_STATE(); - case 178: + case 188: ACCEPT_TOKEN(anon_sym_as); END_STATE(); - case 179: + case 189: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '.') ADVANCE(227); - if (lookahead == '/') ADVANCE(167); + if (lookahead == '.') ADVANCE(237); + if (lookahead == '/') ADVANCE(177); END_STATE(); - case 180: + case 190: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 181: + case 191: ACCEPT_TOKEN(anon_sym_pub); END_STATE(); - case 182: + case 192: ACCEPT_TOKEN(anon_sym_const); END_STATE(); - case 183: + case 193: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 184: + case 194: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(209); + if (lookahead == '=') ADVANCE(219); END_STATE(); - case 185: + case 195: ACCEPT_TOKEN(anon_sym_POUND); END_STATE(); - case 186: + case 196: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 187: + case 197: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 188: + case 198: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 189: + case 199: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 190: + case 200: ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); - case 191: + case 201: ACCEPT_TOKEN(anon_sym_GT_GT); END_STATE(); - case 192: + case 202: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 193: + case 203: ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); - case 194: + case 204: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(224); + if (lookahead == '.') ADVANCE(234); END_STATE(); - case 195: + case 205: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(224); - if (lookahead == '>') ADVANCE(204); + if (lookahead == '.') ADVANCE(234); + if (lookahead == '>') ADVANCE(214); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(5); + lookahead == '_') ADVANCE(3); END_STATE(); - case 196: + case 206: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(224); + if (lookahead == '.') ADVANCE(234); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(5); + lookahead == '_') ADVANCE(3); END_STATE(); - case 197: + case 207: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '>') ADVANCE(204); + if (lookahead == '>') ADVANCE(214); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(5); + lookahead == '_') ADVANCE(3); END_STATE(); - case 198: + case 208: ACCEPT_TOKEN(anon_sym_DASH); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(5); + lookahead == '_') ADVANCE(3); END_STATE(); - case 199: + case 209: ACCEPT_TOKEN(anon_sym_size); END_STATE(); - case 200: + case 210: ACCEPT_TOKEN(anon_sym_external); END_STATE(); - case 201: + case 211: ACCEPT_TOKEN(anon_sym_type); END_STATE(); - case 202: + case 212: ACCEPT_TOKEN(anon_sym_fn); END_STATE(); - case 203: + case 213: ACCEPT_TOKEN(anon_sym_fn); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(289); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(302); END_STATE(); - case 204: + case 214: ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); - case 205: + case 215: ACCEPT_TOKEN(anon_sym_try); END_STATE(); - case 206: + case 216: ACCEPT_TOKEN(anon_sym_try); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(289); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(302); END_STATE(); - case 207: + case 217: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); - case 208: + case 218: ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); - case 209: + case 219: ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); - case 210: + case 220: ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); - case 211: + case 221: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '.') ADVANCE(214); - if (lookahead == '<') ADVANCE(190); - if (lookahead == '=') ADVANCE(213); + if (lookahead == '.') ADVANCE(224); + if (lookahead == '<') ADVANCE(200); + if (lookahead == '=') ADVANCE(223); END_STATE(); - case 212: + case 222: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '.') ADVANCE(214); - if (lookahead == '=') ADVANCE(213); + if (lookahead == '.') ADVANCE(224); + if (lookahead == '=') ADVANCE(223); END_STATE(); - case 213: + case 223: ACCEPT_TOKEN(anon_sym_LT_EQ); - if (lookahead == '.') ADVANCE(215); + if (lookahead == '.') ADVANCE(225); END_STATE(); - case 214: + case 224: ACCEPT_TOKEN(anon_sym_LT_DOT); END_STATE(); - case 215: + case 225: ACCEPT_TOKEN(anon_sym_LT_EQ_DOT); END_STATE(); - case 216: + case 226: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '.') ADVANCE(219); - if (lookahead == '=') ADVANCE(218); + if (lookahead == '.') ADVANCE(229); + if (lookahead == '=') ADVANCE(228); END_STATE(); - case 217: + case 227: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '.') ADVANCE(219); - if (lookahead == '=') ADVANCE(218); - if (lookahead == '>') ADVANCE(191); + if (lookahead == '.') ADVANCE(229); + if (lookahead == '=') ADVANCE(228); + if (lookahead == '>') ADVANCE(201); END_STATE(); - case 218: + case 228: ACCEPT_TOKEN(anon_sym_GT_EQ); - if (lookahead == '.') ADVANCE(220); + if (lookahead == '.') ADVANCE(230); END_STATE(); - case 219: + case 229: ACCEPT_TOKEN(anon_sym_GT_DOT); END_STATE(); - case 220: + case 230: ACCEPT_TOKEN(anon_sym_GT_EQ_DOT); END_STATE(); - case 221: + case 231: ACCEPT_TOKEN(anon_sym_PIPE_GT); END_STATE(); - case 222: + case 232: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '.') ADVANCE(223); + if (lookahead == '.') ADVANCE(233); END_STATE(); - case 223: + case 233: ACCEPT_TOKEN(anon_sym_PLUS_DOT); END_STATE(); - case 224: + case 234: ACCEPT_TOKEN(anon_sym_DASH_DOT); END_STATE(); - case 225: + case 235: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '.') ADVANCE(226); + if (lookahead == '.') ADVANCE(236); END_STATE(); - case 226: + case 236: ACCEPT_TOKEN(anon_sym_STAR_DOT); END_STATE(); - case 227: + case 237: ACCEPT_TOKEN(anon_sym_SLASH_DOT); END_STATE(); - case 228: + case 238: ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); - case 229: + case 239: ACCEPT_TOKEN(anon_sym_todo); END_STATE(); - case 230: + case 240: ACCEPT_TOKEN(anon_sym_todo); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(289); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(302); END_STATE(); - case 231: + case 241: ACCEPT_TOKEN(anon_sym_DOT_DOT); END_STATE(); - case 232: + case 242: ACCEPT_TOKEN(anon_sym_case); END_STATE(); - case 233: + case 243: ACCEPT_TOKEN(anon_sym_case); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(289); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(302); END_STATE(); - case 234: + case 244: ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); - case 235: + case 245: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '>') ADVANCE(221); - if (lookahead == '|') ADVANCE(207); + if (lookahead == '>') ADVANCE(231); + if (lookahead == '|') ADVANCE(217); END_STATE(); - case 236: + case 246: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(207); + if (lookahead == '|') ADVANCE(217); END_STATE(); - case 237: + case 247: ACCEPT_TOKEN(anon_sym_let); END_STATE(); - case 238: + case 248: ACCEPT_TOKEN(anon_sym_let); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(289); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(302); END_STATE(); - case 239: + case 249: ACCEPT_TOKEN(anon_sym_assert); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(289); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(302); END_STATE(); - case 240: + case 250: ACCEPT_TOKEN(anon_sym_opaque); END_STATE(); - case 241: - ACCEPT_TOKEN(sym_string); + case 251: + ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 242: - ACCEPT_TOKEN(sym_string); - if (lookahead == '"') ADVANCE(241); - if (lookahead == '\\') ADVANCE(2); - if (lookahead != 0) ADVANCE(1); + case 252: + ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 243: + case 253: + ACCEPT_TOKEN(sym_quoted_content); + if (lookahead == '/') ADVANCE(174); + if (lookahead == '\\') ADVANCE(164); + if (lookahead != 0 && + lookahead != '"') ADVANCE(254); + END_STATE(); + case 254: + ACCEPT_TOKEN(sym_quoted_content); + if (lookahead == '\\') ADVANCE(164); + if (lookahead != 0 && + lookahead != '"') ADVANCE(254); + END_STATE(); + case 255: + ACCEPT_TOKEN(sym_quoted_content); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ' || + lookahead == ';') ADVANCE(255); + if (lookahead == '\r') ADVANCE(255); + if (lookahead == '/') ADVANCE(253); + if (lookahead == '\\') ADVANCE(160); + if (lookahead != 0 && + lookahead != '"') ADVANCE(254); + END_STATE(); + case 256: ACCEPT_TOKEN(sym_float); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(243); + lookahead == '_') ADVANCE(256); END_STATE(); - case 244: + case 257: ACCEPT_TOKEN(sym__hex); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(244); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(257); END_STATE(); - case 245: + case 258: ACCEPT_TOKEN(sym__decimal); - if (lookahead == '.') ADVANCE(161); + if (lookahead == '.') ADVANCE(162); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(144); + lookahead == 'b') ADVANCE(142); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(160); + lookahead == 'o') ADVANCE(161); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(162); + lookahead == 'x') ADVANCE(163); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(246); + lookahead == '_') ADVANCE(259); END_STATE(); - case 246: + case 259: ACCEPT_TOKEN(sym__decimal); - if (lookahead == '.') ADVANCE(161); + if (lookahead == '.') ADVANCE(162); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(246); + lookahead == '_') ADVANCE(259); END_STATE(); - case 247: + case 260: ACCEPT_TOKEN(sym__decimal); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(144); + lookahead == 'b') ADVANCE(142); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(160); + lookahead == 'o') ADVANCE(161); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(162); + lookahead == 'x') ADVANCE(163); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(248); + lookahead == '_') ADVANCE(261); END_STATE(); - case 248: + case 261: ACCEPT_TOKEN(sym__decimal); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(248); + lookahead == '_') ADVANCE(261); END_STATE(); - case 249: + case 262: ACCEPT_TOKEN(sym__octal); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(249); + lookahead == '_') ADVANCE(262); END_STATE(); - case 250: + case 263: ACCEPT_TOKEN(sym__binary); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(250); + lookahead == '_') ADVANCE(263); END_STATE(); - case 251: + case 264: ACCEPT_TOKEN(anon_sym_unit); END_STATE(); - case 252: + case 265: ACCEPT_TOKEN(anon_sym_binary); END_STATE(); - case 253: + case 266: ACCEPT_TOKEN(anon_sym_bytes); END_STATE(); - case 254: + case 267: ACCEPT_TOKEN(anon_sym_int); END_STATE(); - case 255: + case 268: ACCEPT_TOKEN(anon_sym_float); END_STATE(); - case 256: + case 269: ACCEPT_TOKEN(anon_sym_bit_string); END_STATE(); - case 257: + case 270: ACCEPT_TOKEN(anon_sym_bits); END_STATE(); - case 258: + case 271: ACCEPT_TOKEN(anon_sym_utf8); - if (lookahead == '_') ADVANCE(27); + if (lookahead == '_') ADVANCE(25); END_STATE(); - case 259: + case 272: ACCEPT_TOKEN(anon_sym_utf16); - if (lookahead == '_') ADVANCE(29); + if (lookahead == '_') ADVANCE(27); END_STATE(); - case 260: + case 273: ACCEPT_TOKEN(anon_sym_utf32); - if (lookahead == '_') ADVANCE(30); + if (lookahead == '_') ADVANCE(28); END_STATE(); - case 261: + case 274: ACCEPT_TOKEN(anon_sym_utf8_codepoint); END_STATE(); - case 262: + case 275: ACCEPT_TOKEN(anon_sym_utf16_codepoint); END_STATE(); - case 263: + case 276: ACCEPT_TOKEN(anon_sym_utf32_codepoint); END_STATE(); - case 264: + case 277: ACCEPT_TOKEN(anon_sym_signed); END_STATE(); - case 265: + case 278: ACCEPT_TOKEN(anon_sym_unsigned); END_STATE(); - case 266: + case 279: ACCEPT_TOKEN(anon_sym_big); END_STATE(); - case 267: + case 280: ACCEPT_TOKEN(anon_sym_little); END_STATE(); - case 268: + case 281: ACCEPT_TOKEN(anon_sym_native); END_STATE(); - case 269: + case 282: ACCEPT_TOKEN(sym__discard_name); - if (lookahead == '.') ADVANCE(161); + if (lookahead == '.') ADVANCE(162); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(269); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(270); + lookahead == '_') ADVANCE(282); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(283); END_STATE(); - case 270: + case 283: ACCEPT_TOKEN(sym__discard_name); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(270); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(283); END_STATE(); - case 271: + case 284: ACCEPT_TOKEN(sym__name); - if (lookahead == '.') ADVANCE(161); + if (lookahead == '.') ADVANCE(162); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(271); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(289); + lookahead == '_') ADVANCE(284); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(302); END_STATE(); - case 272: + case 285: ACCEPT_TOKEN(sym__name); - if (lookahead == 'a') ADVANCE(285); + if (lookahead == 'a') ADVANCE(298); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(289); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(302); END_STATE(); - case 273: + case 286: ACCEPT_TOKEN(sym__name); - if (lookahead == 'd') ADVANCE(281); + if (lookahead == 'd') ADVANCE(294); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(289); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(302); END_STATE(); - case 274: + case 287: ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(286); + if (lookahead == 'e') ADVANCE(299); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(289); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(302); END_STATE(); - case 275: + case 288: ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(282); + if (lookahead == 'e') ADVANCE(295); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(289); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(302); END_STATE(); - case 276: + case 289: ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(233); + if (lookahead == 'e') ADVANCE(243); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(289); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(302); END_STATE(); - case 277: + case 290: ACCEPT_TOKEN(sym__name); - if (lookahead == 'f') ADVANCE(170); + if (lookahead == 'f') ADVANCE(180); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(289); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(302); END_STATE(); - case 278: + case 291: ACCEPT_TOKEN(sym__name); - if (lookahead == 'n') ADVANCE(203); + if (lookahead == 'n') ADVANCE(213); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(289); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(302); END_STATE(); - case 279: + case 292: ACCEPT_TOKEN(sym__name); - if (lookahead == 'o') ADVANCE(273); - if (lookahead == 'r') ADVANCE(288); + if (lookahead == 'o') ADVANCE(286); + if (lookahead == 'r') ADVANCE(301); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(289); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(302); END_STATE(); - case 280: + case 293: ACCEPT_TOKEN(sym__name); - if (lookahead == 'o') ADVANCE(273); + if (lookahead == 'o') ADVANCE(286); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(289); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(302); END_STATE(); - case 281: + case 294: ACCEPT_TOKEN(sym__name); - if (lookahead == 'o') ADVANCE(230); + if (lookahead == 'o') ADVANCE(240); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(289); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(302); END_STATE(); - case 282: + case 295: ACCEPT_TOKEN(sym__name); - if (lookahead == 'r') ADVANCE(287); + if (lookahead == 'r') ADVANCE(300); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(289); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(302); END_STATE(); - case 283: + case 296: ACCEPT_TOKEN(sym__name); - if (lookahead == 's') ADVANCE(284); + if (lookahead == 's') ADVANCE(297); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(289); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(302); END_STATE(); - case 284: + case 297: ACCEPT_TOKEN(sym__name); - if (lookahead == 's') ADVANCE(275); + if (lookahead == 's') ADVANCE(288); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(289); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(302); END_STATE(); - case 285: + case 298: ACCEPT_TOKEN(sym__name); - if (lookahead == 's') ADVANCE(276); + if (lookahead == 's') ADVANCE(289); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(289); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(302); END_STATE(); - case 286: + case 299: ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(238); + if (lookahead == 't') ADVANCE(248); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(289); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(302); END_STATE(); - case 287: + case 300: ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(239); + if (lookahead == 't') ADVANCE(249); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(289); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(302); END_STATE(); - case 288: + case 301: ACCEPT_TOKEN(sym__name); - if (lookahead == 'y') ADVANCE(206); + if (lookahead == 'y') ADVANCE(216); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(289); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(302); END_STATE(); - case 289: + case 302: ACCEPT_TOKEN(sym__name); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(289); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(302); END_STATE(); - case 290: + case 303: ACCEPT_TOKEN(sym__upname); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(290); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); END_STATE(); default: return false; @@ -4768,592 +4958,592 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, [1] = {.lex_state = 0}, - [2] = {.lex_state = 145}, - [3] = {.lex_state = 159}, - [4] = {.lex_state = 146}, - [5] = {.lex_state = 146}, - [6] = {.lex_state = 159}, - [7] = {.lex_state = 146}, - [8] = {.lex_state = 146}, - [9] = {.lex_state = 146}, - [10] = {.lex_state = 146}, - [11] = {.lex_state = 146}, - [12] = {.lex_state = 159}, - [13] = {.lex_state = 146}, - [14] = {.lex_state = 146}, - [15] = {.lex_state = 146}, - [16] = {.lex_state = 146}, - [17] = {.lex_state = 146}, - [18] = {.lex_state = 159}, - [19] = {.lex_state = 145}, - [20] = {.lex_state = 145}, - [21] = {.lex_state = 159}, - [22] = {.lex_state = 159}, - [23] = {.lex_state = 146}, - [24] = {.lex_state = 159}, - [25] = {.lex_state = 145}, - [26] = {.lex_state = 145}, - [27] = {.lex_state = 145}, - [28] = {.lex_state = 145}, - [29] = {.lex_state = 145}, - [30] = {.lex_state = 145}, - [31] = {.lex_state = 159}, - [32] = {.lex_state = 159}, - [33] = {.lex_state = 159}, - [34] = {.lex_state = 145}, - [35] = {.lex_state = 159}, - [36] = {.lex_state = 159}, - [37] = {.lex_state = 159}, - [38] = {.lex_state = 159}, - [39] = {.lex_state = 145}, - [40] = {.lex_state = 145}, - [41] = {.lex_state = 145}, - [42] = {.lex_state = 145}, - [43] = {.lex_state = 145}, - [44] = {.lex_state = 145}, - [45] = {.lex_state = 145}, - [46] = {.lex_state = 145}, - [47] = {.lex_state = 145}, - [48] = {.lex_state = 145}, - [49] = {.lex_state = 159}, - [50] = {.lex_state = 145}, - [51] = {.lex_state = 159}, - [52] = {.lex_state = 159}, - [53] = {.lex_state = 145}, - [54] = {.lex_state = 145}, - [55] = {.lex_state = 145}, - [56] = {.lex_state = 159}, - [57] = {.lex_state = 159}, - [58] = {.lex_state = 159}, - [59] = {.lex_state = 159}, - [60] = {.lex_state = 159}, + [2] = {.lex_state = 143}, + [3] = {.lex_state = 144}, + [4] = {.lex_state = 144}, + [5] = {.lex_state = 144}, + [6] = {.lex_state = 144}, + [7] = {.lex_state = 144}, + [8] = {.lex_state = 144}, + [9] = {.lex_state = 158}, + [10] = {.lex_state = 144}, + [11] = {.lex_state = 144}, + [12] = {.lex_state = 144}, + [13] = {.lex_state = 144}, + [14] = {.lex_state = 158}, + [15] = {.lex_state = 144}, + [16] = {.lex_state = 144}, + [17] = {.lex_state = 143}, + [18] = {.lex_state = 143}, + [19] = {.lex_state = 143}, + [20] = {.lex_state = 143}, + [21] = {.lex_state = 158}, + [22] = {.lex_state = 143}, + [23] = {.lex_state = 143}, + [24] = {.lex_state = 143}, + [25] = {.lex_state = 143}, + [26] = {.lex_state = 144}, + [27] = {.lex_state = 143}, + [28] = {.lex_state = 143}, + [29] = {.lex_state = 143}, + [30] = {.lex_state = 143}, + [31] = {.lex_state = 143}, + [32] = {.lex_state = 143}, + [33] = {.lex_state = 158}, + [34] = {.lex_state = 143}, + [35] = {.lex_state = 143}, + [36] = {.lex_state = 143}, + [37] = {.lex_state = 158}, + [38] = {.lex_state = 143}, + [39] = {.lex_state = 158}, + [40] = {.lex_state = 143}, + [41] = {.lex_state = 158}, + [42] = {.lex_state = 143}, + [43] = {.lex_state = 143}, + [44] = {.lex_state = 158}, + [45] = {.lex_state = 143}, + [46] = {.lex_state = 143}, + [47] = {.lex_state = 158}, + [48] = {.lex_state = 158}, + [49] = {.lex_state = 143}, + [50] = {.lex_state = 143}, + [51] = {.lex_state = 143}, + [52] = {.lex_state = 158}, + [53] = {.lex_state = 158}, + [54] = {.lex_state = 158}, + [55] = {.lex_state = 158}, + [56] = {.lex_state = 158}, + [57] = {.lex_state = 143}, + [58] = {.lex_state = 158}, + [59] = {.lex_state = 144}, + [60] = {.lex_state = 158}, [61] = {.lex_state = 145}, - [62] = {.lex_state = 159}, - [63] = {.lex_state = 145}, - [64] = {.lex_state = 145}, - [65] = {.lex_state = 159}, - [66] = {.lex_state = 145}, - [67] = {.lex_state = 159}, - [68] = {.lex_state = 159}, - [69] = {.lex_state = 147}, - [70] = {.lex_state = 159}, - [71] = {.lex_state = 159}, - [72] = {.lex_state = 146}, - [73] = {.lex_state = 147}, - [74] = {.lex_state = 159}, - [75] = {.lex_state = 159}, - [76] = {.lex_state = 147}, - [77] = {.lex_state = 159}, - [78] = {.lex_state = 147}, - [79] = {.lex_state = 159}, - [80] = {.lex_state = 159}, - [81] = {.lex_state = 147}, - [82] = {.lex_state = 159}, - [83] = {.lex_state = 159}, - [84] = {.lex_state = 159}, - [85] = {.lex_state = 159}, - [86] = {.lex_state = 159}, - [87] = {.lex_state = 159}, - [88] = {.lex_state = 159}, - [89] = {.lex_state = 147}, - [90] = {.lex_state = 147}, - [91] = {.lex_state = 159}, - [92] = {.lex_state = 147}, - [93] = {.lex_state = 147}, - [94] = {.lex_state = 147}, - [95] = {.lex_state = 159}, - [96] = {.lex_state = 147}, - [97] = {.lex_state = 147}, - [98] = {.lex_state = 147}, - [99] = {.lex_state = 147}, - [100] = {.lex_state = 147}, - [101] = {.lex_state = 147}, - [102] = {.lex_state = 147}, - [103] = {.lex_state = 147}, - [104] = {.lex_state = 147}, - [105] = {.lex_state = 147}, - [106] = {.lex_state = 159}, - [107] = {.lex_state = 147}, - [108] = {.lex_state = 147}, - [109] = {.lex_state = 147}, - [110] = {.lex_state = 147}, - [111] = {.lex_state = 147}, - [112] = {.lex_state = 147}, - [113] = {.lex_state = 147}, - [114] = {.lex_state = 147}, - [115] = {.lex_state = 147}, - [116] = {.lex_state = 147}, - [117] = {.lex_state = 147}, - [118] = {.lex_state = 147}, - [119] = {.lex_state = 147}, - [120] = {.lex_state = 147}, - [121] = {.lex_state = 147}, - [122] = {.lex_state = 147}, - [123] = {.lex_state = 147}, - [124] = {.lex_state = 147}, - [125] = {.lex_state = 147}, - [126] = {.lex_state = 147}, - [127] = {.lex_state = 147}, - [128] = {.lex_state = 147}, - [129] = {.lex_state = 147}, - [130] = {.lex_state = 147}, - [131] = {.lex_state = 147}, - [132] = {.lex_state = 147}, - [133] = {.lex_state = 147}, - [134] = {.lex_state = 147}, - [135] = {.lex_state = 147}, - [136] = {.lex_state = 147}, - [137] = {.lex_state = 147}, - [138] = {.lex_state = 147}, - [139] = {.lex_state = 147}, - [140] = {.lex_state = 147}, - [141] = {.lex_state = 147}, - [142] = {.lex_state = 147}, - [143] = {.lex_state = 147}, - [144] = {.lex_state = 147}, - [145] = {.lex_state = 147}, - [146] = {.lex_state = 147}, - [147] = {.lex_state = 147}, - [148] = {.lex_state = 147}, - [149] = {.lex_state = 147}, - [150] = {.lex_state = 147}, - [151] = {.lex_state = 147}, - [152] = {.lex_state = 147}, - [153] = {.lex_state = 147}, - [154] = {.lex_state = 147}, - [155] = {.lex_state = 147}, - [156] = {.lex_state = 147}, - [157] = {.lex_state = 147}, - [158] = {.lex_state = 147}, - [159] = {.lex_state = 147}, - [160] = {.lex_state = 147}, - [161] = {.lex_state = 147}, - [162] = {.lex_state = 147}, - [163] = {.lex_state = 147}, - [164] = {.lex_state = 147}, - [165] = {.lex_state = 159}, - [166] = {.lex_state = 159}, - [167] = {.lex_state = 159}, - [168] = {.lex_state = 159}, - [169] = {.lex_state = 159}, - [170] = {.lex_state = 159}, - [171] = {.lex_state = 159}, - [172] = {.lex_state = 159}, - [173] = {.lex_state = 148}, - [174] = {.lex_state = 159}, - [175] = {.lex_state = 159}, - [176] = {.lex_state = 147}, - [177] = {.lex_state = 159}, - [178] = {.lex_state = 159}, - [179] = {.lex_state = 159}, - [180] = {.lex_state = 148}, - [181] = {.lex_state = 148}, - [182] = {.lex_state = 148}, - [183] = {.lex_state = 148}, - [184] = {.lex_state = 149}, - [185] = {.lex_state = 149}, - [186] = {.lex_state = 149}, - [187] = {.lex_state = 149}, - [188] = {.lex_state = 149}, - [189] = {.lex_state = 149}, - [190] = {.lex_state = 149}, - [191] = {.lex_state = 149}, - [192] = {.lex_state = 149}, - [193] = {.lex_state = 149}, - [194] = {.lex_state = 149}, - [195] = {.lex_state = 149}, - [196] = {.lex_state = 149}, - [197] = {.lex_state = 149}, - [198] = {.lex_state = 149}, - [199] = {.lex_state = 149}, - [200] = {.lex_state = 149}, - [201] = {.lex_state = 149}, - [202] = {.lex_state = 149}, - [203] = {.lex_state = 149}, - [204] = {.lex_state = 149}, - [205] = {.lex_state = 149}, - [206] = {.lex_state = 149}, - [207] = {.lex_state = 149}, - [208] = {.lex_state = 149}, - [209] = {.lex_state = 149}, - [210] = {.lex_state = 149}, - [211] = {.lex_state = 149}, - [212] = {.lex_state = 149}, - [213] = {.lex_state = 149}, - [214] = {.lex_state = 149}, - [215] = {.lex_state = 149}, - [216] = {.lex_state = 149}, - [217] = {.lex_state = 149}, - [218] = {.lex_state = 149}, - [219] = {.lex_state = 149}, - [220] = {.lex_state = 149}, - [221] = {.lex_state = 149}, - [222] = {.lex_state = 149}, - [223] = {.lex_state = 149}, - [224] = {.lex_state = 149}, - [225] = {.lex_state = 149}, - [226] = {.lex_state = 149}, - [227] = {.lex_state = 149}, - [228] = {.lex_state = 149}, - [229] = {.lex_state = 149}, - [230] = {.lex_state = 149}, - [231] = {.lex_state = 149}, - [232] = {.lex_state = 149}, - [233] = {.lex_state = 149}, - [234] = {.lex_state = 149}, - [235] = {.lex_state = 149}, - [236] = {.lex_state = 149}, - [237] = {.lex_state = 149}, - [238] = {.lex_state = 149}, - [239] = {.lex_state = 149}, - [240] = {.lex_state = 148}, - [241] = {.lex_state = 148}, - [242] = {.lex_state = 148}, - [243] = {.lex_state = 150}, - [244] = {.lex_state = 148}, - [245] = {.lex_state = 148}, + [62] = {.lex_state = 158}, + [63] = {.lex_state = 158}, + [64] = {.lex_state = 158}, + [65] = {.lex_state = 158}, + [66] = {.lex_state = 158}, + [67] = {.lex_state = 158}, + [68] = {.lex_state = 145}, + [69] = {.lex_state = 158}, + [70] = {.lex_state = 145}, + [71] = {.lex_state = 145}, + [72] = {.lex_state = 145}, + [73] = {.lex_state = 158}, + [74] = {.lex_state = 158}, + [75] = {.lex_state = 158}, + [76] = {.lex_state = 158}, + [77] = {.lex_state = 145}, + [78] = {.lex_state = 158}, + [79] = {.lex_state = 158}, + [80] = {.lex_state = 145}, + [81] = {.lex_state = 158}, + [82] = {.lex_state = 158}, + [83] = {.lex_state = 158}, + [84] = {.lex_state = 145}, + [85] = {.lex_state = 145}, + [86] = {.lex_state = 145}, + [87] = {.lex_state = 158}, + [88] = {.lex_state = 158}, + [89] = {.lex_state = 158}, + [90] = {.lex_state = 158}, + [91] = {.lex_state = 145}, + [92] = {.lex_state = 145}, + [93] = {.lex_state = 158}, + [94] = {.lex_state = 145}, + [95] = {.lex_state = 145}, + [96] = {.lex_state = 158}, + [97] = {.lex_state = 158}, + [98] = {.lex_state = 145}, + [99] = {.lex_state = 145}, + [100] = {.lex_state = 145}, + [101] = {.lex_state = 145}, + [102] = {.lex_state = 158}, + [103] = {.lex_state = 145}, + [104] = {.lex_state = 145}, + [105] = {.lex_state = 145}, + [106] = {.lex_state = 158}, + [107] = {.lex_state = 145}, + [108] = {.lex_state = 145}, + [109] = {.lex_state = 145}, + [110] = {.lex_state = 145}, + [111] = {.lex_state = 145}, + [112] = {.lex_state = 145}, + [113] = {.lex_state = 145}, + [114] = {.lex_state = 145}, + [115] = {.lex_state = 145}, + [116] = {.lex_state = 145}, + [117] = {.lex_state = 145}, + [118] = {.lex_state = 145}, + [119] = {.lex_state = 145}, + [120] = {.lex_state = 145}, + [121] = {.lex_state = 145}, + [122] = {.lex_state = 145}, + [123] = {.lex_state = 145}, + [124] = {.lex_state = 158}, + [125] = {.lex_state = 145}, + [126] = {.lex_state = 145}, + [127] = {.lex_state = 145}, + [128] = {.lex_state = 145}, + [129] = {.lex_state = 145}, + [130] = {.lex_state = 145}, + [131] = {.lex_state = 145}, + [132] = {.lex_state = 145}, + [133] = {.lex_state = 145}, + [134] = {.lex_state = 145}, + [135] = {.lex_state = 145}, + [136] = {.lex_state = 145}, + [137] = {.lex_state = 145}, + [138] = {.lex_state = 145}, + [139] = {.lex_state = 158}, + [140] = {.lex_state = 158}, + [141] = {.lex_state = 145}, + [142] = {.lex_state = 145}, + [143] = {.lex_state = 145}, + [144] = {.lex_state = 145}, + [145] = {.lex_state = 145}, + [146] = {.lex_state = 145}, + [147] = {.lex_state = 145}, + [148] = {.lex_state = 145}, + [149] = {.lex_state = 145}, + [150] = {.lex_state = 145}, + [151] = {.lex_state = 145}, + [152] = {.lex_state = 145}, + [153] = {.lex_state = 145}, + [154] = {.lex_state = 145}, + [155] = {.lex_state = 145}, + [156] = {.lex_state = 145}, + [157] = {.lex_state = 145}, + [158] = {.lex_state = 145}, + [159] = {.lex_state = 145}, + [160] = {.lex_state = 145}, + [161] = {.lex_state = 145}, + [162] = {.lex_state = 145}, + [163] = {.lex_state = 145}, + [164] = {.lex_state = 145}, + [165] = {.lex_state = 145}, + [166] = {.lex_state = 145}, + [167] = {.lex_state = 145}, + [168] = {.lex_state = 158}, + [169] = {.lex_state = 158}, + [170] = {.lex_state = 146}, + [171] = {.lex_state = 158}, + [172] = {.lex_state = 158}, + [173] = {.lex_state = 158}, + [174] = {.lex_state = 158}, + [175] = {.lex_state = 158}, + [176] = {.lex_state = 158}, + [177] = {.lex_state = 158}, + [178] = {.lex_state = 158}, + [179] = {.lex_state = 158}, + [180] = {.lex_state = 158}, + [181] = {.lex_state = 158}, + [182] = {.lex_state = 146}, + [183] = {.lex_state = 146}, + [184] = {.lex_state = 146}, + [185] = {.lex_state = 146}, + [186] = {.lex_state = 146}, + [187] = {.lex_state = 146}, + [188] = {.lex_state = 147}, + [189] = {.lex_state = 147}, + [190] = {.lex_state = 147}, + [191] = {.lex_state = 147}, + [192] = {.lex_state = 147}, + [193] = {.lex_state = 147}, + [194] = {.lex_state = 147}, + [195] = {.lex_state = 147}, + [196] = {.lex_state = 147}, + [197] = {.lex_state = 147}, + [198] = {.lex_state = 147}, + [199] = {.lex_state = 147}, + [200] = {.lex_state = 147}, + [201] = {.lex_state = 147}, + [202] = {.lex_state = 147}, + [203] = {.lex_state = 147}, + [204] = {.lex_state = 147}, + [205] = {.lex_state = 147}, + [206] = {.lex_state = 147}, + [207] = {.lex_state = 147}, + [208] = {.lex_state = 147}, + [209] = {.lex_state = 147}, + [210] = {.lex_state = 147}, + [211] = {.lex_state = 147}, + [212] = {.lex_state = 147}, + [213] = {.lex_state = 147}, + [214] = {.lex_state = 147}, + [215] = {.lex_state = 147}, + [216] = {.lex_state = 147}, + [217] = {.lex_state = 147}, + [218] = {.lex_state = 147}, + [219] = {.lex_state = 147}, + [220] = {.lex_state = 147}, + [221] = {.lex_state = 147}, + [222] = {.lex_state = 147}, + [223] = {.lex_state = 147}, + [224] = {.lex_state = 147}, + [225] = {.lex_state = 147}, + [226] = {.lex_state = 147}, + [227] = {.lex_state = 147}, + [228] = {.lex_state = 147}, + [229] = {.lex_state = 147}, + [230] = {.lex_state = 147}, + [231] = {.lex_state = 147}, + [232] = {.lex_state = 147}, + [233] = {.lex_state = 147}, + [234] = {.lex_state = 147}, + [235] = {.lex_state = 147}, + [236] = {.lex_state = 147}, + [237] = {.lex_state = 147}, + [238] = {.lex_state = 147}, + [239] = {.lex_state = 147}, + [240] = {.lex_state = 147}, + [241] = {.lex_state = 147}, + [242] = {.lex_state = 147}, + [243] = {.lex_state = 147}, + [244] = {.lex_state = 147}, + [245] = {.lex_state = 147}, [246] = {.lex_state = 148}, - [247] = {.lex_state = 150}, - [248] = {.lex_state = 150}, - [249] = {.lex_state = 148}, - [250] = {.lex_state = 148}, - [251] = {.lex_state = 150}, - [252] = {.lex_state = 150}, + [247] = {.lex_state = 146}, + [248] = {.lex_state = 146}, + [249] = {.lex_state = 146}, + [250] = {.lex_state = 146}, + [251] = {.lex_state = 146}, + [252] = {.lex_state = 146}, [253] = {.lex_state = 148}, - [254] = {.lex_state = 150}, - [255] = {.lex_state = 150}, - [256] = {.lex_state = 150}, - [257] = {.lex_state = 150}, - [258] = {.lex_state = 150}, - [259] = {.lex_state = 150}, - [260] = {.lex_state = 150}, - [261] = {.lex_state = 150}, - [262] = {.lex_state = 150}, - [263] = {.lex_state = 150}, - [264] = {.lex_state = 0}, + [254] = {.lex_state = 148}, + [255] = {.lex_state = 148}, + [256] = {.lex_state = 146}, + [257] = {.lex_state = 146}, + [258] = {.lex_state = 148}, + [259] = {.lex_state = 148}, + [260] = {.lex_state = 148}, + [261] = {.lex_state = 148}, + [262] = {.lex_state = 148}, + [263] = {.lex_state = 148}, + [264] = {.lex_state = 148}, [265] = {.lex_state = 148}, - [266] = {.lex_state = 0}, - [267] = {.lex_state = 150}, - [268] = {.lex_state = 150}, - [269] = {.lex_state = 150}, - [270] = {.lex_state = 148}, - [271] = {.lex_state = 150}, - [272] = {.lex_state = 150}, + [266] = {.lex_state = 146}, + [267] = {.lex_state = 148}, + [268] = {.lex_state = 148}, + [269] = {.lex_state = 148}, + [270] = {.lex_state = 0}, + [271] = {.lex_state = 148}, + [272] = {.lex_state = 148}, [273] = {.lex_state = 148}, - [274] = {.lex_state = 150}, - [275] = {.lex_state = 150}, - [276] = {.lex_state = 150}, - [277] = {.lex_state = 150}, - [278] = {.lex_state = 150}, - [279] = {.lex_state = 150}, - [280] = {.lex_state = 150}, - [281] = {.lex_state = 150}, - [282] = {.lex_state = 150}, - [283] = {.lex_state = 150}, - [284] = {.lex_state = 150}, - [285] = {.lex_state = 150}, - [286] = {.lex_state = 150}, - [287] = {.lex_state = 150}, - [288] = {.lex_state = 150}, - [289] = {.lex_state = 150}, - [290] = {.lex_state = 150}, - [291] = {.lex_state = 150}, - [292] = {.lex_state = 150}, - [293] = {.lex_state = 150}, - [294] = {.lex_state = 150}, - [295] = {.lex_state = 150}, - [296] = {.lex_state = 150}, - [297] = {.lex_state = 150}, - [298] = {.lex_state = 150}, - [299] = {.lex_state = 150}, - [300] = {.lex_state = 150}, - [301] = {.lex_state = 150}, - [302] = {.lex_state = 150}, - [303] = {.lex_state = 150}, - [304] = {.lex_state = 0}, - [305] = {.lex_state = 149}, - [306] = {.lex_state = 149}, - [307] = {.lex_state = 149}, - [308] = {.lex_state = 149}, - [309] = {.lex_state = 0}, - [310] = {.lex_state = 0}, - [311] = {.lex_state = 149}, - [312] = {.lex_state = 149}, - [313] = {.lex_state = 149}, - [314] = {.lex_state = 149}, - [315] = {.lex_state = 151}, - [316] = {.lex_state = 150}, - [317] = {.lex_state = 152}, - [318] = {.lex_state = 153}, - [319] = {.lex_state = 149}, - [320] = {.lex_state = 153}, - [321] = {.lex_state = 152}, - [322] = {.lex_state = 153}, - [323] = {.lex_state = 150}, - [324] = {.lex_state = 153}, - [325] = {.lex_state = 152}, - [326] = {.lex_state = 149}, - [327] = {.lex_state = 152}, - [328] = {.lex_state = 153}, - [329] = {.lex_state = 150}, - [330] = {.lex_state = 153}, + [274] = {.lex_state = 146}, + [275] = {.lex_state = 146}, + [276] = {.lex_state = 148}, + [277] = {.lex_state = 146}, + [278] = {.lex_state = 0}, + [279] = {.lex_state = 148}, + [280] = {.lex_state = 148}, + [281] = {.lex_state = 148}, + [282] = {.lex_state = 148}, + [283] = {.lex_state = 148}, + [284] = {.lex_state = 148}, + [285] = {.lex_state = 148}, + [286] = {.lex_state = 148}, + [287] = {.lex_state = 147}, + [288] = {.lex_state = 147}, + [289] = {.lex_state = 148}, + [290] = {.lex_state = 148}, + [291] = {.lex_state = 148}, + [292] = {.lex_state = 147}, + [293] = {.lex_state = 147}, + [294] = {.lex_state = 148}, + [295] = {.lex_state = 147}, + [296] = {.lex_state = 147}, + [297] = {.lex_state = 148}, + [298] = {.lex_state = 148}, + [299] = {.lex_state = 148}, + [300] = {.lex_state = 148}, + [301] = {.lex_state = 148}, + [302] = {.lex_state = 148}, + [303] = {.lex_state = 148}, + [304] = {.lex_state = 148}, + [305] = {.lex_state = 148}, + [306] = {.lex_state = 148}, + [307] = {.lex_state = 148}, + [308] = {.lex_state = 148}, + [309] = {.lex_state = 148}, + [310] = {.lex_state = 147}, + [311] = {.lex_state = 148}, + [312] = {.lex_state = 148}, + [313] = {.lex_state = 147}, + [314] = {.lex_state = 148}, + [315] = {.lex_state = 148}, + [316] = {.lex_state = 148}, + [317] = {.lex_state = 148}, + [318] = {.lex_state = 0}, + [319] = {.lex_state = 0}, + [320] = {.lex_state = 0}, + [321] = {.lex_state = 149}, + [322] = {.lex_state = 149}, + [323] = {.lex_state = 149}, + [324] = {.lex_state = 149}, + [325] = {.lex_state = 149}, + [326] = {.lex_state = 147}, + [327] = {.lex_state = 148}, + [328] = {.lex_state = 147}, + [329] = {.lex_state = 149}, + [330] = {.lex_state = 149}, [331] = {.lex_state = 150}, [332] = {.lex_state = 149}, - [333] = {.lex_state = 153}, - [334] = {.lex_state = 153}, - [335] = {.lex_state = 153}, - [336] = {.lex_state = 153}, - [337] = {.lex_state = 150}, + [333] = {.lex_state = 149}, + [334] = {.lex_state = 149}, + [335] = {.lex_state = 150}, + [336] = {.lex_state = 150}, + [337] = {.lex_state = 147}, [338] = {.lex_state = 151}, - [339] = {.lex_state = 151}, - [340] = {.lex_state = 149}, - [341] = {.lex_state = 151}, - [342] = {.lex_state = 149}, - [343] = {.lex_state = 149}, - [344] = {.lex_state = 149}, - [345] = {.lex_state = 151}, - [346] = {.lex_state = 151}, + [339] = {.lex_state = 150}, + [340] = {.lex_state = 148}, + [341] = {.lex_state = 148}, + [342] = {.lex_state = 148}, + [343] = {.lex_state = 147}, + [344] = {.lex_state = 147}, + [345] = {.lex_state = 147}, + [346] = {.lex_state = 147}, [347] = {.lex_state = 151}, - [348] = {.lex_state = 151}, - [349] = {.lex_state = 150}, + [348] = {.lex_state = 147}, + [349] = {.lex_state = 147}, [350] = {.lex_state = 151}, - [351] = {.lex_state = 150}, - [352] = {.lex_state = 151}, + [351] = {.lex_state = 147}, + [352] = {.lex_state = 149}, [353] = {.lex_state = 151}, - [354] = {.lex_state = 151}, - [355] = {.lex_state = 151}, + [354] = {.lex_state = 147}, + [355] = {.lex_state = 148}, [356] = {.lex_state = 151}, - [357] = {.lex_state = 150}, + [357] = {.lex_state = 151}, [358] = {.lex_state = 151}, [359] = {.lex_state = 151}, [360] = {.lex_state = 151}, - [361] = {.lex_state = 151}, - [362] = {.lex_state = 149}, - [363] = {.lex_state = 150}, - [364] = {.lex_state = 153}, - [365] = {.lex_state = 149}, - [366] = {.lex_state = 153}, - [367] = {.lex_state = 153}, - [368] = {.lex_state = 149}, - [369] = {.lex_state = 149}, - [370] = {.lex_state = 149}, - [371] = {.lex_state = 149}, - [372] = {.lex_state = 150}, - [373] = {.lex_state = 149}, - [374] = {.lex_state = 153}, - [375] = {.lex_state = 150}, - [376] = {.lex_state = 149}, - [377] = {.lex_state = 149}, - [378] = {.lex_state = 149}, - [379] = {.lex_state = 153}, + [361] = {.lex_state = 147}, + [362] = {.lex_state = 151}, + [363] = {.lex_state = 151}, + [364] = {.lex_state = 149}, + [365] = {.lex_state = 151}, + [366] = {.lex_state = 151}, + [367] = {.lex_state = 147}, + [368] = {.lex_state = 147}, + [369] = {.lex_state = 151}, + [370] = {.lex_state = 147}, + [371] = {.lex_state = 151}, + [372] = {.lex_state = 151}, + [373] = {.lex_state = 147}, + [374] = {.lex_state = 148}, + [375] = {.lex_state = 149}, + [376] = {.lex_state = 151}, + [377] = {.lex_state = 147}, + [378] = {.lex_state = 147}, + [379] = {.lex_state = 147}, [380] = {.lex_state = 149}, [381] = {.lex_state = 149}, - [382] = {.lex_state = 153}, + [382] = {.lex_state = 147}, [383] = {.lex_state = 149}, - [384] = {.lex_state = 150}, - [385] = {.lex_state = 153}, - [386] = {.lex_state = 149}, + [384] = {.lex_state = 148}, + [385] = {.lex_state = 148}, + [386] = {.lex_state = 151}, [387] = {.lex_state = 149}, - [388] = {.lex_state = 150}, - [389] = {.lex_state = 150}, - [390] = {.lex_state = 150}, - [391] = {.lex_state = 150}, - [392] = {.lex_state = 150}, - [393] = {.lex_state = 150}, - [394] = {.lex_state = 153}, + [388] = {.lex_state = 147}, + [389] = {.lex_state = 148}, + [390] = {.lex_state = 147}, + [391] = {.lex_state = 149}, + [392] = {.lex_state = 147}, + [393] = {.lex_state = 149}, + [394] = {.lex_state = 148}, [395] = {.lex_state = 149}, - [396] = {.lex_state = 150}, - [397] = {.lex_state = 153}, - [398] = {.lex_state = 153}, - [399] = {.lex_state = 153}, - [400] = {.lex_state = 150}, + [396] = {.lex_state = 148}, + [397] = {.lex_state = 149}, + [398] = {.lex_state = 149}, + [399] = {.lex_state = 147}, + [400] = {.lex_state = 149}, [401] = {.lex_state = 149}, - [402] = {.lex_state = 150}, - [403] = {.lex_state = 150}, - [404] = {.lex_state = 150}, - [405] = {.lex_state = 150}, - [406] = {.lex_state = 153}, - [407] = {.lex_state = 153}, - [408] = {.lex_state = 153}, - [409] = {.lex_state = 153}, - [410] = {.lex_state = 153}, - [411] = {.lex_state = 153}, - [412] = {.lex_state = 153}, - [413] = {.lex_state = 153}, - [414] = {.lex_state = 153}, - [415] = {.lex_state = 153}, - [416] = {.lex_state = 153}, - [417] = {.lex_state = 153}, - [418] = {.lex_state = 153}, - [419] = {.lex_state = 153}, - [420] = {.lex_state = 153}, - [421] = {.lex_state = 153}, - [422] = {.lex_state = 153}, - [423] = {.lex_state = 153}, - [424] = {.lex_state = 153}, - [425] = {.lex_state = 153}, - [426] = {.lex_state = 153}, - [427] = {.lex_state = 145}, - [428] = {.lex_state = 154}, - [429] = {.lex_state = 154}, - [430] = {.lex_state = 154}, - [431] = {.lex_state = 155}, - [432] = {.lex_state = 155}, - [433] = {.lex_state = 154}, - [434] = {.lex_state = 154}, - [435] = {.lex_state = 155}, - [436] = {.lex_state = 155}, - [437] = {.lex_state = 155}, - [438] = {.lex_state = 155}, - [439] = {.lex_state = 155}, - [440] = {.lex_state = 155}, - [441] = {.lex_state = 155}, - [442] = {.lex_state = 155}, - [443] = {.lex_state = 155}, - [444] = {.lex_state = 155}, - [445] = {.lex_state = 155}, - [446] = {.lex_state = 155}, - [447] = {.lex_state = 155}, - [448] = {.lex_state = 155}, - [449] = {.lex_state = 155}, - [450] = {.lex_state = 155}, - [451] = {.lex_state = 155}, - [452] = {.lex_state = 155}, - [453] = {.lex_state = 155}, - [454] = {.lex_state = 155}, - [455] = {.lex_state = 155}, - [456] = {.lex_state = 155}, - [457] = {.lex_state = 155}, - [458] = {.lex_state = 151}, - [459] = {.lex_state = 155}, - [460] = {.lex_state = 151}, - [461] = {.lex_state = 155}, - [462] = {.lex_state = 155}, - [463] = {.lex_state = 150}, - [464] = {.lex_state = 155}, - [465] = {.lex_state = 155}, - [466] = {.lex_state = 155}, - [467] = {.lex_state = 155}, + [402] = {.lex_state = 149}, + [403] = {.lex_state = 149}, + [404] = {.lex_state = 149}, + [405] = {.lex_state = 148}, + [406] = {.lex_state = 149}, + [407] = {.lex_state = 149}, + [408] = {.lex_state = 148}, + [409] = {.lex_state = 148}, + [410] = {.lex_state = 148}, + [411] = {.lex_state = 149}, + [412] = {.lex_state = 148}, + [413] = {.lex_state = 149}, + [414] = {.lex_state = 149}, + [415] = {.lex_state = 149}, + [416] = {.lex_state = 149}, + [417] = {.lex_state = 148}, + [418] = {.lex_state = 148}, + [419] = {.lex_state = 148}, + [420] = {.lex_state = 149}, + [421] = {.lex_state = 149}, + [422] = {.lex_state = 148}, + [423] = {.lex_state = 148}, + [424] = {.lex_state = 148}, + [425] = {.lex_state = 148}, + [426] = {.lex_state = 148}, + [427] = {.lex_state = 149}, + [428] = {.lex_state = 149}, + [429] = {.lex_state = 149}, + [430] = {.lex_state = 149}, + [431] = {.lex_state = 149}, + [432] = {.lex_state = 149}, + [433] = {.lex_state = 143}, + [434] = {.lex_state = 152}, + [435] = {.lex_state = 152}, + [436] = {.lex_state = 152}, + [437] = {.lex_state = 152}, + [438] = {.lex_state = 153}, + [439] = {.lex_state = 152}, + [440] = {.lex_state = 153}, + [441] = {.lex_state = 153}, + [442] = {.lex_state = 152}, + [443] = {.lex_state = 152}, + [444] = {.lex_state = 153}, + [445] = {.lex_state = 153}, + [446] = {.lex_state = 153}, + [447] = {.lex_state = 153}, + [448] = {.lex_state = 153}, + [449] = {.lex_state = 153}, + [450] = {.lex_state = 153}, + [451] = {.lex_state = 153}, + [452] = {.lex_state = 153}, + [453] = {.lex_state = 153}, + [454] = {.lex_state = 153}, + [455] = {.lex_state = 153}, + [456] = {.lex_state = 153}, + [457] = {.lex_state = 153}, + [458] = {.lex_state = 153}, + [459] = {.lex_state = 153}, + [460] = {.lex_state = 153}, + [461] = {.lex_state = 153}, + [462] = {.lex_state = 153}, + [463] = {.lex_state = 153}, + [464] = {.lex_state = 153}, + [465] = {.lex_state = 153}, + [466] = {.lex_state = 153}, + [467] = {.lex_state = 151}, [468] = {.lex_state = 151}, - [469] = {.lex_state = 155}, - [470] = {.lex_state = 155}, - [471] = {.lex_state = 155}, - [472] = {.lex_state = 155}, - [473] = {.lex_state = 151}, - [474] = {.lex_state = 151}, - [475] = {.lex_state = 155}, - [476] = {.lex_state = 155}, - [477] = {.lex_state = 155}, - [478] = {.lex_state = 155}, - [479] = {.lex_state = 151}, - [480] = {.lex_state = 155}, - [481] = {.lex_state = 155}, - [482] = {.lex_state = 155}, + [469] = {.lex_state = 153}, + [470] = {.lex_state = 153}, + [471] = {.lex_state = 153}, + [472] = {.lex_state = 151}, + [473] = {.lex_state = 153}, + [474] = {.lex_state = 153}, + [475] = {.lex_state = 153}, + [476] = {.lex_state = 153}, + [477] = {.lex_state = 153}, + [478] = {.lex_state = 153}, + [479] = {.lex_state = 153}, + [480] = {.lex_state = 153}, + [481] = {.lex_state = 153}, + [482] = {.lex_state = 153}, [483] = {.lex_state = 151}, - [484] = {.lex_state = 156}, - [485] = {.lex_state = 157}, - [486] = {.lex_state = 157}, - [487] = {.lex_state = 150}, - [488] = {.lex_state = 151}, - [489] = {.lex_state = 151}, - [490] = {.lex_state = 151}, - [491] = {.lex_state = 156}, - [492] = {.lex_state = 150}, - [493] = {.lex_state = 156}, - [494] = {.lex_state = 157}, - [495] = {.lex_state = 150}, - [496] = {.lex_state = 150}, - [497] = {.lex_state = 156}, - [498] = {.lex_state = 0}, - [499] = {.lex_state = 0}, - [500] = {.lex_state = 156}, - [501] = {.lex_state = 156}, - [502] = {.lex_state = 156}, - [503] = {.lex_state = 0}, - [504] = {.lex_state = 157}, - [505] = {.lex_state = 0}, - [506] = {.lex_state = 157}, - [507] = {.lex_state = 156}, - [508] = {.lex_state = 157}, - [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 = 0}, - [523] = {.lex_state = 157}, - [524] = {.lex_state = 156}, - [525] = {.lex_state = 157}, - [526] = {.lex_state = 157}, - [527] = {.lex_state = 157}, - [528] = {.lex_state = 157}, - [529] = {.lex_state = 156}, - [530] = {.lex_state = 157}, - [531] = {.lex_state = 157}, - [532] = {.lex_state = 157}, - [533] = {.lex_state = 157}, - [534] = {.lex_state = 156}, - [535] = {.lex_state = 157}, - [536] = {.lex_state = 157}, - [537] = {.lex_state = 157}, - [538] = {.lex_state = 157}, - [539] = {.lex_state = 157}, - [540] = {.lex_state = 0}, - [541] = {.lex_state = 157}, - [542] = {.lex_state = 157}, - [543] = {.lex_state = 157}, - [544] = {.lex_state = 157}, - [545] = {.lex_state = 157}, - [546] = {.lex_state = 157}, - [547] = {.lex_state = 157}, + [484] = {.lex_state = 148}, + [485] = {.lex_state = 151}, + [486] = {.lex_state = 151}, + [487] = {.lex_state = 153}, + [488] = {.lex_state = 153}, + [489] = {.lex_state = 153}, + [490] = {.lex_state = 153}, + [491] = {.lex_state = 151}, + [492] = {.lex_state = 151}, + [493] = {.lex_state = 154}, + [494] = {.lex_state = 148}, + [495] = {.lex_state = 155}, + [496] = {.lex_state = 154}, + [497] = {.lex_state = 148}, + [498] = {.lex_state = 151}, + [499] = {.lex_state = 154}, + [500] = {.lex_state = 148}, + [501] = {.lex_state = 151}, + [502] = {.lex_state = 148}, + [503] = {.lex_state = 155}, + [504] = {.lex_state = 155}, + [505] = {.lex_state = 154}, + [506] = {.lex_state = 0}, + [507] = {.lex_state = 154}, + [508] = {.lex_state = 0}, + [509] = {.lex_state = 0}, + [510] = {.lex_state = 154}, + [511] = {.lex_state = 154}, + [512] = {.lex_state = 155}, + [513] = {.lex_state = 155}, + [514] = {.lex_state = 154}, + [515] = {.lex_state = 155}, + [516] = {.lex_state = 155}, + [517] = {.lex_state = 154}, + [518] = {.lex_state = 155}, + [519] = {.lex_state = 154}, + [520] = {.lex_state = 155}, + [521] = {.lex_state = 155}, + [522] = {.lex_state = 155}, + [523] = {.lex_state = 155}, + [524] = {.lex_state = 155}, + [525] = {.lex_state = 155}, + [526] = {.lex_state = 155}, + [527] = {.lex_state = 155}, + [528] = {.lex_state = 154}, + [529] = {.lex_state = 155}, + [530] = {.lex_state = 155}, + [531] = {.lex_state = 154}, + [532] = {.lex_state = 0}, + [533] = {.lex_state = 155}, + [534] = {.lex_state = 155}, + [535] = {.lex_state = 155}, + [536] = {.lex_state = 155}, + [537] = {.lex_state = 0}, + [538] = {.lex_state = 155}, + [539] = {.lex_state = 155}, + [540] = {.lex_state = 155}, + [541] = {.lex_state = 155}, + [542] = {.lex_state = 155}, + [543] = {.lex_state = 155}, + [544] = {.lex_state = 155}, + [545] = {.lex_state = 155}, + [546] = {.lex_state = 155}, + [547] = {.lex_state = 155}, [548] = {.lex_state = 0}, - [549] = {.lex_state = 156}, - [550] = {.lex_state = 157}, - [551] = {.lex_state = 157}, - [552] = {.lex_state = 157}, - [553] = {.lex_state = 0}, - [554] = {.lex_state = 0}, - [555] = {.lex_state = 156}, - [556] = {.lex_state = 0}, - [557] = {.lex_state = 0}, - [558] = {.lex_state = 0}, - [559] = {.lex_state = 0}, - [560] = {.lex_state = 157}, + [549] = {.lex_state = 155}, + [550] = {.lex_state = 155}, + [551] = {.lex_state = 155}, + [552] = {.lex_state = 0}, + [553] = {.lex_state = 155}, + [554] = {.lex_state = 155}, + [555] = {.lex_state = 155}, + [556] = {.lex_state = 155}, + [557] = {.lex_state = 155}, + [558] = {.lex_state = 155}, + [559] = {.lex_state = 155}, + [560] = {.lex_state = 0}, [561] = {.lex_state = 0}, - [562] = {.lex_state = 157}, - [563] = {.lex_state = 158}, - [564] = {.lex_state = 157}, + [562] = {.lex_state = 155}, + [563] = {.lex_state = 0}, + [564] = {.lex_state = 154}, [565] = {.lex_state = 0}, - [566] = {.lex_state = 157}, + [566] = {.lex_state = 0}, [567] = {.lex_state = 0}, [568] = {.lex_state = 0}, - [569] = {.lex_state = 157}, - [570] = {.lex_state = 0}, - [571] = {.lex_state = 0}, - [572] = {.lex_state = 0}, - [573] = {.lex_state = 157}, - [574] = {.lex_state = 0}, + [569] = {.lex_state = 0}, + [570] = {.lex_state = 156}, + [571] = {.lex_state = 155}, + [572] = {.lex_state = 155}, + [573] = {.lex_state = 0}, + [574] = {.lex_state = 155}, [575] = {.lex_state = 0}, [576] = {.lex_state = 0}, - [577] = {.lex_state = 158}, + [577] = {.lex_state = 0}, [578] = {.lex_state = 0}, - [579] = {.lex_state = 0}, + [579] = {.lex_state = 155}, [580] = {.lex_state = 0}, [581] = {.lex_state = 0}, [582] = {.lex_state = 0}, - [583] = {.lex_state = 0}, - [584] = {.lex_state = 0}, + [583] = {.lex_state = 155}, + [584] = {.lex_state = 155}, [585] = {.lex_state = 0}, [586] = {.lex_state = 0}, - [587] = {.lex_state = 0}, + [587] = {.lex_state = 156}, [588] = {.lex_state = 0}, [589] = {.lex_state = 0}, [590] = {.lex_state = 0}, @@ -5371,48 +5561,48 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [602] = {.lex_state = 0}, [603] = {.lex_state = 0}, [604] = {.lex_state = 0}, - [605] = {.lex_state = 158}, - [606] = {.lex_state = 157}, - [607] = {.lex_state = 158}, + [605] = {.lex_state = 0}, + [606] = {.lex_state = 0}, + [607] = {.lex_state = 0}, [608] = {.lex_state = 0}, - [609] = {.lex_state = 148}, + [609] = {.lex_state = 0}, [610] = {.lex_state = 0}, [611] = {.lex_state = 0}, [612] = {.lex_state = 0}, [613] = {.lex_state = 0}, - [614] = {.lex_state = 0}, + [614] = {.lex_state = 146}, [615] = {.lex_state = 0}, [616] = {.lex_state = 0}, [617] = {.lex_state = 0}, [618] = {.lex_state = 0}, - [619] = {.lex_state = 158}, + [619] = {.lex_state = 0}, [620] = {.lex_state = 0}, [621] = {.lex_state = 0}, [622] = {.lex_state = 0}, [623] = {.lex_state = 0}, - [624] = {.lex_state = 0}, + [624] = {.lex_state = 146}, [625] = {.lex_state = 0}, [626] = {.lex_state = 0}, - [627] = {.lex_state = 0}, + [627] = {.lex_state = 156}, [628] = {.lex_state = 0}, [629] = {.lex_state = 0}, [630] = {.lex_state = 0}, - [631] = {.lex_state = 0}, + [631] = {.lex_state = 156}, [632] = {.lex_state = 0}, [633] = {.lex_state = 0}, [634] = {.lex_state = 0}, [635] = {.lex_state = 0}, - [636] = {.lex_state = 0}, + [636] = {.lex_state = 156}, [637] = {.lex_state = 0}, [638] = {.lex_state = 0}, [639] = {.lex_state = 0}, [640] = {.lex_state = 0}, - [641] = {.lex_state = 148}, - [642] = {.lex_state = 158}, + [641] = {.lex_state = 0}, + [642] = {.lex_state = 0}, [643] = {.lex_state = 0}, [644] = {.lex_state = 0}, [645] = {.lex_state = 0}, - [646] = {.lex_state = 0}, + [646] = {.lex_state = 155}, [647] = {.lex_state = 0}, [648] = {.lex_state = 0}, [649] = {.lex_state = 0}, @@ -5420,15 +5610,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [651] = {.lex_state = 0}, [652] = {.lex_state = 0}, [653] = {.lex_state = 0}, - [654] = {.lex_state = 158}, - [655] = {.lex_state = 157}, + [654] = {.lex_state = 0}, + [655] = {.lex_state = 0}, [656] = {.lex_state = 0}, [657] = {.lex_state = 0}, [658] = {.lex_state = 0}, [659] = {.lex_state = 0}, [660] = {.lex_state = 0}, - [661] = {.lex_state = 0}, - [662] = {.lex_state = 0}, + [661] = {.lex_state = 156}, + [662] = {.lex_state = 156}, [663] = {.lex_state = 0}, [664] = {.lex_state = 0}, [665] = {.lex_state = 0}, @@ -5437,7 +5627,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [668] = {.lex_state = 0}, [669] = {.lex_state = 0}, [670] = {.lex_state = 0}, - [671] = {.lex_state = 0}, + [671] = {.lex_state = 155}, [672] = {.lex_state = 0}, [673] = {.lex_state = 0}, [674] = {.lex_state = 0}, @@ -5447,149 +5637,149 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [678] = {.lex_state = 0}, [679] = {.lex_state = 0}, [680] = {.lex_state = 0}, - [681] = {.lex_state = 158}, - [682] = {.lex_state = 158}, - [683] = {.lex_state = 158}, - [684] = {.lex_state = 148}, - [685] = {.lex_state = 158}, - [686] = {.lex_state = 158}, - [687] = {.lex_state = 157}, - [688] = {.lex_state = 148}, - [689] = {.lex_state = 148}, - [690] = {.lex_state = 148}, - [691] = {.lex_state = 158}, - [692] = {.lex_state = 0}, - [693] = {.lex_state = 158}, - [694] = {.lex_state = 148}, - [695] = {.lex_state = 158}, - [696] = {.lex_state = 0}, - [697] = {.lex_state = 158}, - [698] = {.lex_state = 0}, + [681] = {.lex_state = 0}, + [682] = {.lex_state = 0}, + [683] = {.lex_state = 0}, + [684] = {.lex_state = 0}, + [685] = {.lex_state = 0}, + [686] = {.lex_state = 0}, + [687] = {.lex_state = 0}, + [688] = {.lex_state = 0}, + [689] = {.lex_state = 0}, + [690] = {.lex_state = 0}, + [691] = {.lex_state = 156}, + [692] = {.lex_state = 146}, + [693] = {.lex_state = 156}, + [694] = {.lex_state = 156}, + [695] = {.lex_state = 146}, + [696] = {.lex_state = 156}, + [697] = {.lex_state = 156}, + [698] = {.lex_state = 146}, [699] = {.lex_state = 0}, - [700] = {.lex_state = 157}, - [701] = {.lex_state = 146}, - [702] = {.lex_state = 0}, - [703] = {.lex_state = 157}, - [704] = {.lex_state = 156}, - [705] = {.lex_state = 0}, + [700] = {.lex_state = 146}, + [701] = {.lex_state = 156}, + [702] = {.lex_state = 156}, + [703] = {.lex_state = 156}, + [704] = {.lex_state = 146}, + [705] = {.lex_state = 155}, [706] = {.lex_state = 0}, - [707] = {.lex_state = 0}, - [708] = {.lex_state = 156}, + [707] = {.lex_state = 155}, + [708] = {.lex_state = 157}, [709] = {.lex_state = 157}, [710] = {.lex_state = 157}, - [711] = {.lex_state = 0}, - [712] = {.lex_state = 0}, + [711] = {.lex_state = 157}, + [712] = {.lex_state = 155}, [713] = {.lex_state = 0}, - [714] = {.lex_state = 148}, - [715] = {.lex_state = 0}, - [716] = {.lex_state = 158}, - [717] = {.lex_state = 158}, - [718] = {.lex_state = 148}, - [719] = {.lex_state = 0}, - [720] = {.lex_state = 148}, - [721] = {.lex_state = 148}, - [722] = {.lex_state = 0}, + [714] = {.lex_state = 0}, + [715] = {.lex_state = 154}, + [716] = {.lex_state = 0}, + [717] = {.lex_state = 157}, + [718] = {.lex_state = 157}, + [719] = {.lex_state = 157}, + [720] = {.lex_state = 155}, + [721] = {.lex_state = 156}, + [722] = {.lex_state = 154}, [723] = {.lex_state = 0}, - [724] = {.lex_state = 148}, + [724] = {.lex_state = 0}, [725] = {.lex_state = 0}, - [726] = {.lex_state = 158}, - [727] = {.lex_state = 148}, - [728] = {.lex_state = 148}, - [729] = {.lex_state = 158}, + [726] = {.lex_state = 144}, + [727] = {.lex_state = 157}, + [728] = {.lex_state = 157}, + [729] = {.lex_state = 155}, [730] = {.lex_state = 157}, - [731] = {.lex_state = 148}, + [731] = {.lex_state = 0}, [732] = {.lex_state = 0}, - [733] = {.lex_state = 157}, - [734] = {.lex_state = 148}, - [735] = {.lex_state = 0}, - [736] = {.lex_state = 0}, + [733] = {.lex_state = 0}, + [734] = {.lex_state = 157}, + [735] = {.lex_state = 155}, + [736] = {.lex_state = 156}, [737] = {.lex_state = 0}, - [738] = {.lex_state = 148}, - [739] = {.lex_state = 148}, - [740] = {.lex_state = 158}, - [741] = {.lex_state = 148}, - [742] = {.lex_state = 148}, - [743] = {.lex_state = 156}, - [744] = {.lex_state = 157}, - [745] = {.lex_state = 0}, + [738] = {.lex_state = 146}, + [739] = {.lex_state = 146}, + [740] = {.lex_state = 154}, + [741] = {.lex_state = 156}, + [742] = {.lex_state = 0}, + [743] = {.lex_state = 0}, + [744] = {.lex_state = 146}, + [745] = {.lex_state = 146}, [746] = {.lex_state = 0}, - [747] = {.lex_state = 148}, + [747] = {.lex_state = 146}, [748] = {.lex_state = 0}, - [749] = {.lex_state = 157}, - [750] = {.lex_state = 0}, - [751] = {.lex_state = 146}, + [749] = {.lex_state = 146}, + [750] = {.lex_state = 146}, + [751] = {.lex_state = 0}, [752] = {.lex_state = 0}, [753] = {.lex_state = 0}, [754] = {.lex_state = 0}, - [755] = {.lex_state = 0}, - [756] = {.lex_state = 0}, - [757] = {.lex_state = 0}, + [755] = {.lex_state = 155}, + [756] = {.lex_state = 155}, + [757] = {.lex_state = 146}, [758] = {.lex_state = 0}, - [759] = {.lex_state = 0}, - [760] = {.lex_state = 0}, - [761] = {.lex_state = 0}, - [762] = {.lex_state = 0}, - [763] = {.lex_state = 148}, - [764] = {.lex_state = 0}, - [765] = {.lex_state = 146}, - [766] = {.lex_state = 148}, - [767] = {.lex_state = 148}, - [768] = {.lex_state = 0}, + [759] = {.lex_state = 146}, + [760] = {.lex_state = 146}, + [761] = {.lex_state = 146}, + [762] = {.lex_state = 146}, + [763] = {.lex_state = 156}, + [764] = {.lex_state = 146}, + [765] = {.lex_state = 156}, + [766] = {.lex_state = 156}, + [767] = {.lex_state = 0}, + [768] = {.lex_state = 146}, [769] = {.lex_state = 0}, - [770] = {.lex_state = 0}, - [771] = {.lex_state = 0}, + [770] = {.lex_state = 144}, + [771] = {.lex_state = 144}, [772] = {.lex_state = 0}, [773] = {.lex_state = 0}, - [774] = {.lex_state = 148}, - [775] = {.lex_state = 146}, + [774] = {.lex_state = 0}, + [775] = {.lex_state = 156}, [776] = {.lex_state = 0}, [777] = {.lex_state = 0}, - [778] = {.lex_state = 0}, + [778] = {.lex_state = 156}, [779] = {.lex_state = 0}, - [780] = {.lex_state = 0}, + [780] = {.lex_state = 146}, [781] = {.lex_state = 0}, - [782] = {.lex_state = 0}, + [782] = {.lex_state = 146}, [783] = {.lex_state = 0}, - [784] = {.lex_state = 158}, - [785] = {.lex_state = 0}, + [784] = {.lex_state = 0}, + [785] = {.lex_state = 146}, [786] = {.lex_state = 0}, [787] = {.lex_state = 0}, - [788] = {.lex_state = 0}, - [789] = {.lex_state = 146}, - [790] = {.lex_state = 146}, + [788] = {.lex_state = 155}, + [789] = {.lex_state = 0}, + [790] = {.lex_state = 0}, [791] = {.lex_state = 0}, [792] = {.lex_state = 0}, - [793] = {.lex_state = 148}, - [794] = {.lex_state = 158}, + [793] = {.lex_state = 0}, + [794] = {.lex_state = 0}, [795] = {.lex_state = 0}, [796] = {.lex_state = 0}, - [797] = {.lex_state = 146}, + [797] = {.lex_state = 144}, [798] = {.lex_state = 0}, - [799] = {.lex_state = 158}, - [800] = {.lex_state = 0}, + [799] = {.lex_state = 0}, + [800] = {.lex_state = 144}, [801] = {.lex_state = 0}, [802] = {.lex_state = 0}, - [803] = {.lex_state = 146}, + [803] = {.lex_state = 0}, [804] = {.lex_state = 0}, [805] = {.lex_state = 146}, - [806] = {.lex_state = 0}, + [806] = {.lex_state = 146}, [807] = {.lex_state = 0}, - [808] = {.lex_state = 0}, - [809] = {.lex_state = 146}, + [808] = {.lex_state = 146}, + [809] = {.lex_state = 0}, [810] = {.lex_state = 0}, - [811] = {.lex_state = 0}, - [812] = {.lex_state = 146}, + [811] = {.lex_state = 144}, + [812] = {.lex_state = 0}, [813] = {.lex_state = 0}, [814] = {.lex_state = 0}, [815] = {.lex_state = 0}, [816] = {.lex_state = 0}, - [817] = {.lex_state = 158}, + [817] = {.lex_state = 0}, [818] = {.lex_state = 0}, [819] = {.lex_state = 0}, [820] = {.lex_state = 0}, [821] = {.lex_state = 0}, [822] = {.lex_state = 0}, - [823] = {.lex_state = 158}, + [823] = {.lex_state = 0}, [824] = {.lex_state = 0}, [825] = {.lex_state = 0}, [826] = {.lex_state = 0}, @@ -5597,133 +5787,133 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [828] = {.lex_state = 0}, [829] = {.lex_state = 0}, [830] = {.lex_state = 0}, - [831] = {.lex_state = 146}, - [832] = {.lex_state = 146}, + [831] = {.lex_state = 144}, + [832] = {.lex_state = 144}, [833] = {.lex_state = 0}, - [834] = {.lex_state = 0}, + [834] = {.lex_state = 144}, [835] = {.lex_state = 0}, - [836] = {.lex_state = 146}, + [836] = {.lex_state = 0}, [837] = {.lex_state = 0}, [838] = {.lex_state = 0}, - [839] = {.lex_state = 148}, + [839] = {.lex_state = 0}, [840] = {.lex_state = 0}, - [841] = {.lex_state = 0}, + [841] = {.lex_state = 156}, [842] = {.lex_state = 0}, [843] = {.lex_state = 0}, - [844] = {.lex_state = 146}, + [844] = {.lex_state = 0}, [845] = {.lex_state = 0}, [846] = {.lex_state = 0}, [847] = {.lex_state = 0}, [848] = {.lex_state = 0}, - [849] = {.lex_state = 146}, - [850] = {.lex_state = 0}, + [849] = {.lex_state = 0}, + [850] = {.lex_state = 144}, [851] = {.lex_state = 0}, [852] = {.lex_state = 0}, - [853] = {.lex_state = 0}, + [853] = {.lex_state = 144}, [854] = {.lex_state = 0}, [855] = {.lex_state = 0}, [856] = {.lex_state = 0}, [857] = {.lex_state = 0}, - [858] = {.lex_state = 0}, + [858] = {.lex_state = 144}, [859] = {.lex_state = 0}, [860] = {.lex_state = 0}, [861] = {.lex_state = 0}, [862] = {.lex_state = 0}, - [863] = {.lex_state = 148}, - [864] = {.lex_state = 0}, - [865] = {.lex_state = 0}, - [866] = {.lex_state = 146}, + [863] = {.lex_state = 0}, + [864] = {.lex_state = 156}, + [865] = {.lex_state = 144}, + [866] = {.lex_state = 0}, [867] = {.lex_state = 0}, - [868] = {.lex_state = 158}, + [868] = {.lex_state = 0}, [869] = {.lex_state = 0}, [870] = {.lex_state = 0}, [871] = {.lex_state = 0}, - [872] = {.lex_state = 0}, + [872] = {.lex_state = 156}, [873] = {.lex_state = 0}, [874] = {.lex_state = 0}, - [875] = {.lex_state = 158}, + [875] = {.lex_state = 0}, [876] = {.lex_state = 0}, [877] = {.lex_state = 0}, [878] = {.lex_state = 0}, - [879] = {.lex_state = 0}, - [880] = {.lex_state = 158}, + [879] = {.lex_state = 144}, + [880] = {.lex_state = 0}, [881] = {.lex_state = 0}, [882] = {.lex_state = 0}, - [883] = {.lex_state = 158}, - [884] = {.lex_state = 158}, - [885] = {.lex_state = 158}, + [883] = {.lex_state = 0}, + [884] = {.lex_state = 0}, + [885] = {.lex_state = 0}, [886] = {.lex_state = 0}, [887] = {.lex_state = 0}, - [888] = {.lex_state = 158}, + [888] = {.lex_state = 156}, [889] = {.lex_state = 0}, - [890] = {.lex_state = 0}, - [891] = {.lex_state = 0}, - [892] = {.lex_state = 0}, - [893] = {.lex_state = 146}, - [894] = {.lex_state = 158}, + [890] = {.lex_state = 156}, + [891] = {.lex_state = 144}, + [892] = {.lex_state = 146}, + [893] = {.lex_state = 144}, + [894] = {.lex_state = 0}, [895] = {.lex_state = 0}, [896] = {.lex_state = 0}, [897] = {.lex_state = 0}, - [898] = {.lex_state = 0}, + [898] = {.lex_state = 144}, [899] = {.lex_state = 0}, [900] = {.lex_state = 0}, - [901] = {.lex_state = 158}, + [901] = {.lex_state = 0}, [902] = {.lex_state = 0}, [903] = {.lex_state = 0}, - [904] = {.lex_state = 0}, + [904] = {.lex_state = 156}, [905] = {.lex_state = 0}, - [906] = {.lex_state = 0}, - [907] = {.lex_state = 0}, - [908] = {.lex_state = 0}, - [909] = {.lex_state = 0}, + [906] = {.lex_state = 156}, + [907] = {.lex_state = 156}, + [908] = {.lex_state = 156}, + [909] = {.lex_state = 156}, [910] = {.lex_state = 0}, [911] = {.lex_state = 0}, - [912] = {.lex_state = 158}, + [912] = {.lex_state = 0}, [913] = {.lex_state = 0}, [914] = {.lex_state = 0}, [915] = {.lex_state = 0}, [916] = {.lex_state = 0}, - [917] = {.lex_state = 158}, + [917] = {.lex_state = 156}, [918] = {.lex_state = 0}, - [919] = {.lex_state = 0}, + [919] = {.lex_state = 144}, [920] = {.lex_state = 0}, - [921] = {.lex_state = 158}, + [921] = {.lex_state = 0}, [922] = {.lex_state = 0}, - [923] = {.lex_state = 0}, + [923] = {.lex_state = 156}, [924] = {.lex_state = 0}, [925] = {.lex_state = 0}, - [926] = {.lex_state = 0}, + [926] = {.lex_state = 156}, [927] = {.lex_state = 0}, [928] = {.lex_state = 0}, [929] = {.lex_state = 0}, [930] = {.lex_state = 0}, - [931] = {.lex_state = 0}, - [932] = {.lex_state = 0}, + [931] = {.lex_state = 156}, + [932] = {.lex_state = 156}, [933] = {.lex_state = 0}, [934] = {.lex_state = 0}, - [935] = {.lex_state = 0}, + [935] = {.lex_state = 156}, [936] = {.lex_state = 0}, [937] = {.lex_state = 0}, - [938] = {.lex_state = 158}, - [939] = {.lex_state = 158}, + [938] = {.lex_state = 144}, + [939] = {.lex_state = 0}, [940] = {.lex_state = 0}, - [941] = {.lex_state = 158}, + [941] = {.lex_state = 0}, [942] = {.lex_state = 0}, [943] = {.lex_state = 0}, [944] = {.lex_state = 0}, - [945] = {.lex_state = 158}, - [946] = {.lex_state = 0}, + [945] = {.lex_state = 0}, + [946] = {.lex_state = 156}, [947] = {.lex_state = 0}, [948] = {.lex_state = 0}, [949] = {.lex_state = 0}, [950] = {.lex_state = 0}, [951] = {.lex_state = 0}, - [952] = {.lex_state = 158}, + [952] = {.lex_state = 0}, [953] = {.lex_state = 0}, - [954] = {.lex_state = 146}, + [954] = {.lex_state = 0}, [955] = {.lex_state = 0}, [956] = {.lex_state = 0}, - [957] = {.lex_state = 0}, + [957] = {.lex_state = 156}, [958] = {.lex_state = 0}, [959] = {.lex_state = 0}, [960] = {.lex_state = 0}, @@ -5732,46 +5922,46 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [963] = {.lex_state = 0}, [964] = {.lex_state = 0}, [965] = {.lex_state = 0}, - [966] = {.lex_state = 158}, - [967] = {.lex_state = 158}, + [966] = {.lex_state = 0}, + [967] = {.lex_state = 0}, [968] = {.lex_state = 0}, [969] = {.lex_state = 0}, - [970] = {.lex_state = 158}, - [971] = {.lex_state = 0}, - [972] = {.lex_state = 158}, + [970] = {.lex_state = 0}, + [971] = {.lex_state = 156}, + [972] = {.lex_state = 156}, [973] = {.lex_state = 0}, [974] = {.lex_state = 0}, [975] = {.lex_state = 0}, [976] = {.lex_state = 0}, - [977] = {.lex_state = 146}, - [978] = {.lex_state = 158}, + [977] = {.lex_state = 0}, + [978] = {.lex_state = 0}, [979] = {.lex_state = 0}, [980] = {.lex_state = 0}, [981] = {.lex_state = 0}, [982] = {.lex_state = 0}, - [983] = {.lex_state = 0}, + [983] = {.lex_state = 156}, [984] = {.lex_state = 0}, - [985] = {.lex_state = 146}, + [985] = {.lex_state = 0}, [986] = {.lex_state = 0}, - [987] = {.lex_state = 0}, + [987] = {.lex_state = 156}, [988] = {.lex_state = 0}, - [989] = {.lex_state = 146}, - [990] = {.lex_state = 0}, + [989] = {.lex_state = 0}, + [990] = {.lex_state = 156}, [991] = {.lex_state = 0}, [992] = {.lex_state = 0}, - [993] = {.lex_state = 0}, - [994] = {.lex_state = 146}, + [993] = {.lex_state = 156}, + [994] = {.lex_state = 0}, [995] = {.lex_state = 0}, [996] = {.lex_state = 0}, - [997] = {.lex_state = 146}, + [997] = {.lex_state = 0}, [998] = {.lex_state = 0}, [999] = {.lex_state = 0}, [1000] = {.lex_state = 0}, [1001] = {.lex_state = 0}, - [1002] = {.lex_state = 0}, - [1003] = {.lex_state = 0}, + [1002] = {.lex_state = 144}, + [1003] = {.lex_state = 144}, [1004] = {.lex_state = 0}, - [1005] = {.lex_state = 146}, + [1005] = {.lex_state = 144}, [1006] = {.lex_state = 0}, [1007] = {.lex_state = 0}, [1008] = {.lex_state = 0}, @@ -5784,10 +5974,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1015] = {.lex_state = 0}, [1016] = {.lex_state = 0}, [1017] = {.lex_state = 0}, - [1018] = {.lex_state = 146}, + [1018] = {.lex_state = 0}, [1019] = {.lex_state = 0}, [1020] = {.lex_state = 0}, - [1021] = {.lex_state = 0}, + [1021] = {.lex_state = 144}, [1022] = {.lex_state = 0}, [1023] = {.lex_state = 0}, [1024] = {.lex_state = 0}, @@ -5799,24 +5989,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1030] = {.lex_state = 0}, [1031] = {.lex_state = 0}, [1032] = {.lex_state = 0}, - [1033] = {.lex_state = 0}, + [1033] = {.lex_state = 144}, [1034] = {.lex_state = 0}, [1035] = {.lex_state = 0}, [1036] = {.lex_state = 0}, [1037] = {.lex_state = 0}, [1038] = {.lex_state = 0}, - [1039] = {.lex_state = 0}, + [1039] = {.lex_state = 144}, [1040] = {.lex_state = 0}, [1041] = {.lex_state = 0}, [1042] = {.lex_state = 0}, [1043] = {.lex_state = 0}, - [1044] = {.lex_state = 146}, + [1044] = {.lex_state = 0}, [1045] = {.lex_state = 0}, [1046] = {.lex_state = 0}, [1047] = {.lex_state = 0}, [1048] = {.lex_state = 0}, [1049] = {.lex_state = 0}, - [1050] = {.lex_state = 0}, + [1050] = {.lex_state = 144}, [1051] = {.lex_state = 0}, [1052] = {.lex_state = 0}, [1053] = {.lex_state = 0}, @@ -5825,16 +6015,37 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1056] = {.lex_state = 0}, [1057] = {.lex_state = 0}, [1058] = {.lex_state = 0}, - [1059] = {.lex_state = 0}, + [1059] = {.lex_state = 156}, [1060] = {.lex_state = 0}, [1061] = {.lex_state = 0}, - [1062] = {.lex_state = 158}, + [1062] = {.lex_state = 0}, [1063] = {.lex_state = 0}, [1064] = {.lex_state = 0}, - [1065] = {.lex_state = 146}, + [1065] = {.lex_state = 0}, [1066] = {.lex_state = 0}, [1067] = {.lex_state = 0}, [1068] = {.lex_state = 0}, + [1069] = {.lex_state = 0}, + [1070] = {.lex_state = 0}, + [1071] = {.lex_state = 0}, + [1072] = {.lex_state = 144}, + [1073] = {.lex_state = 0}, + [1074] = {.lex_state = 0}, + [1075] = {.lex_state = 0}, + [1076] = {.lex_state = 0}, + [1077] = {.lex_state = 0}, + [1078] = {.lex_state = 0}, + [1079] = {.lex_state = 0}, + [1080] = {.lex_state = 0}, + [1081] = {.lex_state = 0}, + [1082] = {.lex_state = 156}, + [1083] = {.lex_state = 144}, + [1084] = {.lex_state = 0}, + [1085] = {.lex_state = 0}, + [1086] = {.lex_state = 0}, + [1087] = {.lex_state = 0}, + [1088] = {.lex_state = 0}, + [1089] = {.lex_state = 0}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -5897,7 +6108,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(1), [anon_sym_let] = ACTIONS(1), [anon_sym_opaque] = ACTIONS(1), - [sym_string] = ACTIONS(1), + [anon_sym_DQUOTE] = ACTIONS(1), + [sym_escape_sequence] = ACTIONS(1), [sym_float] = ACTIONS(1), [sym__hex] = ACTIONS(1), [sym__decimal] = ACTIONS(1), @@ -5925,29 +6137,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__upname] = ACTIONS(1), }, [1] = { - [sym_source_file] = STATE(1040), - [sym__statement] = STATE(264), - [sym_target_group] = STATE(264), - [sym_import] = STATE(264), - [sym_public_constant] = STATE(264), - [sym_constant] = STATE(264), - [sym__constant] = STATE(651), - [sym_public_external_type] = STATE(264), - [sym_external_type] = STATE(264), - [sym__external_type] = STATE(650), - [sym_public_external_function] = STATE(264), - [sym_external_function] = STATE(264), - [sym__external_function] = STATE(649), - [sym_function] = STATE(264), - [sym__function] = STATE(647), - [sym_public_function] = STATE(264), - [sym_type_definition] = STATE(264), - [sym_public_type_definition] = STATE(264), - [sym_public_opaque_type_definition] = STATE(264), - [sym_type_alias] = STATE(264), - [sym_public_type_alias] = STATE(264), - [sym_public_opaque_type_alias] = STATE(264), - [aux_sym_source_file_repeat1] = STATE(264), + [sym_source_file] = STATE(1081), + [sym__statement] = STATE(278), + [sym_target_group] = STATE(278), + [sym_import] = STATE(278), + [sym_public_constant] = STATE(278), + [sym_constant] = STATE(278), + [sym__constant] = STATE(620), + [sym_public_external_type] = STATE(278), + [sym_external_type] = STATE(278), + [sym__external_type] = STATE(618), + [sym_public_external_function] = STATE(278), + [sym_external_function] = STATE(278), + [sym__external_function] = STATE(617), + [sym_function] = STATE(278), + [sym__function] = STATE(602), + [sym_public_function] = STATE(278), + [sym_type_definition] = STATE(278), + [sym_public_type_definition] = STATE(278), + [sym_public_opaque_type_definition] = STATE(278), + [sym_type_alias] = STATE(278), + [sym_public_type_alias] = STATE(278), + [sym_public_opaque_type_alias] = STATE(278), + [aux_sym_source_file_repeat1] = STATE(278), [ts_builtin_sym_end] = ACTIONS(7), [sym_module_comment] = ACTIONS(3), [sym_statement_comment] = ACTIONS(5), @@ -6014,146 +6226,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [61] = 4, + [61] = 35, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(29), 16, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym__decimal, - sym__name, - ACTIONS(27), 32, + ACTIONS(27), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_COMMA, + ACTIONS(29), 1, 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, - sym_string, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [121] = 34, - ACTIONS(3), 1, - sym_module_comment, ACTIONS(31), 1, - anon_sym_LBRACE, + anon_sym_RPAREN, ACTIONS(33), 1, - anon_sym_POUND, + anon_sym_LBRACK, ACTIONS(35), 1, - anon_sym_RPAREN, + anon_sym_LT_LT, ACTIONS(37), 1, - anon_sym_LBRACK, + anon_sym_DASH, ACTIONS(39), 1, - anon_sym_LT_LT, + anon_sym_fn, ACTIONS(41), 1, - anon_sym_DASH, + anon_sym_todo, ACTIONS(43), 1, - anon_sym_fn, + anon_sym_DOT_DOT, ACTIONS(45), 1, - anon_sym_todo, + anon_sym_case, ACTIONS(47), 1, - anon_sym_DOT_DOT, + anon_sym_let, ACTIONS(49), 1, - anon_sym_case, + anon_sym_assert, ACTIONS(51), 1, - anon_sym_let, + anon_sym_DQUOTE, ACTIONS(53), 1, - anon_sym_assert, - ACTIONS(59), 1, + sym_float, + ACTIONS(57), 1, sym__decimal, - ACTIONS(61), 1, + ACTIONS(59), 1, sym__discard_name, - ACTIONS(63), 1, + ACTIONS(61), 1, sym__name, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - STATE(251), 1, + STATE(254), 1, sym_identifier, - STATE(267), 1, - sym_anonymous_function, - STATE(268), 1, + STATE(273), 1, sym_tuple, - STATE(363), 1, + STATE(282), 1, + sym_anonymous_function, + STATE(389), 1, sym__expression, - STATE(788), 1, + STATE(799), 1, sym_argument, - STATE(898), 1, - sym__maybe_function_expression, - STATE(963), 1, + STATE(902), 1, sym_hole, - STATE(973), 1, + STATE(913), 1, + sym__maybe_function_expression, + STATE(1000), 1, sym_label, - STATE(1016), 1, + STATE(1037), 1, sym__maybe_tuple_expression, - STATE(1017), 1, + STATE(1038), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(55), 2, - sym_string, - sym_float, - STATE(243), 2, + STATE(246), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(269), 2, + STATE(272), 2, sym_record, sym_record_update, - ACTIONS(57), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(247), 5, + STATE(262), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(292), 8, + STATE(304), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -6161,85 +6318,87 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [241] = 34, + [184] = 35, ACTIONS(3), 1, sym_module_comment, - ACTIONS(31), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_POUND, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_LBRACK, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_LT_LT, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_DASH, - ACTIONS(43), 1, + ACTIONS(39), 1, anon_sym_fn, - ACTIONS(45), 1, + ACTIONS(41), 1, anon_sym_todo, - ACTIONS(49), 1, + ACTIONS(45), 1, anon_sym_case, - ACTIONS(51), 1, + ACTIONS(47), 1, anon_sym_let, - ACTIONS(53), 1, + ACTIONS(49), 1, anon_sym_assert, - ACTIONS(59), 1, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(57), 1, sym__decimal, - ACTIONS(61), 1, + ACTIONS(59), 1, sym__discard_name, - ACTIONS(63), 1, + ACTIONS(61), 1, sym__name, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(67), 1, + ACTIONS(65), 1, anon_sym_RPAREN, - ACTIONS(69), 1, + ACTIONS(67), 1, anon_sym_DOT_DOT, - STATE(251), 1, + STATE(254), 1, sym_identifier, - STATE(267), 1, - sym_anonymous_function, - STATE(268), 1, + STATE(273), 1, sym_tuple, - STATE(363), 1, + STATE(282), 1, + sym_anonymous_function, + STATE(389), 1, sym__expression, - STATE(815), 1, + STATE(848), 1, sym_argument, - STATE(898), 1, - sym__maybe_function_expression, - STATE(963), 1, + STATE(902), 1, sym_hole, - STATE(973), 1, + STATE(913), 1, + sym__maybe_function_expression, + STATE(1000), 1, sym_label, - STATE(1016), 1, + STATE(1037), 1, sym__maybe_tuple_expression, - STATE(1017), 1, + STATE(1038), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(55), 2, - sym_string, - sym_float, - STATE(243), 2, + STATE(246), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(269), 2, + STATE(272), 2, sym_record, sym_record_update, - ACTIONS(57), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(247), 5, + STATE(262), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(292), 8, + STATE(304), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -6247,141 +6406,87 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [361] = 4, + [307] = 35, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(73), 16, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym__decimal, - sym__name, - ACTIONS(71), 32, + ACTIONS(27), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_COMMA, + ACTIONS(29), 1, 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, - sym_string, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [421] = 34, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(31), 1, - anon_sym_LBRACE, ACTIONS(33), 1, - anon_sym_POUND, - ACTIONS(37), 1, anon_sym_LBRACK, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_LT_LT, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_DASH, - ACTIONS(43), 1, + ACTIONS(39), 1, anon_sym_fn, - ACTIONS(45), 1, + ACTIONS(41), 1, anon_sym_todo, - ACTIONS(49), 1, + ACTIONS(45), 1, anon_sym_case, - ACTIONS(51), 1, + ACTIONS(47), 1, anon_sym_let, - ACTIONS(53), 1, + ACTIONS(49), 1, anon_sym_assert, - ACTIONS(59), 1, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(57), 1, sym__decimal, - ACTIONS(61), 1, + ACTIONS(59), 1, sym__discard_name, - ACTIONS(63), 1, + ACTIONS(61), 1, sym__name, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(75), 1, + ACTIONS(69), 1, anon_sym_RPAREN, - ACTIONS(77), 1, + ACTIONS(71), 1, anon_sym_DOT_DOT, - STATE(251), 1, + STATE(254), 1, sym_identifier, - STATE(267), 1, - sym_anonymous_function, - STATE(268), 1, + STATE(273), 1, sym_tuple, - STATE(363), 1, + STATE(282), 1, + sym_anonymous_function, + STATE(389), 1, sym__expression, - STATE(786), 1, + STATE(807), 1, sym_argument, - STATE(898), 1, - sym__maybe_function_expression, - STATE(963), 1, + STATE(902), 1, sym_hole, - STATE(973), 1, + STATE(913), 1, + sym__maybe_function_expression, + STATE(1000), 1, sym_label, - STATE(1016), 1, + STATE(1037), 1, sym__maybe_tuple_expression, - STATE(1017), 1, + STATE(1038), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(55), 2, - sym_string, - sym_float, - STATE(243), 2, + STATE(246), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(269), 2, + STATE(272), 2, sym_record, sym_record_update, - ACTIONS(57), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(247), 5, + STATE(262), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(292), 8, + STATE(304), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -6389,83 +6494,85 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [541] = 33, + [430] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(31), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_POUND, - ACTIONS(35), 1, - anon_sym_RPAREN, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_LBRACK, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_LT_LT, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_DASH, - ACTIONS(43), 1, + ACTIONS(39), 1, anon_sym_fn, - ACTIONS(45), 1, + ACTIONS(41), 1, anon_sym_todo, - ACTIONS(49), 1, + ACTIONS(45), 1, anon_sym_case, - ACTIONS(51), 1, + ACTIONS(47), 1, anon_sym_let, - ACTIONS(53), 1, + ACTIONS(49), 1, anon_sym_assert, - ACTIONS(59), 1, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(57), 1, sym__decimal, - ACTIONS(61), 1, + ACTIONS(59), 1, sym__discard_name, - ACTIONS(63), 1, + ACTIONS(61), 1, sym__name, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - STATE(251), 1, + ACTIONS(73), 1, + anon_sym_RPAREN, + STATE(254), 1, sym_identifier, - STATE(267), 1, - sym_anonymous_function, - STATE(268), 1, + STATE(273), 1, sym_tuple, - STATE(363), 1, + STATE(282), 1, + sym_anonymous_function, + STATE(389), 1, sym__expression, - STATE(788), 1, - sym_argument, - STATE(898), 1, - sym__maybe_function_expression, - STATE(963), 1, + STATE(902), 1, sym_hole, - STATE(973), 1, + STATE(913), 1, + sym__maybe_function_expression, + STATE(981), 1, + sym_argument, + STATE(1000), 1, sym_label, - STATE(1016), 1, + STATE(1037), 1, sym__maybe_tuple_expression, - STATE(1017), 1, + STATE(1038), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(55), 2, - sym_string, - sym_float, - STATE(243), 2, + STATE(246), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(269), 2, + STATE(272), 2, sym_record, sym_record_update, - ACTIONS(57), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(247), 5, + STATE(262), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(292), 8, + STATE(304), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -6473,83 +6580,85 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [658] = 33, + [550] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(31), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_POUND, - ACTIONS(37), 1, + ACTIONS(31), 1, + anon_sym_RPAREN, + ACTIONS(33), 1, anon_sym_LBRACK, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_LT_LT, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_DASH, - ACTIONS(43), 1, + ACTIONS(39), 1, anon_sym_fn, - ACTIONS(45), 1, + ACTIONS(41), 1, anon_sym_todo, - ACTIONS(49), 1, + ACTIONS(45), 1, anon_sym_case, - ACTIONS(51), 1, + ACTIONS(47), 1, anon_sym_let, - ACTIONS(53), 1, + ACTIONS(49), 1, anon_sym_assert, - ACTIONS(59), 1, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(57), 1, sym__decimal, - ACTIONS(61), 1, + ACTIONS(59), 1, sym__discard_name, - ACTIONS(63), 1, + ACTIONS(61), 1, sym__name, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(79), 1, - anon_sym_RPAREN, - STATE(251), 1, + STATE(254), 1, sym_identifier, - STATE(267), 1, - sym_anonymous_function, - STATE(268), 1, + STATE(273), 1, sym_tuple, - STATE(363), 1, + STATE(282), 1, + sym_anonymous_function, + STATE(389), 1, sym__expression, - STATE(898), 1, - sym__maybe_function_expression, - STATE(951), 1, + STATE(799), 1, sym_argument, - STATE(963), 1, + STATE(902), 1, sym_hole, - STATE(973), 1, + STATE(913), 1, + sym__maybe_function_expression, + STATE(1000), 1, sym_label, - STATE(1016), 1, + STATE(1037), 1, sym__maybe_tuple_expression, - STATE(1017), 1, + STATE(1038), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(55), 2, - sym_string, - sym_float, - STATE(243), 2, + STATE(246), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(269), 2, + STATE(272), 2, sym_record, sym_record_update, - ACTIONS(57), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(247), 5, + STATE(262), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(292), 8, + STATE(304), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -6557,83 +6666,85 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [775] = 33, + [670] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(31), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_POUND, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_LBRACK, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_LT_LT, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_DASH, - ACTIONS(43), 1, + ACTIONS(39), 1, anon_sym_fn, - ACTIONS(45), 1, + ACTIONS(41), 1, anon_sym_todo, - ACTIONS(49), 1, + ACTIONS(45), 1, anon_sym_case, - ACTIONS(51), 1, + ACTIONS(47), 1, anon_sym_let, - ACTIONS(53), 1, + ACTIONS(49), 1, anon_sym_assert, - ACTIONS(59), 1, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(57), 1, sym__decimal, - ACTIONS(61), 1, + ACTIONS(59), 1, sym__discard_name, - ACTIONS(63), 1, + ACTIONS(61), 1, sym__name, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(81), 1, + ACTIONS(75), 1, anon_sym_RPAREN, - STATE(251), 1, + STATE(254), 1, sym_identifier, - STATE(267), 1, - sym_anonymous_function, - STATE(268), 1, + STATE(273), 1, sym_tuple, - STATE(363), 1, + STATE(282), 1, + sym_anonymous_function, + STATE(389), 1, sym__expression, - STATE(898), 1, + STATE(902), 1, + sym_hole, + STATE(913), 1, sym__maybe_function_expression, - STATE(951), 1, + STATE(981), 1, sym_argument, - STATE(963), 1, - sym_hole, - STATE(973), 1, + STATE(1000), 1, sym_label, - STATE(1016), 1, + STATE(1037), 1, sym__maybe_tuple_expression, - STATE(1017), 1, + STATE(1038), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(55), 2, - sym_string, - sym_float, - STATE(243), 2, + STATE(246), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(269), 2, + STATE(272), 2, sym_record, sym_record_update, - ACTIONS(57), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(247), 5, + STATE(262), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(292), 8, + STATE(304), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -6641,102 +6752,15 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [892] = 33, + [790] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(31), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_POUND, - ACTIONS(37), 1, - anon_sym_LBRACK, - ACTIONS(39), 1, - anon_sym_LT_LT, - ACTIONS(41), 1, - anon_sym_DASH, - ACTIONS(43), 1, - anon_sym_fn, - ACTIONS(45), 1, - anon_sym_todo, - ACTIONS(49), 1, - anon_sym_case, - ACTIONS(51), 1, - anon_sym_let, - ACTIONS(53), 1, - anon_sym_assert, - ACTIONS(59), 1, - sym__decimal, - ACTIONS(61), 1, - sym__discard_name, - ACTIONS(63), 1, - sym__name, - ACTIONS(65), 1, - sym__upname, - ACTIONS(75), 1, - anon_sym_RPAREN, - STATE(251), 1, - sym_identifier, - STATE(267), 1, - sym_anonymous_function, - STATE(268), 1, - sym_tuple, - STATE(363), 1, - sym__expression, - STATE(786), 1, - sym_argument, - STATE(898), 1, - sym__maybe_function_expression, - STATE(963), 1, - sym_hole, - STATE(973), 1, - sym_label, - STATE(1016), 1, - sym__maybe_tuple_expression, - STATE(1017), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(55), 2, - sym_string, - sym_float, - STATE(243), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(269), 2, - sym_record, - sym_record_update, - ACTIONS(57), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(247), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(292), 8, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_integer, - [1009] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(87), 1, - anon_sym_LPAREN, - STATE(68), 1, - sym_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(85), 16, + ACTIONS(79), 16, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -6753,13 +6777,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_assert, sym__decimal, sym__name, - ACTIONS(83), 29, + ACTIONS(77), 32, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, anon_sym_COMMA, anon_sym_POUND, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_COLON, @@ -6777,88 +6804,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [1072] = 33, + [850] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(31), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_POUND, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_LBRACK, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_LT_LT, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_DASH, - ACTIONS(43), 1, + ACTIONS(39), 1, anon_sym_fn, - ACTIONS(45), 1, + ACTIONS(41), 1, anon_sym_todo, - ACTIONS(49), 1, + ACTIONS(45), 1, anon_sym_case, - ACTIONS(51), 1, + ACTIONS(47), 1, anon_sym_let, - ACTIONS(53), 1, + ACTIONS(49), 1, anon_sym_assert, - ACTIONS(59), 1, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(57), 1, sym__decimal, - ACTIONS(61), 1, + ACTIONS(59), 1, sym__discard_name, - ACTIONS(63), 1, + ACTIONS(61), 1, sym__name, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(67), 1, + ACTIONS(69), 1, anon_sym_RPAREN, - STATE(251), 1, + STATE(254), 1, sym_identifier, - STATE(267), 1, - sym_anonymous_function, - STATE(268), 1, + STATE(273), 1, sym_tuple, - STATE(363), 1, + STATE(282), 1, + sym_anonymous_function, + STATE(389), 1, sym__expression, - STATE(815), 1, + STATE(807), 1, sym_argument, - STATE(898), 1, - sym__maybe_function_expression, - STATE(963), 1, + STATE(902), 1, sym_hole, - STATE(973), 1, + STATE(913), 1, + sym__maybe_function_expression, + STATE(1000), 1, sym_label, - STATE(1016), 1, + STATE(1037), 1, sym__maybe_tuple_expression, - STATE(1017), 1, + STATE(1038), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(55), 2, - sym_string, - sym_float, - STATE(243), 2, + STATE(246), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(269), 2, + STATE(272), 2, sym_record, sym_record_update, - ACTIONS(57), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(247), 5, + STATE(262), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(292), 8, + STATE(304), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -6866,83 +6894,85 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [1189] = 33, + [970] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(31), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_POUND, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_LBRACK, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_LT_LT, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_DASH, - ACTIONS(43), 1, + ACTIONS(39), 1, anon_sym_fn, - ACTIONS(45), 1, + ACTIONS(41), 1, anon_sym_todo, - ACTIONS(49), 1, + ACTIONS(45), 1, anon_sym_case, - ACTIONS(51), 1, + ACTIONS(47), 1, anon_sym_let, - ACTIONS(53), 1, + ACTIONS(49), 1, anon_sym_assert, - ACTIONS(59), 1, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(57), 1, sym__decimal, - ACTIONS(61), 1, + ACTIONS(59), 1, sym__discard_name, - ACTIONS(63), 1, + ACTIONS(61), 1, sym__name, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(89), 1, + ACTIONS(81), 1, anon_sym_RPAREN, - STATE(251), 1, + STATE(254), 1, sym_identifier, - STATE(267), 1, - sym_anonymous_function, - STATE(268), 1, + STATE(273), 1, sym_tuple, - STATE(363), 1, + STATE(282), 1, + sym_anonymous_function, + STATE(389), 1, sym__expression, - STATE(898), 1, + STATE(902), 1, + sym_hole, + STATE(913), 1, sym__maybe_function_expression, - STATE(951), 1, + STATE(981), 1, sym_argument, - STATE(963), 1, - sym_hole, - STATE(973), 1, + STATE(1000), 1, sym_label, - STATE(1016), 1, + STATE(1037), 1, sym__maybe_tuple_expression, - STATE(1017), 1, + STATE(1038), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(55), 2, - sym_string, - sym_float, - STATE(243), 2, + STATE(246), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(269), 2, + STATE(272), 2, sym_record, sym_record_update, - ACTIONS(57), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(247), 5, + STATE(262), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(292), 8, + STATE(304), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -6950,83 +6980,85 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [1306] = 33, + [1090] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(31), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_POUND, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_LBRACK, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_LT_LT, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_DASH, - ACTIONS(43), 1, + ACTIONS(39), 1, anon_sym_fn, - ACTIONS(45), 1, + ACTIONS(41), 1, anon_sym_todo, - ACTIONS(49), 1, + ACTIONS(45), 1, anon_sym_case, - ACTIONS(51), 1, + ACTIONS(47), 1, anon_sym_let, - ACTIONS(53), 1, + ACTIONS(49), 1, anon_sym_assert, - ACTIONS(59), 1, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(57), 1, sym__decimal, - ACTIONS(61), 1, + ACTIONS(59), 1, sym__discard_name, - ACTIONS(63), 1, + ACTIONS(61), 1, sym__name, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(91), 1, + ACTIONS(83), 1, anon_sym_RPAREN, - STATE(251), 1, + STATE(254), 1, sym_identifier, - STATE(267), 1, - sym_anonymous_function, - STATE(268), 1, + STATE(273), 1, sym_tuple, - STATE(363), 1, + STATE(282), 1, + sym_anonymous_function, + STATE(389), 1, sym__expression, - STATE(898), 1, + STATE(902), 1, + sym_hole, + STATE(913), 1, sym__maybe_function_expression, - STATE(951), 1, + STATE(981), 1, sym_argument, - STATE(963), 1, - sym_hole, - STATE(973), 1, + STATE(1000), 1, sym_label, - STATE(1016), 1, + STATE(1037), 1, sym__maybe_tuple_expression, - STATE(1017), 1, + STATE(1038), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(55), 2, - sym_string, - sym_float, - STATE(243), 2, + STATE(246), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(269), 2, + STATE(272), 2, sym_record, sym_record_update, - ACTIONS(57), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(247), 5, + STATE(262), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(292), 8, + STATE(304), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -7034,83 +7066,85 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [1423] = 33, + [1210] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(31), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_POUND, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_LBRACK, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_LT_LT, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_DASH, - ACTIONS(43), 1, + ACTIONS(39), 1, anon_sym_fn, - ACTIONS(45), 1, + ACTIONS(41), 1, anon_sym_todo, - ACTIONS(49), 1, + ACTIONS(45), 1, anon_sym_case, - ACTIONS(51), 1, + ACTIONS(47), 1, anon_sym_let, - ACTIONS(53), 1, + ACTIONS(49), 1, anon_sym_assert, - ACTIONS(59), 1, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(57), 1, sym__decimal, - ACTIONS(61), 1, + ACTIONS(59), 1, sym__discard_name, - ACTIONS(63), 1, + ACTIONS(61), 1, sym__name, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(93), 1, + ACTIONS(85), 1, anon_sym_RPAREN, - STATE(251), 1, + STATE(254), 1, sym_identifier, - STATE(267), 1, - sym_anonymous_function, - STATE(268), 1, + STATE(273), 1, sym_tuple, - STATE(363), 1, + STATE(282), 1, + sym_anonymous_function, + STATE(389), 1, sym__expression, - STATE(898), 1, + STATE(902), 1, + sym_hole, + STATE(913), 1, sym__maybe_function_expression, - STATE(951), 1, + STATE(981), 1, sym_argument, - STATE(963), 1, - sym_hole, - STATE(973), 1, + STATE(1000), 1, sym_label, - STATE(1016), 1, + STATE(1037), 1, sym__maybe_tuple_expression, - STATE(1017), 1, + STATE(1038), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(55), 2, - sym_string, - sym_float, - STATE(243), 2, + STATE(246), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(269), 2, + STATE(272), 2, sym_record, sym_record_update, - ACTIONS(57), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(247), 5, + STATE(262), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(292), 8, + STATE(304), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -7118,83 +7152,141 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [1540] = 33, + [1330] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(31), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(89), 16, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_fn, + anon_sym_try, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + sym__decimal, + sym__name, + ACTIONS(87), 32, anon_sym_LBRACE, - ACTIONS(33), 1, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_COMMA, anon_sym_POUND, - ACTIONS(37), 1, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - ACTIONS(39), 1, + anon_sym_RBRACK, anon_sym_LT_LT, - ACTIONS(41), 1, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [1390] = 34, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(27), 1, + anon_sym_LBRACE, + ACTIONS(29), 1, + anon_sym_POUND, + ACTIONS(33), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, + anon_sym_LT_LT, + ACTIONS(37), 1, anon_sym_DASH, - ACTIONS(43), 1, + ACTIONS(39), 1, anon_sym_fn, - ACTIONS(45), 1, + ACTIONS(41), 1, anon_sym_todo, - ACTIONS(49), 1, + ACTIONS(45), 1, anon_sym_case, - ACTIONS(51), 1, + ACTIONS(47), 1, anon_sym_let, - ACTIONS(53), 1, + ACTIONS(49), 1, anon_sym_assert, - ACTIONS(59), 1, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(57), 1, sym__decimal, - ACTIONS(61), 1, + ACTIONS(59), 1, sym__discard_name, - ACTIONS(63), 1, + ACTIONS(61), 1, sym__name, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(95), 1, + ACTIONS(91), 1, anon_sym_RPAREN, - STATE(251), 1, + STATE(254), 1, sym_identifier, - STATE(267), 1, - sym_anonymous_function, - STATE(268), 1, + STATE(273), 1, sym_tuple, - STATE(363), 1, + STATE(282), 1, + sym_anonymous_function, + STATE(389), 1, sym__expression, - STATE(898), 1, + STATE(902), 1, + sym_hole, + STATE(913), 1, sym__maybe_function_expression, - STATE(951), 1, + STATE(981), 1, sym_argument, - STATE(963), 1, - sym_hole, - STATE(973), 1, + STATE(1000), 1, sym_label, - STATE(1016), 1, + STATE(1037), 1, sym__maybe_tuple_expression, - STATE(1017), 1, + STATE(1038), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(55), 2, - sym_string, - sym_float, - STATE(243), 2, + STATE(246), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(269), 2, + STATE(272), 2, sym_record, sym_record_update, - ACTIONS(57), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(247), 5, + STATE(262), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(292), 8, + STATE(304), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -7202,137 +7294,169 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [1657] = 6, + [1510] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(99), 1, - anon_sym_DOT, - ACTIONS(104), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(102), 16, - anon_sym_SLASH, + ACTIONS(27), 1, + anon_sym_LBRACE, + ACTIONS(29), 1, + anon_sym_POUND, + ACTIONS(33), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, + anon_sym_LT_LT, + ACTIONS(37), 1, anon_sym_DASH, + ACTIONS(39), 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(41), 1, anon_sym_todo, + ACTIONS(45), 1, anon_sym_case, + ACTIONS(47), 1, anon_sym_let, + ACTIONS(49), 1, anon_sym_assert, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(57), 1, sym__decimal, + ACTIONS(59), 1, + sym__discard_name, + ACTIONS(61), 1, sym__name, - ACTIONS(97), 28, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - sym_string, - sym_float, + ACTIONS(63), 1, + sym__upname, + ACTIONS(65), 1, + anon_sym_RPAREN, + STATE(254), 1, + sym_identifier, + STATE(273), 1, + sym_tuple, + STATE(282), 1, + sym_anonymous_function, + STATE(389), 1, + sym__expression, + STATE(848), 1, + sym_argument, + STATE(902), 1, + sym_hole, + STATE(913), 1, + sym__maybe_function_expression, + STATE(1000), 1, + sym_label, + STATE(1037), 1, + sym__maybe_tuple_expression, + STATE(1038), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(246), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(272), 2, + sym_record, + sym_record_update, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [1719] = 32, + STATE(262), 5, + sym_expression_group, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(304), 9, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_list, + sym__expression_bit_string, + sym_let, + sym_assert, + sym_string, + sym_integer, + [1630] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(106), 1, + ACTIONS(93), 1, anon_sym_LBRACE, - ACTIONS(108), 1, + ACTIONS(95), 1, anon_sym_RBRACE, - ACTIONS(110), 1, + ACTIONS(97), 1, anon_sym_POUND, - ACTIONS(112), 1, + ACTIONS(99), 1, anon_sym_LBRACK, - ACTIONS(114), 1, + ACTIONS(101), 1, anon_sym_LT_LT, - ACTIONS(116), 1, + ACTIONS(103), 1, anon_sym_DASH, - ACTIONS(118), 1, + ACTIONS(105), 1, anon_sym_fn, - ACTIONS(120), 1, + ACTIONS(107), 1, anon_sym_try, - ACTIONS(122), 1, + ACTIONS(109), 1, anon_sym_todo, - ACTIONS(124), 1, + ACTIONS(111), 1, anon_sym_case, - ACTIONS(126), 1, + ACTIONS(113), 1, anon_sym_let, - ACTIONS(128), 1, + ACTIONS(115), 1, anon_sym_assert, - ACTIONS(134), 1, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(119), 1, + sym_float, + ACTIONS(123), 1, sym__decimal, - ACTIONS(136), 1, + ACTIONS(125), 1, sym__name, - ACTIONS(138), 1, + ACTIONS(127), 1, sym__upname, - STATE(39), 1, + STATE(19), 1, aux_sym__expression_seq, - STATE(52), 1, - sym_anonymous_function, - STATE(56), 1, + STATE(60), 1, sym_tuple, - STATE(95), 1, + STATE(62), 1, + sym_anonymous_function, + STATE(139), 1, sym_identifier, - STATE(167), 1, + STATE(180), 1, sym__expression, - STATE(427), 1, + STATE(433), 1, sym_try, - STATE(889), 1, + STATE(936), 1, sym__maybe_function_expression, - STATE(1038), 1, + STATE(1060), 1, sym__maybe_tuple_expression, - STATE(1050), 1, + STATE(1062), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(130), 2, - sym_string, - sym_float, - STATE(12), 2, + STATE(21), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(58), 2, + STATE(64), 2, sym_record, sym_record_update, - ACTIONS(132), 3, + ACTIONS(121), 3, sym__hex, sym__octal, sym__binary, - STATE(18), 5, + STATE(55), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(165), 8, + STATE(181), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -7340,81 +7464,83 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [1833] = 32, + [1747] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(106), 1, + ACTIONS(93), 1, anon_sym_LBRACE, - ACTIONS(110), 1, + ACTIONS(97), 1, anon_sym_POUND, - ACTIONS(112), 1, + ACTIONS(99), 1, anon_sym_LBRACK, - ACTIONS(114), 1, + ACTIONS(101), 1, anon_sym_LT_LT, - ACTIONS(116), 1, + ACTIONS(103), 1, anon_sym_DASH, - ACTIONS(118), 1, + ACTIONS(105), 1, anon_sym_fn, - ACTIONS(120), 1, + ACTIONS(107), 1, anon_sym_try, - ACTIONS(122), 1, + ACTIONS(109), 1, anon_sym_todo, - ACTIONS(124), 1, + ACTIONS(111), 1, anon_sym_case, - ACTIONS(126), 1, + ACTIONS(113), 1, anon_sym_let, - ACTIONS(128), 1, + ACTIONS(115), 1, anon_sym_assert, - ACTIONS(134), 1, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(119), 1, + sym_float, + ACTIONS(123), 1, sym__decimal, - ACTIONS(136), 1, + ACTIONS(125), 1, sym__name, - ACTIONS(138), 1, + ACTIONS(127), 1, sym__upname, - ACTIONS(140), 1, + ACTIONS(129), 1, anon_sym_RBRACE, - STATE(39), 1, + STATE(19), 1, aux_sym__expression_seq, - STATE(52), 1, - sym_anonymous_function, - STATE(56), 1, + STATE(60), 1, sym_tuple, - STATE(95), 1, + STATE(62), 1, + sym_anonymous_function, + STATE(139), 1, sym_identifier, - STATE(167), 1, + STATE(180), 1, sym__expression, - STATE(427), 1, + STATE(433), 1, sym_try, - STATE(889), 1, + STATE(936), 1, sym__maybe_function_expression, - STATE(1038), 1, + STATE(1060), 1, sym__maybe_tuple_expression, - STATE(1050), 1, + STATE(1062), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(130), 2, - sym_string, - sym_float, - STATE(12), 2, + STATE(21), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(58), 2, + STATE(64), 2, sym_record, sym_record_update, - ACTIONS(132), 3, + ACTIONS(121), 3, sym__hex, sym__octal, sym__binary, - STATE(18), 5, + STATE(55), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(165), 8, + STATE(181), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -7422,189 +7548,167 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [1947] = 4, + [1864] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(144), 16, - anon_sym_SLASH, + ACTIONS(131), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + anon_sym_RBRACE, + ACTIONS(136), 1, + anon_sym_POUND, + ACTIONS(139), 1, + anon_sym_LBRACK, + ACTIONS(142), 1, + anon_sym_LT_LT, + ACTIONS(145), 1, anon_sym_DASH, + ACTIONS(148), 1, anon_sym_fn, + ACTIONS(151), 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(154), 1, anon_sym_todo, + ACTIONS(157), 1, anon_sym_case, + ACTIONS(160), 1, anon_sym_let, + ACTIONS(163), 1, anon_sym_assert, + ACTIONS(166), 1, + anon_sym_DQUOTE, + ACTIONS(169), 1, + sym_float, + ACTIONS(175), 1, sym__decimal, + ACTIONS(178), 1, sym__name, - ACTIONS(142), 30, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_POUND, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - sym_string, - sym_float, - sym__hex, - sym__octal, - sym__binary, + ACTIONS(181), 1, sym__upname, - [2005] = 4, - ACTIONS(3), 1, - sym_module_comment, + STATE(19), 1, + aux_sym__expression_seq, + STATE(60), 1, + sym_tuple, + STATE(62), 1, + sym_anonymous_function, + STATE(139), 1, + sym_identifier, + STATE(180), 1, + sym__expression, + STATE(433), 1, + sym_try, + STATE(936), 1, + sym__maybe_function_expression, + STATE(1060), 1, + sym__maybe_tuple_expression, + STATE(1062), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(148), 16, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym__decimal, - sym__name, - ACTIONS(146), 30, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_POUND, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - sym_string, - sym_float, + STATE(21), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(64), 2, + sym_record, + sym_record_update, + ACTIONS(172), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [2063] = 32, + STATE(55), 5, + sym_expression_group, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(181), 9, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_list, + sym__expression_bit_string, + sym_let, + sym_assert, + sym_string, + sym_integer, + [1981] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(31), 1, + ACTIONS(93), 1, anon_sym_LBRACE, - ACTIONS(33), 1, + ACTIONS(97), 1, anon_sym_POUND, - ACTIONS(37), 1, + ACTIONS(99), 1, anon_sym_LBRACK, - ACTIONS(39), 1, + ACTIONS(101), 1, anon_sym_LT_LT, - ACTIONS(41), 1, + ACTIONS(103), 1, anon_sym_DASH, - ACTIONS(43), 1, + ACTIONS(105), 1, anon_sym_fn, - ACTIONS(45), 1, + ACTIONS(107), 1, + anon_sym_try, + ACTIONS(109), 1, anon_sym_todo, - ACTIONS(49), 1, + ACTIONS(111), 1, anon_sym_case, - ACTIONS(51), 1, + ACTIONS(113), 1, anon_sym_let, - ACTIONS(53), 1, + ACTIONS(115), 1, anon_sym_assert, - ACTIONS(59), 1, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(119), 1, + sym_float, + ACTIONS(123), 1, sym__decimal, - ACTIONS(61), 1, - sym__discard_name, - ACTIONS(63), 1, + ACTIONS(125), 1, sym__name, - ACTIONS(65), 1, + ACTIONS(127), 1, sym__upname, - STATE(251), 1, - sym_identifier, - STATE(267), 1, - sym_anonymous_function, - STATE(268), 1, + ACTIONS(184), 1, + anon_sym_RBRACE, + STATE(19), 1, + aux_sym__expression_seq, + STATE(60), 1, sym_tuple, - STATE(363), 1, + STATE(62), 1, + sym_anonymous_function, + STATE(139), 1, + sym_identifier, + STATE(180), 1, sym__expression, - STATE(898), 1, + STATE(433), 1, + sym_try, + STATE(936), 1, sym__maybe_function_expression, - STATE(951), 1, - sym_argument, - STATE(963), 1, - sym_hole, - STATE(973), 1, - sym_label, - STATE(1016), 1, + STATE(1060), 1, sym__maybe_tuple_expression, - STATE(1017), 1, + STATE(1062), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(55), 2, - sym_string, - sym_float, - STATE(243), 2, + STATE(21), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(269), 2, + STATE(64), 2, sym_record, sym_record_update, - ACTIONS(57), 3, + ACTIONS(121), 3, sym__hex, sym__octal, sym__binary, - STATE(247), 5, + STATE(55), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(292), 8, + STATE(181), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -7612,14 +7716,19 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [2177] = 4, + [2098] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(190), 1, + anon_sym_LPAREN, + STATE(65), 1, + sym_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(152), 16, + ACTIONS(188), 16, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -7636,13 +7745,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_assert, sym__decimal, sym__name, - ACTIONS(150), 30, + ACTIONS(186), 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, @@ -7661,86 +7769,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [2235] = 32, + [2161] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(106), 1, + ACTIONS(93), 1, anon_sym_LBRACE, - ACTIONS(110), 1, + ACTIONS(97), 1, anon_sym_POUND, - ACTIONS(112), 1, + ACTIONS(99), 1, anon_sym_LBRACK, - ACTIONS(114), 1, + ACTIONS(101), 1, anon_sym_LT_LT, - ACTIONS(116), 1, + ACTIONS(103), 1, anon_sym_DASH, - ACTIONS(118), 1, + ACTIONS(105), 1, anon_sym_fn, - ACTIONS(120), 1, + ACTIONS(107), 1, anon_sym_try, - ACTIONS(122), 1, + ACTIONS(109), 1, anon_sym_todo, - ACTIONS(124), 1, + ACTIONS(111), 1, anon_sym_case, - ACTIONS(126), 1, + ACTIONS(113), 1, anon_sym_let, - ACTIONS(128), 1, + ACTIONS(115), 1, anon_sym_assert, - ACTIONS(134), 1, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(119), 1, + sym_float, + ACTIONS(123), 1, sym__decimal, - ACTIONS(136), 1, + ACTIONS(125), 1, sym__name, - ACTIONS(138), 1, + ACTIONS(127), 1, sym__upname, - ACTIONS(154), 1, + ACTIONS(192), 1, anon_sym_RBRACE, - STATE(39), 1, + STATE(19), 1, aux_sym__expression_seq, - STATE(52), 1, - sym_anonymous_function, - STATE(56), 1, + STATE(60), 1, sym_tuple, - STATE(95), 1, + STATE(62), 1, + sym_anonymous_function, + STATE(139), 1, sym_identifier, - STATE(167), 1, + STATE(180), 1, sym__expression, - STATE(427), 1, + STATE(433), 1, sym_try, - STATE(889), 1, + STATE(936), 1, sym__maybe_function_expression, - STATE(1038), 1, + STATE(1060), 1, sym__maybe_tuple_expression, - STATE(1050), 1, + STATE(1062), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(130), 2, - sym_string, - sym_float, - STATE(12), 2, + STATE(21), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(58), 2, + STATE(64), 2, sym_record, sym_record_update, - ACTIONS(132), 3, + ACTIONS(121), 3, sym__hex, sym__octal, sym__binary, - STATE(18), 5, + STATE(55), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(165), 8, + STATE(181), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -7748,81 +7857,83 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [2349] = 32, + [2278] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(106), 1, + ACTIONS(93), 1, anon_sym_LBRACE, - ACTIONS(110), 1, + ACTIONS(97), 1, anon_sym_POUND, - ACTIONS(112), 1, + ACTIONS(99), 1, anon_sym_LBRACK, - ACTIONS(114), 1, + ACTIONS(101), 1, anon_sym_LT_LT, - ACTIONS(116), 1, + ACTIONS(103), 1, anon_sym_DASH, - ACTIONS(118), 1, + ACTIONS(105), 1, anon_sym_fn, - ACTIONS(120), 1, + ACTIONS(107), 1, anon_sym_try, - ACTIONS(122), 1, + ACTIONS(109), 1, anon_sym_todo, - ACTIONS(124), 1, + ACTIONS(111), 1, anon_sym_case, - ACTIONS(126), 1, + ACTIONS(113), 1, anon_sym_let, - ACTIONS(128), 1, + ACTIONS(115), 1, anon_sym_assert, - ACTIONS(134), 1, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(119), 1, + sym_float, + ACTIONS(123), 1, sym__decimal, - ACTIONS(136), 1, + ACTIONS(125), 1, sym__name, - ACTIONS(138), 1, + ACTIONS(127), 1, sym__upname, - ACTIONS(156), 1, + ACTIONS(194), 1, anon_sym_RBRACE, - STATE(39), 1, + STATE(19), 1, aux_sym__expression_seq, - STATE(52), 1, - sym_anonymous_function, - STATE(56), 1, + STATE(60), 1, sym_tuple, - STATE(95), 1, + STATE(62), 1, + sym_anonymous_function, + STATE(139), 1, sym_identifier, - STATE(167), 1, + STATE(180), 1, sym__expression, - STATE(427), 1, + STATE(433), 1, sym_try, - STATE(889), 1, + STATE(936), 1, sym__maybe_function_expression, - STATE(1038), 1, + STATE(1060), 1, sym__maybe_tuple_expression, - STATE(1050), 1, + STATE(1062), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(130), 2, - sym_string, - sym_float, - STATE(12), 2, + STATE(21), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(58), 2, + STATE(64), 2, sym_record, sym_record_update, - ACTIONS(132), 3, + ACTIONS(121), 3, sym__hex, sym__octal, sym__binary, - STATE(18), 5, + STATE(55), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(165), 8, + STATE(181), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -7830,81 +7941,83 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [2463] = 32, + [2395] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(106), 1, + ACTIONS(93), 1, anon_sym_LBRACE, - ACTIONS(110), 1, + ACTIONS(97), 1, anon_sym_POUND, - ACTIONS(112), 1, + ACTIONS(99), 1, anon_sym_LBRACK, - ACTIONS(114), 1, + ACTIONS(101), 1, anon_sym_LT_LT, - ACTIONS(116), 1, + ACTIONS(103), 1, anon_sym_DASH, - ACTIONS(118), 1, + ACTIONS(105), 1, anon_sym_fn, - ACTIONS(120), 1, + ACTIONS(107), 1, anon_sym_try, - ACTIONS(122), 1, + ACTIONS(109), 1, anon_sym_todo, - ACTIONS(124), 1, + ACTIONS(111), 1, anon_sym_case, - ACTIONS(126), 1, + ACTIONS(113), 1, anon_sym_let, - ACTIONS(128), 1, + ACTIONS(115), 1, anon_sym_assert, - ACTIONS(134), 1, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(119), 1, + sym_float, + ACTIONS(123), 1, sym__decimal, - ACTIONS(136), 1, + ACTIONS(125), 1, sym__name, - ACTIONS(138), 1, + ACTIONS(127), 1, sym__upname, - ACTIONS(158), 1, + ACTIONS(196), 1, anon_sym_RBRACE, - STATE(39), 1, + STATE(19), 1, aux_sym__expression_seq, - STATE(52), 1, - sym_anonymous_function, - STATE(56), 1, + STATE(60), 1, sym_tuple, - STATE(95), 1, + STATE(62), 1, + sym_anonymous_function, + STATE(139), 1, sym_identifier, - STATE(167), 1, + STATE(180), 1, sym__expression, - STATE(427), 1, + STATE(433), 1, sym_try, - STATE(889), 1, + STATE(936), 1, sym__maybe_function_expression, - STATE(1038), 1, + STATE(1060), 1, sym__maybe_tuple_expression, - STATE(1050), 1, + STATE(1062), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(130), 2, - sym_string, - sym_float, - STATE(12), 2, + STATE(21), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(58), 2, + STATE(64), 2, sym_record, sym_record_update, - ACTIONS(132), 3, + ACTIONS(121), 3, sym__hex, sym__octal, sym__binary, - STATE(18), 5, + STATE(55), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(165), 8, + STATE(181), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -7912,81 +8025,83 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [2577] = 32, + [2512] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(106), 1, + ACTIONS(93), 1, anon_sym_LBRACE, - ACTIONS(110), 1, + ACTIONS(97), 1, anon_sym_POUND, - ACTIONS(112), 1, + ACTIONS(99), 1, anon_sym_LBRACK, - ACTIONS(114), 1, + ACTIONS(101), 1, anon_sym_LT_LT, - ACTIONS(116), 1, + ACTIONS(103), 1, anon_sym_DASH, - ACTIONS(118), 1, + ACTIONS(105), 1, anon_sym_fn, - ACTIONS(120), 1, + ACTIONS(107), 1, anon_sym_try, - ACTIONS(122), 1, + ACTIONS(109), 1, anon_sym_todo, - ACTIONS(124), 1, + ACTIONS(111), 1, anon_sym_case, - ACTIONS(126), 1, + ACTIONS(113), 1, anon_sym_let, - ACTIONS(128), 1, + ACTIONS(115), 1, anon_sym_assert, - ACTIONS(134), 1, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(119), 1, + sym_float, + ACTIONS(123), 1, sym__decimal, - ACTIONS(136), 1, + ACTIONS(125), 1, sym__name, - ACTIONS(138), 1, + ACTIONS(127), 1, sym__upname, - ACTIONS(160), 1, + ACTIONS(198), 1, anon_sym_RBRACE, - STATE(39), 1, + STATE(19), 1, aux_sym__expression_seq, - STATE(52), 1, - sym_anonymous_function, - STATE(56), 1, + STATE(60), 1, sym_tuple, - STATE(95), 1, + STATE(62), 1, + sym_anonymous_function, + STATE(139), 1, sym_identifier, - STATE(167), 1, + STATE(180), 1, sym__expression, - STATE(427), 1, + STATE(433), 1, sym_try, - STATE(889), 1, + STATE(936), 1, sym__maybe_function_expression, - STATE(1038), 1, + STATE(1060), 1, sym__maybe_tuple_expression, - STATE(1050), 1, + STATE(1062), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(130), 2, - sym_string, - sym_float, - STATE(12), 2, + STATE(21), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(58), 2, + STATE(64), 2, sym_record, sym_record_update, - ACTIONS(132), 3, + ACTIONS(121), 3, sym__hex, sym__octal, sym__binary, - STATE(18), 5, + STATE(55), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(165), 8, + STATE(181), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -7994,81 +8109,83 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [2691] = 32, + [2629] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(106), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(110), 1, + ACTIONS(29), 1, anon_sym_POUND, - ACTIONS(112), 1, + ACTIONS(33), 1, anon_sym_LBRACK, - ACTIONS(114), 1, + ACTIONS(35), 1, anon_sym_LT_LT, - ACTIONS(116), 1, + ACTIONS(37), 1, anon_sym_DASH, - ACTIONS(118), 1, + ACTIONS(39), 1, anon_sym_fn, - ACTIONS(120), 1, - anon_sym_try, - ACTIONS(122), 1, + ACTIONS(41), 1, anon_sym_todo, - ACTIONS(124), 1, + ACTIONS(45), 1, anon_sym_case, - ACTIONS(126), 1, + ACTIONS(47), 1, anon_sym_let, - ACTIONS(128), 1, + ACTIONS(49), 1, anon_sym_assert, - ACTIONS(134), 1, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(57), 1, sym__decimal, - ACTIONS(136), 1, + ACTIONS(59), 1, + sym__discard_name, + ACTIONS(61), 1, sym__name, - ACTIONS(138), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(162), 1, - anon_sym_RBRACE, - STATE(39), 1, - aux_sym__expression_seq, - STATE(52), 1, - sym_anonymous_function, - STATE(56), 1, - sym_tuple, - STATE(95), 1, + STATE(254), 1, sym_identifier, - STATE(167), 1, + STATE(273), 1, + sym_tuple, + STATE(282), 1, + sym_anonymous_function, + STATE(389), 1, sym__expression, - STATE(427), 1, - sym_try, - STATE(889), 1, + STATE(902), 1, + sym_hole, + STATE(913), 1, sym__maybe_function_expression, - STATE(1038), 1, + STATE(981), 1, + sym_argument, + STATE(1000), 1, + sym_label, + STATE(1037), 1, sym__maybe_tuple_expression, - STATE(1050), 1, + STATE(1038), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(130), 2, - sym_string, - sym_float, - STATE(12), 2, + STATE(246), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(58), 2, + STATE(272), 2, sym_record, sym_record_update, - ACTIONS(132), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(18), 5, + STATE(262), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(165), 8, + STATE(304), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -8076,81 +8193,83 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [2805] = 32, + [2746] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(106), 1, + ACTIONS(93), 1, anon_sym_LBRACE, - ACTIONS(110), 1, + ACTIONS(97), 1, anon_sym_POUND, - ACTIONS(112), 1, + ACTIONS(99), 1, anon_sym_LBRACK, - ACTIONS(114), 1, + ACTIONS(101), 1, anon_sym_LT_LT, - ACTIONS(116), 1, + ACTIONS(103), 1, anon_sym_DASH, - ACTIONS(118), 1, + ACTIONS(105), 1, anon_sym_fn, - ACTIONS(120), 1, + ACTIONS(107), 1, anon_sym_try, - ACTIONS(122), 1, + ACTIONS(109), 1, anon_sym_todo, - ACTIONS(124), 1, + ACTIONS(111), 1, anon_sym_case, - ACTIONS(126), 1, + ACTIONS(113), 1, anon_sym_let, - ACTIONS(128), 1, + ACTIONS(115), 1, anon_sym_assert, - ACTIONS(134), 1, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(119), 1, + sym_float, + ACTIONS(123), 1, sym__decimal, - ACTIONS(136), 1, + ACTIONS(125), 1, sym__name, - ACTIONS(138), 1, + ACTIONS(127), 1, sym__upname, - ACTIONS(164), 1, + ACTIONS(200), 1, anon_sym_RBRACE, - STATE(39), 1, + STATE(19), 1, aux_sym__expression_seq, - STATE(52), 1, - sym_anonymous_function, - STATE(56), 1, + STATE(60), 1, sym_tuple, - STATE(95), 1, + STATE(62), 1, + sym_anonymous_function, + STATE(139), 1, sym_identifier, - STATE(167), 1, + STATE(180), 1, sym__expression, - STATE(427), 1, + STATE(433), 1, sym_try, - STATE(889), 1, + STATE(936), 1, sym__maybe_function_expression, - STATE(1038), 1, + STATE(1060), 1, sym__maybe_tuple_expression, - STATE(1050), 1, + STATE(1062), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(130), 2, - sym_string, - sym_float, - STATE(12), 2, + STATE(21), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(58), 2, + STATE(64), 2, sym_record, sym_record_update, - ACTIONS(132), 3, + ACTIONS(121), 3, sym__hex, sym__octal, sym__binary, - STATE(18), 5, + STATE(55), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(165), 8, + STATE(181), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -8158,243 +8277,335 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [2919] = 4, + [2863] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(168), 16, - anon_sym_SLASH, + ACTIONS(93), 1, + anon_sym_LBRACE, + ACTIONS(97), 1, + anon_sym_POUND, + ACTIONS(99), 1, + anon_sym_LBRACK, + ACTIONS(101), 1, + anon_sym_LT_LT, + ACTIONS(103), 1, anon_sym_DASH, + ACTIONS(105), 1, anon_sym_fn, + ACTIONS(107), 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(109), 1, anon_sym_todo, + ACTIONS(111), 1, anon_sym_case, + ACTIONS(113), 1, anon_sym_let, + ACTIONS(115), 1, anon_sym_assert, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(119), 1, + sym_float, + ACTIONS(123), 1, sym__decimal, + ACTIONS(125), 1, sym__name, - ACTIONS(166), 30, - anon_sym_LBRACE, + ACTIONS(127), 1, + sym__upname, + ACTIONS(202), 1, 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, - sym_string, - sym_float, + STATE(19), 1, + aux_sym__expression_seq, + STATE(60), 1, + sym_tuple, + STATE(62), 1, + sym_anonymous_function, + STATE(139), 1, + sym_identifier, + STATE(180), 1, + sym__expression, + STATE(433), 1, + sym_try, + STATE(936), 1, + sym__maybe_function_expression, + STATE(1060), 1, + sym__maybe_tuple_expression, + STATE(1062), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(21), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(64), 2, + sym_record, + sym_record_update, + ACTIONS(121), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [2977] = 4, + STATE(55), 5, + sym_expression_group, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(181), 9, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_list, + sym__expression_bit_string, + sym_let, + sym_assert, + sym_string, + sym_integer, + [2980] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(172), 16, - anon_sym_SLASH, + ACTIONS(93), 1, + anon_sym_LBRACE, + ACTIONS(97), 1, + anon_sym_POUND, + ACTIONS(99), 1, + anon_sym_LBRACK, + ACTIONS(101), 1, + anon_sym_LT_LT, + ACTIONS(103), 1, anon_sym_DASH, + ACTIONS(105), 1, anon_sym_fn, + ACTIONS(107), 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(109), 1, anon_sym_todo, + ACTIONS(111), 1, anon_sym_case, + ACTIONS(113), 1, anon_sym_let, + ACTIONS(115), 1, anon_sym_assert, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(119), 1, + sym_float, + ACTIONS(123), 1, sym__decimal, + ACTIONS(125), 1, sym__name, - ACTIONS(170), 30, - anon_sym_LBRACE, + ACTIONS(127), 1, + sym__upname, + ACTIONS(204), 1, 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, - sym_string, - sym_float, + STATE(19), 1, + aux_sym__expression_seq, + STATE(60), 1, + sym_tuple, + STATE(62), 1, + sym_anonymous_function, + STATE(139), 1, + sym_identifier, + STATE(180), 1, + sym__expression, + STATE(433), 1, + sym_try, + STATE(936), 1, + sym__maybe_function_expression, + STATE(1060), 1, + sym__maybe_tuple_expression, + STATE(1062), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(21), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(64), 2, + sym_record, + sym_record_update, + ACTIONS(121), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [3035] = 4, + STATE(55), 5, + sym_expression_group, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(181), 9, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_list, + sym__expression_bit_string, + sym_let, + sym_assert, + sym_string, + sym_integer, + [3097] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(176), 16, - anon_sym_SLASH, + ACTIONS(93), 1, + anon_sym_LBRACE, + ACTIONS(97), 1, + anon_sym_POUND, + ACTIONS(99), 1, + anon_sym_LBRACK, + ACTIONS(101), 1, + anon_sym_LT_LT, + ACTIONS(103), 1, anon_sym_DASH, + ACTIONS(105), 1, anon_sym_fn, + ACTIONS(107), 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(109), 1, anon_sym_todo, + ACTIONS(111), 1, anon_sym_case, + ACTIONS(113), 1, anon_sym_let, + ACTIONS(115), 1, anon_sym_assert, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(119), 1, + sym_float, + ACTIONS(123), 1, sym__decimal, + ACTIONS(125), 1, sym__name, - ACTIONS(174), 30, - anon_sym_LBRACE, + ACTIONS(127), 1, + sym__upname, + ACTIONS(206), 1, 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, - sym_string, - sym_float, + STATE(19), 1, + aux_sym__expression_seq, + STATE(60), 1, + sym_tuple, + STATE(62), 1, + sym_anonymous_function, + STATE(139), 1, + sym_identifier, + STATE(180), 1, + sym__expression, + STATE(433), 1, + sym_try, + STATE(936), 1, + sym__maybe_function_expression, + STATE(1060), 1, + sym__maybe_tuple_expression, + STATE(1062), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(21), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(64), 2, + sym_record, + sym_record_update, + ACTIONS(121), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [3093] = 32, + STATE(55), 5, + sym_expression_group, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(181), 9, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_list, + sym__expression_bit_string, + sym_let, + sym_assert, + sym_string, + sym_integer, + [3214] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(106), 1, + ACTIONS(93), 1, anon_sym_LBRACE, - ACTIONS(110), 1, + ACTIONS(97), 1, anon_sym_POUND, - ACTIONS(112), 1, + ACTIONS(99), 1, anon_sym_LBRACK, - ACTIONS(114), 1, + ACTIONS(101), 1, anon_sym_LT_LT, - ACTIONS(116), 1, + ACTIONS(103), 1, anon_sym_DASH, - ACTIONS(118), 1, + ACTIONS(105), 1, anon_sym_fn, - ACTIONS(120), 1, + ACTIONS(107), 1, anon_sym_try, - ACTIONS(122), 1, + ACTIONS(109), 1, anon_sym_todo, - ACTIONS(124), 1, + ACTIONS(111), 1, anon_sym_case, - ACTIONS(126), 1, + ACTIONS(113), 1, anon_sym_let, - ACTIONS(128), 1, + ACTIONS(115), 1, anon_sym_assert, - ACTIONS(134), 1, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(119), 1, + sym_float, + ACTIONS(123), 1, sym__decimal, - ACTIONS(136), 1, + ACTIONS(125), 1, sym__name, - ACTIONS(138), 1, + ACTIONS(127), 1, sym__upname, - ACTIONS(178), 1, + ACTIONS(208), 1, anon_sym_RBRACE, - STATE(39), 1, + STATE(19), 1, aux_sym__expression_seq, - STATE(52), 1, - sym_anonymous_function, - STATE(56), 1, + STATE(60), 1, sym_tuple, - STATE(95), 1, + STATE(62), 1, + sym_anonymous_function, + STATE(139), 1, sym_identifier, - STATE(167), 1, + STATE(180), 1, sym__expression, - STATE(427), 1, + STATE(433), 1, sym_try, - STATE(889), 1, + STATE(936), 1, sym__maybe_function_expression, - STATE(1038), 1, + STATE(1060), 1, sym__maybe_tuple_expression, - STATE(1050), 1, + STATE(1062), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(130), 2, - sym_string, - sym_float, - STATE(12), 2, + STATE(21), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(58), 2, + STATE(64), 2, sym_record, sym_record_update, - ACTIONS(132), 3, + ACTIONS(121), 3, sym__hex, sym__octal, sym__binary, - STATE(18), 5, + STATE(55), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(165), 8, + STATE(181), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -8402,176 +8613,99 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [3207] = 4, + [3331] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(182), 16, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym__decimal, - sym__name, - ACTIONS(180), 30, + ACTIONS(93), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_COMMA, + ACTIONS(97), 1, anon_sym_POUND, - anon_sym_LPAREN, + ACTIONS(99), 1, anon_sym_LBRACK, + ACTIONS(101), 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, - sym_string, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [3265] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(186), 16, - anon_sym_SLASH, + ACTIONS(103), 1, anon_sym_DASH, + ACTIONS(105), 1, anon_sym_fn, + ACTIONS(107), 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(109), 1, anon_sym_todo, + ACTIONS(111), 1, anon_sym_case, + ACTIONS(113), 1, anon_sym_let, + ACTIONS(115), 1, anon_sym_assert, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(119), 1, + sym_float, + ACTIONS(123), 1, sym__decimal, + ACTIONS(125), 1, sym__name, - ACTIONS(184), 30, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_POUND, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - sym_string, - sym_float, - sym__hex, - sym__octal, - sym__binary, + ACTIONS(127), 1, sym__upname, - [3323] = 4, - ACTIONS(3), 1, - sym_module_comment, + ACTIONS(210), 1, + anon_sym_RBRACE, + STATE(19), 1, + aux_sym__expression_seq, + STATE(60), 1, + sym_tuple, + STATE(62), 1, + sym_anonymous_function, + STATE(139), 1, + sym_identifier, + STATE(180), 1, + sym__expression, + STATE(433), 1, + sym_try, + STATE(936), 1, + sym__maybe_function_expression, + STATE(1060), 1, + sym__maybe_tuple_expression, + STATE(1062), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(190), 16, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym__decimal, - sym__name, - ACTIONS(188), 30, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_POUND, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - sym_string, - sym_float, + STATE(21), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(64), 2, + sym_record, + sym_record_update, + ACTIONS(121), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [3381] = 4, + STATE(55), 5, + sym_expression_group, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(181), 9, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_list, + sym__expression_bit_string, + sym_let, + sym_assert, + sym_string, + sym_integer, + [3448] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(194), 16, + ACTIONS(214), 16, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -8588,7 +8722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_assert, sym__decimal, sym__name, - ACTIONS(192), 30, + ACTIONS(212), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, @@ -8613,86 +8747,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [3439] = 32, + [3506] = 32, ACTIONS(3), 1, sym_module_comment, - ACTIONS(196), 1, + ACTIONS(93), 1, anon_sym_LBRACE, - ACTIONS(199), 1, - anon_sym_RBRACE, - ACTIONS(201), 1, + ACTIONS(97), 1, anon_sym_POUND, - ACTIONS(204), 1, + ACTIONS(99), 1, anon_sym_LBRACK, - ACTIONS(207), 1, + ACTIONS(101), 1, anon_sym_LT_LT, - ACTIONS(210), 1, + ACTIONS(103), 1, anon_sym_DASH, - ACTIONS(213), 1, + ACTIONS(105), 1, anon_sym_fn, - ACTIONS(216), 1, + ACTIONS(107), 1, anon_sym_try, - ACTIONS(219), 1, + ACTIONS(109), 1, anon_sym_todo, - ACTIONS(222), 1, + ACTIONS(111), 1, anon_sym_case, - ACTIONS(225), 1, + ACTIONS(113), 1, anon_sym_let, - ACTIONS(228), 1, + ACTIONS(115), 1, anon_sym_assert, - ACTIONS(237), 1, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(119), 1, + sym_float, + ACTIONS(123), 1, sym__decimal, - ACTIONS(240), 1, + ACTIONS(125), 1, sym__name, - ACTIONS(243), 1, + ACTIONS(127), 1, sym__upname, - STATE(39), 1, + STATE(32), 1, aux_sym__expression_seq, - STATE(52), 1, - sym_anonymous_function, - STATE(56), 1, + STATE(60), 1, sym_tuple, - STATE(95), 1, + STATE(62), 1, + sym_anonymous_function, + STATE(139), 1, sym_identifier, - STATE(167), 1, + STATE(180), 1, sym__expression, - STATE(427), 1, + STATE(433), 1, sym_try, - STATE(889), 1, + STATE(936), 1, sym__maybe_function_expression, - STATE(1038), 1, + STATE(1060), 1, sym__maybe_tuple_expression, - STATE(1050), 1, + STATE(1062), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(231), 2, - sym_string, - sym_float, - STATE(12), 2, + STATE(21), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(58), 2, + STATE(64), 2, sym_record, sym_record_update, - ACTIONS(234), 3, + ACTIONS(121), 3, sym__hex, sym__octal, sym__binary, - STATE(18), 5, + STATE(55), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(165), 8, + STATE(181), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -8700,81 +8833,81 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [3553] = 32, + [3620] = 32, ACTIONS(3), 1, sym_module_comment, - ACTIONS(106), 1, + ACTIONS(93), 1, anon_sym_LBRACE, - ACTIONS(110), 1, + ACTIONS(97), 1, anon_sym_POUND, - ACTIONS(112), 1, + ACTIONS(99), 1, anon_sym_LBRACK, - ACTIONS(114), 1, + ACTIONS(101), 1, anon_sym_LT_LT, - ACTIONS(116), 1, + ACTIONS(103), 1, anon_sym_DASH, - ACTIONS(118), 1, + ACTIONS(105), 1, anon_sym_fn, - ACTIONS(120), 1, + ACTIONS(107), 1, anon_sym_try, - ACTIONS(122), 1, + ACTIONS(109), 1, anon_sym_todo, - ACTIONS(124), 1, + ACTIONS(111), 1, anon_sym_case, - ACTIONS(126), 1, + ACTIONS(113), 1, anon_sym_let, - ACTIONS(128), 1, + ACTIONS(115), 1, anon_sym_assert, - ACTIONS(134), 1, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(119), 1, + sym_float, + ACTIONS(123), 1, sym__decimal, - ACTIONS(136), 1, + ACTIONS(125), 1, sym__name, - ACTIONS(138), 1, + ACTIONS(127), 1, sym__upname, - ACTIONS(246), 1, - anon_sym_RBRACE, - STATE(39), 1, + STATE(18), 1, aux_sym__expression_seq, - STATE(52), 1, - sym_anonymous_function, - STATE(56), 1, + STATE(60), 1, sym_tuple, - STATE(95), 1, + STATE(62), 1, + sym_anonymous_function, + STATE(139), 1, sym_identifier, - STATE(167), 1, + STATE(180), 1, sym__expression, - STATE(427), 1, + STATE(433), 1, sym_try, - STATE(889), 1, + STATE(936), 1, sym__maybe_function_expression, - STATE(1038), 1, + STATE(1060), 1, sym__maybe_tuple_expression, - STATE(1050), 1, + STATE(1062), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(130), 2, - sym_string, - sym_float, - STATE(12), 2, + STATE(21), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(58), 2, + STATE(64), 2, sym_record, sym_record_update, - ACTIONS(132), 3, + ACTIONS(121), 3, sym__hex, sym__octal, sym__binary, - STATE(18), 5, + STATE(55), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(165), 8, + STATE(181), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -8782,81 +8915,81 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [3667] = 32, + [3734] = 32, ACTIONS(3), 1, sym_module_comment, - ACTIONS(106), 1, + ACTIONS(93), 1, anon_sym_LBRACE, - ACTIONS(110), 1, + ACTIONS(97), 1, anon_sym_POUND, - ACTIONS(112), 1, + ACTIONS(99), 1, anon_sym_LBRACK, - ACTIONS(114), 1, + ACTIONS(101), 1, anon_sym_LT_LT, - ACTIONS(116), 1, + ACTIONS(103), 1, anon_sym_DASH, - ACTIONS(118), 1, + ACTIONS(105), 1, anon_sym_fn, - ACTIONS(120), 1, + ACTIONS(107), 1, anon_sym_try, - ACTIONS(122), 1, + ACTIONS(109), 1, anon_sym_todo, - ACTIONS(124), 1, + ACTIONS(111), 1, anon_sym_case, - ACTIONS(126), 1, + ACTIONS(113), 1, anon_sym_let, - ACTIONS(128), 1, + ACTIONS(115), 1, anon_sym_assert, - ACTIONS(134), 1, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(119), 1, + sym_float, + ACTIONS(123), 1, sym__decimal, - ACTIONS(136), 1, + ACTIONS(125), 1, sym__name, - ACTIONS(138), 1, + ACTIONS(127), 1, sym__upname, - ACTIONS(248), 1, - anon_sym_RBRACE, - STATE(39), 1, + STATE(28), 1, aux_sym__expression_seq, - STATE(52), 1, - sym_anonymous_function, - STATE(56), 1, + STATE(60), 1, sym_tuple, - STATE(95), 1, + STATE(62), 1, + sym_anonymous_function, + STATE(139), 1, sym_identifier, - STATE(167), 1, + STATE(180), 1, sym__expression, - STATE(427), 1, + STATE(433), 1, sym_try, - STATE(889), 1, + STATE(936), 1, sym__maybe_function_expression, - STATE(1038), 1, + STATE(1060), 1, sym__maybe_tuple_expression, - STATE(1050), 1, + STATE(1062), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(130), 2, - sym_string, - sym_float, - STATE(12), 2, + STATE(21), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(58), 2, + STATE(64), 2, sym_record, sym_record_update, - ACTIONS(132), 3, + ACTIONS(121), 3, sym__hex, sym__octal, sym__binary, - STATE(18), 5, + STATE(55), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(165), 8, + STATE(181), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -8864,163 +8997,135 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [3781] = 32, + [3848] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(106), 1, - anon_sym_LBRACE, - ACTIONS(110), 1, - anon_sym_POUND, - ACTIONS(112), 1, - anon_sym_LBRACK, - ACTIONS(114), 1, - anon_sym_LT_LT, - ACTIONS(116), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(218), 16, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(118), 1, anon_sym_fn, - ACTIONS(120), 1, anon_sym_try, - ACTIONS(122), 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(124), 1, anon_sym_case, - ACTIONS(126), 1, anon_sym_let, - ACTIONS(128), 1, anon_sym_assert, - ACTIONS(134), 1, sym__decimal, - ACTIONS(136), 1, sym__name, - ACTIONS(138), 1, - sym__upname, - ACTIONS(250), 1, + ACTIONS(216), 30, + anon_sym_LBRACE, anon_sym_RBRACE, - STATE(39), 1, - aux_sym__expression_seq, - STATE(52), 1, - sym_anonymous_function, - STATE(56), 1, - sym_tuple, - STATE(95), 1, - sym_identifier, - STATE(167), 1, - sym__expression, - STATE(427), 1, - sym_try, - STATE(889), 1, - sym__maybe_function_expression, - STATE(1038), 1, - sym__maybe_tuple_expression, - STATE(1050), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(130), 2, - sym_string, - sym_float, - STATE(12), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(58), 2, - sym_record, - sym_record_update, - ACTIONS(132), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(18), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(165), 8, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_integer, - [3895] = 32, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_POUND, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [3906] = 32, ACTIONS(3), 1, sym_module_comment, - ACTIONS(106), 1, + ACTIONS(93), 1, anon_sym_LBRACE, - ACTIONS(110), 1, + ACTIONS(97), 1, anon_sym_POUND, - ACTIONS(112), 1, + ACTIONS(99), 1, anon_sym_LBRACK, - ACTIONS(114), 1, + ACTIONS(101), 1, anon_sym_LT_LT, - ACTIONS(116), 1, + ACTIONS(103), 1, anon_sym_DASH, - ACTIONS(118), 1, + ACTIONS(105), 1, anon_sym_fn, - ACTIONS(120), 1, + ACTIONS(107), 1, anon_sym_try, - ACTIONS(122), 1, + ACTIONS(109), 1, anon_sym_todo, - ACTIONS(124), 1, + ACTIONS(111), 1, anon_sym_case, - ACTIONS(126), 1, + ACTIONS(113), 1, anon_sym_let, - ACTIONS(128), 1, + ACTIONS(115), 1, anon_sym_assert, - ACTIONS(134), 1, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(119), 1, + sym_float, + ACTIONS(123), 1, sym__decimal, - ACTIONS(136), 1, + ACTIONS(125), 1, sym__name, - ACTIONS(138), 1, + ACTIONS(127), 1, sym__upname, - ACTIONS(252), 1, - anon_sym_RBRACE, - STATE(39), 1, + STATE(20), 1, aux_sym__expression_seq, - STATE(52), 1, - sym_anonymous_function, - STATE(56), 1, + STATE(60), 1, sym_tuple, - STATE(95), 1, + STATE(62), 1, + sym_anonymous_function, + STATE(139), 1, sym_identifier, - STATE(167), 1, + STATE(180), 1, sym__expression, - STATE(427), 1, + STATE(433), 1, sym_try, - STATE(889), 1, + STATE(936), 1, sym__maybe_function_expression, - STATE(1038), 1, + STATE(1060), 1, sym__maybe_tuple_expression, - STATE(1050), 1, + STATE(1062), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(130), 2, - sym_string, - sym_float, - STATE(12), 2, + STATE(21), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(58), 2, + STATE(64), 2, sym_record, sym_record_update, - ACTIONS(132), 3, + ACTIONS(121), 3, sym__hex, sym__octal, sym__binary, - STATE(18), 5, + STATE(55), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(165), 8, + STATE(181), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -9028,159 +9133,135 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [4009] = 31, + [4020] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(106), 1, - anon_sym_LBRACE, - ACTIONS(110), 1, - anon_sym_POUND, - ACTIONS(112), 1, - anon_sym_LBRACK, - ACTIONS(114), 1, - anon_sym_LT_LT, - ACTIONS(116), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(222), 16, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(118), 1, anon_sym_fn, - ACTIONS(120), 1, anon_sym_try, - ACTIONS(122), 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(124), 1, anon_sym_case, - ACTIONS(126), 1, anon_sym_let, - ACTIONS(128), 1, anon_sym_assert, - ACTIONS(134), 1, sym__decimal, - ACTIONS(136), 1, sym__name, - ACTIONS(138), 1, - sym__upname, - STATE(28), 1, - aux_sym__expression_seq, - STATE(52), 1, - sym_anonymous_function, - STATE(56), 1, - sym_tuple, - STATE(95), 1, - sym_identifier, - STATE(167), 1, - sym__expression, - STATE(427), 1, - sym_try, - STATE(889), 1, - sym__maybe_function_expression, - STATE(1038), 1, - sym__maybe_tuple_expression, - STATE(1050), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(130), 2, - sym_string, + ACTIONS(220), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_POUND, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DQUOTE, sym_float, - STATE(12), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(58), 2, - sym_record, - sym_record_update, - ACTIONS(132), 3, sym__hex, sym__octal, sym__binary, - STATE(18), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(165), 8, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_integer, - [4120] = 31, + sym__upname, + [4078] = 32, ACTIONS(3), 1, sym_module_comment, - ACTIONS(106), 1, + ACTIONS(93), 1, anon_sym_LBRACE, - ACTIONS(110), 1, + ACTIONS(97), 1, anon_sym_POUND, - ACTIONS(112), 1, + ACTIONS(99), 1, anon_sym_LBRACK, - ACTIONS(114), 1, + ACTIONS(101), 1, anon_sym_LT_LT, - ACTIONS(116), 1, + ACTIONS(103), 1, anon_sym_DASH, - ACTIONS(118), 1, + ACTIONS(105), 1, anon_sym_fn, - ACTIONS(120), 1, + ACTIONS(107), 1, anon_sym_try, - ACTIONS(122), 1, + ACTIONS(109), 1, anon_sym_todo, - ACTIONS(124), 1, + ACTIONS(111), 1, anon_sym_case, - ACTIONS(126), 1, + ACTIONS(113), 1, anon_sym_let, - ACTIONS(128), 1, + ACTIONS(115), 1, anon_sym_assert, - ACTIONS(134), 1, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(119), 1, + sym_float, + ACTIONS(123), 1, sym__decimal, - ACTIONS(136), 1, + ACTIONS(125), 1, sym__name, - ACTIONS(138), 1, + ACTIONS(127), 1, sym__upname, - STATE(42), 1, + STATE(31), 1, aux_sym__expression_seq, - STATE(52), 1, - sym_anonymous_function, - STATE(56), 1, + STATE(60), 1, sym_tuple, - STATE(95), 1, + STATE(62), 1, + sym_anonymous_function, + STATE(139), 1, sym_identifier, - STATE(167), 1, + STATE(180), 1, sym__expression, - STATE(427), 1, + STATE(433), 1, sym_try, - STATE(889), 1, + STATE(936), 1, sym__maybe_function_expression, - STATE(1038), 1, + STATE(1060), 1, sym__maybe_tuple_expression, - STATE(1050), 1, + STATE(1062), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(130), 2, - sym_string, - sym_float, - STATE(12), 2, + STATE(21), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(58), 2, + STATE(64), 2, sym_record, sym_record_update, - ACTIONS(132), 3, + ACTIONS(121), 3, sym__hex, sym__octal, sym__binary, - STATE(18), 5, + STATE(55), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(165), 8, + STATE(181), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -9188,159 +9269,135 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [4231] = 31, + [4192] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(106), 1, - anon_sym_LBRACE, - ACTIONS(110), 1, - anon_sym_POUND, - ACTIONS(112), 1, - anon_sym_LBRACK, - ACTIONS(114), 1, - anon_sym_LT_LT, - ACTIONS(116), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(226), 16, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(118), 1, anon_sym_fn, - ACTIONS(120), 1, anon_sym_try, - ACTIONS(122), 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(124), 1, anon_sym_case, - ACTIONS(126), 1, anon_sym_let, - ACTIONS(128), 1, anon_sym_assert, - ACTIONS(134), 1, sym__decimal, - ACTIONS(136), 1, sym__name, - ACTIONS(138), 1, - sym__upname, - STATE(19), 1, - aux_sym__expression_seq, - STATE(52), 1, - sym_anonymous_function, - STATE(56), 1, - sym_tuple, - STATE(95), 1, - sym_identifier, - STATE(167), 1, - sym__expression, - STATE(427), 1, - sym_try, - STATE(889), 1, - sym__maybe_function_expression, - STATE(1038), 1, - sym__maybe_tuple_expression, - STATE(1050), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(130), 2, - sym_string, + ACTIONS(224), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_POUND, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DQUOTE, sym_float, - STATE(12), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(58), 2, - sym_record, - sym_record_update, - ACTIONS(132), 3, sym__hex, sym__octal, sym__binary, - STATE(18), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(165), 8, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_integer, - [4342] = 31, + sym__upname, + [4250] = 32, ACTIONS(3), 1, sym_module_comment, - ACTIONS(106), 1, + ACTIONS(93), 1, anon_sym_LBRACE, - ACTIONS(110), 1, + ACTIONS(97), 1, anon_sym_POUND, - ACTIONS(112), 1, + ACTIONS(99), 1, anon_sym_LBRACK, - ACTIONS(114), 1, + ACTIONS(101), 1, anon_sym_LT_LT, - ACTIONS(116), 1, + ACTIONS(103), 1, anon_sym_DASH, - ACTIONS(118), 1, + ACTIONS(105), 1, anon_sym_fn, - ACTIONS(120), 1, + ACTIONS(107), 1, anon_sym_try, - ACTIONS(122), 1, + ACTIONS(109), 1, anon_sym_todo, - ACTIONS(124), 1, + ACTIONS(111), 1, anon_sym_case, - ACTIONS(126), 1, + ACTIONS(113), 1, anon_sym_let, - ACTIONS(128), 1, + ACTIONS(115), 1, anon_sym_assert, - ACTIONS(134), 1, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(119), 1, + sym_float, + ACTIONS(123), 1, sym__decimal, - ACTIONS(136), 1, + ACTIONS(125), 1, sym__name, - ACTIONS(138), 1, + ACTIONS(127), 1, sym__upname, - STATE(30), 1, + STATE(23), 1, aux_sym__expression_seq, - STATE(52), 1, - sym_anonymous_function, - STATE(56), 1, + STATE(60), 1, sym_tuple, - STATE(95), 1, + STATE(62), 1, + sym_anonymous_function, + STATE(139), 1, sym_identifier, - STATE(167), 1, + STATE(180), 1, sym__expression, - STATE(427), 1, + STATE(433), 1, sym_try, - STATE(889), 1, + STATE(936), 1, sym__maybe_function_expression, - STATE(1038), 1, + STATE(1060), 1, sym__maybe_tuple_expression, - STATE(1050), 1, + STATE(1062), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(130), 2, - sym_string, - sym_float, - STATE(12), 2, + STATE(21), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(58), 2, + STATE(64), 2, sym_record, sym_record_update, - ACTIONS(132), 3, + ACTIONS(121), 3, sym__hex, sym__octal, sym__binary, - STATE(18), 5, + STATE(55), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(165), 8, + STATE(181), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -9348,79 +9405,81 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [4453] = 31, + [4364] = 32, ACTIONS(3), 1, sym_module_comment, - ACTIONS(106), 1, + ACTIONS(93), 1, anon_sym_LBRACE, - ACTIONS(110), 1, + ACTIONS(97), 1, anon_sym_POUND, - ACTIONS(112), 1, + ACTIONS(99), 1, anon_sym_LBRACK, - ACTIONS(114), 1, + ACTIONS(101), 1, anon_sym_LT_LT, - ACTIONS(116), 1, + ACTIONS(103), 1, anon_sym_DASH, - ACTIONS(118), 1, + ACTIONS(105), 1, anon_sym_fn, - ACTIONS(120), 1, + ACTIONS(107), 1, anon_sym_try, - ACTIONS(122), 1, + ACTIONS(109), 1, anon_sym_todo, - ACTIONS(124), 1, + ACTIONS(111), 1, anon_sym_case, - ACTIONS(126), 1, + ACTIONS(113), 1, anon_sym_let, - ACTIONS(128), 1, + ACTIONS(115), 1, anon_sym_assert, - ACTIONS(134), 1, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(119), 1, + sym_float, + ACTIONS(123), 1, sym__decimal, - ACTIONS(136), 1, + ACTIONS(125), 1, sym__name, - ACTIONS(138), 1, + ACTIONS(127), 1, sym__upname, - STATE(25), 1, + STATE(17), 1, aux_sym__expression_seq, - STATE(52), 1, - sym_anonymous_function, - STATE(56), 1, + STATE(60), 1, sym_tuple, - STATE(95), 1, + STATE(62), 1, + sym_anonymous_function, + STATE(139), 1, sym_identifier, - STATE(167), 1, + STATE(180), 1, sym__expression, - STATE(427), 1, + STATE(433), 1, sym_try, - STATE(889), 1, + STATE(936), 1, sym__maybe_function_expression, - STATE(1038), 1, + STATE(1060), 1, sym__maybe_tuple_expression, - STATE(1050), 1, + STATE(1062), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(130), 2, - sym_string, - sym_float, - STATE(12), 2, + STATE(21), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(58), 2, + STATE(64), 2, sym_record, sym_record_update, - ACTIONS(132), 3, + ACTIONS(121), 3, sym__hex, sym__octal, sym__binary, - STATE(18), 5, + STATE(55), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(165), 8, + STATE(181), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -9428,14 +9487,15 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [4564] = 4, + [4478] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(256), 16, + ACTIONS(230), 16, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -9452,12 +9512,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_assert, sym__decimal, sym__name, - ACTIONS(254), 29, + ACTIONS(228), 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, @@ -9476,84 +9537,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [4621] = 31, + [4536] = 32, ACTIONS(3), 1, sym_module_comment, - ACTIONS(106), 1, + ACTIONS(93), 1, anon_sym_LBRACE, - ACTIONS(110), 1, + ACTIONS(97), 1, anon_sym_POUND, - ACTIONS(112), 1, + ACTIONS(99), 1, anon_sym_LBRACK, - ACTIONS(114), 1, + ACTIONS(101), 1, anon_sym_LT_LT, - ACTIONS(116), 1, + ACTIONS(103), 1, anon_sym_DASH, - ACTIONS(118), 1, + ACTIONS(105), 1, anon_sym_fn, - ACTIONS(120), 1, + ACTIONS(107), 1, anon_sym_try, - ACTIONS(122), 1, + ACTIONS(109), 1, anon_sym_todo, - ACTIONS(124), 1, + ACTIONS(111), 1, anon_sym_case, - ACTIONS(126), 1, + ACTIONS(113), 1, anon_sym_let, - ACTIONS(128), 1, + ACTIONS(115), 1, anon_sym_assert, - ACTIONS(134), 1, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(119), 1, + sym_float, + ACTIONS(123), 1, sym__decimal, - ACTIONS(136), 1, + ACTIONS(125), 1, sym__name, - ACTIONS(138), 1, + ACTIONS(127), 1, sym__upname, - STATE(26), 1, + STATE(30), 1, aux_sym__expression_seq, - STATE(52), 1, - sym_anonymous_function, - STATE(56), 1, + STATE(60), 1, sym_tuple, - STATE(95), 1, + STATE(62), 1, + sym_anonymous_function, + STATE(139), 1, sym_identifier, - STATE(167), 1, + STATE(180), 1, sym__expression, - STATE(427), 1, + STATE(433), 1, sym_try, - STATE(889), 1, + STATE(936), 1, sym__maybe_function_expression, - STATE(1038), 1, + STATE(1060), 1, sym__maybe_tuple_expression, - STATE(1050), 1, + STATE(1062), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(130), 2, + STATE(21), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(64), 2, + sym_record, + sym_record_update, + ACTIONS(121), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(55), 5, + sym_expression_group, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(181), 9, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_list, + sym__expression_bit_string, + sym_let, + sym_assert, sym_string, + sym_integer, + [4650] = 32, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(93), 1, + anon_sym_LBRACE, + ACTIONS(97), 1, + anon_sym_POUND, + ACTIONS(99), 1, + anon_sym_LBRACK, + ACTIONS(101), 1, + anon_sym_LT_LT, + ACTIONS(103), 1, + anon_sym_DASH, + ACTIONS(105), 1, + anon_sym_fn, + ACTIONS(107), 1, + anon_sym_try, + ACTIONS(109), 1, + anon_sym_todo, + ACTIONS(111), 1, + anon_sym_case, + ACTIONS(113), 1, + anon_sym_let, + ACTIONS(115), 1, + anon_sym_assert, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(119), 1, sym_float, - STATE(12), 2, + ACTIONS(123), 1, + sym__decimal, + ACTIONS(125), 1, + sym__name, + ACTIONS(127), 1, + sym__upname, + STATE(29), 1, + aux_sym__expression_seq, + STATE(60), 1, + sym_tuple, + STATE(62), 1, + sym_anonymous_function, + STATE(139), 1, + sym_identifier, + STATE(180), 1, + sym__expression, + STATE(433), 1, + sym_try, + STATE(936), 1, + sym__maybe_function_expression, + STATE(1060), 1, + sym__maybe_tuple_expression, + STATE(1062), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(21), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(58), 2, + STATE(64), 2, sym_record, sym_record_update, - ACTIONS(132), 3, + ACTIONS(121), 3, sym__hex, sym__octal, sym__binary, - STATE(18), 5, + STATE(55), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(165), 8, + STATE(181), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -9561,14 +9705,15 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [4732] = 4, + [4764] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(260), 16, + ACTIONS(234), 16, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -9585,13 +9730,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_assert, sym__decimal, sym__name, - ACTIONS(258), 29, + ACTIONS(232), 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, @@ -9609,21 +9755,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [4789] = 5, + [4822] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(104), 1, - anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(102), 16, + ACTIONS(238), 16, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -9640,11 +9784,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_assert, sym__decimal, sym__name, - ACTIONS(97), 28, + ACTIONS(236), 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, @@ -9663,84 +9809,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [4848] = 31, + [4880] = 32, ACTIONS(3), 1, sym_module_comment, - ACTIONS(106), 1, + ACTIONS(93), 1, anon_sym_LBRACE, - ACTIONS(110), 1, + ACTIONS(97), 1, anon_sym_POUND, - ACTIONS(112), 1, + ACTIONS(99), 1, anon_sym_LBRACK, - ACTIONS(114), 1, + ACTIONS(101), 1, anon_sym_LT_LT, - ACTIONS(116), 1, + ACTIONS(103), 1, anon_sym_DASH, - ACTIONS(118), 1, + ACTIONS(105), 1, anon_sym_fn, - ACTIONS(120), 1, + ACTIONS(107), 1, anon_sym_try, - ACTIONS(122), 1, + ACTIONS(109), 1, anon_sym_todo, - ACTIONS(124), 1, + ACTIONS(111), 1, anon_sym_case, - ACTIONS(126), 1, + ACTIONS(113), 1, anon_sym_let, - ACTIONS(128), 1, + ACTIONS(115), 1, anon_sym_assert, - ACTIONS(134), 1, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(119), 1, + sym_float, + ACTIONS(123), 1, sym__decimal, - ACTIONS(136), 1, + ACTIONS(125), 1, sym__name, - ACTIONS(138), 1, + ACTIONS(127), 1, sym__upname, - STATE(40), 1, + STATE(27), 1, aux_sym__expression_seq, - STATE(52), 1, - sym_anonymous_function, - STATE(56), 1, + STATE(60), 1, sym_tuple, - STATE(95), 1, + STATE(62), 1, + sym_anonymous_function, + STATE(139), 1, sym_identifier, - STATE(167), 1, + STATE(180), 1, sym__expression, - STATE(427), 1, + STATE(433), 1, sym_try, - STATE(889), 1, + STATE(936), 1, sym__maybe_function_expression, - STATE(1038), 1, + STATE(1060), 1, sym__maybe_tuple_expression, - STATE(1050), 1, + STATE(1062), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(130), 2, - sym_string, - sym_float, - STATE(12), 2, + STATE(21), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(58), 2, + STATE(64), 2, sym_record, sym_record_update, - ACTIONS(132), 3, + ACTIONS(121), 3, sym__hex, sym__octal, sym__binary, - STATE(18), 5, + STATE(55), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(165), 8, + STATE(181), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -9748,79 +9895,81 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [4959] = 31, + [4994] = 32, ACTIONS(3), 1, sym_module_comment, - ACTIONS(106), 1, + ACTIONS(93), 1, anon_sym_LBRACE, - ACTIONS(110), 1, + ACTIONS(97), 1, anon_sym_POUND, - ACTIONS(112), 1, + ACTIONS(99), 1, anon_sym_LBRACK, - ACTIONS(114), 1, + ACTIONS(101), 1, anon_sym_LT_LT, - ACTIONS(116), 1, + ACTIONS(103), 1, anon_sym_DASH, - ACTIONS(118), 1, + ACTIONS(105), 1, anon_sym_fn, - ACTIONS(120), 1, + ACTIONS(107), 1, anon_sym_try, - ACTIONS(122), 1, + ACTIONS(109), 1, anon_sym_todo, - ACTIONS(124), 1, + ACTIONS(111), 1, anon_sym_case, - ACTIONS(126), 1, + ACTIONS(113), 1, anon_sym_let, - ACTIONS(128), 1, + ACTIONS(115), 1, anon_sym_assert, - ACTIONS(134), 1, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(119), 1, + sym_float, + ACTIONS(123), 1, sym__decimal, - ACTIONS(136), 1, + ACTIONS(125), 1, sym__name, - ACTIONS(138), 1, + ACTIONS(127), 1, sym__upname, - STATE(20), 1, + STATE(24), 1, aux_sym__expression_seq, - STATE(52), 1, - sym_anonymous_function, - STATE(56), 1, + STATE(60), 1, sym_tuple, - STATE(95), 1, + STATE(62), 1, + sym_anonymous_function, + STATE(139), 1, sym_identifier, - STATE(167), 1, + STATE(180), 1, sym__expression, - STATE(427), 1, + STATE(433), 1, sym_try, - STATE(889), 1, + STATE(936), 1, sym__maybe_function_expression, - STATE(1038), 1, + STATE(1060), 1, sym__maybe_tuple_expression, - STATE(1050), 1, + STATE(1062), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(130), 2, - sym_string, - sym_float, - STATE(12), 2, + STATE(21), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(58), 2, + STATE(64), 2, sym_record, sym_record_update, - ACTIONS(132), 3, + ACTIONS(121), 3, sym__hex, sym__octal, sym__binary, - STATE(18), 5, + STATE(55), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(165), 8, + STATE(181), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -9828,79 +9977,81 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [5070] = 31, + [5108] = 32, ACTIONS(3), 1, sym_module_comment, - ACTIONS(106), 1, + ACTIONS(93), 1, anon_sym_LBRACE, - ACTIONS(110), 1, + ACTIONS(97), 1, anon_sym_POUND, - ACTIONS(112), 1, + ACTIONS(99), 1, anon_sym_LBRACK, - ACTIONS(114), 1, + ACTIONS(101), 1, anon_sym_LT_LT, - ACTIONS(116), 1, + ACTIONS(103), 1, anon_sym_DASH, - ACTIONS(118), 1, + ACTIONS(105), 1, anon_sym_fn, - ACTIONS(120), 1, + ACTIONS(107), 1, anon_sym_try, - ACTIONS(122), 1, + ACTIONS(109), 1, anon_sym_todo, - ACTIONS(124), 1, + ACTIONS(111), 1, anon_sym_case, - ACTIONS(126), 1, + ACTIONS(113), 1, anon_sym_let, - ACTIONS(128), 1, + ACTIONS(115), 1, anon_sym_assert, - ACTIONS(134), 1, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(119), 1, + sym_float, + ACTIONS(123), 1, sym__decimal, - ACTIONS(136), 1, + ACTIONS(125), 1, sym__name, - ACTIONS(138), 1, + ACTIONS(127), 1, sym__upname, - STATE(43), 1, + STATE(22), 1, aux_sym__expression_seq, - STATE(52), 1, - sym_anonymous_function, - STATE(56), 1, + STATE(60), 1, sym_tuple, - STATE(95), 1, + STATE(62), 1, + sym_anonymous_function, + STATE(139), 1, sym_identifier, - STATE(167), 1, + STATE(180), 1, sym__expression, - STATE(427), 1, + STATE(433), 1, sym_try, - STATE(889), 1, + STATE(936), 1, sym__maybe_function_expression, - STATE(1038), 1, + STATE(1060), 1, sym__maybe_tuple_expression, - STATE(1050), 1, + STATE(1062), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(130), 2, - sym_string, - sym_float, - STATE(12), 2, + STATE(21), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(58), 2, + STATE(64), 2, sym_record, sym_record_update, - ACTIONS(132), 3, + ACTIONS(121), 3, sym__hex, sym__octal, sym__binary, - STATE(18), 5, + STATE(55), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(165), 8, + STATE(181), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -9908,16 +10059,15 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [5181] = 5, + [5222] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(262), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(102), 16, + ACTIONS(242), 16, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -9934,11 +10084,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_assert, sym__decimal, sym__name, - ACTIONS(97), 28, + ACTIONS(240), 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, @@ -9957,19 +10109,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [5240] = 4, + [5280] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(266), 16, + ACTIONS(246), 16, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -9986,12 +10138,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_assert, sym__decimal, sym__name, - ACTIONS(264), 29, + ACTIONS(244), 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, @@ -10010,21 +10163,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [5297] = 5, + [5338] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(268), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(102), 16, + ACTIONS(250), 16, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -10041,11 +10192,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_assert, sym__decimal, sym__name, - ACTIONS(97), 28, + ACTIONS(248), 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, @@ -10064,19 +10217,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [5356] = 4, + [5396] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(254), 1, + anon_sym_DOT, + ACTIONS(259), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(272), 16, + ACTIONS(257), 16, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -10093,12 +10250,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_assert, sym__decimal, sym__name, - ACTIONS(270), 29, + ACTIONS(252), 28, 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, @@ -10117,19 +10273,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [5413] = 4, + [5458] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(276), 16, + ACTIONS(263), 16, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -10146,12 +10302,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_assert, sym__decimal, sym__name, - ACTIONS(274), 29, + ACTIONS(261), 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, @@ -10170,84 +10327,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [5470] = 31, + [5516] = 32, ACTIONS(3), 1, sym_module_comment, - ACTIONS(106), 1, + ACTIONS(93), 1, anon_sym_LBRACE, - ACTIONS(110), 1, + ACTIONS(97), 1, anon_sym_POUND, - ACTIONS(112), 1, + ACTIONS(99), 1, anon_sym_LBRACK, - ACTIONS(114), 1, + ACTIONS(101), 1, anon_sym_LT_LT, - ACTIONS(116), 1, + ACTIONS(103), 1, anon_sym_DASH, - ACTIONS(118), 1, + ACTIONS(105), 1, anon_sym_fn, - ACTIONS(120), 1, + ACTIONS(107), 1, anon_sym_try, - ACTIONS(122), 1, + ACTIONS(109), 1, anon_sym_todo, - ACTIONS(124), 1, + ACTIONS(111), 1, anon_sym_case, - ACTIONS(126), 1, + ACTIONS(113), 1, anon_sym_let, - ACTIONS(128), 1, + ACTIONS(115), 1, anon_sym_assert, - ACTIONS(134), 1, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(119), 1, + sym_float, + ACTIONS(123), 1, sym__decimal, - ACTIONS(136), 1, + ACTIONS(125), 1, sym__name, - ACTIONS(138), 1, + ACTIONS(127), 1, sym__upname, - STATE(29), 1, + STATE(25), 1, aux_sym__expression_seq, - STATE(52), 1, - sym_anonymous_function, - STATE(56), 1, + STATE(60), 1, sym_tuple, - STATE(95), 1, + STATE(62), 1, + sym_anonymous_function, + STATE(139), 1, sym_identifier, - STATE(167), 1, + STATE(180), 1, sym__expression, - STATE(427), 1, + STATE(433), 1, sym_try, - STATE(889), 1, + STATE(936), 1, sym__maybe_function_expression, - STATE(1038), 1, + STATE(1060), 1, sym__maybe_tuple_expression, - STATE(1050), 1, + STATE(1062), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(130), 2, - sym_string, - sym_float, - STATE(12), 2, + STATE(21), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(58), 2, + STATE(64), 2, sym_record, sym_record_update, - ACTIONS(132), 3, + ACTIONS(121), 3, sym__hex, sym__octal, sym__binary, - STATE(18), 5, + STATE(55), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(165), 8, + STATE(181), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -10255,16 +10413,15 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [5581] = 5, + [5630] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(282), 1, - anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(280), 16, + ACTIONS(267), 16, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -10281,11 +10438,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_assert, sym__decimal, sym__name, - ACTIONS(278), 28, + ACTIONS(265), 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, @@ -10304,164 +10463,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [5640] = 31, + [5688] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(106), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(110), 1, + ACTIONS(29), 1, anon_sym_POUND, - ACTIONS(112), 1, + ACTIONS(33), 1, anon_sym_LBRACK, - ACTIONS(114), 1, + ACTIONS(35), 1, anon_sym_LT_LT, - ACTIONS(116), 1, + ACTIONS(37), 1, anon_sym_DASH, - ACTIONS(118), 1, + ACTIONS(39), 1, anon_sym_fn, - ACTIONS(120), 1, - anon_sym_try, - ACTIONS(122), 1, + ACTIONS(41), 1, anon_sym_todo, - ACTIONS(124), 1, + ACTIONS(45), 1, anon_sym_case, - ACTIONS(126), 1, + ACTIONS(47), 1, anon_sym_let, - ACTIONS(128), 1, + ACTIONS(49), 1, anon_sym_assert, - ACTIONS(134), 1, - sym__decimal, - ACTIONS(136), 1, - sym__name, - ACTIONS(138), 1, - sym__upname, - STATE(41), 1, - aux_sym__expression_seq, - STATE(52), 1, - sym_anonymous_function, - STATE(56), 1, - sym_tuple, - STATE(95), 1, - sym_identifier, - STATE(167), 1, - sym__expression, - STATE(427), 1, - sym_try, - STATE(889), 1, - sym__maybe_function_expression, - STATE(1038), 1, - sym__maybe_tuple_expression, - STATE(1050), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(130), 2, - sym_string, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, sym_float, - STATE(12), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(58), 2, - sym_record, - sym_record_update, - ACTIONS(132), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(18), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(165), 8, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_integer, - [5751] = 31, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(106), 1, - anon_sym_LBRACE, - ACTIONS(110), 1, - anon_sym_POUND, - ACTIONS(112), 1, - anon_sym_LBRACK, - ACTIONS(114), 1, - anon_sym_LT_LT, - ACTIONS(116), 1, - anon_sym_DASH, - ACTIONS(118), 1, - anon_sym_fn, - ACTIONS(120), 1, - anon_sym_try, - ACTIONS(122), 1, - anon_sym_todo, - ACTIONS(124), 1, - anon_sym_case, - ACTIONS(126), 1, - anon_sym_let, - ACTIONS(128), 1, - anon_sym_assert, - ACTIONS(134), 1, + ACTIONS(57), 1, sym__decimal, - ACTIONS(136), 1, - sym__name, - ACTIONS(138), 1, + ACTIONS(59), 1, + sym__discard_name, + ACTIONS(63), 1, sym__upname, - STATE(27), 1, - aux_sym__expression_seq, - STATE(52), 1, - sym_anonymous_function, - STATE(56), 1, - sym_tuple, - STATE(95), 1, + ACTIONS(269), 1, + sym__name, + STATE(254), 1, sym_identifier, - STATE(167), 1, + STATE(273), 1, + sym_tuple, + STATE(282), 1, + sym_anonymous_function, + STATE(394), 1, sym__expression, - STATE(427), 1, - sym_try, - STATE(889), 1, + STATE(913), 1, sym__maybe_function_expression, - STATE(1038), 1, + STATE(992), 1, + sym_hole, + STATE(1037), 1, sym__maybe_tuple_expression, - STATE(1050), 1, + STATE(1038), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(130), 2, - sym_string, - sym_float, - STATE(12), 2, + STATE(246), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(58), 2, + STATE(272), 2, sym_record, sym_record_update, - ACTIONS(132), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(18), 5, + STATE(262), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(165), 8, + STATE(304), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -10469,14 +10547,17 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [5862] = 4, + [5799] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(271), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(286), 16, + ACTIONS(257), 16, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -10493,10 +10574,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_assert, sym__decimal, sym__name, - ACTIONS(284), 29, + ACTIONS(252), 28, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_COMMA, anon_sym_POUND, anon_sym_LBRACK, @@ -10517,84 +10597,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [5919] = 31, + [5858] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(106), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(110), 1, + ACTIONS(29), 1, anon_sym_POUND, - ACTIONS(112), 1, + ACTIONS(33), 1, anon_sym_LBRACK, - ACTIONS(114), 1, + ACTIONS(35), 1, anon_sym_LT_LT, - ACTIONS(116), 1, + ACTIONS(37), 1, anon_sym_DASH, - ACTIONS(118), 1, + ACTIONS(39), 1, anon_sym_fn, - ACTIONS(120), 1, - anon_sym_try, - ACTIONS(122), 1, + ACTIONS(41), 1, anon_sym_todo, - ACTIONS(124), 1, + ACTIONS(45), 1, anon_sym_case, - ACTIONS(126), 1, + ACTIONS(47), 1, anon_sym_let, - ACTIONS(128), 1, + ACTIONS(49), 1, anon_sym_assert, - ACTIONS(134), 1, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(57), 1, sym__decimal, - ACTIONS(136), 1, - sym__name, - ACTIONS(138), 1, + ACTIONS(63), 1, sym__upname, - STATE(34), 1, - aux_sym__expression_seq, - STATE(52), 1, - sym_anonymous_function, - STATE(56), 1, - sym_tuple, - STATE(95), 1, + ACTIONS(269), 1, + sym__name, + ACTIONS(273), 1, + anon_sym_RBRACK, + ACTIONS(275), 1, + anon_sym_DOT_DOT, + STATE(254), 1, sym_identifier, - STATE(167), 1, + STATE(273), 1, + sym_tuple, + STATE(282), 1, + sym_anonymous_function, + STATE(327), 1, sym__expression, - STATE(427), 1, - sym_try, - STATE(889), 1, + STATE(913), 1, sym__maybe_function_expression, - STATE(1038), 1, + STATE(1037), 1, sym__maybe_tuple_expression, - STATE(1050), 1, + STATE(1038), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(130), 2, - sym_string, - sym_float, - STATE(12), 2, + STATE(246), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(58), 2, + STATE(272), 2, sym_record, sym_record_update, - ACTIONS(132), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(18), 5, + STATE(262), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(165), 8, + STATE(304), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -10602,14 +10681,17 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [6030] = 4, + [5969] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(259), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(290), 16, + ACTIONS(257), 16, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -10626,12 +10708,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_assert, sym__decimal, sym__name, - ACTIONS(288), 29, + ACTIONS(252), 28, 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, @@ -10650,19 +10731,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [6087] = 4, + [6028] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(294), 16, + ACTIONS(279), 16, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -10679,7 +10760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_assert, sym__decimal, sym__name, - ACTIONS(292), 29, + ACTIONS(277), 29, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, @@ -10703,97 +10784,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [6144] = 30, + [6085] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(31), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_POUND, - ACTIONS(37), 1, - anon_sym_LBRACK, - ACTIONS(39), 1, - anon_sym_LT_LT, - ACTIONS(41), 1, + ACTIONS(281), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(257), 16, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(43), 1, anon_sym_fn, - ACTIONS(45), 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(49), 1, anon_sym_case, - ACTIONS(51), 1, anon_sym_let, - ACTIONS(53), 1, anon_sym_assert, - ACTIONS(59), 1, sym__decimal, - ACTIONS(65), 1, - sym__upname, - ACTIONS(296), 1, - anon_sym_RBRACK, - ACTIONS(298), 1, - anon_sym_DOT_DOT, - ACTIONS(300), 1, sym__name, - STATE(251), 1, - sym_identifier, - STATE(267), 1, - sym_anonymous_function, - STATE(268), 1, - sym_tuple, - STATE(316), 1, - sym__expression, - STATE(898), 1, - sym__maybe_function_expression, - STATE(1016), 1, - sym__maybe_tuple_expression, - STATE(1017), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(55), 2, - sym_string, + ACTIONS(252), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DQUOTE, sym_float, - STATE(243), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(269), 2, - sym_record, - sym_record_update, - ACTIONS(57), 3, sym__hex, sym__octal, sym__binary, - STATE(247), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(292), 8, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_integer, - [6252] = 4, + sym__upname, + [6144] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(304), 16, + ACTIONS(285), 16, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -10810,9 +10867,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_assert, sym__decimal, sym__name, - ACTIONS(302), 28, + ACTIONS(283), 29, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_COMMA, anon_sym_POUND, anon_sym_LBRACK, @@ -10833,19 +10891,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [6308] = 4, + [6201] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(308), 16, + ACTIONS(289), 16, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -10862,9 +10920,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_assert, sym__decimal, sym__name, - ACTIONS(306), 28, + ACTIONS(287), 29, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_COMMA, anon_sym_POUND, anon_sym_LBRACK, @@ -10885,160 +10944,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [6364] = 30, + [6258] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(31), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_POUND, - ACTIONS(37), 1, - anon_sym_LBRACK, - ACTIONS(39), 1, - anon_sym_LT_LT, - ACTIONS(41), 1, + ACTIONS(295), 1, + anon_sym_LPAREN, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(293), 16, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(43), 1, anon_sym_fn, - ACTIONS(45), 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(49), 1, anon_sym_case, - ACTIONS(51), 1, anon_sym_let, - ACTIONS(53), 1, anon_sym_assert, - ACTIONS(59), 1, sym__decimal, - ACTIONS(61), 1, - sym__discard_name, - ACTIONS(65), 1, - sym__upname, - ACTIONS(300), 1, sym__name, - STATE(251), 1, - sym_identifier, - STATE(267), 1, - sym_anonymous_function, - STATE(268), 1, - sym_tuple, - STATE(375), 1, - sym__expression, - STATE(898), 1, - sym__maybe_function_expression, - STATE(944), 1, - sym_hole, - STATE(1016), 1, - sym__maybe_tuple_expression, - STATE(1017), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(55), 2, - sym_string, + ACTIONS(291), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DQUOTE, sym_float, - STATE(243), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(269), 2, - sym_record, - sym_record_update, - ACTIONS(57), 3, sym__hex, sym__octal, sym__binary, - STATE(247), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(292), 8, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_integer, - [6472] = 30, + sym__upname, + [6317] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(31), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_POUND, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_LBRACK, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_LT_LT, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_DASH, - ACTIONS(43), 1, + ACTIONS(39), 1, anon_sym_fn, - ACTIONS(45), 1, + ACTIONS(41), 1, anon_sym_todo, - ACTIONS(49), 1, + ACTIONS(45), 1, anon_sym_case, - ACTIONS(51), 1, + ACTIONS(47), 1, anon_sym_let, - ACTIONS(53), 1, + ACTIONS(49), 1, anon_sym_assert, - ACTIONS(59), 1, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(57), 1, sym__decimal, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(300), 1, + ACTIONS(269), 1, sym__name, - ACTIONS(310), 1, + ACTIONS(297), 1, anon_sym_RBRACK, - ACTIONS(312), 1, + ACTIONS(299), 1, anon_sym_DOT_DOT, - STATE(251), 1, + STATE(254), 1, sym_identifier, - STATE(267), 1, - sym_anonymous_function, - STATE(268), 1, + STATE(273), 1, sym_tuple, - STATE(316), 1, + STATE(282), 1, + sym_anonymous_function, + STATE(327), 1, sym__expression, - STATE(898), 1, + STATE(913), 1, sym__maybe_function_expression, - STATE(1016), 1, + STATE(1037), 1, sym__maybe_tuple_expression, - STATE(1017), 1, + STATE(1038), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(55), 2, - sym_string, - sym_float, - STATE(243), 2, + STATE(246), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(269), 2, + STATE(272), 2, sym_record, sym_record_update, - ACTIONS(57), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(247), 5, + STATE(262), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(292), 8, + STATE(304), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -11046,14 +11082,15 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [6580] = 4, + [6428] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(316), 16, + ACTIONS(303), 16, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -11070,11 +11107,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_assert, sym__decimal, sym__name, - ACTIONS(314), 28, + ACTIONS(301), 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, @@ -11093,134 +11131,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [6636] = 4, + [6485] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(320), 16, - anon_sym_SLASH, + ACTIONS(27), 1, + anon_sym_LBRACE, + ACTIONS(29), 1, + anon_sym_POUND, + ACTIONS(33), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, + anon_sym_LT_LT, + ACTIONS(37), 1, anon_sym_DASH, + ACTIONS(39), 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(41), 1, anon_sym_todo, + ACTIONS(45), 1, anon_sym_case, + ACTIONS(47), 1, anon_sym_let, + ACTIONS(49), 1, anon_sym_assert, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(57), 1, sym__decimal, + ACTIONS(63), 1, + sym__upname, + ACTIONS(269), 1, sym__name, - ACTIONS(318), 28, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - sym_string, - sym_float, + ACTIONS(305), 1, + anon_sym_RBRACK, + ACTIONS(307), 1, + anon_sym_DOT_DOT, + STATE(254), 1, + sym_identifier, + STATE(273), 1, + sym_tuple, + STATE(282), 1, + sym_anonymous_function, + STATE(327), 1, + sym__expression, + STATE(913), 1, + sym__maybe_function_expression, + STATE(1037), 1, + sym__maybe_tuple_expression, + STATE(1038), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(246), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(272), 2, + sym_record, + sym_record_update, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [6692] = 30, + STATE(262), 5, + sym_expression_group, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(304), 9, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_list, + sym__expression_bit_string, + sym_let, + sym_assert, + sym_string, + sym_integer, + [6596] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(31), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_POUND, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_LBRACK, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_LT_LT, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_DASH, - ACTIONS(43), 1, + ACTIONS(39), 1, anon_sym_fn, - ACTIONS(45), 1, + ACTIONS(41), 1, anon_sym_todo, - ACTIONS(49), 1, + ACTIONS(45), 1, anon_sym_case, - ACTIONS(51), 1, + ACTIONS(47), 1, anon_sym_let, - ACTIONS(53), 1, + ACTIONS(49), 1, anon_sym_assert, - ACTIONS(59), 1, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(57), 1, sym__decimal, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(300), 1, + ACTIONS(269), 1, sym__name, - ACTIONS(322), 1, + ACTIONS(309), 1, anon_sym_RBRACK, - ACTIONS(324), 1, + ACTIONS(311), 1, anon_sym_DOT_DOT, - STATE(251), 1, + STATE(254), 1, sym_identifier, - STATE(267), 1, - sym_anonymous_function, - STATE(268), 1, + STATE(273), 1, sym_tuple, - STATE(316), 1, + STATE(282), 1, + sym_anonymous_function, + STATE(327), 1, sym__expression, - STATE(898), 1, + STATE(913), 1, sym__maybe_function_expression, - STATE(1016), 1, + STATE(1037), 1, sym__maybe_tuple_expression, - STATE(1017), 1, + STATE(1038), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(55), 2, - sym_string, - sym_float, - STATE(243), 2, + STATE(246), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(269), 2, + STATE(272), 2, sym_record, sym_record_update, - ACTIONS(57), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(247), 5, + STATE(262), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(292), 8, + STATE(304), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -11228,129 +11295,79 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [6800] = 4, + [6707] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(328), 16, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym__decimal, - sym__name, - ACTIONS(326), 28, + ACTIONS(27), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(29), 1, 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, - sym_string, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [6856] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(31), 1, - anon_sym_LBRACE, ACTIONS(33), 1, - anon_sym_POUND, - ACTIONS(37), 1, anon_sym_LBRACK, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_LT_LT, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_DASH, - ACTIONS(43), 1, + ACTIONS(39), 1, anon_sym_fn, - ACTIONS(45), 1, + ACTIONS(41), 1, anon_sym_todo, - ACTIONS(49), 1, + ACTIONS(45), 1, anon_sym_case, - ACTIONS(51), 1, + ACTIONS(47), 1, anon_sym_let, - ACTIONS(53), 1, + ACTIONS(49), 1, anon_sym_assert, - ACTIONS(59), 1, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(57), 1, sym__decimal, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(300), 1, + ACTIONS(269), 1, sym__name, - ACTIONS(330), 1, + ACTIONS(313), 1, anon_sym_RBRACK, - ACTIONS(332), 1, + ACTIONS(315), 1, anon_sym_DOT_DOT, - STATE(251), 1, + STATE(254), 1, sym_identifier, - STATE(267), 1, - sym_anonymous_function, - STATE(268), 1, + STATE(273), 1, sym_tuple, - STATE(316), 1, + STATE(282), 1, + sym_anonymous_function, + STATE(327), 1, sym__expression, - STATE(898), 1, + STATE(913), 1, sym__maybe_function_expression, - STATE(1016), 1, + STATE(1037), 1, sym__maybe_tuple_expression, - STATE(1017), 1, + STATE(1038), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(55), 2, - sym_string, - sym_float, - STATE(243), 2, + STATE(246), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(269), 2, + STATE(272), 2, sym_record, sym_record_update, - ACTIONS(57), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(247), 5, + STATE(262), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(292), 8, + STATE(304), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -11358,14 +11375,15 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [6964] = 4, + [6818] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(336), 16, + ACTIONS(319), 16, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -11382,9 +11400,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_assert, sym__decimal, sym__name, - ACTIONS(334), 28, + ACTIONS(317), 29, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_COMMA, anon_sym_POUND, anon_sym_LBRACK, @@ -11405,19 +11424,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [7020] = 4, + [6875] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(340), 16, + ACTIONS(323), 16, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -11434,11 +11453,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_assert, sym__decimal, sym__name, - ACTIONS(338), 28, + ACTIONS(321), 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, @@ -11457,97 +11477,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [7076] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(31), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_POUND, - ACTIONS(37), 1, - anon_sym_LBRACK, - ACTIONS(39), 1, - anon_sym_LT_LT, - ACTIONS(41), 1, - anon_sym_DASH, - ACTIONS(43), 1, - anon_sym_fn, - ACTIONS(45), 1, - anon_sym_todo, - ACTIONS(49), 1, - anon_sym_case, - ACTIONS(51), 1, - anon_sym_let, - ACTIONS(53), 1, - anon_sym_assert, - ACTIONS(59), 1, - sym__decimal, - ACTIONS(65), 1, - sym__upname, - ACTIONS(300), 1, - sym__name, - ACTIONS(342), 1, - anon_sym_RBRACK, - ACTIONS(344), 1, - anon_sym_DOT_DOT, - STATE(251), 1, - sym_identifier, - STATE(267), 1, - sym_anonymous_function, - STATE(268), 1, - sym_tuple, - STATE(316), 1, - sym__expression, - STATE(898), 1, - sym__maybe_function_expression, - STATE(1016), 1, - sym__maybe_tuple_expression, - STATE(1017), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(55), 2, - sym_string, - sym_float, - STATE(243), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(269), 2, - sym_record, - sym_record_update, - ACTIONS(57), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(247), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(292), 8, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_integer, - [7184] = 4, + [6932] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(348), 16, + ACTIONS(327), 16, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -11564,9 +11506,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_assert, sym__decimal, sym__name, - ACTIONS(346), 28, + ACTIONS(325), 29, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_COMMA, anon_sym_POUND, anon_sym_LBRACK, @@ -11587,19 +11530,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [7240] = 4, + [6989] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(352), 16, + ACTIONS(331), 16, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -11616,9 +11559,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_assert, sym__decimal, sym__name, - ACTIONS(350), 28, + ACTIONS(329), 29, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_COMMA, anon_sym_POUND, anon_sym_LBRACK, @@ -11639,19 +11583,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [7296] = 4, + [7046] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, + ACTIONS(27), 1, + anon_sym_LBRACE, + ACTIONS(29), 1, + anon_sym_POUND, + ACTIONS(33), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, + anon_sym_LT_LT, + ACTIONS(37), 1, + anon_sym_DASH, + ACTIONS(39), 1, + anon_sym_fn, + ACTIONS(41), 1, + anon_sym_todo, + ACTIONS(45), 1, + anon_sym_case, + ACTIONS(47), 1, + anon_sym_let, + ACTIONS(49), 1, + anon_sym_assert, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(57), 1, + sym__decimal, + ACTIONS(63), 1, + sym__upname, + ACTIONS(269), 1, + sym__name, + ACTIONS(333), 1, + anon_sym_RBRACK, + ACTIONS(335), 1, + anon_sym_DOT_DOT, + STATE(254), 1, + sym_identifier, + STATE(273), 1, + sym_tuple, + STATE(282), 1, + sym_anonymous_function, + STATE(327), 1, + sym__expression, + STATE(913), 1, + sym__maybe_function_expression, + STATE(1037), 1, + sym__maybe_tuple_expression, + STATE(1038), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(246), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(272), 2, + sym_record, + sym_record_update, + ACTIONS(55), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(262), 5, + sym_expression_group, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(304), 9, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_list, + sym__expression_bit_string, + sym_let, + sym_assert, + sym_string, + sym_integer, + [7157] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, sym_comment, - ACTIONS(356), 16, + ACTIONS(339), 16, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -11668,7 +11692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_assert, sym__decimal, sym__name, - ACTIONS(354), 28, + ACTIONS(337), 28, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -11691,19 +11715,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [7352] = 4, + [7213] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(360), 16, + ACTIONS(343), 16, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -11720,7 +11744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_assert, sym__decimal, sym__name, - ACTIONS(358), 28, + ACTIONS(341), 28, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -11743,19 +11767,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [7408] = 4, + [7269] = 30, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(27), 1, + anon_sym_LBRACE, + ACTIONS(29), 1, + anon_sym_POUND, + ACTIONS(33), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, + anon_sym_LT_LT, + ACTIONS(37), 1, + anon_sym_DASH, + ACTIONS(39), 1, + anon_sym_fn, + ACTIONS(41), 1, + anon_sym_todo, + ACTIONS(45), 1, + anon_sym_case, + ACTIONS(47), 1, + anon_sym_let, + ACTIONS(49), 1, + anon_sym_assert, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(57), 1, + sym__decimal, + ACTIONS(63), 1, + sym__upname, + ACTIONS(269), 1, + sym__name, + ACTIONS(345), 1, + anon_sym_RPAREN, + STATE(254), 1, + sym_identifier, + STATE(273), 1, + sym_tuple, + STATE(282), 1, + sym_anonymous_function, + STATE(384), 1, + sym__expression, + STATE(913), 1, + sym__maybe_function_expression, + STATE(1037), 1, + sym__maybe_tuple_expression, + STATE(1038), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(246), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(272), 2, + sym_record, + sym_record_update, + ACTIONS(55), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(262), 5, + sym_expression_group, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(304), 9, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_list, + sym__expression_bit_string, + sym_let, + sym_assert, + sym_string, + sym_integer, + [7377] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(364), 16, + ACTIONS(349), 16, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -11772,7 +11874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_assert, sym__decimal, sym__name, - ACTIONS(362), 28, + ACTIONS(347), 28, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -11795,19 +11897,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [7464] = 4, + [7433] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(368), 16, + ACTIONS(353), 16, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -11824,7 +11926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_assert, sym__decimal, sym__name, - ACTIONS(366), 28, + ACTIONS(351), 28, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -11847,19 +11949,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [7520] = 4, + [7489] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(372), 16, + ACTIONS(357), 16, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -11876,7 +11978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_assert, sym__decimal, sym__name, - ACTIONS(370), 28, + ACTIONS(355), 28, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, @@ -11899,82 +12001,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [7576] = 30, + [7545] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(31), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_POUND, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_LBRACK, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_LT_LT, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_DASH, - ACTIONS(43), 1, + ACTIONS(39), 1, anon_sym_fn, - ACTIONS(45), 1, + ACTIONS(41), 1, anon_sym_todo, - ACTIONS(49), 1, + ACTIONS(45), 1, anon_sym_case, - ACTIONS(51), 1, + ACTIONS(47), 1, anon_sym_let, - ACTIONS(53), 1, + ACTIONS(49), 1, anon_sym_assert, - ACTIONS(59), 1, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(57), 1, sym__decimal, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(300), 1, + ACTIONS(269), 1, sym__name, - ACTIONS(374), 1, - anon_sym_RBRACK, - ACTIONS(376), 1, - anon_sym_DOT_DOT, - STATE(251), 1, + STATE(254), 1, sym_identifier, - STATE(267), 1, - sym_anonymous_function, - STATE(268), 1, + STATE(273), 1, sym_tuple, - STATE(316), 1, + STATE(282), 1, + sym_anonymous_function, + STATE(355), 1, sym__expression, - STATE(898), 1, + STATE(913), 1, sym__maybe_function_expression, - STATE(1016), 1, + STATE(1037), 1, sym__maybe_tuple_expression, - STATE(1017), 1, + STATE(1038), 1, sym__maybe_record_expression, + STATE(1049), 1, + sym_case_subjects, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(55), 2, - sym_string, - sym_float, - STATE(243), 2, + STATE(246), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(269), 2, + STATE(272), 2, sym_record, sym_record_update, - ACTIONS(57), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(247), 5, + STATE(262), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(292), 8, + STATE(304), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -11982,75 +12083,77 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [7684] = 29, + [7653] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(31), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_POUND, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_LBRACK, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_LT_LT, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_DASH, - ACTIONS(43), 1, + ACTIONS(39), 1, anon_sym_fn, - ACTIONS(45), 1, + ACTIONS(41), 1, anon_sym_todo, - ACTIONS(49), 1, + ACTIONS(45), 1, anon_sym_case, - ACTIONS(51), 1, + ACTIONS(47), 1, anon_sym_let, - ACTIONS(53), 1, + ACTIONS(49), 1, anon_sym_assert, - ACTIONS(59), 1, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(57), 1, sym__decimal, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(300), 1, + ACTIONS(269), 1, sym__name, - STATE(251), 1, + ACTIONS(359), 1, + anon_sym_RBRACK, + STATE(254), 1, sym_identifier, - STATE(267), 1, - sym_anonymous_function, - STATE(268), 1, + STATE(273), 1, sym_tuple, - STATE(351), 1, + STATE(282), 1, + sym_anonymous_function, + STATE(341), 1, sym__expression, - STATE(898), 1, + STATE(913), 1, sym__maybe_function_expression, - STATE(999), 1, - sym_case_subjects, - STATE(1016), 1, + STATE(1037), 1, sym__maybe_tuple_expression, - STATE(1017), 1, + STATE(1038), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(55), 2, - sym_string, - sym_float, - STATE(243), 2, + STATE(246), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(269), 2, + STATE(272), 2, sym_record, sym_record_update, - ACTIONS(57), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(247), 5, + STATE(262), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(292), 8, + STATE(304), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -12058,126 +12161,77 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [7789] = 4, + [7761] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(380), 16, - anon_sym_SLASH, + ACTIONS(27), 1, + anon_sym_LBRACE, + ACTIONS(29), 1, + anon_sym_POUND, + ACTIONS(33), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, + anon_sym_LT_LT, + ACTIONS(37), 1, anon_sym_DASH, + ACTIONS(39), 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(41), 1, anon_sym_todo, + ACTIONS(45), 1, anon_sym_case, + ACTIONS(47), 1, anon_sym_let, + ACTIONS(49), 1, anon_sym_assert, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(57), 1, sym__decimal, + ACTIONS(63), 1, + sym__upname, + ACTIONS(269), 1, sym__name, - ACTIONS(378), 27, - 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, - sym_string, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [7844] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(31), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_POUND, - ACTIONS(37), 1, - anon_sym_LBRACK, - ACTIONS(39), 1, - anon_sym_LT_LT, - ACTIONS(41), 1, - anon_sym_DASH, - ACTIONS(43), 1, - anon_sym_fn, - ACTIONS(45), 1, - anon_sym_todo, - ACTIONS(49), 1, - anon_sym_case, - ACTIONS(51), 1, - anon_sym_let, - ACTIONS(53), 1, - anon_sym_assert, - ACTIONS(59), 1, - sym__decimal, - ACTIONS(65), 1, - sym__upname, - ACTIONS(300), 1, - sym__name, - ACTIONS(382), 1, + ACTIONS(361), 1, anon_sym_RPAREN, - STATE(251), 1, + STATE(254), 1, sym_identifier, - STATE(267), 1, - sym_anonymous_function, - STATE(268), 1, + STATE(273), 1, sym_tuple, - STATE(337), 1, + STATE(282), 1, + sym_anonymous_function, + STATE(385), 1, sym__expression, - STATE(898), 1, + STATE(913), 1, sym__maybe_function_expression, - STATE(1016), 1, + STATE(1037), 1, sym__maybe_tuple_expression, - STATE(1017), 1, + STATE(1038), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(55), 2, - sym_string, - sym_float, - STATE(243), 2, + STATE(246), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(269), 2, + STATE(272), 2, sym_record, sym_record_update, - ACTIONS(57), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(247), 5, + STATE(262), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(292), 8, + STATE(304), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -12185,170 +12239,119 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [7949] = 29, + [7869] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(31), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_POUND, - ACTIONS(37), 1, - anon_sym_LBRACK, - ACTIONS(39), 1, - anon_sym_LT_LT, - ACTIONS(41), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(365), 16, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(43), 1, anon_sym_fn, - ACTIONS(45), 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(49), 1, anon_sym_case, - ACTIONS(51), 1, anon_sym_let, - ACTIONS(53), 1, anon_sym_assert, - ACTIONS(59), 1, sym__decimal, - ACTIONS(65), 1, - sym__upname, - ACTIONS(300), 1, sym__name, - ACTIONS(384), 1, - anon_sym_RBRACK, - STATE(251), 1, - sym_identifier, - STATE(267), 1, - sym_anonymous_function, - STATE(268), 1, - sym_tuple, - STATE(323), 1, - sym__expression, - STATE(898), 1, - sym__maybe_function_expression, - STATE(1016), 1, - sym__maybe_tuple_expression, - STATE(1017), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(55), 2, - sym_string, + ACTIONS(363), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DQUOTE, sym_float, - STATE(243), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(269), 2, - sym_record, - sym_record_update, - ACTIONS(57), 3, sym__hex, sym__octal, sym__binary, - STATE(247), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(292), 8, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_integer, - [8054] = 29, + sym__upname, + [7925] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(31), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_POUND, - ACTIONS(37), 1, - anon_sym_LBRACK, - ACTIONS(39), 1, - anon_sym_LT_LT, - ACTIONS(41), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(369), 16, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(43), 1, anon_sym_fn, - ACTIONS(45), 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(49), 1, anon_sym_case, - ACTIONS(51), 1, anon_sym_let, - ACTIONS(53), 1, anon_sym_assert, - ACTIONS(59), 1, sym__decimal, - ACTIONS(65), 1, - sym__upname, - ACTIONS(300), 1, sym__name, - ACTIONS(386), 1, - anon_sym_RPAREN, - STATE(251), 1, - sym_identifier, - STATE(267), 1, - sym_anonymous_function, - STATE(268), 1, - sym_tuple, - STATE(316), 1, - sym__expression, - STATE(898), 1, - sym__maybe_function_expression, - STATE(1016), 1, - sym__maybe_tuple_expression, - STATE(1017), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(55), 2, - sym_string, + ACTIONS(367), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DQUOTE, sym_float, - STATE(243), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(269), 2, - sym_record, - sym_record_update, - ACTIONS(57), 3, sym__hex, sym__octal, sym__binary, - STATE(247), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(292), 8, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_integer, - [8159] = 6, + sym__upname, + [7981] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(104), 1, - anon_sym_LPAREN, - ACTIONS(388), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(102), 16, + ACTIONS(373), 16, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -12365,12 +12368,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_assert, sym__decimal, sym__name, - ACTIONS(97), 25, + ACTIONS(371), 28, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -12385,156 +12391,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [8218] = 29, + [8037] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(31), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_POUND, - ACTIONS(37), 1, - anon_sym_LBRACK, - ACTIONS(39), 1, - anon_sym_LT_LT, - ACTIONS(41), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(377), 16, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(43), 1, anon_sym_fn, - ACTIONS(45), 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(49), 1, anon_sym_case, - ACTIONS(51), 1, anon_sym_let, - ACTIONS(53), 1, anon_sym_assert, - ACTIONS(59), 1, sym__decimal, - ACTIONS(65), 1, - sym__upname, - ACTIONS(300), 1, sym__name, - STATE(251), 1, - sym_identifier, - STATE(267), 1, - sym_anonymous_function, - STATE(268), 1, - sym_tuple, - STATE(351), 1, - sym__expression, - STATE(898), 1, - sym__maybe_function_expression, - STATE(1016), 1, - sym__maybe_tuple_expression, - STATE(1017), 1, - sym__maybe_record_expression, - STATE(1052), 1, - sym_case_subjects, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(55), 2, - sym_string, + ACTIONS(375), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DQUOTE, sym_float, - STATE(243), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(269), 2, - sym_record, - sym_record_update, - ACTIONS(57), 3, sym__hex, sym__octal, sym__binary, - STATE(247), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(292), 8, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_integer, - [8323] = 29, + sym__upname, + [8093] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(31), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_POUND, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_LBRACK, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_LT_LT, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_DASH, - ACTIONS(43), 1, + ACTIONS(39), 1, anon_sym_fn, - ACTIONS(45), 1, + ACTIONS(41), 1, anon_sym_todo, - ACTIONS(49), 1, + ACTIONS(45), 1, anon_sym_case, - ACTIONS(51), 1, + ACTIONS(47), 1, anon_sym_let, - ACTIONS(53), 1, + ACTIONS(49), 1, anon_sym_assert, - ACTIONS(59), 1, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(57), 1, sym__decimal, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(300), 1, + ACTIONS(269), 1, sym__name, - ACTIONS(392), 1, + ACTIONS(379), 1, anon_sym_RPAREN, - STATE(251), 1, + STATE(254), 1, sym_identifier, - STATE(267), 1, - sym_anonymous_function, - STATE(268), 1, + STATE(273), 1, sym_tuple, - STATE(316), 1, + STATE(282), 1, + sym_anonymous_function, + STATE(327), 1, sym__expression, - STATE(898), 1, + STATE(913), 1, sym__maybe_function_expression, - STATE(1016), 1, + STATE(1037), 1, sym__maybe_tuple_expression, - STATE(1017), 1, + STATE(1038), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(55), 2, - sym_string, - sym_float, - STATE(243), 2, + STATE(246), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(269), 2, + STATE(272), 2, sym_record, sym_record_update, - ACTIONS(57), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(247), 5, + STATE(262), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(292), 8, + STATE(304), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -12542,75 +12525,77 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [8428] = 29, + [8201] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(31), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_POUND, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_LBRACK, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_LT_LT, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_DASH, - ACTIONS(43), 1, + ACTIONS(39), 1, anon_sym_fn, - ACTIONS(45), 1, + ACTIONS(41), 1, anon_sym_todo, - ACTIONS(49), 1, + ACTIONS(45), 1, anon_sym_case, - ACTIONS(51), 1, + ACTIONS(47), 1, anon_sym_let, - ACTIONS(53), 1, + ACTIONS(49), 1, anon_sym_assert, - ACTIONS(59), 1, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(57), 1, sym__decimal, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(300), 1, + ACTIONS(269), 1, sym__name, - ACTIONS(394), 1, + ACTIONS(381), 1, anon_sym_RPAREN, - STATE(251), 1, + STATE(254), 1, sym_identifier, - STATE(267), 1, - sym_anonymous_function, - STATE(268), 1, + STATE(273), 1, sym_tuple, - STATE(357), 1, + STATE(282), 1, + sym_anonymous_function, + STATE(327), 1, sym__expression, - STATE(898), 1, + STATE(913), 1, sym__maybe_function_expression, - STATE(1016), 1, + STATE(1037), 1, sym__maybe_tuple_expression, - STATE(1017), 1, + STATE(1038), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(55), 2, - sym_string, - sym_float, - STATE(243), 2, + STATE(246), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(269), 2, + STATE(272), 2, sym_record, sym_record_update, - ACTIONS(57), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(247), 5, + STATE(262), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(292), 8, + STATE(304), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -12618,75 +12603,129 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [8533] = 29, + [8309] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(31), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(385), 16, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_fn, + anon_sym_try, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + sym__decimal, + sym__name, + ACTIONS(383), 28, anon_sym_LBRACE, - ACTIONS(33), 1, + anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_POUND, - ACTIONS(37), 1, anon_sym_LBRACK, - ACTIONS(39), 1, anon_sym_LT_LT, - ACTIONS(41), 1, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [8365] = 30, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(27), 1, + anon_sym_LBRACE, + ACTIONS(29), 1, + anon_sym_POUND, + ACTIONS(33), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, + anon_sym_LT_LT, + ACTIONS(37), 1, anon_sym_DASH, - ACTIONS(43), 1, + ACTIONS(39), 1, anon_sym_fn, - ACTIONS(45), 1, + ACTIONS(41), 1, anon_sym_todo, - ACTIONS(49), 1, + ACTIONS(45), 1, anon_sym_case, - ACTIONS(51), 1, + ACTIONS(47), 1, anon_sym_let, - ACTIONS(53), 1, + ACTIONS(49), 1, anon_sym_assert, - ACTIONS(59), 1, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(57), 1, sym__decimal, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(300), 1, + ACTIONS(269), 1, sym__name, - STATE(251), 1, + ACTIONS(387), 1, + anon_sym_RPAREN, + STATE(254), 1, sym_identifier, - STATE(267), 1, - sym_anonymous_function, - STATE(268), 1, + STATE(273), 1, sym_tuple, - STATE(351), 1, + STATE(282), 1, + sym_anonymous_function, + STATE(327), 1, sym__expression, - STATE(898), 1, + STATE(913), 1, sym__maybe_function_expression, - STATE(1016), 1, + STATE(1037), 1, sym__maybe_tuple_expression, - STATE(1017), 1, + STATE(1038), 1, sym__maybe_record_expression, - STATE(1048), 1, - sym_case_subjects, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(55), 2, - sym_string, - sym_float, - STATE(243), 2, + STATE(246), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(269), 2, + STATE(272), 2, sym_record, sym_record_update, - ACTIONS(57), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(247), 5, + STATE(262), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(292), 8, + STATE(304), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -12694,75 +12733,77 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [8638] = 29, + [8473] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(31), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_POUND, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_LBRACK, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_LT_LT, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_DASH, - ACTIONS(43), 1, + ACTIONS(39), 1, anon_sym_fn, - ACTIONS(45), 1, + ACTIONS(41), 1, anon_sym_todo, - ACTIONS(49), 1, + ACTIONS(45), 1, anon_sym_case, - ACTIONS(51), 1, + ACTIONS(47), 1, anon_sym_let, - ACTIONS(53), 1, + ACTIONS(49), 1, anon_sym_assert, - ACTIONS(59), 1, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(57), 1, sym__decimal, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(300), 1, + ACTIONS(269), 1, sym__name, - ACTIONS(396), 1, - anon_sym_RBRACK, - STATE(251), 1, + STATE(254), 1, sym_identifier, - STATE(267), 1, - sym_anonymous_function, - STATE(268), 1, + STATE(273), 1, sym_tuple, - STATE(329), 1, + STATE(282), 1, + sym_anonymous_function, + STATE(355), 1, sym__expression, - STATE(898), 1, + STATE(913), 1, sym__maybe_function_expression, - STATE(1016), 1, + STATE(1037), 1, sym__maybe_tuple_expression, - STATE(1017), 1, + STATE(1038), 1, sym__maybe_record_expression, + STATE(1073), 1, + sym_case_subjects, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(55), 2, - sym_string, - sym_float, - STATE(243), 2, + STATE(246), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(269), 2, + STATE(272), 2, sym_record, sym_record_update, - ACTIONS(57), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(247), 5, + STATE(262), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(292), 8, + STATE(304), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -12770,151 +12811,181 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [8743] = 29, + [8581] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(31), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_POUND, - ACTIONS(37), 1, - anon_sym_LBRACK, - ACTIONS(39), 1, - anon_sym_LT_LT, - ACTIONS(41), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(391), 16, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(43), 1, anon_sym_fn, - ACTIONS(45), 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(49), 1, anon_sym_case, - ACTIONS(51), 1, anon_sym_let, - ACTIONS(53), 1, anon_sym_assert, - ACTIONS(59), 1, sym__decimal, - ACTIONS(65), 1, - sym__upname, - ACTIONS(300), 1, sym__name, - ACTIONS(398), 1, - anon_sym_RBRACK, - STATE(251), 1, - sym_identifier, - STATE(267), 1, - sym_anonymous_function, - STATE(268), 1, - sym_tuple, - STATE(331), 1, - sym__expression, - STATE(898), 1, - sym__maybe_function_expression, - STATE(1016), 1, - sym__maybe_tuple_expression, - STATE(1017), 1, - sym__maybe_record_expression, + ACTIONS(389), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [8637] = 4, + ACTIONS(3), 1, + sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(55), 2, - sym_string, + ACTIONS(395), 16, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_fn, + anon_sym_try, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + sym__decimal, + sym__name, + ACTIONS(393), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DQUOTE, sym_float, - STATE(243), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(269), 2, - sym_record, - sym_record_update, - ACTIONS(57), 3, sym__hex, sym__octal, sym__binary, - STATE(247), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(292), 8, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_integer, - [8848] = 29, + sym__upname, + [8693] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(31), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_POUND, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_LBRACK, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_LT_LT, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_DASH, - ACTIONS(43), 1, + ACTIONS(39), 1, anon_sym_fn, - ACTIONS(45), 1, + ACTIONS(41), 1, anon_sym_todo, - ACTIONS(49), 1, + ACTIONS(45), 1, anon_sym_case, - ACTIONS(51), 1, + ACTIONS(47), 1, anon_sym_let, - ACTIONS(53), 1, + ACTIONS(49), 1, anon_sym_assert, - ACTIONS(59), 1, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(57), 1, sym__decimal, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(300), 1, + ACTIONS(269), 1, sym__name, - ACTIONS(400), 1, + ACTIONS(397), 1, anon_sym_RPAREN, - STATE(251), 1, + STATE(254), 1, sym_identifier, - STATE(267), 1, - sym_anonymous_function, - STATE(268), 1, + STATE(273), 1, sym_tuple, - STATE(316), 1, + STATE(282), 1, + sym_anonymous_function, + STATE(327), 1, sym__expression, - STATE(898), 1, + STATE(913), 1, sym__maybe_function_expression, - STATE(1016), 1, + STATE(1037), 1, sym__maybe_tuple_expression, - STATE(1017), 1, + STATE(1038), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(55), 2, - sym_string, - sym_float, - STATE(243), 2, + STATE(246), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(269), 2, + STATE(272), 2, sym_record, sym_record_update, - ACTIONS(57), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(247), 5, + STATE(262), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(292), 8, + STATE(304), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -12922,75 +12993,77 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [8953] = 29, + [8801] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(31), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_POUND, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_LBRACK, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_LT_LT, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_DASH, - ACTIONS(43), 1, + ACTIONS(39), 1, anon_sym_fn, - ACTIONS(45), 1, + ACTIONS(41), 1, anon_sym_todo, - ACTIONS(49), 1, + ACTIONS(45), 1, anon_sym_case, - ACTIONS(51), 1, + ACTIONS(47), 1, anon_sym_let, - ACTIONS(53), 1, + ACTIONS(49), 1, anon_sym_assert, - ACTIONS(59), 1, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(57), 1, sym__decimal, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(300), 1, + ACTIONS(269), 1, sym__name, - ACTIONS(402), 1, - anon_sym_RPAREN, - STATE(251), 1, + STATE(254), 1, sym_identifier, - STATE(267), 1, - sym_anonymous_function, - STATE(268), 1, + STATE(273), 1, sym_tuple, - STATE(316), 1, + STATE(282), 1, + sym_anonymous_function, + STATE(355), 1, sym__expression, - STATE(898), 1, + STATE(913), 1, sym__maybe_function_expression, - STATE(1016), 1, + STATE(1037), 1, sym__maybe_tuple_expression, - STATE(1017), 1, + STATE(1038), 1, sym__maybe_record_expression, + STATE(1069), 1, + sym_case_subjects, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(55), 2, - sym_string, - sym_float, - STATE(243), 2, + STATE(246), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(269), 2, + STATE(272), 2, sym_record, sym_record_update, - ACTIONS(57), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(247), 5, + STATE(262), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(292), 8, + STATE(304), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -12998,75 +13071,77 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [9058] = 29, + [8909] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(31), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_POUND, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_LBRACK, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_LT_LT, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_DASH, - ACTIONS(43), 1, + ACTIONS(39), 1, anon_sym_fn, - ACTIONS(45), 1, + ACTIONS(41), 1, anon_sym_todo, - ACTIONS(49), 1, + ACTIONS(45), 1, anon_sym_case, - ACTIONS(51), 1, + ACTIONS(47), 1, anon_sym_let, - ACTIONS(53), 1, + ACTIONS(49), 1, anon_sym_assert, - ACTIONS(59), 1, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(57), 1, sym__decimal, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(300), 1, + ACTIONS(269), 1, sym__name, - ACTIONS(404), 1, - anon_sym_RPAREN, - STATE(251), 1, + ACTIONS(399), 1, + anon_sym_RBRACK, + STATE(254), 1, sym_identifier, - STATE(267), 1, - sym_anonymous_function, - STATE(268), 1, + STATE(273), 1, sym_tuple, - STATE(316), 1, + STATE(282), 1, + sym_anonymous_function, + STATE(340), 1, sym__expression, - STATE(898), 1, + STATE(913), 1, sym__maybe_function_expression, - STATE(1016), 1, + STATE(1037), 1, sym__maybe_tuple_expression, - STATE(1017), 1, + STATE(1038), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(55), 2, - sym_string, - sym_float, - STATE(243), 2, + STATE(246), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(269), 2, + STATE(272), 2, sym_record, sym_record_update, - ACTIONS(57), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(247), 5, + STATE(262), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(292), 8, + STATE(304), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -13074,75 +13149,77 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [9163] = 29, + [9017] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(31), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_POUND, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_LBRACK, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_LT_LT, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_DASH, - ACTIONS(43), 1, + ACTIONS(39), 1, anon_sym_fn, - ACTIONS(45), 1, + ACTIONS(41), 1, anon_sym_todo, - ACTIONS(49), 1, + ACTIONS(45), 1, anon_sym_case, - ACTIONS(51), 1, + ACTIONS(47), 1, anon_sym_let, - ACTIONS(53), 1, + ACTIONS(49), 1, anon_sym_assert, - ACTIONS(59), 1, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(57), 1, sym__decimal, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(300), 1, + ACTIONS(269), 1, sym__name, - ACTIONS(406), 1, + ACTIONS(401), 1, anon_sym_RPAREN, - STATE(251), 1, + STATE(254), 1, sym_identifier, - STATE(267), 1, - sym_anonymous_function, - STATE(268), 1, + STATE(273), 1, sym_tuple, - STATE(316), 1, + STATE(282), 1, + sym_anonymous_function, + STATE(327), 1, sym__expression, - STATE(898), 1, + STATE(913), 1, sym__maybe_function_expression, - STATE(1016), 1, + STATE(1037), 1, sym__maybe_tuple_expression, - STATE(1017), 1, + STATE(1038), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(55), 2, - sym_string, - sym_float, - STATE(243), 2, + STATE(246), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(269), 2, + STATE(272), 2, sym_record, sym_record_update, - ACTIONS(57), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(247), 5, + STATE(262), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(292), 8, + STATE(304), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -13150,14 +13227,15 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [9268] = 4, + [9125] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(410), 16, + ACTIONS(405), 16, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -13174,14 +13252,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_assert, sym__decimal, sym__name, - ACTIONS(408), 27, + ACTIONS(403), 28, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT, + anon_sym_COMMA, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -13196,80 +13275,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [9323] = 29, + [9181] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(31), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_POUND, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_LBRACK, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_LT_LT, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_DASH, - ACTIONS(43), 1, + ACTIONS(39), 1, anon_sym_fn, - ACTIONS(45), 1, + ACTIONS(41), 1, anon_sym_todo, - ACTIONS(49), 1, + ACTIONS(45), 1, anon_sym_case, - ACTIONS(51), 1, + ACTIONS(47), 1, anon_sym_let, - ACTIONS(53), 1, + ACTIONS(49), 1, anon_sym_assert, - ACTIONS(59), 1, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(57), 1, sym__decimal, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(300), 1, + ACTIONS(269), 1, sym__name, - ACTIONS(412), 1, - anon_sym_RPAREN, - STATE(251), 1, + ACTIONS(407), 1, + anon_sym_RBRACK, + STATE(254), 1, sym_identifier, - STATE(267), 1, - sym_anonymous_function, - STATE(268), 1, + STATE(273), 1, sym_tuple, - STATE(349), 1, + STATE(282), 1, + sym_anonymous_function, + STATE(342), 1, sym__expression, - STATE(898), 1, + STATE(913), 1, sym__maybe_function_expression, - STATE(1016), 1, + STATE(1037), 1, sym__maybe_tuple_expression, - STATE(1017), 1, + STATE(1038), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(55), 2, - sym_string, - sym_float, - STATE(243), 2, + STATE(246), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(269), 2, + STATE(272), 2, sym_record, sym_record_update, - ACTIONS(57), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(247), 5, + STATE(262), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(292), 8, + STATE(304), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -13277,73 +13357,77 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [9428] = 28, + [9289] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(106), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(110), 1, + ACTIONS(29), 1, anon_sym_POUND, - ACTIONS(112), 1, + ACTIONS(33), 1, anon_sym_LBRACK, - ACTIONS(114), 1, + ACTIONS(35), 1, anon_sym_LT_LT, - ACTIONS(116), 1, + ACTIONS(37), 1, anon_sym_DASH, - ACTIONS(118), 1, + ACTIONS(39), 1, anon_sym_fn, - ACTIONS(122), 1, + ACTIONS(41), 1, anon_sym_todo, - ACTIONS(124), 1, + ACTIONS(45), 1, anon_sym_case, - ACTIONS(126), 1, + ACTIONS(47), 1, anon_sym_let, - ACTIONS(128), 1, + ACTIONS(49), 1, anon_sym_assert, - ACTIONS(134), 1, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(57), 1, sym__decimal, - ACTIONS(136), 1, - sym__name, - ACTIONS(138), 1, + ACTIONS(63), 1, sym__upname, - STATE(52), 1, - sym_anonymous_function, - STATE(56), 1, - sym_tuple, - STATE(95), 1, + ACTIONS(269), 1, + sym__name, + ACTIONS(409), 1, + anon_sym_RPAREN, + STATE(254), 1, sym_identifier, - STATE(168), 1, + STATE(273), 1, + sym_tuple, + STATE(282), 1, + sym_anonymous_function, + STATE(327), 1, sym__expression, - STATE(889), 1, + STATE(913), 1, sym__maybe_function_expression, - STATE(1038), 1, + STATE(1037), 1, sym__maybe_tuple_expression, - STATE(1050), 1, + STATE(1038), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(130), 2, - sym_string, - sym_float, - STATE(12), 2, + STATE(246), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(58), 2, + STATE(272), 2, sym_record, sym_record_update, - ACTIONS(132), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(18), 5, + STATE(262), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(165), 8, + STATE(304), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -13351,73 +13435,77 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [9530] = 28, + [9397] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(31), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_POUND, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_LBRACK, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_LT_LT, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_DASH, - ACTIONS(43), 1, + ACTIONS(39), 1, anon_sym_fn, - ACTIONS(45), 1, + ACTIONS(41), 1, anon_sym_todo, - ACTIONS(49), 1, + ACTIONS(45), 1, anon_sym_case, - ACTIONS(51), 1, + ACTIONS(47), 1, anon_sym_let, - ACTIONS(53), 1, + ACTIONS(49), 1, anon_sym_assert, - ACTIONS(59), 1, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(57), 1, sym__decimal, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(300), 1, + ACTIONS(269), 1, sym__name, - STATE(251), 1, + ACTIONS(411), 1, + anon_sym_RPAREN, + STATE(254), 1, sym_identifier, - STATE(267), 1, - sym_anonymous_function, - STATE(268), 1, + STATE(273), 1, sym_tuple, - STATE(302), 1, + STATE(282), 1, + sym_anonymous_function, + STATE(374), 1, sym__expression, - STATE(898), 1, + STATE(913), 1, sym__maybe_function_expression, - STATE(1016), 1, + STATE(1037), 1, sym__maybe_tuple_expression, - STATE(1017), 1, + STATE(1038), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(55), 2, - sym_string, - sym_float, - STATE(243), 2, + STATE(246), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(269), 2, + STATE(272), 2, sym_record, sym_record_update, - ACTIONS(57), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(247), 5, + STATE(262), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(292), 8, + STATE(304), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -13425,73 +13513,127 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [9632] = 28, + [9505] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(31), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(415), 16, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_fn, + anon_sym_try, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + sym__decimal, + sym__name, + ACTIONS(413), 28, anon_sym_LBRACE, - ACTIONS(33), 1, + anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_POUND, - ACTIONS(37), 1, anon_sym_LBRACK, - ACTIONS(39), 1, anon_sym_LT_LT, - ACTIONS(41), 1, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [9561] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(417), 1, + anon_sym_LBRACE, + ACTIONS(419), 1, + anon_sym_POUND, + ACTIONS(421), 1, + anon_sym_LBRACK, + ACTIONS(423), 1, + anon_sym_LT_LT, + ACTIONS(425), 1, anon_sym_DASH, - ACTIONS(43), 1, + ACTIONS(427), 1, anon_sym_fn, - ACTIONS(45), 1, + ACTIONS(429), 1, anon_sym_todo, - ACTIONS(49), 1, + ACTIONS(431), 1, anon_sym_case, - ACTIONS(51), 1, + ACTIONS(433), 1, anon_sym_let, - ACTIONS(53), 1, + ACTIONS(435), 1, anon_sym_assert, - ACTIONS(59), 1, + ACTIONS(437), 1, + anon_sym_DQUOTE, + ACTIONS(439), 1, + sym_float, + ACTIONS(443), 1, sym__decimal, - ACTIONS(65), 1, - sym__upname, - ACTIONS(300), 1, + ACTIONS(445), 1, sym__name, - STATE(251), 1, + ACTIONS(447), 1, + sym__upname, + STATE(190), 1, sym_identifier, - STATE(267), 1, - sym_anonymous_function, - STATE(268), 1, + STATE(209), 1, sym_tuple, - STATE(384), 1, + STATE(214), 1, + sym_anonymous_function, + STATE(231), 1, sym__expression, - STATE(898), 1, + STATE(986), 1, sym__maybe_function_expression, - STATE(1016), 1, + STATE(1055), 1, sym__maybe_tuple_expression, - STATE(1017), 1, + STATE(1056), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(55), 2, - sym_string, - sym_float, - STATE(243), 2, + STATE(188), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(269), 2, + STATE(210), 2, sym_record, sym_record_update, - ACTIONS(57), 3, + ACTIONS(441), 3, sym__hex, sym__octal, sym__binary, - STATE(247), 5, + STATE(191), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(292), 8, + STATE(245), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -13499,73 +13641,75 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [9734] = 28, + [9666] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(31), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_POUND, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_LBRACK, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_LT_LT, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_DASH, - ACTIONS(43), 1, + ACTIONS(39), 1, anon_sym_fn, - ACTIONS(45), 1, + ACTIONS(41), 1, anon_sym_todo, - ACTIONS(49), 1, + ACTIONS(45), 1, anon_sym_case, - ACTIONS(51), 1, + ACTIONS(47), 1, anon_sym_let, - ACTIONS(53), 1, + ACTIONS(49), 1, anon_sym_assert, - ACTIONS(59), 1, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(57), 1, sym__decimal, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(300), 1, + ACTIONS(269), 1, sym__name, - STATE(251), 1, + STATE(254), 1, sym_identifier, - STATE(267), 1, - sym_anonymous_function, - STATE(268), 1, + STATE(273), 1, sym_tuple, - STATE(405), 1, + STATE(282), 1, + sym_anonymous_function, + STATE(299), 1, sym__expression, - STATE(898), 1, + STATE(913), 1, sym__maybe_function_expression, - STATE(1016), 1, + STATE(1037), 1, sym__maybe_tuple_expression, - STATE(1017), 1, + STATE(1038), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(55), 2, - sym_string, - sym_float, - STATE(243), 2, + STATE(246), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(269), 2, + STATE(272), 2, sym_record, sym_record_update, - ACTIONS(57), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(247), 5, + STATE(262), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(292), 8, + STATE(304), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -13573,147 +13717,152 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [9836] = 28, + [9771] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(414), 1, + ACTIONS(63), 1, + sym__upname, + ACTIONS(93), 1, anon_sym_LBRACE, - ACTIONS(416), 1, + ACTIONS(97), 1, anon_sym_POUND, - ACTIONS(418), 1, + ACTIONS(99), 1, anon_sym_LBRACK, - ACTIONS(420), 1, + ACTIONS(101), 1, anon_sym_LT_LT, - ACTIONS(422), 1, + ACTIONS(103), 1, anon_sym_DASH, - ACTIONS(424), 1, + ACTIONS(105), 1, anon_sym_fn, - ACTIONS(426), 1, + ACTIONS(109), 1, anon_sym_todo, - ACTIONS(428), 1, + ACTIONS(111), 1, anon_sym_case, - ACTIONS(430), 1, - anon_sym_let, - ACTIONS(432), 1, - anon_sym_assert, - ACTIONS(438), 1, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(123), 1, sym__decimal, - ACTIONS(440), 1, + ACTIONS(269), 1, sym__name, - ACTIONS(442), 1, - sym__upname, - STATE(185), 1, - sym_identifier, - STATE(203), 1, + ACTIONS(449), 1, + anon_sym_GT_GT, + ACTIONS(451), 1, + anon_sym_let, + ACTIONS(453), 1, + anon_sym_assert, + ACTIONS(455), 1, + sym_float, + STATE(60), 1, sym_tuple, - STATE(204), 1, + STATE(62), 1, sym_anonymous_function, - STATE(232), 1, - sym__expression, - STATE(969), 1, + STATE(733), 1, + sym_identifier, + STATE(869), 1, + sym_expression_bit_string_segment, + STATE(936), 1, sym__maybe_function_expression, - STATE(1034), 1, + STATE(1060), 1, sym__maybe_tuple_expression, - STATE(1035), 1, + STATE(1062), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(434), 2, - sym_string, - sym_float, - STATE(184), 2, + STATE(21), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(202), 2, + STATE(64), 2, sym_record, sym_record_update, - ACTIONS(436), 3, + ACTIONS(121), 3, sym__hex, sym__octal, sym__binary, - STATE(201), 5, + STATE(55), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(217), 8, - sym_binary_expression, + STATE(857), 8, sym__expression_unit, sym_todo, sym_list, sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [9938] = 28, + [9878] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(414), 1, + ACTIONS(93), 1, anon_sym_LBRACE, - ACTIONS(416), 1, + ACTIONS(97), 1, anon_sym_POUND, - ACTIONS(418), 1, + ACTIONS(99), 1, anon_sym_LBRACK, - ACTIONS(420), 1, + ACTIONS(101), 1, anon_sym_LT_LT, - ACTIONS(422), 1, + ACTIONS(103), 1, anon_sym_DASH, - ACTIONS(424), 1, + ACTIONS(105), 1, anon_sym_fn, - ACTIONS(426), 1, + ACTIONS(109), 1, anon_sym_todo, - ACTIONS(428), 1, + ACTIONS(111), 1, anon_sym_case, - ACTIONS(430), 1, + ACTIONS(113), 1, anon_sym_let, - ACTIONS(432), 1, + ACTIONS(115), 1, anon_sym_assert, - ACTIONS(438), 1, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(119), 1, + sym_float, + ACTIONS(123), 1, sym__decimal, - ACTIONS(440), 1, + ACTIONS(125), 1, sym__name, - ACTIONS(442), 1, + ACTIONS(127), 1, sym__upname, - STATE(185), 1, - sym_identifier, - STATE(203), 1, + STATE(60), 1, sym_tuple, - STATE(204), 1, + STATE(62), 1, sym_anonymous_function, - STATE(233), 1, + STATE(139), 1, + sym_identifier, + STATE(175), 1, sym__expression, - STATE(969), 1, + STATE(936), 1, sym__maybe_function_expression, - STATE(1034), 1, + STATE(1060), 1, sym__maybe_tuple_expression, - STATE(1035), 1, + STATE(1062), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(434), 2, - sym_string, - sym_float, - STATE(184), 2, + STATE(21), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(202), 2, + STATE(64), 2, sym_record, sym_record_update, - ACTIONS(436), 3, + ACTIONS(121), 3, sym__hex, sym__octal, sym__binary, - STATE(201), 5, + STATE(55), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(217), 8, + STATE(181), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -13721,147 +13870,152 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [10040] = 28, + [9983] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(414), 1, + ACTIONS(63), 1, + sym__upname, + ACTIONS(93), 1, anon_sym_LBRACE, - ACTIONS(416), 1, + ACTIONS(97), 1, anon_sym_POUND, - ACTIONS(418), 1, + ACTIONS(99), 1, anon_sym_LBRACK, - ACTIONS(420), 1, + ACTIONS(101), 1, anon_sym_LT_LT, - ACTIONS(422), 1, + ACTIONS(103), 1, anon_sym_DASH, - ACTIONS(424), 1, + ACTIONS(105), 1, anon_sym_fn, - ACTIONS(426), 1, + ACTIONS(109), 1, anon_sym_todo, - ACTIONS(428), 1, + ACTIONS(111), 1, anon_sym_case, - ACTIONS(430), 1, - anon_sym_let, - ACTIONS(432), 1, - anon_sym_assert, - ACTIONS(438), 1, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(123), 1, sym__decimal, - ACTIONS(440), 1, + ACTIONS(269), 1, sym__name, - ACTIONS(442), 1, - sym__upname, - STATE(185), 1, - sym_identifier, - STATE(203), 1, + ACTIONS(451), 1, + anon_sym_let, + ACTIONS(453), 1, + anon_sym_assert, + ACTIONS(455), 1, + sym_float, + ACTIONS(457), 1, + anon_sym_GT_GT, + STATE(60), 1, sym_tuple, - STATE(204), 1, + STATE(62), 1, sym_anonymous_function, - STATE(235), 1, - sym__expression, - STATE(969), 1, - sym__maybe_function_expression, - STATE(1034), 1, - sym__maybe_tuple_expression, - STATE(1035), 1, + STATE(733), 1, + sym_identifier, + STATE(812), 1, + sym_expression_bit_string_segment, + STATE(936), 1, + sym__maybe_function_expression, + STATE(1060), 1, + sym__maybe_tuple_expression, + STATE(1062), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(434), 2, - sym_string, - sym_float, - STATE(184), 2, + STATE(21), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(202), 2, + STATE(64), 2, sym_record, sym_record_update, - ACTIONS(436), 3, + ACTIONS(121), 3, sym__hex, sym__octal, sym__binary, - STATE(201), 5, + STATE(55), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(217), 8, - sym_binary_expression, + STATE(857), 8, sym__expression_unit, sym_todo, sym_list, sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [10142] = 28, + [10090] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(414), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(416), 1, + ACTIONS(29), 1, anon_sym_POUND, - ACTIONS(418), 1, + ACTIONS(33), 1, anon_sym_LBRACK, - ACTIONS(420), 1, + ACTIONS(35), 1, anon_sym_LT_LT, - ACTIONS(422), 1, + ACTIONS(37), 1, anon_sym_DASH, - ACTIONS(424), 1, + ACTIONS(39), 1, anon_sym_fn, - ACTIONS(426), 1, + ACTIONS(41), 1, anon_sym_todo, - ACTIONS(428), 1, + ACTIONS(45), 1, anon_sym_case, - ACTIONS(430), 1, + ACTIONS(47), 1, anon_sym_let, - ACTIONS(432), 1, + ACTIONS(49), 1, anon_sym_assert, - ACTIONS(438), 1, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(57), 1, sym__decimal, - ACTIONS(440), 1, - sym__name, - ACTIONS(442), 1, + ACTIONS(63), 1, sym__upname, - STATE(185), 1, + ACTIONS(269), 1, + sym__name, + STATE(254), 1, sym_identifier, - STATE(203), 1, + STATE(273), 1, sym_tuple, - STATE(204), 1, + STATE(282), 1, sym_anonymous_function, - STATE(236), 1, + STATE(422), 1, sym__expression, - STATE(969), 1, + STATE(913), 1, sym__maybe_function_expression, - STATE(1034), 1, + STATE(1037), 1, sym__maybe_tuple_expression, - STATE(1035), 1, + STATE(1038), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(434), 2, - sym_string, - sym_float, - STATE(184), 2, + STATE(246), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(202), 2, + STATE(272), 2, sym_record, sym_record_update, - ACTIONS(436), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(201), 5, + STATE(262), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(217), 8, + STATE(304), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -13869,73 +14023,75 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [10244] = 28, + [10195] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(414), 1, + ACTIONS(93), 1, anon_sym_LBRACE, - ACTIONS(416), 1, + ACTIONS(97), 1, anon_sym_POUND, - ACTIONS(418), 1, + ACTIONS(99), 1, anon_sym_LBRACK, - ACTIONS(420), 1, + ACTIONS(101), 1, anon_sym_LT_LT, - ACTIONS(422), 1, + ACTIONS(103), 1, anon_sym_DASH, - ACTIONS(424), 1, + ACTIONS(105), 1, anon_sym_fn, - ACTIONS(426), 1, + ACTIONS(109), 1, anon_sym_todo, - ACTIONS(428), 1, + ACTIONS(111), 1, anon_sym_case, - ACTIONS(430), 1, + ACTIONS(113), 1, anon_sym_let, - ACTIONS(432), 1, + ACTIONS(115), 1, anon_sym_assert, - ACTIONS(438), 1, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(119), 1, + sym_float, + ACTIONS(123), 1, sym__decimal, - ACTIONS(440), 1, + ACTIONS(125), 1, sym__name, - ACTIONS(442), 1, + ACTIONS(127), 1, sym__upname, - STATE(185), 1, - sym_identifier, - STATE(203), 1, + STATE(60), 1, sym_tuple, - STATE(204), 1, + STATE(62), 1, sym_anonymous_function, - STATE(215), 1, + STATE(139), 1, + sym_identifier, + STATE(177), 1, sym__expression, - STATE(969), 1, + STATE(936), 1, sym__maybe_function_expression, - STATE(1034), 1, + STATE(1060), 1, sym__maybe_tuple_expression, - STATE(1035), 1, + STATE(1062), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(434), 2, - sym_string, - sym_float, - STATE(184), 2, + STATE(21), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(202), 2, + STATE(64), 2, sym_record, sym_record_update, - ACTIONS(436), 3, + ACTIONS(121), 3, sym__hex, sym__octal, sym__binary, - STATE(201), 5, + STATE(55), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(217), 8, + STATE(181), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -13943,73 +14099,75 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [10346] = 28, + [10300] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(414), 1, + ACTIONS(93), 1, anon_sym_LBRACE, - ACTIONS(416), 1, + ACTIONS(97), 1, anon_sym_POUND, - ACTIONS(418), 1, + ACTIONS(99), 1, anon_sym_LBRACK, - ACTIONS(420), 1, + ACTIONS(101), 1, anon_sym_LT_LT, - ACTIONS(422), 1, + ACTIONS(103), 1, anon_sym_DASH, - ACTIONS(424), 1, + ACTIONS(105), 1, anon_sym_fn, - ACTIONS(426), 1, + ACTIONS(109), 1, anon_sym_todo, - ACTIONS(428), 1, + ACTIONS(111), 1, anon_sym_case, - ACTIONS(430), 1, + ACTIONS(113), 1, anon_sym_let, - ACTIONS(432), 1, + ACTIONS(115), 1, anon_sym_assert, - ACTIONS(438), 1, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(119), 1, + sym_float, + ACTIONS(123), 1, sym__decimal, - ACTIONS(440), 1, + ACTIONS(125), 1, sym__name, - ACTIONS(442), 1, + ACTIONS(127), 1, sym__upname, - STATE(185), 1, - sym_identifier, - STATE(203), 1, + STATE(60), 1, sym_tuple, - STATE(204), 1, + STATE(62), 1, sym_anonymous_function, - STATE(239), 1, + STATE(139), 1, + sym_identifier, + STATE(173), 1, sym__expression, - STATE(969), 1, + STATE(936), 1, sym__maybe_function_expression, - STATE(1034), 1, + STATE(1060), 1, sym__maybe_tuple_expression, - STATE(1035), 1, + STATE(1062), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(434), 2, - sym_string, - sym_float, - STATE(184), 2, + STATE(21), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(202), 2, + STATE(64), 2, sym_record, sym_record_update, - ACTIONS(436), 3, + ACTIONS(121), 3, sym__hex, sym__octal, sym__binary, - STATE(201), 5, + STATE(55), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(217), 8, + STATE(181), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -14017,73 +14175,75 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [10448] = 28, + [10405] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(414), 1, + ACTIONS(93), 1, anon_sym_LBRACE, - ACTIONS(416), 1, + ACTIONS(97), 1, anon_sym_POUND, - ACTIONS(418), 1, + ACTIONS(99), 1, anon_sym_LBRACK, - ACTIONS(420), 1, + ACTIONS(101), 1, anon_sym_LT_LT, - ACTIONS(422), 1, + ACTIONS(103), 1, anon_sym_DASH, - ACTIONS(424), 1, + ACTIONS(105), 1, anon_sym_fn, - ACTIONS(426), 1, + ACTIONS(109), 1, anon_sym_todo, - ACTIONS(428), 1, + ACTIONS(111), 1, anon_sym_case, - ACTIONS(430), 1, + ACTIONS(113), 1, anon_sym_let, - ACTIONS(432), 1, + ACTIONS(115), 1, anon_sym_assert, - ACTIONS(438), 1, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(119), 1, + sym_float, + ACTIONS(123), 1, sym__decimal, - ACTIONS(440), 1, + ACTIONS(125), 1, sym__name, - ACTIONS(442), 1, + ACTIONS(127), 1, sym__upname, - STATE(185), 1, - sym_identifier, - STATE(203), 1, + STATE(60), 1, sym_tuple, - STATE(204), 1, + STATE(62), 1, sym_anonymous_function, - STATE(237), 1, + STATE(139), 1, + sym_identifier, + STATE(172), 1, sym__expression, - STATE(969), 1, + STATE(936), 1, sym__maybe_function_expression, - STATE(1034), 1, + STATE(1060), 1, sym__maybe_tuple_expression, - STATE(1035), 1, + STATE(1062), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(434), 2, - sym_string, - sym_float, - STATE(184), 2, + STATE(21), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(202), 2, + STATE(64), 2, sym_record, sym_record_update, - ACTIONS(436), 3, + ACTIONS(121), 3, sym__hex, sym__octal, sym__binary, - STATE(201), 5, + STATE(55), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(217), 8, + STATE(181), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -14091,73 +14251,75 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [10550] = 28, + [10510] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(31), 1, + ACTIONS(93), 1, anon_sym_LBRACE, - ACTIONS(33), 1, + ACTIONS(97), 1, anon_sym_POUND, - ACTIONS(37), 1, + ACTIONS(99), 1, anon_sym_LBRACK, - ACTIONS(39), 1, + ACTIONS(101), 1, anon_sym_LT_LT, - ACTIONS(41), 1, + ACTIONS(103), 1, anon_sym_DASH, - ACTIONS(43), 1, + ACTIONS(105), 1, anon_sym_fn, - ACTIONS(45), 1, + ACTIONS(109), 1, anon_sym_todo, - ACTIONS(49), 1, + ACTIONS(111), 1, anon_sym_case, - ACTIONS(51), 1, + ACTIONS(113), 1, anon_sym_let, - ACTIONS(53), 1, + ACTIONS(115), 1, anon_sym_assert, - ACTIONS(59), 1, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(119), 1, + sym_float, + ACTIONS(123), 1, sym__decimal, - ACTIONS(65), 1, - sym__upname, - ACTIONS(300), 1, + ACTIONS(125), 1, sym__name, - STATE(251), 1, - sym_identifier, - STATE(267), 1, - sym_anonymous_function, - STATE(268), 1, + ACTIONS(127), 1, + sym__upname, + STATE(60), 1, sym_tuple, - STATE(388), 1, + STATE(62), 1, + sym_anonymous_function, + STATE(139), 1, + sym_identifier, + STATE(171), 1, sym__expression, - STATE(898), 1, + STATE(936), 1, sym__maybe_function_expression, - STATE(1016), 1, + STATE(1060), 1, sym__maybe_tuple_expression, - STATE(1017), 1, + STATE(1062), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(55), 2, - sym_string, - sym_float, - STATE(243), 2, + STATE(21), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(269), 2, + STATE(64), 2, sym_record, sym_record_update, - ACTIONS(57), 3, + ACTIONS(121), 3, sym__hex, sym__octal, sym__binary, - STATE(247), 5, + STATE(55), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(292), 8, + STATE(181), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -14165,73 +14327,75 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [10652] = 28, + [10615] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(31), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_POUND, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_LBRACK, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_LT_LT, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_DASH, - ACTIONS(43), 1, + ACTIONS(39), 1, anon_sym_fn, - ACTIONS(45), 1, + ACTIONS(41), 1, anon_sym_todo, - ACTIONS(49), 1, + ACTIONS(45), 1, anon_sym_case, - ACTIONS(51), 1, + ACTIONS(47), 1, anon_sym_let, - ACTIONS(53), 1, + ACTIONS(49), 1, anon_sym_assert, - ACTIONS(59), 1, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(57), 1, sym__decimal, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(300), 1, + ACTIONS(269), 1, sym__name, - STATE(251), 1, + STATE(254), 1, sym_identifier, - STATE(267), 1, - sym_anonymous_function, - STATE(268), 1, + STATE(273), 1, sym_tuple, - STATE(391), 1, + STATE(282), 1, + sym_anonymous_function, + STATE(410), 1, sym__expression, - STATE(898), 1, + STATE(913), 1, sym__maybe_function_expression, - STATE(1016), 1, + STATE(1037), 1, sym__maybe_tuple_expression, - STATE(1017), 1, + STATE(1038), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(55), 2, - sym_string, - sym_float, - STATE(243), 2, + STATE(246), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(269), 2, + STATE(272), 2, sym_record, sym_record_update, - ACTIONS(57), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(247), 5, + STATE(262), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(292), 8, + STATE(304), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -14239,73 +14403,75 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [10754] = 28, + [10720] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(106), 1, + ACTIONS(93), 1, anon_sym_LBRACE, - ACTIONS(110), 1, + ACTIONS(97), 1, anon_sym_POUND, - ACTIONS(112), 1, + ACTIONS(99), 1, anon_sym_LBRACK, - ACTIONS(114), 1, + ACTIONS(101), 1, anon_sym_LT_LT, - ACTIONS(116), 1, + ACTIONS(103), 1, anon_sym_DASH, - ACTIONS(118), 1, + ACTIONS(105), 1, anon_sym_fn, - ACTIONS(122), 1, + ACTIONS(109), 1, anon_sym_todo, - ACTIONS(124), 1, + ACTIONS(111), 1, anon_sym_case, - ACTIONS(126), 1, + ACTIONS(113), 1, anon_sym_let, - ACTIONS(128), 1, + ACTIONS(115), 1, anon_sym_assert, - ACTIONS(134), 1, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(119), 1, + sym_float, + ACTIONS(123), 1, sym__decimal, - ACTIONS(136), 1, + ACTIONS(125), 1, sym__name, - ACTIONS(138), 1, + ACTIONS(127), 1, sym__upname, - STATE(52), 1, - sym_anonymous_function, - STATE(56), 1, + STATE(60), 1, sym_tuple, - STATE(95), 1, + STATE(62), 1, + sym_anonymous_function, + STATE(139), 1, sym_identifier, - STATE(174), 1, + STATE(169), 1, sym__expression, - STATE(889), 1, + STATE(936), 1, sym__maybe_function_expression, - STATE(1038), 1, + STATE(1060), 1, sym__maybe_tuple_expression, - STATE(1050), 1, + STATE(1062), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(130), 2, - sym_string, - sym_float, - STATE(12), 2, + STATE(21), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(58), 2, + STATE(64), 2, sym_record, sym_record_update, - ACTIONS(132), 3, + ACTIONS(121), 3, sym__hex, sym__octal, sym__binary, - STATE(18), 5, + STATE(55), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(165), 8, + STATE(181), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -14313,73 +14479,75 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [10856] = 28, + [10825] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(31), 1, + ACTIONS(93), 1, anon_sym_LBRACE, - ACTIONS(33), 1, + ACTIONS(97), 1, anon_sym_POUND, - ACTIONS(37), 1, + ACTIONS(99), 1, anon_sym_LBRACK, - ACTIONS(39), 1, + ACTIONS(101), 1, anon_sym_LT_LT, - ACTIONS(41), 1, + ACTIONS(103), 1, anon_sym_DASH, - ACTIONS(43), 1, + ACTIONS(105), 1, anon_sym_fn, - ACTIONS(45), 1, + ACTIONS(109), 1, anon_sym_todo, - ACTIONS(49), 1, + ACTIONS(111), 1, anon_sym_case, - ACTIONS(51), 1, + ACTIONS(113), 1, anon_sym_let, - ACTIONS(53), 1, + ACTIONS(115), 1, anon_sym_assert, - ACTIONS(59), 1, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(119), 1, + sym_float, + ACTIONS(123), 1, sym__decimal, - ACTIONS(65), 1, - sym__upname, - ACTIONS(300), 1, + ACTIONS(125), 1, sym__name, - STATE(251), 1, - sym_identifier, - STATE(267), 1, - sym_anonymous_function, - STATE(268), 1, + ACTIONS(127), 1, + sym__upname, + STATE(60), 1, sym_tuple, - STATE(289), 1, + STATE(62), 1, + sym_anonymous_function, + STATE(139), 1, + sym_identifier, + STATE(168), 1, sym__expression, - STATE(898), 1, + STATE(936), 1, sym__maybe_function_expression, - STATE(1016), 1, + STATE(1060), 1, sym__maybe_tuple_expression, - STATE(1017), 1, + STATE(1062), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(55), 2, - sym_string, - sym_float, - STATE(243), 2, + STATE(21), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(269), 2, + STATE(64), 2, sym_record, sym_record_update, - ACTIONS(57), 3, + ACTIONS(121), 3, sym__hex, sym__octal, sym__binary, - STATE(247), 5, + STATE(55), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(292), 8, + STATE(181), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -14387,73 +14555,75 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [10958] = 28, + [10930] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(31), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_POUND, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_LBRACK, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_LT_LT, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_DASH, - ACTIONS(43), 1, + ACTIONS(39), 1, anon_sym_fn, - ACTIONS(45), 1, + ACTIONS(41), 1, anon_sym_todo, - ACTIONS(49), 1, + ACTIONS(45), 1, anon_sym_case, - ACTIONS(51), 1, + ACTIONS(47), 1, anon_sym_let, - ACTIONS(53), 1, + ACTIONS(49), 1, anon_sym_assert, - ACTIONS(59), 1, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(57), 1, sym__decimal, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(300), 1, + ACTIONS(269), 1, sym__name, - STATE(251), 1, + STATE(254), 1, sym_identifier, - STATE(267), 1, - sym_anonymous_function, - STATE(268), 1, + STATE(273), 1, sym_tuple, + STATE(282), 1, + sym_anonymous_function, STATE(396), 1, sym__expression, - STATE(898), 1, + STATE(913), 1, sym__maybe_function_expression, - STATE(1016), 1, + STATE(1037), 1, sym__maybe_tuple_expression, - STATE(1017), 1, + STATE(1038), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(55), 2, - sym_string, - sym_float, - STATE(243), 2, + STATE(246), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(269), 2, + STATE(272), 2, sym_record, sym_record_update, - ACTIONS(57), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(247), 5, + STATE(262), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(292), 8, + STATE(304), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -14461,221 +14631,229 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [11060] = 28, + [11035] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(31), 1, + ACTIONS(63), 1, + sym__upname, + ACTIONS(93), 1, anon_sym_LBRACE, - ACTIONS(33), 1, + ACTIONS(97), 1, anon_sym_POUND, - ACTIONS(37), 1, + ACTIONS(99), 1, anon_sym_LBRACK, - ACTIONS(39), 1, + ACTIONS(101), 1, anon_sym_LT_LT, - ACTIONS(41), 1, + ACTIONS(103), 1, anon_sym_DASH, - ACTIONS(43), 1, + ACTIONS(105), 1, anon_sym_fn, - ACTIONS(45), 1, + ACTIONS(109), 1, anon_sym_todo, - ACTIONS(49), 1, + ACTIONS(111), 1, anon_sym_case, - ACTIONS(51), 1, - anon_sym_let, - ACTIONS(53), 1, - anon_sym_assert, - ACTIONS(59), 1, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(123), 1, sym__decimal, - ACTIONS(65), 1, - sym__upname, - ACTIONS(300), 1, + ACTIONS(269), 1, sym__name, - STATE(251), 1, - sym_identifier, - STATE(267), 1, - sym_anonymous_function, - STATE(268), 1, + ACTIONS(451), 1, + anon_sym_let, + ACTIONS(453), 1, + anon_sym_assert, + ACTIONS(455), 1, + sym_float, + ACTIONS(459), 1, + anon_sym_GT_GT, + STATE(60), 1, sym_tuple, - STATE(390), 1, - sym__expression, - STATE(898), 1, + STATE(62), 1, + sym_anonymous_function, + STATE(733), 1, + sym_identifier, + STATE(936), 1, sym__maybe_function_expression, - STATE(1016), 1, + STATE(953), 1, + sym_expression_bit_string_segment, + STATE(1060), 1, sym__maybe_tuple_expression, - STATE(1017), 1, + STATE(1062), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(55), 2, - sym_string, - sym_float, - STATE(243), 2, + STATE(21), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(269), 2, + STATE(64), 2, sym_record, sym_record_update, - ACTIONS(57), 3, + ACTIONS(121), 3, sym__hex, sym__octal, sym__binary, - STATE(247), 5, + STATE(55), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(292), 8, - sym_binary_expression, + STATE(857), 8, sym__expression_unit, sym_todo, sym_list, sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [11162] = 28, + [11142] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(31), 1, + ACTIONS(63), 1, + sym__upname, + ACTIONS(93), 1, anon_sym_LBRACE, - ACTIONS(33), 1, + ACTIONS(97), 1, anon_sym_POUND, - ACTIONS(37), 1, + ACTIONS(99), 1, anon_sym_LBRACK, - ACTIONS(39), 1, + ACTIONS(101), 1, anon_sym_LT_LT, - ACTIONS(41), 1, + ACTIONS(103), 1, anon_sym_DASH, - ACTIONS(43), 1, + ACTIONS(105), 1, anon_sym_fn, - ACTIONS(45), 1, + ACTIONS(109), 1, anon_sym_todo, - ACTIONS(49), 1, + ACTIONS(111), 1, anon_sym_case, - ACTIONS(51), 1, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(123), 1, + sym__decimal, + ACTIONS(269), 1, + sym__name, + ACTIONS(451), 1, anon_sym_let, - ACTIONS(53), 1, + ACTIONS(453), 1, anon_sym_assert, - ACTIONS(59), 1, - sym__decimal, - ACTIONS(65), 1, - sym__upname, - ACTIONS(300), 1, - sym__name, - STATE(251), 1, - sym_identifier, - STATE(267), 1, - sym_anonymous_function, - STATE(268), 1, + ACTIONS(455), 1, + sym_float, + ACTIONS(461), 1, + anon_sym_GT_GT, + STATE(60), 1, sym_tuple, - STATE(392), 1, - sym__expression, - STATE(898), 1, + STATE(62), 1, + sym_anonymous_function, + STATE(733), 1, + sym_identifier, + STATE(936), 1, sym__maybe_function_expression, - STATE(1016), 1, + STATE(953), 1, + sym_expression_bit_string_segment, + STATE(1060), 1, sym__maybe_tuple_expression, - STATE(1017), 1, + STATE(1062), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(55), 2, - sym_string, - sym_float, - STATE(243), 2, + STATE(21), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(269), 2, + STATE(64), 2, sym_record, sym_record_update, - ACTIONS(57), 3, + ACTIONS(121), 3, sym__hex, sym__octal, sym__binary, - STATE(247), 5, + STATE(55), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(292), 8, - sym_binary_expression, + STATE(857), 8, sym__expression_unit, sym_todo, sym_list, sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [11264] = 28, + [11249] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(414), 1, + ACTIONS(93), 1, anon_sym_LBRACE, - ACTIONS(416), 1, + ACTIONS(97), 1, anon_sym_POUND, - ACTIONS(418), 1, + ACTIONS(99), 1, anon_sym_LBRACK, - ACTIONS(420), 1, + ACTIONS(101), 1, anon_sym_LT_LT, - ACTIONS(422), 1, + ACTIONS(103), 1, anon_sym_DASH, - ACTIONS(424), 1, + ACTIONS(105), 1, anon_sym_fn, - ACTIONS(426), 1, + ACTIONS(109), 1, anon_sym_todo, - ACTIONS(428), 1, + ACTIONS(111), 1, anon_sym_case, - ACTIONS(430), 1, + ACTIONS(113), 1, anon_sym_let, - ACTIONS(432), 1, + ACTIONS(115), 1, anon_sym_assert, - ACTIONS(438), 1, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(119), 1, + sym_float, + ACTIONS(123), 1, sym__decimal, - ACTIONS(440), 1, + ACTIONS(125), 1, sym__name, - ACTIONS(442), 1, + ACTIONS(127), 1, sym__upname, - STATE(185), 1, - sym_identifier, - STATE(203), 1, + STATE(60), 1, sym_tuple, - STATE(204), 1, + STATE(62), 1, sym_anonymous_function, - STATE(238), 1, + STATE(139), 1, + sym_identifier, + STATE(179), 1, sym__expression, - STATE(969), 1, + STATE(936), 1, sym__maybe_function_expression, - STATE(1034), 1, + STATE(1060), 1, sym__maybe_tuple_expression, - STATE(1035), 1, + STATE(1062), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(434), 2, - sym_string, - sym_float, - STATE(184), 2, + STATE(21), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(202), 2, + STATE(64), 2, sym_record, sym_record_update, - ACTIONS(436), 3, + ACTIONS(121), 3, sym__hex, sym__octal, sym__binary, - STATE(201), 5, + STATE(55), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(217), 8, + STATE(181), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -14683,73 +14861,126 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [11366] = 28, + [11354] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(31), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(465), 16, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_fn, + anon_sym_try, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + sym__decimal, + sym__name, + ACTIONS(463), 27, anon_sym_LBRACE, - ACTIONS(33), 1, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_POUND, - ACTIONS(37), 1, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(39), 1, anon_sym_LT_LT, - ACTIONS(41), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [11409] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(29), 1, + anon_sym_POUND, + ACTIONS(33), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, + anon_sym_LT_LT, + ACTIONS(37), 1, anon_sym_DASH, - ACTIONS(43), 1, + ACTIONS(39), 1, anon_sym_fn, - ACTIONS(45), 1, + ACTIONS(41), 1, anon_sym_todo, - ACTIONS(49), 1, + ACTIONS(45), 1, anon_sym_case, - ACTIONS(51), 1, + ACTIONS(47), 1, anon_sym_let, - ACTIONS(53), 1, + ACTIONS(49), 1, anon_sym_assert, - ACTIONS(59), 1, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(57), 1, sym__decimal, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(300), 1, + ACTIONS(269), 1, sym__name, - STATE(251), 1, + ACTIONS(467), 1, + anon_sym_LBRACE, + STATE(254), 1, sym_identifier, - STATE(267), 1, - sym_anonymous_function, - STATE(268), 1, + STATE(273), 1, sym_tuple, - STATE(393), 1, + STATE(282), 1, + sym_anonymous_function, + STATE(327), 1, sym__expression, - STATE(898), 1, + STATE(913), 1, sym__maybe_function_expression, - STATE(1016), 1, + STATE(1037), 1, sym__maybe_tuple_expression, - STATE(1017), 1, + STATE(1038), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(55), 2, - sym_string, - sym_float, - STATE(243), 2, + STATE(246), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(269), 2, + STATE(272), 2, sym_record, sym_record_update, - ACTIONS(57), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(247), 5, + STATE(262), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(292), 8, + STATE(304), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -14757,223 +14988,227 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [11468] = 29, + [11514] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, - sym__upname, - ACTIONS(106), 1, + ACTIONS(417), 1, anon_sym_LBRACE, - ACTIONS(110), 1, + ACTIONS(419), 1, anon_sym_POUND, - ACTIONS(112), 1, + ACTIONS(421), 1, anon_sym_LBRACK, - ACTIONS(114), 1, + ACTIONS(423), 1, anon_sym_LT_LT, - ACTIONS(116), 1, + ACTIONS(425), 1, anon_sym_DASH, - ACTIONS(118), 1, + ACTIONS(427), 1, anon_sym_fn, - ACTIONS(122), 1, + ACTIONS(429), 1, anon_sym_todo, - ACTIONS(124), 1, + ACTIONS(431), 1, anon_sym_case, - ACTIONS(134), 1, - sym__decimal, - ACTIONS(300), 1, - sym__name, - ACTIONS(444), 1, - anon_sym_GT_GT, - ACTIONS(446), 1, + ACTIONS(433), 1, anon_sym_let, - ACTIONS(448), 1, + ACTIONS(435), 1, anon_sym_assert, - STATE(52), 1, - sym_anonymous_function, - STATE(56), 1, - sym_tuple, - STATE(711), 1, + ACTIONS(437), 1, + anon_sym_DQUOTE, + ACTIONS(439), 1, + sym_float, + ACTIONS(443), 1, + sym__decimal, + ACTIONS(445), 1, + sym__name, + ACTIONS(447), 1, + sym__upname, + STATE(190), 1, sym_identifier, - STATE(791), 1, - sym_expression_bit_string_segment, - STATE(889), 1, + STATE(209), 1, + sym_tuple, + STATE(214), 1, + sym_anonymous_function, + STATE(230), 1, + sym__expression, + STATE(986), 1, sym__maybe_function_expression, - STATE(1038), 1, + STATE(1055), 1, sym__maybe_tuple_expression, - STATE(1050), 1, + STATE(1056), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(450), 2, - sym_string, - sym_float, - STATE(12), 2, + STATE(188), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(58), 2, + STATE(210), 2, sym_record, sym_record_update, - ACTIONS(132), 3, + ACTIONS(441), 3, sym__hex, sym__octal, sym__binary, - STATE(18), 5, + STATE(191), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(778), 7, + STATE(245), 9, + sym_binary_expression, sym__expression_unit, sym_todo, sym_list, sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [11572] = 29, + [11619] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, - sym__upname, - ACTIONS(106), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(110), 1, + ACTIONS(29), 1, anon_sym_POUND, - ACTIONS(112), 1, + ACTIONS(33), 1, anon_sym_LBRACK, - ACTIONS(114), 1, + ACTIONS(35), 1, anon_sym_LT_LT, - ACTIONS(116), 1, + ACTIONS(37), 1, anon_sym_DASH, - ACTIONS(118), 1, + ACTIONS(39), 1, anon_sym_fn, - ACTIONS(122), 1, + ACTIONS(41), 1, anon_sym_todo, - ACTIONS(124), 1, + ACTIONS(45), 1, anon_sym_case, - ACTIONS(134), 1, - sym__decimal, - ACTIONS(300), 1, - sym__name, - ACTIONS(446), 1, + ACTIONS(47), 1, anon_sym_let, - ACTIONS(448), 1, + ACTIONS(49), 1, anon_sym_assert, - ACTIONS(452), 1, - anon_sym_GT_GT, - STATE(52), 1, - sym_anonymous_function, - STATE(56), 1, - sym_tuple, - STATE(711), 1, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(57), 1, + sym__decimal, + ACTIONS(63), 1, + sym__upname, + ACTIONS(269), 1, + sym__name, + STATE(254), 1, sym_identifier, - STATE(889), 1, + STATE(273), 1, + sym_tuple, + STATE(282), 1, + sym_anonymous_function, + STATE(298), 1, + sym__expression, + STATE(913), 1, sym__maybe_function_expression, - STATE(896), 1, - sym_expression_bit_string_segment, - STATE(1038), 1, + STATE(1037), 1, sym__maybe_tuple_expression, - STATE(1050), 1, + STATE(1038), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(450), 2, - sym_string, - sym_float, - STATE(12), 2, + STATE(246), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(58), 2, + STATE(272), 2, sym_record, sym_record_update, - ACTIONS(132), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(18), 5, + STATE(262), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(778), 7, + STATE(304), 9, + sym_binary_expression, sym__expression_unit, sym_todo, sym_list, sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [11676] = 28, + [11724] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(106), 1, + ACTIONS(93), 1, anon_sym_LBRACE, - ACTIONS(110), 1, + ACTIONS(97), 1, anon_sym_POUND, - ACTIONS(112), 1, + ACTIONS(99), 1, anon_sym_LBRACK, - ACTIONS(114), 1, + ACTIONS(101), 1, anon_sym_LT_LT, - ACTIONS(116), 1, + ACTIONS(103), 1, anon_sym_DASH, - ACTIONS(118), 1, + ACTIONS(105), 1, anon_sym_fn, - ACTIONS(122), 1, + ACTIONS(109), 1, anon_sym_todo, - ACTIONS(124), 1, + ACTIONS(111), 1, anon_sym_case, - ACTIONS(126), 1, + ACTIONS(113), 1, anon_sym_let, - ACTIONS(128), 1, + ACTIONS(115), 1, anon_sym_assert, - ACTIONS(134), 1, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(119), 1, + sym_float, + ACTIONS(123), 1, sym__decimal, - ACTIONS(136), 1, + ACTIONS(125), 1, sym__name, - ACTIONS(138), 1, + ACTIONS(127), 1, sym__upname, - STATE(52), 1, - sym_anonymous_function, - STATE(56), 1, + STATE(60), 1, sym_tuple, - STATE(95), 1, + STATE(62), 1, + sym_anonymous_function, + STATE(139), 1, sym_identifier, - STATE(171), 1, + STATE(176), 1, sym__expression, - STATE(889), 1, + STATE(936), 1, sym__maybe_function_expression, - STATE(1038), 1, + STATE(1060), 1, sym__maybe_tuple_expression, - STATE(1050), 1, + STATE(1062), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(130), 2, - sym_string, - sym_float, - STATE(12), 2, + STATE(21), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(58), 2, + STATE(64), 2, sym_record, sym_record_update, - ACTIONS(132), 3, + ACTIONS(121), 3, sym__hex, sym__octal, sym__binary, - STATE(18), 5, + STATE(55), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(165), 8, + STATE(181), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -14981,73 +15216,75 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [11778] = 28, + [11829] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(31), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_POUND, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_LBRACK, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_LT_LT, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_DASH, - ACTIONS(43), 1, + ACTIONS(39), 1, anon_sym_fn, - ACTIONS(45), 1, + ACTIONS(41), 1, anon_sym_todo, - ACTIONS(49), 1, + ACTIONS(45), 1, anon_sym_case, - ACTIONS(51), 1, + ACTIONS(47), 1, anon_sym_let, - ACTIONS(53), 1, + ACTIONS(49), 1, anon_sym_assert, - ACTIONS(59), 1, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(57), 1, sym__decimal, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(300), 1, + ACTIONS(269), 1, sym__name, - STATE(251), 1, + STATE(254), 1, sym_identifier, - STATE(267), 1, - sym_anonymous_function, - STATE(268), 1, + STATE(273), 1, sym_tuple, - STATE(280), 1, + STATE(282), 1, + sym_anonymous_function, + STATE(409), 1, sym__expression, - STATE(898), 1, + STATE(913), 1, sym__maybe_function_expression, - STATE(1016), 1, + STATE(1037), 1, sym__maybe_tuple_expression, - STATE(1017), 1, + STATE(1038), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(55), 2, - sym_string, - sym_float, - STATE(243), 2, + STATE(246), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(269), 2, + STATE(272), 2, sym_record, sym_record_update, - ACTIONS(57), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(247), 5, + STATE(262), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(292), 8, + STATE(304), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -15055,73 +15292,75 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [11880] = 28, + [11934] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(31), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_POUND, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_LBRACK, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_LT_LT, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_DASH, - ACTIONS(43), 1, + ACTIONS(39), 1, anon_sym_fn, - ACTIONS(45), 1, + ACTIONS(41), 1, anon_sym_todo, - ACTIONS(49), 1, + ACTIONS(45), 1, anon_sym_case, - ACTIONS(51), 1, + ACTIONS(47), 1, anon_sym_let, - ACTIONS(53), 1, + ACTIONS(49), 1, anon_sym_assert, - ACTIONS(59), 1, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(57), 1, sym__decimal, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(300), 1, + ACTIONS(269), 1, sym__name, - STATE(251), 1, + STATE(254), 1, sym_identifier, - STATE(267), 1, - sym_anonymous_function, - STATE(268), 1, + STATE(273), 1, sym_tuple, - STATE(400), 1, + STATE(282), 1, + sym_anonymous_function, + STATE(412), 1, sym__expression, - STATE(898), 1, + STATE(913), 1, sym__maybe_function_expression, - STATE(1016), 1, + STATE(1037), 1, sym__maybe_tuple_expression, - STATE(1017), 1, + STATE(1038), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(55), 2, - sym_string, - sym_float, - STATE(243), 2, + STATE(246), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(269), 2, + STATE(272), 2, sym_record, sym_record_update, - ACTIONS(57), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(247), 5, + STATE(262), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(292), 8, + STATE(304), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -15129,147 +15368,152 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [11982] = 28, + [12039] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(414), 1, + ACTIONS(63), 1, + sym__upname, + ACTIONS(93), 1, anon_sym_LBRACE, - ACTIONS(416), 1, + ACTIONS(97), 1, anon_sym_POUND, - ACTIONS(418), 1, + ACTIONS(99), 1, anon_sym_LBRACK, - ACTIONS(420), 1, + ACTIONS(101), 1, anon_sym_LT_LT, - ACTIONS(422), 1, + ACTIONS(103), 1, anon_sym_DASH, - ACTIONS(424), 1, + ACTIONS(105), 1, anon_sym_fn, - ACTIONS(426), 1, + ACTIONS(109), 1, anon_sym_todo, - ACTIONS(428), 1, + ACTIONS(111), 1, anon_sym_case, - ACTIONS(430), 1, - anon_sym_let, - ACTIONS(432), 1, - anon_sym_assert, - ACTIONS(438), 1, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(123), 1, sym__decimal, - ACTIONS(440), 1, + ACTIONS(269), 1, sym__name, - ACTIONS(442), 1, - sym__upname, - STATE(185), 1, - sym_identifier, - STATE(203), 1, + ACTIONS(451), 1, + anon_sym_let, + ACTIONS(453), 1, + anon_sym_assert, + ACTIONS(455), 1, + sym_float, + ACTIONS(470), 1, + anon_sym_GT_GT, + STATE(60), 1, sym_tuple, - STATE(204), 1, + STATE(62), 1, sym_anonymous_function, - STATE(221), 1, - sym__expression, - STATE(969), 1, + STATE(733), 1, + sym_identifier, + STATE(936), 1, sym__maybe_function_expression, - STATE(1034), 1, + STATE(953), 1, + sym_expression_bit_string_segment, + STATE(1060), 1, sym__maybe_tuple_expression, - STATE(1035), 1, + STATE(1062), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(434), 2, - sym_string, - sym_float, - STATE(184), 2, + STATE(21), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(202), 2, + STATE(64), 2, sym_record, sym_record_update, - ACTIONS(436), 3, + ACTIONS(121), 3, sym__hex, sym__octal, sym__binary, - STATE(201), 5, + STATE(55), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(217), 8, - sym_binary_expression, + STATE(857), 8, sym__expression_unit, sym_todo, sym_list, sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [12084] = 28, + [12146] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(31), 1, + ACTIONS(93), 1, anon_sym_LBRACE, - ACTIONS(33), 1, + ACTIONS(97), 1, anon_sym_POUND, - ACTIONS(37), 1, + ACTIONS(99), 1, anon_sym_LBRACK, - ACTIONS(39), 1, + ACTIONS(101), 1, anon_sym_LT_LT, - ACTIONS(41), 1, + ACTIONS(103), 1, anon_sym_DASH, - ACTIONS(43), 1, + ACTIONS(105), 1, anon_sym_fn, - ACTIONS(45), 1, + ACTIONS(109), 1, anon_sym_todo, - ACTIONS(49), 1, + ACTIONS(111), 1, anon_sym_case, - ACTIONS(51), 1, + ACTIONS(113), 1, anon_sym_let, - ACTIONS(53), 1, + ACTIONS(115), 1, anon_sym_assert, - ACTIONS(59), 1, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(119), 1, + sym_float, + ACTIONS(123), 1, sym__decimal, - ACTIONS(65), 1, - sym__upname, - ACTIONS(300), 1, + ACTIONS(125), 1, sym__name, - STATE(251), 1, - sym_identifier, - STATE(267), 1, - sym_anonymous_function, - STATE(268), 1, + ACTIONS(127), 1, + sym__upname, + STATE(60), 1, sym_tuple, - STATE(316), 1, + STATE(62), 1, + sym_anonymous_function, + STATE(139), 1, + sym_identifier, + STATE(174), 1, sym__expression, - STATE(898), 1, + STATE(936), 1, sym__maybe_function_expression, - STATE(1016), 1, + STATE(1060), 1, sym__maybe_tuple_expression, - STATE(1017), 1, + STATE(1062), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(55), 2, - sym_string, - sym_float, - STATE(243), 2, + STATE(21), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(269), 2, + STATE(64), 2, sym_record, sym_record_update, - ACTIONS(57), 3, + ACTIONS(121), 3, sym__hex, sym__octal, sym__binary, - STATE(247), 5, + STATE(55), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(292), 8, + STATE(181), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -15277,73 +15521,75 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [12186] = 28, + [12251] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(106), 1, + ACTIONS(417), 1, anon_sym_LBRACE, - ACTIONS(110), 1, + ACTIONS(419), 1, anon_sym_POUND, - ACTIONS(112), 1, + ACTIONS(421), 1, anon_sym_LBRACK, - ACTIONS(114), 1, + ACTIONS(423), 1, anon_sym_LT_LT, - ACTIONS(116), 1, + ACTIONS(425), 1, anon_sym_DASH, - ACTIONS(118), 1, + ACTIONS(427), 1, anon_sym_fn, - ACTIONS(122), 1, + ACTIONS(429), 1, anon_sym_todo, - ACTIONS(124), 1, + ACTIONS(431), 1, anon_sym_case, - ACTIONS(126), 1, + ACTIONS(433), 1, anon_sym_let, - ACTIONS(128), 1, + ACTIONS(435), 1, anon_sym_assert, - ACTIONS(134), 1, + ACTIONS(437), 1, + anon_sym_DQUOTE, + ACTIONS(439), 1, + sym_float, + ACTIONS(443), 1, sym__decimal, - ACTIONS(136), 1, + ACTIONS(445), 1, sym__name, - ACTIONS(138), 1, + ACTIONS(447), 1, sym__upname, - STATE(52), 1, - sym_anonymous_function, - STATE(56), 1, - sym_tuple, - STATE(95), 1, + STATE(190), 1, sym_identifier, - STATE(178), 1, + STATE(209), 1, + sym_tuple, + STATE(214), 1, + sym_anonymous_function, + STATE(237), 1, sym__expression, - STATE(889), 1, + STATE(986), 1, sym__maybe_function_expression, - STATE(1038), 1, + STATE(1055), 1, sym__maybe_tuple_expression, - STATE(1050), 1, + STATE(1056), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(130), 2, - sym_string, - sym_float, - STATE(12), 2, + STATE(188), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(58), 2, + STATE(210), 2, sym_record, sym_record_update, - ACTIONS(132), 3, + ACTIONS(441), 3, sym__hex, sym__octal, sym__binary, - STATE(18), 5, + STATE(191), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(165), 8, + STATE(245), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -15351,148 +15597,151 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [12288] = 29, + [12356] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, - sym__upname, - ACTIONS(106), 1, + ACTIONS(417), 1, anon_sym_LBRACE, - ACTIONS(110), 1, + ACTIONS(419), 1, anon_sym_POUND, - ACTIONS(112), 1, + ACTIONS(421), 1, anon_sym_LBRACK, - ACTIONS(114), 1, + ACTIONS(423), 1, anon_sym_LT_LT, - ACTIONS(116), 1, + ACTIONS(425), 1, anon_sym_DASH, - ACTIONS(118), 1, + ACTIONS(427), 1, anon_sym_fn, - ACTIONS(122), 1, + ACTIONS(429), 1, anon_sym_todo, - ACTIONS(124), 1, + ACTIONS(431), 1, anon_sym_case, - ACTIONS(134), 1, - sym__decimal, - ACTIONS(300), 1, - sym__name, - ACTIONS(446), 1, + ACTIONS(433), 1, anon_sym_let, - ACTIONS(448), 1, + ACTIONS(435), 1, anon_sym_assert, - ACTIONS(454), 1, - anon_sym_GT_GT, - STATE(52), 1, - sym_anonymous_function, - STATE(56), 1, - sym_tuple, - STATE(711), 1, + ACTIONS(437), 1, + anon_sym_DQUOTE, + ACTIONS(439), 1, + sym_float, + ACTIONS(443), 1, + sym__decimal, + ACTIONS(445), 1, + sym__name, + ACTIONS(447), 1, + sym__upname, + STATE(190), 1, sym_identifier, - STATE(889), 1, + STATE(209), 1, + sym_tuple, + STATE(214), 1, + sym_anonymous_function, + STATE(238), 1, + sym__expression, + STATE(986), 1, sym__maybe_function_expression, - STATE(896), 1, - sym_expression_bit_string_segment, - STATE(1038), 1, + STATE(1055), 1, sym__maybe_tuple_expression, - STATE(1050), 1, + STATE(1056), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(450), 2, - sym_string, - sym_float, - STATE(12), 2, + STATE(188), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(58), 2, + STATE(210), 2, sym_record, sym_record_update, - ACTIONS(132), 3, + ACTIONS(441), 3, sym__hex, sym__octal, sym__binary, - STATE(18), 5, + STATE(191), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(778), 7, + STATE(245), 9, + sym_binary_expression, sym__expression_unit, sym_todo, sym_list, sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [12392] = 28, + [12461] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(33), 1, + ACTIONS(27), 1, + anon_sym_LBRACE, + ACTIONS(29), 1, anon_sym_POUND, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_LBRACK, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_LT_LT, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_DASH, - ACTIONS(43), 1, + ACTIONS(39), 1, anon_sym_fn, - ACTIONS(45), 1, + ACTIONS(41), 1, anon_sym_todo, - ACTIONS(49), 1, + ACTIONS(45), 1, anon_sym_case, - ACTIONS(51), 1, + ACTIONS(47), 1, anon_sym_let, - ACTIONS(53), 1, + ACTIONS(49), 1, anon_sym_assert, - ACTIONS(59), 1, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(57), 1, sym__decimal, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(300), 1, + ACTIONS(269), 1, sym__name, - ACTIONS(456), 1, - anon_sym_LBRACE, - STATE(251), 1, + STATE(254), 1, sym_identifier, - STATE(267), 1, - sym_anonymous_function, - STATE(268), 1, + STATE(273), 1, sym_tuple, - STATE(316), 1, + STATE(282), 1, + sym_anonymous_function, + STATE(327), 1, sym__expression, - STATE(898), 1, + STATE(913), 1, sym__maybe_function_expression, - STATE(1016), 1, + STATE(1037), 1, sym__maybe_tuple_expression, - STATE(1017), 1, + STATE(1038), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(55), 2, - sym_string, - sym_float, - STATE(243), 2, + STATE(246), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(269), 2, + STATE(272), 2, sym_record, sym_record_update, - ACTIONS(57), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(247), 5, + STATE(262), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(292), 8, + STATE(304), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -15500,73 +15749,75 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [12494] = 28, + [12566] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(31), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_POUND, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_LBRACK, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_LT_LT, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_DASH, - ACTIONS(43), 1, + ACTIONS(39), 1, anon_sym_fn, - ACTIONS(45), 1, + ACTIONS(41), 1, anon_sym_todo, - ACTIONS(49), 1, + ACTIONS(45), 1, anon_sym_case, - ACTIONS(51), 1, + ACTIONS(47), 1, anon_sym_let, - ACTIONS(53), 1, + ACTIONS(49), 1, anon_sym_assert, - ACTIONS(59), 1, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(57), 1, sym__decimal, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(300), 1, + ACTIONS(269), 1, sym__name, - STATE(251), 1, + STATE(254), 1, sym_identifier, - STATE(267), 1, - sym_anonymous_function, - STATE(268), 1, + STATE(273), 1, sym_tuple, - STATE(389), 1, + STATE(282), 1, + sym_anonymous_function, + STATE(426), 1, sym__expression, - STATE(898), 1, + STATE(913), 1, sym__maybe_function_expression, - STATE(1016), 1, + STATE(1037), 1, sym__maybe_tuple_expression, - STATE(1017), 1, + STATE(1038), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(55), 2, - sym_string, - sym_float, - STATE(243), 2, + STATE(246), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(269), 2, + STATE(272), 2, sym_record, sym_record_update, - ACTIONS(57), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(247), 5, + STATE(262), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(292), 8, + STATE(304), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -15574,73 +15825,75 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [12596] = 28, + [12671] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(106), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(110), 1, + ACTIONS(29), 1, anon_sym_POUND, - ACTIONS(112), 1, + ACTIONS(33), 1, anon_sym_LBRACK, - ACTIONS(114), 1, + ACTIONS(35), 1, anon_sym_LT_LT, - ACTIONS(116), 1, + ACTIONS(37), 1, anon_sym_DASH, - ACTIONS(118), 1, + ACTIONS(39), 1, anon_sym_fn, - ACTIONS(122), 1, + ACTIONS(41), 1, anon_sym_todo, - ACTIONS(124), 1, + ACTIONS(45), 1, anon_sym_case, - ACTIONS(126), 1, + ACTIONS(47), 1, anon_sym_let, - ACTIONS(128), 1, + ACTIONS(49), 1, anon_sym_assert, - ACTIONS(134), 1, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(57), 1, sym__decimal, - ACTIONS(136), 1, - sym__name, - ACTIONS(138), 1, + ACTIONS(63), 1, sym__upname, - STATE(52), 1, - sym_anonymous_function, - STATE(56), 1, - sym_tuple, - STATE(95), 1, + ACTIONS(269), 1, + sym__name, + STATE(254), 1, sym_identifier, - STATE(172), 1, + STATE(273), 1, + sym_tuple, + STATE(282), 1, + sym_anonymous_function, + STATE(405), 1, sym__expression, - STATE(889), 1, + STATE(913), 1, sym__maybe_function_expression, - STATE(1038), 1, + STATE(1037), 1, sym__maybe_tuple_expression, - STATE(1050), 1, + STATE(1038), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(130), 2, - sym_string, - sym_float, - STATE(12), 2, + STATE(246), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(58), 2, + STATE(272), 2, sym_record, sym_record_update, - ACTIONS(132), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(18), 5, + STATE(262), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(165), 8, + STATE(304), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -15648,222 +15901,255 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [12698] = 29, + [12776] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, - sym__upname, - ACTIONS(106), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(110), 1, + ACTIONS(29), 1, anon_sym_POUND, - ACTIONS(112), 1, + ACTIONS(33), 1, anon_sym_LBRACK, - ACTIONS(114), 1, + ACTIONS(35), 1, anon_sym_LT_LT, - ACTIONS(116), 1, + ACTIONS(37), 1, anon_sym_DASH, - ACTIONS(118), 1, + ACTIONS(39), 1, anon_sym_fn, - ACTIONS(122), 1, + ACTIONS(41), 1, anon_sym_todo, - ACTIONS(124), 1, + ACTIONS(45), 1, anon_sym_case, - ACTIONS(134), 1, - sym__decimal, - ACTIONS(300), 1, - sym__name, - ACTIONS(446), 1, + ACTIONS(47), 1, anon_sym_let, - ACTIONS(448), 1, + ACTIONS(49), 1, anon_sym_assert, - ACTIONS(459), 1, - anon_sym_GT_GT, - STATE(52), 1, - sym_anonymous_function, - STATE(56), 1, - sym_tuple, - STATE(711), 1, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(57), 1, + sym__decimal, + ACTIONS(63), 1, + sym__upname, + ACTIONS(269), 1, + sym__name, + STATE(254), 1, sym_identifier, - STATE(889), 1, + STATE(273), 1, + sym_tuple, + STATE(282), 1, + sym_anonymous_function, + STATE(425), 1, + sym__expression, + STATE(913), 1, sym__maybe_function_expression, - STATE(896), 1, - sym_expression_bit_string_segment, - STATE(1038), 1, + STATE(1037), 1, sym__maybe_tuple_expression, - STATE(1050), 1, + STATE(1038), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(450), 2, - sym_string, - sym_float, - STATE(12), 2, + STATE(246), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(58), 2, + STATE(272), 2, sym_record, sym_record_update, - ACTIONS(132), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(18), 5, + STATE(262), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(778), 7, + STATE(304), 9, + sym_binary_expression, sym__expression_unit, sym_todo, sym_list, sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [12802] = 28, + [12881] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(106), 1, - anon_sym_LBRACE, - ACTIONS(110), 1, - anon_sym_POUND, - ACTIONS(112), 1, - anon_sym_LBRACK, - ACTIONS(114), 1, - anon_sym_LT_LT, - ACTIONS(116), 1, + ACTIONS(259), 1, + anon_sym_LPAREN, + ACTIONS(472), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(257), 16, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(118), 1, anon_sym_fn, - ACTIONS(122), 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(124), 1, anon_sym_case, - ACTIONS(126), 1, anon_sym_let, - ACTIONS(128), 1, anon_sym_assert, - ACTIONS(134), 1, sym__decimal, - ACTIONS(136), 1, sym__name, - ACTIONS(138), 1, + ACTIONS(252), 25, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, sym__upname, - STATE(52), 1, - sym_anonymous_function, - STATE(56), 1, - sym_tuple, - STATE(95), 1, - sym_identifier, - STATE(179), 1, - sym__expression, - STATE(889), 1, - sym__maybe_function_expression, - STATE(1038), 1, - sym__maybe_tuple_expression, - STATE(1050), 1, - sym__maybe_record_expression, + [12940] = 4, + ACTIONS(3), 1, + sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(130), 2, - sym_string, + ACTIONS(478), 16, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_fn, + anon_sym_try, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + sym__decimal, + sym__name, + ACTIONS(476), 27, + 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_DQUOTE, sym_float, - STATE(12), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(58), 2, - sym_record, - sym_record_update, - ACTIONS(132), 3, sym__hex, sym__octal, sym__binary, - STATE(18), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(165), 8, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_integer, - [12904] = 28, + sym__upname, + [12995] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(31), 1, + ACTIONS(417), 1, anon_sym_LBRACE, - ACTIONS(33), 1, + ACTIONS(419), 1, anon_sym_POUND, - ACTIONS(37), 1, + ACTIONS(421), 1, anon_sym_LBRACK, - ACTIONS(39), 1, + ACTIONS(423), 1, anon_sym_LT_LT, - ACTIONS(41), 1, + ACTIONS(425), 1, anon_sym_DASH, - ACTIONS(43), 1, + ACTIONS(427), 1, anon_sym_fn, - ACTIONS(45), 1, + ACTIONS(429), 1, anon_sym_todo, - ACTIONS(49), 1, + ACTIONS(431), 1, anon_sym_case, - ACTIONS(51), 1, + ACTIONS(433), 1, anon_sym_let, - ACTIONS(53), 1, + ACTIONS(435), 1, anon_sym_assert, - ACTIONS(59), 1, + ACTIONS(437), 1, + anon_sym_DQUOTE, + ACTIONS(439), 1, + sym_float, + ACTIONS(443), 1, sym__decimal, - ACTIONS(65), 1, - sym__upname, - ACTIONS(300), 1, + ACTIONS(445), 1, sym__name, - STATE(251), 1, + ACTIONS(447), 1, + sym__upname, + STATE(190), 1, sym_identifier, - STATE(267), 1, - sym_anonymous_function, - STATE(268), 1, + STATE(209), 1, sym_tuple, - STATE(372), 1, + STATE(214), 1, + sym_anonymous_function, + STATE(223), 1, sym__expression, - STATE(898), 1, + STATE(986), 1, sym__maybe_function_expression, - STATE(1016), 1, + STATE(1055), 1, sym__maybe_tuple_expression, - STATE(1017), 1, + STATE(1056), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(55), 2, - sym_string, - sym_float, - STATE(243), 2, + STATE(188), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(269), 2, + STATE(210), 2, sym_record, sym_record_update, - ACTIONS(57), 3, + ACTIONS(441), 3, sym__hex, sym__octal, sym__binary, - STATE(247), 5, + STATE(191), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(292), 8, + STATE(245), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -15871,73 +16157,75 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [13006] = 28, + [13100] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(414), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(416), 1, + ACTIONS(29), 1, anon_sym_POUND, - ACTIONS(418), 1, + ACTIONS(33), 1, anon_sym_LBRACK, - ACTIONS(420), 1, + ACTIONS(35), 1, anon_sym_LT_LT, - ACTIONS(422), 1, + ACTIONS(37), 1, anon_sym_DASH, - ACTIONS(424), 1, + ACTIONS(39), 1, anon_sym_fn, - ACTIONS(426), 1, + ACTIONS(41), 1, anon_sym_todo, - ACTIONS(428), 1, + ACTIONS(45), 1, anon_sym_case, - ACTIONS(430), 1, + ACTIONS(47), 1, anon_sym_let, - ACTIONS(432), 1, + ACTIONS(49), 1, anon_sym_assert, - ACTIONS(438), 1, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(57), 1, sym__decimal, - ACTIONS(440), 1, - sym__name, - ACTIONS(442), 1, + ACTIONS(63), 1, sym__upname, - STATE(185), 1, + ACTIONS(269), 1, + sym__name, + STATE(254), 1, sym_identifier, - STATE(203), 1, + STATE(273), 1, sym_tuple, - STATE(204), 1, + STATE(282), 1, sym_anonymous_function, - STATE(222), 1, + STATE(424), 1, sym__expression, - STATE(969), 1, + STATE(913), 1, sym__maybe_function_expression, - STATE(1034), 1, + STATE(1037), 1, sym__maybe_tuple_expression, - STATE(1035), 1, + STATE(1038), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(434), 2, - sym_string, - sym_float, - STATE(184), 2, + STATE(246), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(202), 2, + STATE(272), 2, sym_record, sym_record_update, - ACTIONS(436), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(201), 5, + STATE(262), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(217), 8, + STATE(304), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -15945,73 +16233,75 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [13108] = 28, + [13205] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(414), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(416), 1, + ACTIONS(29), 1, anon_sym_POUND, - ACTIONS(418), 1, + ACTIONS(33), 1, anon_sym_LBRACK, - ACTIONS(420), 1, + ACTIONS(35), 1, anon_sym_LT_LT, - ACTIONS(422), 1, + ACTIONS(37), 1, anon_sym_DASH, - ACTIONS(424), 1, + ACTIONS(39), 1, anon_sym_fn, - ACTIONS(426), 1, + ACTIONS(41), 1, anon_sym_todo, - ACTIONS(428), 1, + ACTIONS(45), 1, anon_sym_case, - ACTIONS(430), 1, + ACTIONS(47), 1, anon_sym_let, - ACTIONS(432), 1, + ACTIONS(49), 1, anon_sym_assert, - ACTIONS(438), 1, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(57), 1, sym__decimal, - ACTIONS(440), 1, - sym__name, - ACTIONS(442), 1, + ACTIONS(63), 1, sym__upname, - STATE(185), 1, + ACTIONS(269), 1, + sym__name, + STATE(254), 1, sym_identifier, - STATE(203), 1, + STATE(273), 1, sym_tuple, - STATE(204), 1, + STATE(282), 1, sym_anonymous_function, - STATE(227), 1, + STATE(418), 1, sym__expression, - STATE(969), 1, + STATE(913), 1, sym__maybe_function_expression, - STATE(1034), 1, + STATE(1037), 1, sym__maybe_tuple_expression, - STATE(1035), 1, + STATE(1038), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(434), 2, - sym_string, - sym_float, - STATE(184), 2, + STATE(246), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(202), 2, + STATE(272), 2, sym_record, sym_record_update, - ACTIONS(436), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(201), 5, + STATE(262), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(217), 8, + STATE(304), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -16019,297 +16309,304 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [13210] = 28, + [13310] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(106), 1, + ACTIONS(63), 1, + sym__upname, + ACTIONS(93), 1, anon_sym_LBRACE, - ACTIONS(110), 1, + ACTIONS(97), 1, anon_sym_POUND, - ACTIONS(112), 1, + ACTIONS(99), 1, anon_sym_LBRACK, - ACTIONS(114), 1, + ACTIONS(101), 1, anon_sym_LT_LT, - ACTIONS(116), 1, + ACTIONS(103), 1, anon_sym_DASH, - ACTIONS(118), 1, + ACTIONS(105), 1, anon_sym_fn, - ACTIONS(122), 1, + ACTIONS(109), 1, anon_sym_todo, - ACTIONS(124), 1, + ACTIONS(111), 1, anon_sym_case, - ACTIONS(126), 1, - anon_sym_let, - ACTIONS(128), 1, - anon_sym_assert, - ACTIONS(134), 1, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(123), 1, sym__decimal, - ACTIONS(136), 1, + ACTIONS(269), 1, sym__name, - ACTIONS(138), 1, - sym__upname, - STATE(52), 1, - sym_anonymous_function, - STATE(56), 1, + ACTIONS(451), 1, + anon_sym_let, + ACTIONS(453), 1, + anon_sym_assert, + ACTIONS(455), 1, + sym_float, + ACTIONS(480), 1, + anon_sym_GT_GT, + STATE(60), 1, sym_tuple, - STATE(95), 1, + STATE(62), 1, + sym_anonymous_function, + STATE(733), 1, sym_identifier, - STATE(175), 1, - sym__expression, - STATE(889), 1, + STATE(936), 1, sym__maybe_function_expression, - STATE(1038), 1, + STATE(953), 1, + sym_expression_bit_string_segment, + STATE(1060), 1, sym__maybe_tuple_expression, - STATE(1050), 1, + STATE(1062), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(130), 2, - sym_string, - sym_float, - STATE(12), 2, + STATE(21), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(58), 2, + STATE(64), 2, sym_record, sym_record_update, - ACTIONS(132), 3, + ACTIONS(121), 3, sym__hex, sym__octal, sym__binary, - STATE(18), 5, + STATE(55), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(165), 8, - sym_binary_expression, + STATE(857), 8, sym__expression_unit, sym_todo, sym_list, sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [13312] = 29, + [13417] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, - sym__upname, - ACTIONS(106), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(110), 1, + ACTIONS(29), 1, anon_sym_POUND, - ACTIONS(112), 1, + ACTIONS(33), 1, anon_sym_LBRACK, - ACTIONS(114), 1, + ACTIONS(35), 1, anon_sym_LT_LT, - ACTIONS(116), 1, + ACTIONS(37), 1, anon_sym_DASH, - ACTIONS(118), 1, + ACTIONS(39), 1, anon_sym_fn, - ACTIONS(122), 1, + ACTIONS(41), 1, anon_sym_todo, - ACTIONS(124), 1, + ACTIONS(45), 1, anon_sym_case, - ACTIONS(134), 1, - sym__decimal, - ACTIONS(300), 1, - sym__name, - ACTIONS(446), 1, + ACTIONS(47), 1, anon_sym_let, - ACTIONS(448), 1, + ACTIONS(49), 1, anon_sym_assert, - ACTIONS(461), 1, - anon_sym_GT_GT, - STATE(52), 1, - sym_anonymous_function, - STATE(56), 1, - sym_tuple, - STATE(711), 1, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(57), 1, + sym__decimal, + ACTIONS(63), 1, + sym__upname, + ACTIONS(269), 1, + sym__name, + STATE(254), 1, sym_identifier, - STATE(889), 1, + STATE(273), 1, + sym_tuple, + STATE(282), 1, + sym_anonymous_function, + STATE(300), 1, + sym__expression, + STATE(913), 1, sym__maybe_function_expression, - STATE(896), 1, - sym_expression_bit_string_segment, - STATE(1038), 1, + STATE(1037), 1, sym__maybe_tuple_expression, - STATE(1050), 1, + STATE(1038), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(450), 2, - sym_string, - sym_float, - STATE(12), 2, + STATE(246), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(58), 2, + STATE(272), 2, sym_record, sym_record_update, - ACTIONS(132), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(18), 5, + STATE(262), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(778), 7, + STATE(304), 9, + sym_binary_expression, sym__expression_unit, sym_todo, sym_list, sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [13416] = 29, + [13522] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, - sym__upname, - ACTIONS(106), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(110), 1, + ACTIONS(29), 1, anon_sym_POUND, - ACTIONS(112), 1, + ACTIONS(33), 1, anon_sym_LBRACK, - ACTIONS(114), 1, + ACTIONS(35), 1, anon_sym_LT_LT, - ACTIONS(116), 1, + ACTIONS(37), 1, anon_sym_DASH, - ACTIONS(118), 1, + ACTIONS(39), 1, anon_sym_fn, - ACTIONS(122), 1, + ACTIONS(41), 1, anon_sym_todo, - ACTIONS(124), 1, + ACTIONS(45), 1, anon_sym_case, - ACTIONS(134), 1, - sym__decimal, - ACTIONS(300), 1, - sym__name, - ACTIONS(446), 1, + ACTIONS(47), 1, anon_sym_let, - ACTIONS(448), 1, + ACTIONS(49), 1, anon_sym_assert, - ACTIONS(463), 1, - anon_sym_GT_GT, - STATE(52), 1, - sym_anonymous_function, - STATE(56), 1, - sym_tuple, - STATE(711), 1, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(57), 1, + sym__decimal, + ACTIONS(63), 1, + sym__upname, + ACTIONS(269), 1, + sym__name, + STATE(254), 1, sym_identifier, - STATE(889), 1, + STATE(273), 1, + sym_tuple, + STATE(282), 1, + sym_anonymous_function, + STATE(294), 1, + sym__expression, + STATE(913), 1, sym__maybe_function_expression, - STATE(896), 1, - sym_expression_bit_string_segment, - STATE(1038), 1, + STATE(1037), 1, sym__maybe_tuple_expression, - STATE(1050), 1, + STATE(1038), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(450), 2, - sym_string, - sym_float, - STATE(12), 2, + STATE(246), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(58), 2, + STATE(272), 2, sym_record, sym_record_update, - ACTIONS(132), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(18), 5, + STATE(262), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(778), 7, + STATE(304), 9, + sym_binary_expression, sym__expression_unit, sym_todo, sym_list, sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [13520] = 28, + [13627] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(31), 1, + ACTIONS(417), 1, anon_sym_LBRACE, - ACTIONS(33), 1, + ACTIONS(419), 1, anon_sym_POUND, - ACTIONS(37), 1, + ACTIONS(421), 1, anon_sym_LBRACK, - ACTIONS(39), 1, + ACTIONS(423), 1, anon_sym_LT_LT, - ACTIONS(41), 1, + ACTIONS(425), 1, anon_sym_DASH, - ACTIONS(43), 1, + ACTIONS(427), 1, anon_sym_fn, - ACTIONS(45), 1, + ACTIONS(429), 1, anon_sym_todo, - ACTIONS(49), 1, + ACTIONS(431), 1, anon_sym_case, - ACTIONS(51), 1, + ACTIONS(433), 1, anon_sym_let, - ACTIONS(53), 1, + ACTIONS(435), 1, anon_sym_assert, - ACTIONS(59), 1, + ACTIONS(437), 1, + anon_sym_DQUOTE, + ACTIONS(439), 1, + sym_float, + ACTIONS(443), 1, sym__decimal, - ACTIONS(65), 1, - sym__upname, - ACTIONS(300), 1, + ACTIONS(445), 1, sym__name, - STATE(251), 1, + ACTIONS(447), 1, + sym__upname, + STATE(190), 1, sym_identifier, - STATE(267), 1, - sym_anonymous_function, - STATE(268), 1, + STATE(209), 1, sym_tuple, - STATE(403), 1, + STATE(214), 1, + sym_anonymous_function, + STATE(225), 1, sym__expression, - STATE(898), 1, + STATE(986), 1, sym__maybe_function_expression, - STATE(1016), 1, + STATE(1055), 1, sym__maybe_tuple_expression, - STATE(1017), 1, + STATE(1056), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(55), 2, - sym_string, - sym_float, - STATE(243), 2, + STATE(188), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(269), 2, + STATE(210), 2, sym_record, sym_record_update, - ACTIONS(57), 3, + ACTIONS(441), 3, sym__hex, sym__octal, sym__binary, - STATE(247), 5, + STATE(191), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(292), 8, + STATE(245), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -16317,73 +16614,75 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [13622] = 28, + [13732] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(31), 1, + ACTIONS(417), 1, anon_sym_LBRACE, - ACTIONS(33), 1, + ACTIONS(419), 1, anon_sym_POUND, - ACTIONS(37), 1, + ACTIONS(421), 1, anon_sym_LBRACK, - ACTIONS(39), 1, + ACTIONS(423), 1, anon_sym_LT_LT, - ACTIONS(41), 1, + ACTIONS(425), 1, anon_sym_DASH, - ACTIONS(43), 1, + ACTIONS(427), 1, anon_sym_fn, - ACTIONS(45), 1, + ACTIONS(429), 1, anon_sym_todo, - ACTIONS(49), 1, + ACTIONS(431), 1, anon_sym_case, - ACTIONS(51), 1, + ACTIONS(433), 1, anon_sym_let, - ACTIONS(53), 1, + ACTIONS(435), 1, anon_sym_assert, - ACTIONS(59), 1, + ACTIONS(437), 1, + anon_sym_DQUOTE, + ACTIONS(439), 1, + sym_float, + ACTIONS(443), 1, sym__decimal, - ACTIONS(65), 1, - sym__upname, - ACTIONS(300), 1, + ACTIONS(445), 1, sym__name, - STATE(251), 1, + ACTIONS(447), 1, + sym__upname, + STATE(190), 1, sym_identifier, - STATE(267), 1, - sym_anonymous_function, - STATE(268), 1, + STATE(209), 1, sym_tuple, - STATE(288), 1, + STATE(214), 1, + sym_anonymous_function, + STATE(226), 1, sym__expression, - STATE(898), 1, + STATE(986), 1, sym__maybe_function_expression, - STATE(1016), 1, + STATE(1055), 1, sym__maybe_tuple_expression, - STATE(1017), 1, + STATE(1056), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(55), 2, - sym_string, - sym_float, - STATE(243), 2, + STATE(188), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(269), 2, + STATE(210), 2, sym_record, sym_record_update, - ACTIONS(57), 3, + ACTIONS(441), 3, sym__hex, sym__octal, sym__binary, - STATE(247), 5, + STATE(191), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(292), 8, + STATE(245), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -16391,73 +16690,75 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [13724] = 28, + [13837] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(31), 1, + ACTIONS(417), 1, anon_sym_LBRACE, - ACTIONS(33), 1, + ACTIONS(419), 1, anon_sym_POUND, - ACTIONS(37), 1, + ACTIONS(421), 1, anon_sym_LBRACK, - ACTIONS(39), 1, + ACTIONS(423), 1, anon_sym_LT_LT, - ACTIONS(41), 1, + ACTIONS(425), 1, anon_sym_DASH, - ACTIONS(43), 1, + ACTIONS(427), 1, anon_sym_fn, - ACTIONS(45), 1, + ACTIONS(429), 1, anon_sym_todo, - ACTIONS(49), 1, + ACTIONS(431), 1, anon_sym_case, - ACTIONS(51), 1, + ACTIONS(433), 1, anon_sym_let, - ACTIONS(53), 1, + ACTIONS(435), 1, anon_sym_assert, - ACTIONS(59), 1, + ACTIONS(437), 1, + anon_sym_DQUOTE, + ACTIONS(439), 1, + sym_float, + ACTIONS(443), 1, sym__decimal, - ACTIONS(65), 1, - sym__upname, - ACTIONS(300), 1, + ACTIONS(445), 1, sym__name, - STATE(251), 1, + ACTIONS(447), 1, + sym__upname, + STATE(190), 1, sym_identifier, - STATE(267), 1, - sym_anonymous_function, - STATE(268), 1, + STATE(209), 1, sym_tuple, - STATE(287), 1, + STATE(214), 1, + sym_anonymous_function, + STATE(227), 1, sym__expression, - STATE(898), 1, + STATE(986), 1, sym__maybe_function_expression, - STATE(1016), 1, + STATE(1055), 1, sym__maybe_tuple_expression, - STATE(1017), 1, + STATE(1056), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(55), 2, - sym_string, - sym_float, - STATE(243), 2, + STATE(188), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(269), 2, + STATE(210), 2, sym_record, sym_record_update, - ACTIONS(57), 3, + ACTIONS(441), 3, sym__hex, sym__octal, sym__binary, - STATE(247), 5, + STATE(191), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(292), 8, + STATE(245), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -16465,147 +16766,152 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [13826] = 28, + [13942] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(31), 1, + ACTIONS(63), 1, + sym__upname, + ACTIONS(93), 1, anon_sym_LBRACE, - ACTIONS(33), 1, + ACTIONS(97), 1, anon_sym_POUND, - ACTIONS(37), 1, + ACTIONS(99), 1, anon_sym_LBRACK, - ACTIONS(39), 1, + ACTIONS(101), 1, anon_sym_LT_LT, - ACTIONS(41), 1, + ACTIONS(103), 1, anon_sym_DASH, - ACTIONS(43), 1, + ACTIONS(105), 1, anon_sym_fn, - ACTIONS(45), 1, + ACTIONS(109), 1, anon_sym_todo, - ACTIONS(49), 1, + ACTIONS(111), 1, anon_sym_case, - ACTIONS(51), 1, - anon_sym_let, - ACTIONS(53), 1, - anon_sym_assert, - ACTIONS(59), 1, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(123), 1, sym__decimal, - ACTIONS(65), 1, - sym__upname, - ACTIONS(300), 1, + ACTIONS(269), 1, sym__name, - STATE(251), 1, - sym_identifier, - STATE(267), 1, - sym_anonymous_function, - STATE(268), 1, + ACTIONS(451), 1, + anon_sym_let, + ACTIONS(453), 1, + anon_sym_assert, + ACTIONS(455), 1, + sym_float, + ACTIONS(482), 1, + anon_sym_GT_GT, + STATE(60), 1, sym_tuple, - STATE(286), 1, - sym__expression, - STATE(898), 1, + STATE(62), 1, + sym_anonymous_function, + STATE(733), 1, + sym_identifier, + STATE(936), 1, sym__maybe_function_expression, - STATE(1016), 1, + STATE(953), 1, + sym_expression_bit_string_segment, + STATE(1060), 1, sym__maybe_tuple_expression, - STATE(1017), 1, + STATE(1062), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(55), 2, - sym_string, - sym_float, - STATE(243), 2, + STATE(21), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(269), 2, + STATE(64), 2, sym_record, sym_record_update, - ACTIONS(57), 3, + ACTIONS(121), 3, sym__hex, sym__octal, sym__binary, - STATE(247), 5, + STATE(55), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(292), 8, - sym_binary_expression, + STATE(857), 8, sym__expression_unit, sym_todo, sym_list, sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [13928] = 28, + [14049] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(31), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_POUND, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_LBRACK, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_LT_LT, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_DASH, - ACTIONS(43), 1, + ACTIONS(39), 1, anon_sym_fn, - ACTIONS(45), 1, + ACTIONS(41), 1, anon_sym_todo, - ACTIONS(49), 1, + ACTIONS(45), 1, anon_sym_case, - ACTIONS(51), 1, + ACTIONS(47), 1, anon_sym_let, - ACTIONS(53), 1, + ACTIONS(49), 1, anon_sym_assert, - ACTIONS(59), 1, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(57), 1, sym__decimal, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(300), 1, + ACTIONS(269), 1, sym__name, - STATE(251), 1, + STATE(254), 1, sym_identifier, - STATE(267), 1, - sym_anonymous_function, - STATE(268), 1, + STATE(273), 1, sym_tuple, - STATE(284), 1, + STATE(282), 1, + sym_anonymous_function, + STATE(417), 1, sym__expression, - STATE(898), 1, + STATE(913), 1, sym__maybe_function_expression, - STATE(1016), 1, + STATE(1037), 1, sym__maybe_tuple_expression, - STATE(1017), 1, + STATE(1038), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(55), 2, - sym_string, - sym_float, - STATE(243), 2, + STATE(246), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(269), 2, + STATE(272), 2, sym_record, sym_record_update, - ACTIONS(57), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(247), 5, + STATE(262), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(292), 8, + STATE(304), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -16613,73 +16919,75 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [14030] = 28, + [14154] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(31), 1, + ACTIONS(417), 1, anon_sym_LBRACE, - ACTIONS(33), 1, + ACTIONS(419), 1, anon_sym_POUND, - ACTIONS(37), 1, + ACTIONS(421), 1, anon_sym_LBRACK, - ACTIONS(39), 1, + ACTIONS(423), 1, anon_sym_LT_LT, - ACTIONS(41), 1, + ACTIONS(425), 1, anon_sym_DASH, - ACTIONS(43), 1, + ACTIONS(427), 1, anon_sym_fn, - ACTIONS(45), 1, + ACTIONS(429), 1, anon_sym_todo, - ACTIONS(49), 1, + ACTIONS(431), 1, anon_sym_case, - ACTIONS(51), 1, + ACTIONS(433), 1, anon_sym_let, - ACTIONS(53), 1, + ACTIONS(435), 1, anon_sym_assert, - ACTIONS(59), 1, + ACTIONS(437), 1, + anon_sym_DQUOTE, + ACTIONS(439), 1, + sym_float, + ACTIONS(443), 1, sym__decimal, - ACTIONS(65), 1, - sym__upname, - ACTIONS(300), 1, + ACTIONS(445), 1, sym__name, - STATE(251), 1, + ACTIONS(447), 1, + sym__upname, + STATE(190), 1, sym_identifier, - STATE(267), 1, - sym_anonymous_function, - STATE(268), 1, + STATE(209), 1, sym_tuple, - STATE(283), 1, + STATE(214), 1, + sym_anonymous_function, + STATE(232), 1, sym__expression, - STATE(898), 1, + STATE(986), 1, sym__maybe_function_expression, - STATE(1016), 1, + STATE(1055), 1, sym__maybe_tuple_expression, - STATE(1017), 1, + STATE(1056), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(55), 2, - sym_string, - sym_float, - STATE(243), 2, + STATE(188), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(269), 2, + STATE(210), 2, sym_record, sym_record_update, - ACTIONS(57), 3, + ACTIONS(441), 3, sym__hex, sym__octal, sym__binary, - STATE(247), 5, + STATE(191), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(292), 8, + STATE(245), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -16687,73 +16995,75 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [14132] = 28, + [14259] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(31), 1, + ACTIONS(93), 1, anon_sym_LBRACE, - ACTIONS(33), 1, + ACTIONS(97), 1, anon_sym_POUND, - ACTIONS(37), 1, + ACTIONS(99), 1, anon_sym_LBRACK, - ACTIONS(39), 1, + ACTIONS(101), 1, anon_sym_LT_LT, - ACTIONS(41), 1, + ACTIONS(103), 1, anon_sym_DASH, - ACTIONS(43), 1, + ACTIONS(105), 1, anon_sym_fn, - ACTIONS(45), 1, + ACTIONS(109), 1, anon_sym_todo, - ACTIONS(49), 1, + ACTIONS(111), 1, anon_sym_case, - ACTIONS(51), 1, + ACTIONS(113), 1, anon_sym_let, - ACTIONS(53), 1, + ACTIONS(115), 1, anon_sym_assert, - ACTIONS(59), 1, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(119), 1, + sym_float, + ACTIONS(123), 1, sym__decimal, - ACTIONS(65), 1, - sym__upname, - ACTIONS(300), 1, + ACTIONS(125), 1, sym__name, - STATE(251), 1, - sym_identifier, - STATE(267), 1, - sym_anonymous_function, - STATE(268), 1, + ACTIONS(127), 1, + sym__upname, + STATE(60), 1, sym_tuple, - STATE(404), 1, + STATE(62), 1, + sym_anonymous_function, + STATE(139), 1, + sym_identifier, + STATE(178), 1, sym__expression, - STATE(898), 1, + STATE(936), 1, sym__maybe_function_expression, - STATE(1016), 1, + STATE(1060), 1, sym__maybe_tuple_expression, - STATE(1017), 1, + STATE(1062), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(55), 2, - sym_string, - sym_float, - STATE(243), 2, + STATE(21), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(269), 2, + STATE(64), 2, sym_record, sym_record_update, - ACTIONS(57), 3, + ACTIONS(121), 3, sym__hex, sym__octal, sym__binary, - STATE(247), 5, + STATE(55), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(292), 8, + STATE(181), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -16761,222 +17071,228 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [14234] = 28, + [14364] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(33), 1, + ACTIONS(63), 1, + sym__upname, + ACTIONS(93), 1, + anon_sym_LBRACE, + ACTIONS(97), 1, anon_sym_POUND, - ACTIONS(37), 1, + ACTIONS(99), 1, anon_sym_LBRACK, - ACTIONS(39), 1, + ACTIONS(101), 1, anon_sym_LT_LT, - ACTIONS(41), 1, + ACTIONS(103), 1, anon_sym_DASH, - ACTIONS(43), 1, + ACTIONS(105), 1, anon_sym_fn, - ACTIONS(45), 1, + ACTIONS(109), 1, anon_sym_todo, - ACTIONS(49), 1, + ACTIONS(111), 1, anon_sym_case, - ACTIONS(51), 1, - anon_sym_let, - ACTIONS(53), 1, - anon_sym_assert, - ACTIONS(59), 1, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(123), 1, sym__decimal, - ACTIONS(65), 1, - sym__upname, - ACTIONS(300), 1, + ACTIONS(269), 1, sym__name, - ACTIONS(465), 1, - anon_sym_LBRACE, - STATE(251), 1, - sym_identifier, - STATE(267), 1, - sym_anonymous_function, - STATE(268), 1, + ACTIONS(451), 1, + anon_sym_let, + ACTIONS(453), 1, + anon_sym_assert, + ACTIONS(455), 1, + sym_float, + ACTIONS(484), 1, + anon_sym_GT_GT, + STATE(60), 1, sym_tuple, - STATE(316), 1, - sym__expression, - STATE(898), 1, + STATE(62), 1, + sym_anonymous_function, + STATE(733), 1, + sym_identifier, + STATE(856), 1, + sym_expression_bit_string_segment, + STATE(936), 1, sym__maybe_function_expression, - STATE(1016), 1, + STATE(1060), 1, sym__maybe_tuple_expression, - STATE(1017), 1, + STATE(1062), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(55), 2, - sym_string, - sym_float, - STATE(243), 2, + STATE(21), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(269), 2, + STATE(64), 2, sym_record, sym_record_update, - ACTIONS(57), 3, + ACTIONS(121), 3, sym__hex, sym__octal, sym__binary, - STATE(247), 5, + STATE(55), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(292), 8, - sym_binary_expression, + STATE(857), 8, sym__expression_unit, sym_todo, sym_list, sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [14336] = 29, + [14471] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, - sym__upname, - ACTIONS(106), 1, + ACTIONS(417), 1, anon_sym_LBRACE, - ACTIONS(110), 1, + ACTIONS(419), 1, anon_sym_POUND, - ACTIONS(112), 1, + ACTIONS(421), 1, anon_sym_LBRACK, - ACTIONS(114), 1, + ACTIONS(423), 1, anon_sym_LT_LT, - ACTIONS(116), 1, + ACTIONS(425), 1, anon_sym_DASH, - ACTIONS(118), 1, + ACTIONS(427), 1, anon_sym_fn, - ACTIONS(122), 1, + ACTIONS(429), 1, anon_sym_todo, - ACTIONS(124), 1, + ACTIONS(431), 1, anon_sym_case, - ACTIONS(134), 1, - sym__decimal, - ACTIONS(300), 1, - sym__name, - ACTIONS(446), 1, + ACTIONS(433), 1, anon_sym_let, - ACTIONS(448), 1, + ACTIONS(435), 1, anon_sym_assert, - ACTIONS(468), 1, - anon_sym_GT_GT, - STATE(52), 1, - sym_anonymous_function, - STATE(56), 1, - sym_tuple, - STATE(711), 1, + ACTIONS(437), 1, + anon_sym_DQUOTE, + ACTIONS(439), 1, + sym_float, + ACTIONS(443), 1, + sym__decimal, + ACTIONS(445), 1, + sym__name, + ACTIONS(447), 1, + sym__upname, + STATE(190), 1, sym_identifier, - STATE(783), 1, - sym_expression_bit_string_segment, - STATE(889), 1, + STATE(209), 1, + sym_tuple, + STATE(214), 1, + sym_anonymous_function, + STATE(224), 1, + sym__expression, + STATE(986), 1, sym__maybe_function_expression, - STATE(1038), 1, + STATE(1055), 1, sym__maybe_tuple_expression, - STATE(1050), 1, + STATE(1056), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(450), 2, - sym_string, - sym_float, - STATE(12), 2, + STATE(188), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(58), 2, + STATE(210), 2, sym_record, sym_record_update, - ACTIONS(132), 3, + ACTIONS(441), 3, sym__hex, sym__octal, sym__binary, - STATE(18), 5, + STATE(191), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(778), 7, + STATE(245), 9, + sym_binary_expression, sym__expression_unit, sym_todo, sym_list, sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [14440] = 28, + [14576] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(106), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(110), 1, + ACTIONS(29), 1, anon_sym_POUND, - ACTIONS(112), 1, + ACTIONS(33), 1, anon_sym_LBRACK, - ACTIONS(114), 1, + ACTIONS(35), 1, anon_sym_LT_LT, - ACTIONS(116), 1, + ACTIONS(37), 1, anon_sym_DASH, - ACTIONS(118), 1, + ACTIONS(39), 1, anon_sym_fn, - ACTIONS(122), 1, + ACTIONS(41), 1, anon_sym_todo, - ACTIONS(124), 1, + ACTIONS(45), 1, anon_sym_case, - ACTIONS(126), 1, + ACTIONS(47), 1, anon_sym_let, - ACTIONS(128), 1, + ACTIONS(49), 1, anon_sym_assert, - ACTIONS(134), 1, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(57), 1, sym__decimal, - ACTIONS(136), 1, - sym__name, - ACTIONS(138), 1, + ACTIONS(63), 1, sym__upname, - STATE(52), 1, - sym_anonymous_function, - STATE(56), 1, - sym_tuple, - STATE(95), 1, + ACTIONS(269), 1, + sym__name, + STATE(254), 1, sym_identifier, - STATE(177), 1, + STATE(273), 1, + sym_tuple, + STATE(282), 1, + sym_anonymous_function, + STATE(306), 1, sym__expression, - STATE(889), 1, + STATE(913), 1, sym__maybe_function_expression, - STATE(1038), 1, + STATE(1037), 1, sym__maybe_tuple_expression, - STATE(1050), 1, + STATE(1038), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(130), 2, - sym_string, - sym_float, - STATE(12), 2, + STATE(246), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(58), 2, + STATE(272), 2, sym_record, sym_record_update, - ACTIONS(132), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(18), 5, + STATE(262), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(165), 8, + STATE(304), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -16984,73 +17300,75 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [14542] = 28, + [14681] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(106), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(110), 1, + ACTIONS(29), 1, anon_sym_POUND, - ACTIONS(112), 1, + ACTIONS(33), 1, anon_sym_LBRACK, - ACTIONS(114), 1, + ACTIONS(35), 1, anon_sym_LT_LT, - ACTIONS(116), 1, + ACTIONS(37), 1, anon_sym_DASH, - ACTIONS(118), 1, + ACTIONS(39), 1, anon_sym_fn, - ACTIONS(122), 1, + ACTIONS(41), 1, anon_sym_todo, - ACTIONS(124), 1, + ACTIONS(45), 1, anon_sym_case, - ACTIONS(126), 1, + ACTIONS(47), 1, anon_sym_let, - ACTIONS(128), 1, + ACTIONS(49), 1, anon_sym_assert, - ACTIONS(134), 1, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(57), 1, sym__decimal, - ACTIONS(136), 1, - sym__name, - ACTIONS(138), 1, + ACTIONS(63), 1, sym__upname, - STATE(52), 1, - sym_anonymous_function, - STATE(56), 1, - sym_tuple, - STATE(95), 1, + ACTIONS(269), 1, + sym__name, + STATE(254), 1, sym_identifier, - STATE(166), 1, + STATE(273), 1, + sym_tuple, + STATE(282), 1, + sym_anonymous_function, + STATE(408), 1, sym__expression, - STATE(889), 1, + STATE(913), 1, sym__maybe_function_expression, - STATE(1038), 1, + STATE(1037), 1, sym__maybe_tuple_expression, - STATE(1050), 1, + STATE(1038), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(130), 2, - sym_string, - sym_float, - STATE(12), 2, + STATE(246), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(58), 2, + STATE(272), 2, sym_record, sym_record_update, - ACTIONS(132), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(18), 5, + STATE(262), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(165), 8, + STATE(304), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -17058,73 +17376,75 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [14644] = 28, + [14786] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(31), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(33), 1, + ACTIONS(29), 1, anon_sym_POUND, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_LBRACK, - ACTIONS(39), 1, + ACTIONS(35), 1, anon_sym_LT_LT, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_DASH, - ACTIONS(43), 1, + ACTIONS(39), 1, anon_sym_fn, - ACTIONS(45), 1, + ACTIONS(41), 1, anon_sym_todo, - ACTIONS(49), 1, + ACTIONS(45), 1, anon_sym_case, - ACTIONS(51), 1, + ACTIONS(47), 1, anon_sym_let, - ACTIONS(53), 1, + ACTIONS(49), 1, anon_sym_assert, - ACTIONS(59), 1, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(57), 1, sym__decimal, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(300), 1, + ACTIONS(269), 1, sym__name, - STATE(251), 1, + STATE(254), 1, sym_identifier, - STATE(267), 1, - sym_anonymous_function, - STATE(268), 1, + STATE(273), 1, sym_tuple, STATE(282), 1, + sym_anonymous_function, + STATE(423), 1, sym__expression, - STATE(898), 1, + STATE(913), 1, sym__maybe_function_expression, - STATE(1016), 1, + STATE(1037), 1, sym__maybe_tuple_expression, - STATE(1017), 1, + STATE(1038), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(55), 2, - sym_string, - sym_float, - STATE(243), 2, + STATE(246), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(269), 2, + STATE(272), 2, sym_record, sym_record_update, - ACTIONS(57), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(247), 5, + STATE(262), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(292), 8, + STATE(304), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -17132,73 +17452,75 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [14746] = 28, + [14891] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(106), 1, - anon_sym_LBRACE, - ACTIONS(110), 1, + ACTIONS(29), 1, anon_sym_POUND, - ACTIONS(112), 1, + ACTIONS(33), 1, anon_sym_LBRACK, - ACTIONS(114), 1, + ACTIONS(35), 1, anon_sym_LT_LT, - ACTIONS(116), 1, + ACTIONS(37), 1, anon_sym_DASH, - ACTIONS(118), 1, + ACTIONS(39), 1, anon_sym_fn, - ACTIONS(122), 1, + ACTIONS(41), 1, anon_sym_todo, - ACTIONS(124), 1, + ACTIONS(45), 1, anon_sym_case, - ACTIONS(126), 1, + ACTIONS(47), 1, anon_sym_let, - ACTIONS(128), 1, + ACTIONS(49), 1, anon_sym_assert, - ACTIONS(134), 1, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(57), 1, sym__decimal, - ACTIONS(136), 1, - sym__name, - ACTIONS(138), 1, + ACTIONS(63), 1, sym__upname, - STATE(52), 1, - sym_anonymous_function, - STATE(56), 1, - sym_tuple, - STATE(95), 1, + ACTIONS(269), 1, + sym__name, + ACTIONS(486), 1, + anon_sym_LBRACE, + STATE(254), 1, sym_identifier, - STATE(169), 1, + STATE(273), 1, + sym_tuple, + STATE(282), 1, + sym_anonymous_function, + STATE(327), 1, sym__expression, - STATE(889), 1, + STATE(913), 1, sym__maybe_function_expression, - STATE(1038), 1, + STATE(1037), 1, sym__maybe_tuple_expression, - STATE(1050), 1, + STATE(1038), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(130), 2, - sym_string, - sym_float, - STATE(12), 2, + STATE(246), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(58), 2, + STATE(272), 2, sym_record, sym_record_update, - ACTIONS(132), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(18), 5, + STATE(262), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(165), 8, + STATE(304), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -17206,73 +17528,75 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [14848] = 28, + [14996] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(31), 1, + ACTIONS(417), 1, anon_sym_LBRACE, - ACTIONS(33), 1, + ACTIONS(419), 1, anon_sym_POUND, - ACTIONS(37), 1, + ACTIONS(421), 1, anon_sym_LBRACK, - ACTIONS(39), 1, + ACTIONS(423), 1, anon_sym_LT_LT, - ACTIONS(41), 1, + ACTIONS(425), 1, anon_sym_DASH, - ACTIONS(43), 1, + ACTIONS(427), 1, anon_sym_fn, - ACTIONS(45), 1, + ACTIONS(429), 1, anon_sym_todo, - ACTIONS(49), 1, + ACTIONS(431), 1, anon_sym_case, - ACTIONS(51), 1, + ACTIONS(433), 1, anon_sym_let, - ACTIONS(53), 1, + ACTIONS(435), 1, anon_sym_assert, - ACTIONS(59), 1, + ACTIONS(437), 1, + anon_sym_DQUOTE, + ACTIONS(439), 1, + sym_float, + ACTIONS(443), 1, sym__decimal, - ACTIONS(65), 1, - sym__upname, - ACTIONS(300), 1, + ACTIONS(445), 1, sym__name, - STATE(251), 1, + ACTIONS(447), 1, + sym__upname, + STATE(190), 1, sym_identifier, - STATE(267), 1, - sym_anonymous_function, - STATE(268), 1, + STATE(209), 1, sym_tuple, - STATE(402), 1, + STATE(214), 1, + sym_anonymous_function, + STATE(240), 1, sym__expression, - STATE(898), 1, + STATE(986), 1, sym__maybe_function_expression, - STATE(1016), 1, + STATE(1055), 1, sym__maybe_tuple_expression, - STATE(1017), 1, + STATE(1056), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(55), 2, - sym_string, - sym_float, - STATE(243), 2, + STATE(188), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(269), 2, + STATE(210), 2, sym_record, sym_record_update, - ACTIONS(57), 3, + ACTIONS(441), 3, sym__hex, sym__octal, sym__binary, - STATE(247), 5, + STATE(191), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(292), 8, + STATE(245), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -17280,73 +17604,75 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [14950] = 28, + [15101] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(106), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(110), 1, + ACTIONS(29), 1, anon_sym_POUND, - ACTIONS(112), 1, + ACTIONS(33), 1, anon_sym_LBRACK, - ACTIONS(114), 1, + ACTIONS(35), 1, anon_sym_LT_LT, - ACTIONS(116), 1, + ACTIONS(37), 1, anon_sym_DASH, - ACTIONS(118), 1, + ACTIONS(39), 1, anon_sym_fn, - ACTIONS(122), 1, + ACTIONS(41), 1, anon_sym_todo, - ACTIONS(124), 1, + ACTIONS(45), 1, anon_sym_case, - ACTIONS(126), 1, + ACTIONS(47), 1, anon_sym_let, - ACTIONS(128), 1, + ACTIONS(49), 1, anon_sym_assert, - ACTIONS(134), 1, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(57), 1, sym__decimal, - ACTIONS(136), 1, - sym__name, - ACTIONS(138), 1, + ACTIONS(63), 1, sym__upname, - STATE(52), 1, - sym_anonymous_function, - STATE(56), 1, - sym_tuple, - STATE(95), 1, + ACTIONS(269), 1, + sym__name, + STATE(254), 1, sym_identifier, - STATE(170), 1, + STATE(273), 1, + sym_tuple, + STATE(282), 1, + sym_anonymous_function, + STATE(316), 1, sym__expression, - STATE(889), 1, + STATE(913), 1, sym__maybe_function_expression, - STATE(1038), 1, + STATE(1037), 1, sym__maybe_tuple_expression, - STATE(1050), 1, + STATE(1038), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(130), 2, - sym_string, - sym_float, - STATE(12), 2, + STATE(246), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(58), 2, + STATE(272), 2, sym_record, sym_record_update, - ACTIONS(132), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(18), 5, + STATE(262), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(165), 8, + STATE(304), 9, sym_binary_expression, sym__expression_unit, sym_todo, @@ -17354,228 +17680,484 @@ static const uint16_t ts_small_parse_table[] = { sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [15052] = 29, + [15206] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(106), 1, + ACTIONS(93), 1, anon_sym_LBRACE, - ACTIONS(110), 1, + ACTIONS(97), 1, anon_sym_POUND, - ACTIONS(112), 1, + ACTIONS(99), 1, anon_sym_LBRACK, - ACTIONS(114), 1, + ACTIONS(101), 1, anon_sym_LT_LT, - ACTIONS(116), 1, + ACTIONS(103), 1, anon_sym_DASH, - ACTIONS(118), 1, + ACTIONS(105), 1, anon_sym_fn, - ACTIONS(122), 1, + ACTIONS(109), 1, anon_sym_todo, - ACTIONS(124), 1, + ACTIONS(111), 1, anon_sym_case, - ACTIONS(134), 1, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(123), 1, sym__decimal, - ACTIONS(300), 1, + ACTIONS(269), 1, sym__name, - ACTIONS(446), 1, + ACTIONS(451), 1, anon_sym_let, - ACTIONS(448), 1, + ACTIONS(453), 1, anon_sym_assert, - ACTIONS(470), 1, + ACTIONS(455), 1, + sym_float, + ACTIONS(489), 1, anon_sym_GT_GT, - STATE(52), 1, - sym_anonymous_function, - STATE(56), 1, + STATE(60), 1, sym_tuple, - STATE(711), 1, + STATE(62), 1, + sym_anonymous_function, + STATE(733), 1, sym_identifier, - STATE(889), 1, + STATE(936), 1, sym__maybe_function_expression, - STATE(896), 1, + STATE(953), 1, sym_expression_bit_string_segment, - STATE(1038), 1, + STATE(1060), 1, sym__maybe_tuple_expression, - STATE(1050), 1, + STATE(1062), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(450), 2, - sym_string, - sym_float, - STATE(12), 2, + STATE(21), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(58), 2, + STATE(64), 2, sym_record, sym_record_update, - ACTIONS(132), 3, + ACTIONS(121), 3, sym__hex, sym__octal, sym__binary, - STATE(18), 5, + STATE(55), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(778), 7, + STATE(857), 8, sym__expression_unit, sym_todo, sym_list, sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [15156] = 29, + [15313] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, - sym__upname, - ACTIONS(106), 1, + ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(110), 1, + ACTIONS(29), 1, anon_sym_POUND, - ACTIONS(112), 1, + ACTIONS(33), 1, anon_sym_LBRACK, - ACTIONS(114), 1, + ACTIONS(35), 1, anon_sym_LT_LT, - ACTIONS(116), 1, + ACTIONS(37), 1, anon_sym_DASH, - ACTIONS(118), 1, + ACTIONS(39), 1, anon_sym_fn, - ACTIONS(122), 1, + ACTIONS(41), 1, anon_sym_todo, - ACTIONS(124), 1, + ACTIONS(45), 1, anon_sym_case, - ACTIONS(134), 1, - sym__decimal, - ACTIONS(300), 1, - sym__name, - ACTIONS(446), 1, + ACTIONS(47), 1, anon_sym_let, - ACTIONS(448), 1, + ACTIONS(49), 1, anon_sym_assert, - ACTIONS(472), 1, - anon_sym_GT_GT, - STATE(52), 1, - sym_anonymous_function, - STATE(56), 1, - sym_tuple, - STATE(711), 1, - sym_identifier, - STATE(851), 1, - sym_expression_bit_string_segment, - STATE(889), 1, - sym__maybe_function_expression, - STATE(1038), 1, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(57), 1, + sym__decimal, + ACTIONS(63), 1, + sym__upname, + ACTIONS(269), 1, + sym__name, + STATE(254), 1, + sym_identifier, + STATE(273), 1, + sym_tuple, + STATE(282), 1, + sym_anonymous_function, + STATE(285), 1, + sym__expression, + STATE(913), 1, + sym__maybe_function_expression, + STATE(1037), 1, sym__maybe_tuple_expression, - STATE(1050), 1, + STATE(1038), 1, sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(450), 2, + STATE(246), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(272), 2, + sym_record, + sym_record_update, + ACTIONS(55), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(262), 5, + sym_expression_group, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(304), 9, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_list, + sym__expression_bit_string, + sym_let, + sym_assert, sym_string, + sym_integer, + [15418] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(27), 1, + anon_sym_LBRACE, + ACTIONS(29), 1, + anon_sym_POUND, + ACTIONS(33), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, + anon_sym_LT_LT, + ACTIONS(37), 1, + anon_sym_DASH, + ACTIONS(39), 1, + anon_sym_fn, + ACTIONS(41), 1, + anon_sym_todo, + ACTIONS(45), 1, + anon_sym_case, + ACTIONS(47), 1, + anon_sym_let, + ACTIONS(49), 1, + anon_sym_assert, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, sym_float, - STATE(12), 2, + ACTIONS(57), 1, + sym__decimal, + ACTIONS(63), 1, + sym__upname, + ACTIONS(269), 1, + sym__name, + STATE(254), 1, + sym_identifier, + STATE(273), 1, + sym_tuple, + STATE(282), 1, + sym_anonymous_function, + STATE(312), 1, + sym__expression, + STATE(913), 1, + sym__maybe_function_expression, + STATE(1037), 1, + sym__maybe_tuple_expression, + STATE(1038), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(246), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(58), 2, + STATE(272), 2, sym_record, sym_record_update, - ACTIONS(132), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(18), 5, + STATE(262), 5, sym_expression_group, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(778), 7, + STATE(304), 9, + sym_binary_expression, sym__expression_unit, sym_todo, sym_list, sym__expression_bit_string, sym_let, sym_assert, + sym_string, sym_integer, - [15260] = 4, + [15523] = 29, ACTIONS(3), 1, sym_module_comment, + ACTIONS(27), 1, + anon_sym_LBRACE, + ACTIONS(29), 1, + anon_sym_POUND, + ACTIONS(33), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, + anon_sym_LT_LT, + ACTIONS(37), 1, + anon_sym_DASH, + ACTIONS(39), 1, + anon_sym_fn, + ACTIONS(41), 1, + anon_sym_todo, + ACTIONS(45), 1, + anon_sym_case, + ACTIONS(47), 1, + anon_sym_let, + ACTIONS(49), 1, + anon_sym_assert, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(57), 1, + sym__decimal, + ACTIONS(63), 1, + sym__upname, + ACTIONS(269), 1, + sym__name, + STATE(254), 1, + sym_identifier, + STATE(273), 1, + sym_tuple, + STATE(282), 1, + sym_anonymous_function, + STATE(419), 1, + sym__expression, + STATE(913), 1, + sym__maybe_function_expression, + STATE(1037), 1, + sym__maybe_tuple_expression, + STATE(1038), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(476), 16, - anon_sym_SLASH, + STATE(246), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(272), 2, + sym_record, + sym_record_update, + ACTIONS(55), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(262), 5, + sym_expression_group, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(304), 9, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_list, + sym__expression_bit_string, + sym_let, + sym_assert, + sym_string, + sym_integer, + [15628] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(27), 1, + anon_sym_LBRACE, + ACTIONS(29), 1, + anon_sym_POUND, + ACTIONS(33), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, + anon_sym_LT_LT, + ACTIONS(37), 1, anon_sym_DASH, + ACTIONS(39), 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(41), 1, anon_sym_todo, + ACTIONS(45), 1, anon_sym_case, + ACTIONS(47), 1, anon_sym_let, + ACTIONS(49), 1, anon_sym_assert, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(57), 1, sym__decimal, + ACTIONS(63), 1, + sym__upname, + ACTIONS(269), 1, sym__name, - ACTIONS(474), 25, + STATE(254), 1, + sym_identifier, + STATE(273), 1, + sym_tuple, + STATE(282), 1, + sym_anonymous_function, + STATE(305), 1, + sym__expression, + STATE(913), 1, + sym__maybe_function_expression, + STATE(1037), 1, + sym__maybe_tuple_expression, + STATE(1038), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(246), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(272), 2, + sym_record, + sym_record_update, + ACTIONS(55), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(262), 5, + sym_expression_group, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(304), 9, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_list, + sym__expression_bit_string, + sym_let, + sym_assert, + sym_string, + sym_integer, + [15733] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(63), 1, + sym__upname, + ACTIONS(93), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(97), 1, anon_sym_POUND, + ACTIONS(99), 1, anon_sym_LBRACK, + ACTIONS(101), 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, - sym_string, + ACTIONS(103), 1, + anon_sym_DASH, + ACTIONS(105), 1, + anon_sym_fn, + ACTIONS(109), 1, + anon_sym_todo, + ACTIONS(111), 1, + anon_sym_case, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(123), 1, + sym__decimal, + ACTIONS(269), 1, + sym__name, + ACTIONS(451), 1, + anon_sym_let, + ACTIONS(453), 1, + anon_sym_assert, + ACTIONS(455), 1, sym_float, + STATE(60), 1, + sym_tuple, + STATE(62), 1, + sym_anonymous_function, + STATE(733), 1, + sym_identifier, + STATE(936), 1, + sym__maybe_function_expression, + STATE(953), 1, + sym_expression_bit_string_segment, + STATE(1060), 1, + sym__maybe_tuple_expression, + STATE(1062), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(21), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(64), 2, + sym_record, + sym_record_update, + ACTIONS(121), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [15313] = 9, + STATE(55), 5, + sym_expression_group, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(857), 8, + sym__expression_unit, + sym_todo, + sym_list, + sym__expression_bit_string, + sym_let, + sym_assert, + sym_string, + sym_integer, + [15837] = 8, ACTIONS(3), 1, sym_module_comment, - ACTIONS(486), 1, - anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(480), 2, + ACTIONS(493), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(482), 2, + ACTIONS(495), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(488), 2, + ACTIONS(499), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(490), 3, + ACTIONS(501), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(484), 12, + ACTIONS(497), 12, anon_sym_fn, anon_sym_try, anon_sym_LT, @@ -17588,7 +18170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_assert, sym__decimal, sym__name, - ACTIONS(478), 19, + ACTIONS(491), 20, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, @@ -17602,103 +18184,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - sym_string, + anon_sym_PIPE_GT, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [15376] = 14, + [15898] = 9, ACTIONS(3), 1, sym_module_comment, - ACTIONS(486), 1, + ACTIONS(503), 1, anon_sym_PIPE_GT, - ACTIONS(496), 1, - anon_sym_PIPE_PIPE, - ACTIONS(498), 1, - anon_sym_AMP_AMP, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(480), 2, + ACTIONS(493), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(482), 2, + ACTIONS(495), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(488), 2, + ACTIONS(499), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(500), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(490), 3, + ACTIONS(501), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(502), 4, + ACTIONS(497), 12, + anon_sym_fn, + anon_sym_try, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(504), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(494), 8, - anon_sym_fn, - anon_sym_try, anon_sym_todo, anon_sym_case, anon_sym_let, anon_sym_assert, sym__decimal, sym__name, - ACTIONS(492), 11, + ACTIONS(491), 19, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, - sym_string, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + 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, - [15449] = 11, + [15961] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(486), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(465), 10, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(463), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_as, + anon_sym_COMMA, + anon_sym_pub, + anon_sym_const, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_external, + anon_sym_type, + anon_sym_fn, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DOT_DOT, + sym__upname, + [16014] = 11, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(503), 1, anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(480), 2, + ACTIONS(493), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(482), 2, + ACTIONS(495), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(488), 2, + ACTIONS(499), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(490), 3, + ACTIONS(501), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(502), 4, + ACTIONS(505), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(504), 4, + ACTIONS(507), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(484), 8, + ACTIONS(497), 8, anon_sym_fn, anon_sym_try, anon_sym_todo, @@ -17707,7 +18334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_assert, sym__decimal, sym__name, - ACTIONS(478), 15, + ACTIONS(491), 15, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, @@ -17717,47 +18344,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [15516] = 12, + [16081] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(486), 1, + ACTIONS(503), 1, anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(480), 2, + ACTIONS(493), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(482), 2, + ACTIONS(495), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(488), 2, + ACTIONS(499), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(500), 2, + ACTIONS(509), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(490), 3, + ACTIONS(501), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(502), 4, + ACTIONS(505), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(504), 4, + ACTIONS(507), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(484), 8, + ACTIONS(497), 8, anon_sym_fn, anon_sym_try, anon_sym_todo, @@ -17766,7 +18393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_assert, sym__decimal, sym__name, - ACTIONS(478), 13, + ACTIONS(491), 13, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, @@ -17774,49 +18401,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [15585] = 13, + [16150] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(486), 1, + ACTIONS(503), 1, anon_sym_PIPE_GT, - ACTIONS(498), 1, + ACTIONS(511), 1, anon_sym_AMP_AMP, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(480), 2, + ACTIONS(493), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(482), 2, + ACTIONS(495), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(488), 2, + ACTIONS(499), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(500), 2, + ACTIONS(509), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(490), 3, + ACTIONS(501), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(502), 4, + ACTIONS(505), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(504), 4, + ACTIONS(507), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(484), 8, + ACTIONS(497), 8, anon_sym_fn, anon_sym_try, anon_sym_todo, @@ -17825,58 +18452,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_assert, sym__decimal, sym__name, - ACTIONS(478), 12, + ACTIONS(491), 12, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [15656] = 14, + [16221] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(486), 1, + ACTIONS(503), 1, anon_sym_PIPE_GT, - ACTIONS(496), 1, - anon_sym_PIPE_PIPE, - ACTIONS(498), 1, + ACTIONS(511), 1, anon_sym_AMP_AMP, + ACTIONS(517), 1, + anon_sym_PIPE_PIPE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(480), 2, + ACTIONS(493), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(482), 2, + ACTIONS(495), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(488), 2, + ACTIONS(499), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(500), 2, + ACTIONS(509), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(490), 3, + ACTIONS(501), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(502), 4, + ACTIONS(505), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(504), 4, + ACTIONS(507), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(508), 8, + ACTIONS(515), 8, anon_sym_fn, anon_sym_try, anon_sym_todo, @@ -17885,110 +18512,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_assert, sym__decimal, sym__name, - ACTIONS(506), 11, + ACTIONS(513), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [15729] = 14, + [16294] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(486), 1, - anon_sym_PIPE_GT, - ACTIONS(496), 1, - anon_sym_PIPE_PIPE, - ACTIONS(498), 1, - anon_sym_AMP_AMP, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(480), 2, + ACTIONS(493), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(482), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(488), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(500), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(490), 3, + ACTIONS(501), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(502), 4, + ACTIONS(497), 14, + anon_sym_DASH, + anon_sym_fn, + anon_sym_try, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(504), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(512), 8, - anon_sym_fn, - anon_sym_try, + anon_sym_PLUS, anon_sym_todo, anon_sym_case, anon_sym_let, anon_sym_assert, sym__decimal, sym__name, - ACTIONS(510), 11, + ACTIONS(491), 22, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, - sym_string, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + 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, - [15802] = 4, + [16351] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(380), 10, - anon_sym_DOT, + ACTIONS(497), 16, 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, - ACTIONS(378), 31, + anon_sym_todo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + sym__decimal, + sym__name, + ACTIONS(491), 25, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_import, - anon_sym_as, - anon_sym_COMMA, - anon_sym_pub, - anon_sym_const, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_external, - anon_sym_type, - anon_sym_fn, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -18003,47 +18618,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - anon_sym_DOT_DOT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, sym__upname, - [15855] = 14, + [16404] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(486), 1, + ACTIONS(503), 1, anon_sym_PIPE_GT, - ACTIONS(496), 1, - anon_sym_PIPE_PIPE, - ACTIONS(498), 1, + ACTIONS(511), 1, anon_sym_AMP_AMP, + ACTIONS(517), 1, + anon_sym_PIPE_PIPE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(480), 2, + ACTIONS(493), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(482), 2, + ACTIONS(495), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(488), 2, + ACTIONS(499), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(500), 2, + ACTIONS(509), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(490), 3, + ACTIONS(501), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(502), 4, + ACTIONS(505), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(504), 4, + ACTIONS(507), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(516), 8, + ACTIONS(521), 8, anon_sym_fn, anon_sym_try, anon_sym_todo, @@ -18052,234 +18671,175 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_assert, sym__decimal, sym__name, - ACTIONS(514), 11, + ACTIONS(519), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [15928] = 6, + [16477] = 14, ACTIONS(3), 1, sym_module_comment, + ACTIONS(503), 1, + anon_sym_PIPE_GT, + ACTIONS(511), 1, + anon_sym_AMP_AMP, + ACTIONS(517), 1, + anon_sym_PIPE_PIPE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(480), 2, + ACTIONS(493), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(490), 3, + ACTIONS(495), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(499), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(509), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(501), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(484), 14, - anon_sym_DASH, - anon_sym_fn, - anon_sym_try, + ACTIONS(505), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, + ACTIONS(507), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(525), 8, + anon_sym_fn, + anon_sym_try, anon_sym_todo, anon_sym_case, anon_sym_let, anon_sym_assert, sym__decimal, sym__name, - ACTIONS(478), 22, + ACTIONS(523), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [15985] = 28, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(65), 1, - sym__upname, - ACTIONS(106), 1, - anon_sym_LBRACE, - ACTIONS(110), 1, - anon_sym_POUND, - ACTIONS(112), 1, - anon_sym_LBRACK, - ACTIONS(114), 1, - anon_sym_LT_LT, - ACTIONS(116), 1, - anon_sym_DASH, - ACTIONS(118), 1, - anon_sym_fn, - ACTIONS(122), 1, - anon_sym_todo, - ACTIONS(124), 1, - anon_sym_case, - ACTIONS(134), 1, - sym__decimal, - ACTIONS(300), 1, - sym__name, - ACTIONS(446), 1, - anon_sym_let, - ACTIONS(448), 1, - anon_sym_assert, - STATE(52), 1, - sym_anonymous_function, - STATE(56), 1, - sym_tuple, - STATE(711), 1, - sym_identifier, - STATE(889), 1, - sym__maybe_function_expression, - STATE(896), 1, - sym_expression_bit_string_segment, - STATE(1038), 1, - sym__maybe_tuple_expression, - STATE(1050), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(450), 2, - sym_string, - sym_float, - STATE(12), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(58), 2, - sym_record, - sym_record_update, - ACTIONS(132), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(18), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(778), 7, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_integer, - [16086] = 8, + [16550] = 14, ACTIONS(3), 1, sym_module_comment, + ACTIONS(503), 1, + anon_sym_PIPE_GT, + ACTIONS(511), 1, + anon_sym_AMP_AMP, + ACTIONS(517), 1, + anon_sym_PIPE_PIPE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(480), 2, + ACTIONS(493), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(482), 2, + ACTIONS(495), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(488), 2, + ACTIONS(499), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(490), 3, + ACTIONS(509), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(501), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(484), 12, - anon_sym_fn, - anon_sym_try, + ACTIONS(505), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, + ACTIONS(507), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(529), 8, + anon_sym_fn, + anon_sym_try, anon_sym_todo, anon_sym_case, anon_sym_let, anon_sym_assert, sym__decimal, sym__name, - ACTIONS(478), 20, + ACTIONS(527), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [16147] = 14, + [16623] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(486), 1, + ACTIONS(503), 1, anon_sym_PIPE_GT, - ACTIONS(496), 1, - anon_sym_PIPE_PIPE, - ACTIONS(498), 1, + ACTIONS(511), 1, anon_sym_AMP_AMP, + ACTIONS(517), 1, + anon_sym_PIPE_PIPE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(480), 2, + ACTIONS(493), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(482), 2, + ACTIONS(495), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(488), 2, + ACTIONS(499), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(500), 2, + ACTIONS(509), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(490), 3, + ACTIONS(501), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(502), 4, + ACTIONS(505), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(504), 4, + ACTIONS(507), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(520), 8, + ACTIONS(533), 8, anon_sym_fn, anon_sym_try, anon_sym_todo, @@ -18288,25 +18848,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_assert, sym__decimal, sym__name, - ACTIONS(518), 11, + ACTIONS(531), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [16220] = 4, + [16696] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(484), 16, + ACTIONS(537), 16, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, @@ -18323,7 +18883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_assert, sym__decimal, sym__name, - ACTIONS(478), 25, + ACTIONS(535), 25, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, @@ -18343,19 +18903,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [16273] = 4, + [16749] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(73), 10, + ACTIONS(478), 10, anon_sym_DOT, anon_sym_SLASH, anon_sym_EQ, @@ -18366,7 +18926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(71), 30, + ACTIONS(476), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -18397,13 +18957,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [16325] = 4, + [16801] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(25), 10, + ACTIONS(79), 10, anon_sym_DOT, anon_sym_SLASH, anon_sym_EQ, @@ -18414,7 +18974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(23), 30, + ACTIONS(77), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -18445,13 +19005,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [16377] = 4, + [16853] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(29), 10, + ACTIONS(25), 10, anon_sym_DOT, anon_sym_SLASH, anon_sym_EQ, @@ -18462,7 +19022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(27), 30, + ACTIONS(23), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -18493,13 +19053,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [16429] = 4, + [16905] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(410), 10, + ACTIONS(89), 10, anon_sym_DOT, anon_sym_SLASH, anon_sym_EQ, @@ -18510,7 +19070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(408), 30, + ACTIONS(87), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -18541,18 +19101,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [16481] = 6, + [16957] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(522), 1, - anon_sym_LPAREN, - STATE(207), 1, - sym_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(85), 11, + ACTIONS(234), 9, anon_sym_SLASH, + anon_sym_EQ, anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, @@ -18560,15 +19117,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(83), 25, + ACTIONS(232), 29, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, + anon_sym_import, + anon_sym_as, + anon_sym_COMMA, + anon_sym_pub, + anon_sym_const, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_external, + anon_sym_type, + anon_sym_fn, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -18583,24 +19146,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [16535] = 6, + anon_sym_DOT_DOT, + [17007] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(104), 1, - anon_sym_LPAREN, - ACTIONS(524), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(102), 11, + ACTIONS(226), 9, anon_sym_SLASH, + anon_sym_EQ, anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, @@ -18608,14 +19163,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(97), 24, + ACTIONS(224), 29, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, + anon_sym_import, + anon_sym_as, + anon_sym_COMMA, + anon_sym_pub, + anon_sym_const, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_external, + anon_sym_type, + anon_sym_fn, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -18630,19 +19192,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [16588] = 4, + anon_sym_DOT_DOT, + [17057] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(539), 1, + anon_sym_LPAREN, + STATE(215), 1, + sym_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(168), 11, + ACTIONS(188), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -18654,11 +19215,10 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(166), 26, + ACTIONS(186), 25, anon_sym_RBRACE, anon_sym_DOT, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, @@ -18675,19 +19235,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [16637] = 4, + [17111] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(73), 11, + ACTIONS(79), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -18699,7 +19259,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(71), 26, + ACTIONS(77), 26, anon_sym_RBRACE, anon_sym_DOT, anon_sym_POUND, @@ -18720,19 +19280,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [16686] = 4, + [17160] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(259), 1, + anon_sym_LPAREN, + ACTIONS(541), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(172), 11, + ACTIONS(257), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -18744,11 +19308,9 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(170), 26, + ACTIONS(252), 24, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, @@ -18765,19 +19327,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [16735] = 4, + [17213] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(254), 1, + anon_sym_DOT, + ACTIONS(259), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(25), 11, + ACTIONS(257), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -18789,11 +19355,9 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(23), 26, + ACTIONS(252), 24, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, @@ -18810,19 +19374,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [16784] = 4, + [17266] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(380), 11, + ACTIONS(242), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -18834,7 +19398,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(378), 26, + ACTIONS(240), 26, anon_sym_RBRACE, anon_sym_DOT, anon_sym_POUND, @@ -18855,19 +19419,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [16833] = 4, + [17315] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(410), 11, + ACTIONS(222), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -18879,7 +19443,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(408), 26, + ACTIONS(220), 26, anon_sym_RBRACE, anon_sym_DOT, anon_sym_POUND, @@ -18900,19 +19464,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [16882] = 4, + [17364] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(194), 11, + ACTIONS(250), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -18924,7 +19488,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(192), 26, + ACTIONS(248), 26, anon_sym_RBRACE, anon_sym_DOT, anon_sym_POUND, @@ -18945,19 +19509,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [16931] = 4, + [17413] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(182), 11, + ACTIONS(218), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -18969,7 +19533,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(180), 26, + ACTIONS(216), 26, anon_sym_RBRACE, anon_sym_DOT, anon_sym_POUND, @@ -18990,19 +19554,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [16980] = 4, + [17462] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(144), 11, + ACTIONS(89), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -19014,7 +19578,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(142), 26, + ACTIONS(87), 26, anon_sym_RBRACE, anon_sym_DOT, anon_sym_POUND, @@ -19035,19 +19599,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [17029] = 4, + [17511] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(186), 11, + ACTIONS(238), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -19059,7 +19623,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(184), 26, + ACTIONS(236), 26, anon_sym_RBRACE, anon_sym_DOT, anon_sym_POUND, @@ -19080,19 +19644,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [17078] = 4, + [17560] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(176), 11, + ACTIONS(214), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -19104,7 +19668,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(174), 26, + ACTIONS(212), 26, anon_sym_RBRACE, anon_sym_DOT, anon_sym_POUND, @@ -19125,19 +19689,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [17127] = 4, + [17609] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(152), 11, + ACTIONS(230), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -19149,7 +19713,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(150), 26, + ACTIONS(228), 26, anon_sym_RBRACE, anon_sym_DOT, anon_sym_POUND, @@ -19170,19 +19734,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [17176] = 4, + [17658] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(190), 11, + ACTIONS(25), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -19194,7 +19758,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(188), 26, + ACTIONS(23), 26, anon_sym_RBRACE, anon_sym_DOT, anon_sym_POUND, @@ -19215,19 +19779,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [17225] = 4, + [17707] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(148), 11, + ACTIONS(263), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -19239,7 +19803,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(146), 26, + ACTIONS(261), 26, anon_sym_RBRACE, anon_sym_DOT, anon_sym_POUND, @@ -19260,19 +19824,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [17274] = 4, + [17756] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(29), 11, + ACTIONS(465), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -19284,7 +19848,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(27), 26, + ACTIONS(463), 26, anon_sym_RBRACE, anon_sym_DOT, anon_sym_POUND, @@ -19305,23 +19869,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [17323] = 6, + [17805] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(99), 1, - anon_sym_DOT, - ACTIONS(104), 1, - anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(102), 11, + ACTIONS(478), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -19333,9 +19893,11 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(97), 24, + ACTIONS(476), 26, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_POUND, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, @@ -19352,21 +19914,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [17376] = 5, + [17854] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(268), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(102), 11, + ACTIONS(246), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -19378,9 +19938,11 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(97), 24, + ACTIONS(244), 26, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_POUND, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, @@ -19397,21 +19959,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [17426] = 5, + [17903] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(262), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(102), 11, + ACTIONS(267), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -19423,9 +19983,11 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(97), 24, + ACTIONS(265), 26, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_POUND, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, @@ -19442,21 +20004,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [17476] = 5, + [17952] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(104), 1, - anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(102), 11, + ACTIONS(279), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -19468,8 +20028,9 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(97), 24, + ACTIONS(277), 25, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -19487,19 +20048,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [17526] = 4, + [18000] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(545), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(276), 11, + ACTIONS(293), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -19511,9 +20074,8 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(274), 25, + ACTIONS(291), 24, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -19531,19 +20093,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [17574] = 4, + [18050] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(256), 11, + ACTIONS(289), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -19555,7 +20117,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(254), 25, + ACTIONS(287), 25, anon_sym_RBRACE, anon_sym_DOT, anon_sym_POUND, @@ -19575,19 +20137,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [17622] = 4, + [18098] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(271), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(294), 11, + ACTIONS(257), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -19599,9 +20163,8 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(292), 25, + ACTIONS(252), 24, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -19619,21 +20182,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [17670] = 5, + [18148] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(528), 1, - anon_sym_LPAREN, + ACTIONS(281), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(280), 11, + ACTIONS(257), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -19645,7 +20208,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(278), 24, + ACTIONS(252), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -19664,19 +20227,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [17720] = 4, + [18198] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(286), 11, + ACTIONS(319), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -19688,7 +20251,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(284), 25, + ACTIONS(317), 25, anon_sym_RBRACE, anon_sym_DOT, anon_sym_POUND, @@ -19708,19 +20271,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [17768] = 4, + [18246] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(290), 11, + ACTIONS(303), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -19732,7 +20295,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(288), 25, + ACTIONS(301), 25, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LPAREN, @@ -19752,19 +20315,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [17816] = 4, + [18294] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(260), 11, + ACTIONS(323), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -19776,10 +20339,10 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(258), 25, + ACTIONS(321), 25, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_POUND, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, @@ -19796,19 +20359,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [17864] = 4, + [18342] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(259), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(272), 11, + ACTIONS(257), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -19820,10 +20385,9 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(270), 25, + ACTIONS(252), 24, anon_sym_RBRACE, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, @@ -19840,19 +20404,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [17912] = 4, + [18392] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(266), 11, + ACTIONS(285), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -19864,7 +20428,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(264), 25, + ACTIONS(283), 25, anon_sym_RBRACE, anon_sym_DOT, anon_sym_POUND, @@ -19884,19 +20448,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [17960] = 4, + [18440] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(336), 11, + ACTIONS(327), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -19908,8 +20472,9 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(334), 24, + ACTIONS(325), 25, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -19927,71 +20492,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [18007] = 13, + [18488] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(534), 1, - anon_sym_AMP_AMP, - ACTIONS(542), 1, - anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(530), 2, + ACTIONS(331), 11, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(532), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(536), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(544), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(484), 3, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(546), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(538), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(540), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(478), 11, + anon_sym_PLUS, + anon_sym_STAR, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(329), 25, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, - sym_string, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [18072] = 4, + [18536] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(308), 11, + ACTIONS(415), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -20003,7 +20560,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(306), 24, + ACTIONS(413), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -20022,19 +20579,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [18119] = 4, + [18583] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(476), 11, + ACTIONS(385), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -20046,7 +20603,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(474), 24, + ACTIONS(383), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -20065,19 +20622,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [18166] = 4, + [18630] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(348), 11, + ACTIONS(377), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -20089,7 +20646,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(346), 24, + ACTIONS(375), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -20108,19 +20665,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [18213] = 4, + [18677] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(372), 11, + ACTIONS(369), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -20132,7 +20689,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(370), 24, + ACTIONS(367), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -20151,19 +20708,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [18260] = 4, + [18724] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(316), 11, + ACTIONS(357), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -20175,7 +20732,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(314), 24, + ACTIONS(355), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -20194,137 +20751,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [18307] = 14, + [18771] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(534), 1, - anon_sym_AMP_AMP, - ACTIONS(542), 1, + ACTIONS(557), 1, anon_sym_PIPE_GT, - ACTIONS(550), 1, - anon_sym_PIPE_PIPE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(530), 2, + ACTIONS(547), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(532), 2, + ACTIONS(549), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(536), 2, + ACTIONS(551), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(544), 2, + ACTIONS(559), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(546), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(552), 3, + ACTIONS(497), 3, sym__decimal, sym__discard_name, sym__name, - ACTIONS(538), 4, + ACTIONS(561), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(553), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(540), 4, + ACTIONS(555), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(548), 10, + ACTIONS(491), 12, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, - sym_string, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [18374] = 14, + [18834] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(534), 1, - anon_sym_AMP_AMP, - ACTIONS(542), 1, + ACTIONS(557), 1, anon_sym_PIPE_GT, - ACTIONS(550), 1, + ACTIONS(563), 1, anon_sym_PIPE_PIPE, + ACTIONS(565), 1, + anon_sym_AMP_AMP, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(530), 2, + ACTIONS(547), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(532), 2, + ACTIONS(549), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(536), 2, + ACTIONS(551), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(544), 2, + ACTIONS(559), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(512), 3, + ACTIONS(529), 3, sym__decimal, sym__discard_name, sym__name, - ACTIONS(546), 3, + ACTIONS(561), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(538), 4, + ACTIONS(553), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(540), 4, + ACTIONS(555), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(510), 10, + ACTIONS(527), 10, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [18441] = 4, + [18901] = 11, ACTIONS(3), 1, sym_module_comment, + ACTIONS(557), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(360), 11, + ACTIONS(547), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(549), 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(559), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(497), 3, sym__decimal, sym__discard_name, sym__name, - ACTIONS(358), 24, + ACTIONS(561), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(553), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(555), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(491), 14, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -20333,41 +20905,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, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [18488] = 4, + [18962] = 9, ACTIONS(3), 1, sym_module_comment, + ACTIONS(557), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(352), 11, + ACTIONS(547), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(549), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(559), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(561), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(497), 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(350), 24, + ACTIONS(491), 18, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -20380,37 +20953,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [18535] = 4, + [19019] = 8, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(356), 11, + ACTIONS(547), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(549), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(559), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(561), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(497), 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(354), 24, + ACTIONS(491), 19, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -20424,24 +21000,62 @@ 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_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [19074] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(373), 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(371), 24, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [18582] = 4, + [19121] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(304), 11, + ACTIONS(339), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -20453,7 +21067,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(302), 24, + ACTIONS(337), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -20472,72 +21086,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [18629] = 14, + [19168] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(534), 1, - anon_sym_AMP_AMP, - ACTIONS(542), 1, + ACTIONS(557), 1, anon_sym_PIPE_GT, - ACTIONS(550), 1, + ACTIONS(563), 1, anon_sym_PIPE_PIPE, + ACTIONS(565), 1, + anon_sym_AMP_AMP, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(547), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(549), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(551), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(559), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(561), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(569), 3, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(553), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(555), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(567), 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, + [19235] = 13, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(557), 1, + anon_sym_PIPE_GT, + ACTIONS(565), 1, + anon_sym_AMP_AMP, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(530), 2, + ACTIONS(547), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(532), 2, + ACTIONS(549), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(536), 2, + ACTIONS(551), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(544), 2, + ACTIONS(559), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(508), 3, + ACTIONS(497), 3, sym__decimal, sym__discard_name, sym__name, - ACTIONS(546), 3, + ACTIONS(561), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(538), 4, + ACTIONS(553), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(540), 4, + ACTIONS(555), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(506), 10, + ACTIONS(491), 11, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, - sym_string, + anon_sym_PIPE_PIPE, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [19300] = 14, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(557), 1, + anon_sym_PIPE_GT, + ACTIONS(563), 1, + anon_sym_PIPE_PIPE, + ACTIONS(565), 1, + anon_sym_AMP_AMP, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(547), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(549), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(551), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(559), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(561), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(573), 3, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(553), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(555), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(571), 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, - [18696] = 4, + [19367] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(320), 11, + ACTIONS(226), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -20549,7 +21268,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(318), 24, + ACTIONS(224), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -20568,19 +21287,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [18743] = 4, + [19414] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(328), 11, + ACTIONS(234), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -20592,7 +21311,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(326), 24, + ACTIONS(232), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -20611,19 +21330,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [18790] = 4, + [19461] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(368), 11, + ACTIONS(405), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -20635,7 +21354,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(366), 24, + ACTIONS(403), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -20654,19 +21373,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [18837] = 4, + [19508] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(340), 11, + ACTIONS(365), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -20678,7 +21397,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(338), 24, + ACTIONS(363), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -20697,40 +21416,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [18884] = 8, + [19555] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(530), 2, + ACTIONS(497), 11, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(532), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(544), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(546), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(484), 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(478), 19, + ACTIONS(491), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -20744,42 +21454,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, anon_sym_PIPE_GT, - sym_string, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [18939] = 9, + [19602] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(542), 1, - anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(530), 2, + ACTIONS(547), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(532), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(544), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(546), 3, + ACTIONS(561), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(484), 7, + ACTIONS(497), 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(478), 18, + ACTIONS(491), 21, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -20792,19 +21501,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - sym_string, + 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, - [18996] = 4, + [19653] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(364), 11, + ACTIONS(391), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -20816,7 +21528,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(362), 24, + ACTIONS(389), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -20835,120 +21547,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [19043] = 11, + [19700] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(542), 1, + ACTIONS(557), 1, anon_sym_PIPE_GT, + ACTIONS(563), 1, + anon_sym_PIPE_PIPE, + ACTIONS(565), 1, + anon_sym_AMP_AMP, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(530), 2, + ACTIONS(547), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(532), 2, + ACTIONS(549), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(544), 2, + ACTIONS(551), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(559), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(484), 3, + ACTIONS(521), 3, sym__decimal, sym__discard_name, sym__name, - ACTIONS(546), 3, + ACTIONS(561), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(538), 4, + ACTIONS(553), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(540), 4, + ACTIONS(555), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(478), 14, + ACTIONS(519), 10, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [19104] = 12, + [19767] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(542), 1, - anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(530), 2, + ACTIONS(395), 11, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(532), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(536), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(544), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(484), 3, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(546), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(538), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(540), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(478), 12, + anon_sym_PLUS, + anon_sym_STAR, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(393), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - sym_string, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [19167] = 4, + [19814] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(484), 11, + ACTIONS(349), 11, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -20960,7 +21667,7 @@ static const uint16_t ts_small_parse_table[] = { sym__decimal, sym__discard_name, sym__name, - ACTIONS(478), 24, + ACTIONS(347), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -20979,89 +21686,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [19214] = 14, + [19861] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(534), 1, - anon_sym_AMP_AMP, - ACTIONS(542), 1, - anon_sym_PIPE_GT, - ACTIONS(550), 1, - anon_sym_PIPE_PIPE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(530), 2, + ACTIONS(353), 11, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(532), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(536), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(544), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(546), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(556), 3, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(538), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(540), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(554), 10, + anon_sym_PLUS, + anon_sym_STAR, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(351), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, - sym_string, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [19281] = 6, + [19908] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(530), 2, + ACTIONS(343), 11, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(546), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(484), 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(478), 21, + ACTIONS(341), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -21077,45 +21769,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_GT, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - sym_string, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [19332] = 11, + [19955] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(59), 1, - sym__decimal, - ACTIONS(560), 1, - anon_sym_DASH, - ACTIONS(562), 1, - anon_sym_size, - ACTIONS(564), 1, - anon_sym_unit, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(558), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - ACTIONS(57), 3, - sym__hex, - sym__octal, - sym__binary, - ACTIONS(568), 3, - anon_sym_utf8, - anon_sym_utf16, + ACTIONS(537), 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(535), 24, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [20002] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(575), 1, + anon_sym_LPAREN, + STATE(281), 1, + sym_arguments, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(188), 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(186), 21, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DOT_DOT, + [20050] = 11, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(57), 1, + sym__decimal, + ACTIONS(579), 1, + anon_sym_DASH, + ACTIONS(581), 1, + anon_sym_size, + ACTIONS(583), 1, + anon_sym_unit, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(577), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + ACTIONS(55), 3, + sym__hex, + sym__octal, + sym__binary, + ACTIONS(587), 3, + anon_sym_utf8, + anon_sym_utf16, anon_sym_utf32, - STATE(839), 6, - sym__constant_bit_string_segment_option, - sym__constant_bit_string_named_segment_option, - sym__constant_bit_string_segment_option_size, + STATE(782), 6, + sym__pattern_bit_string_segment_option, + sym__pattern_bit_string_named_segment_option, + sym__pattern_bit_string_segment_option_size, sym_integer, sym__bit_string_segment_option_unit, sym__bit_string_segment_option_literal, - ACTIONS(566), 14, + ACTIONS(585), 14, anon_sym_binary, anon_sym_bytes, anon_sym_int, @@ -21130,39 +21910,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_big, anon_sym_little, anon_sym_native, - [19390] = 11, + [20108] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(59), 1, + ACTIONS(57), 1, sym__decimal, - ACTIONS(560), 1, + ACTIONS(579), 1, anon_sym_DASH, - ACTIONS(564), 1, - anon_sym_unit, - ACTIONS(572), 1, + ACTIONS(581), 1, anon_sym_size, + ACTIONS(583), 1, + anon_sym_unit, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(570), 2, + ACTIONS(589), 2, anon_sym_COMMA, anon_sym_GT_GT, - ACTIONS(57), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - ACTIONS(576), 3, + ACTIONS(587), 3, anon_sym_utf8, anon_sym_utf16, anon_sym_utf32, - STATE(767), 6, + STATE(782), 6, sym__pattern_bit_string_segment_option, sym__pattern_bit_string_named_segment_option, sym__pattern_bit_string_segment_option_size, sym_integer, sym__bit_string_segment_option_unit, sym__bit_string_segment_option_literal, - ACTIONS(574), 14, + ACTIONS(585), 14, anon_sym_binary, anon_sym_bytes, anon_sym_int, @@ -21177,39 +21957,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_big, anon_sym_little, anon_sym_native, - [19448] = 11, + [20166] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(59), 1, + ACTIONS(57), 1, sym__decimal, - ACTIONS(560), 1, + ACTIONS(579), 1, anon_sym_DASH, - ACTIONS(562), 1, - anon_sym_size, - ACTIONS(564), 1, + ACTIONS(583), 1, anon_sym_unit, + ACTIONS(593), 1, + anon_sym_size, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(578), 2, + ACTIONS(591), 2, anon_sym_COMMA, anon_sym_GT_GT, - ACTIONS(57), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - ACTIONS(568), 3, + ACTIONS(597), 3, anon_sym_utf8, anon_sym_utf16, anon_sym_utf32, - STATE(839), 6, + STATE(892), 6, sym__constant_bit_string_segment_option, sym__constant_bit_string_named_segment_option, sym__constant_bit_string_segment_option_size, sym_integer, sym__bit_string_segment_option_unit, sym__bit_string_segment_option_literal, - ACTIONS(566), 14, + ACTIONS(595), 14, anon_sym_binary, anon_sym_bytes, anon_sym_int, @@ -21224,81 +22004,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_big, anon_sym_little, anon_sym_native, - [19506] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(580), 1, - anon_sym_LPAREN, - STATE(275), 1, - sym_arguments, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(85), 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(83), 21, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DOT_DOT, - [19554] = 11, + [20224] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(59), 1, + ACTIONS(57), 1, sym__decimal, - ACTIONS(560), 1, + ACTIONS(579), 1, anon_sym_DASH, - ACTIONS(564), 1, + ACTIONS(583), 1, anon_sym_unit, - ACTIONS(584), 1, + ACTIONS(601), 1, anon_sym_size, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(582), 2, + ACTIONS(599), 2, anon_sym_COMMA, anon_sym_GT_GT, - ACTIONS(57), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - ACTIONS(588), 3, + ACTIONS(605), 3, anon_sym_utf8, anon_sym_utf16, anon_sym_utf32, - STATE(763), 6, + STATE(805), 6, sym__expression_bit_string_segment_option, sym__expression_bit_string_named_segment_option, sym__expression_bit_string_segment_option_size, sym_integer, sym__bit_string_segment_option_unit, sym__bit_string_segment_option_literal, - ACTIONS(586), 14, + ACTIONS(603), 14, anon_sym_binary, anon_sym_bytes, anon_sym_int, @@ -21313,39 +22051,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_big, anon_sym_little, anon_sym_native, - [19612] = 11, + [20282] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(59), 1, + ACTIONS(57), 1, sym__decimal, - ACTIONS(560), 1, + ACTIONS(579), 1, anon_sym_DASH, - ACTIONS(564), 1, + ACTIONS(583), 1, anon_sym_unit, - ACTIONS(572), 1, + ACTIONS(593), 1, anon_sym_size, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(590), 2, + ACTIONS(607), 2, anon_sym_COMMA, anon_sym_GT_GT, - ACTIONS(57), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - ACTIONS(576), 3, + ACTIONS(597), 3, anon_sym_utf8, anon_sym_utf16, anon_sym_utf32, - STATE(767), 6, - sym__pattern_bit_string_segment_option, - sym__pattern_bit_string_named_segment_option, - sym__pattern_bit_string_segment_option_size, + STATE(892), 6, + sym__constant_bit_string_segment_option, + sym__constant_bit_string_named_segment_option, + sym__constant_bit_string_segment_option_size, sym_integer, sym__bit_string_segment_option_unit, sym__bit_string_segment_option_literal, - ACTIONS(574), 14, + ACTIONS(595), 14, anon_sym_binary, anon_sym_bytes, anon_sym_int, @@ -21360,39 +22098,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_big, anon_sym_little, anon_sym_native, - [19670] = 11, + [20340] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(59), 1, + ACTIONS(57), 1, sym__decimal, - ACTIONS(560), 1, + ACTIONS(579), 1, anon_sym_DASH, - ACTIONS(564), 1, + ACTIONS(583), 1, anon_sym_unit, - ACTIONS(584), 1, + ACTIONS(601), 1, anon_sym_size, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(592), 2, + ACTIONS(609), 2, anon_sym_COMMA, anon_sym_GT_GT, - ACTIONS(57), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - ACTIONS(588), 3, + ACTIONS(605), 3, anon_sym_utf8, anon_sym_utf16, anon_sym_utf32, - STATE(763), 6, + STATE(805), 6, sym__expression_bit_string_segment_option, sym__expression_bit_string_named_segment_option, sym__expression_bit_string_segment_option_size, sym_integer, sym__bit_string_segment_option_unit, sym__bit_string_segment_option_literal, - ACTIONS(586), 14, + ACTIONS(603), 14, anon_sym_binary, anon_sym_bytes, anon_sym_int, @@ -21407,17 +22145,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_big, anon_sym_little, anon_sym_native, - [19728] = 6, + [20398] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(238), 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(236), 22, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DOT_DOT, + [20441] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(104), 1, + ACTIONS(259), 1, anon_sym_LPAREN, - ACTIONS(594), 1, + ACTIONS(611), 1, anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(102), 8, + ACTIONS(257), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -21426,7 +22203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(97), 21, + ACTIONS(252), 21, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -21448,13 +22225,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [19775] = 4, + [20488] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(190), 9, + ACTIONS(222), 9, anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, @@ -21464,7 +22241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(188), 22, + ACTIONS(220), 22, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -21487,38 +22264,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [19818] = 11, + [20531] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(59), 1, + ACTIONS(57), 1, sym__decimal, - ACTIONS(560), 1, + ACTIONS(579), 1, anon_sym_DASH, - ACTIONS(564), 1, - anon_sym_unit, - ACTIONS(584), 1, + ACTIONS(581), 1, anon_sym_size, - STATE(904), 1, - sym_expression_bit_string_segment_options, + ACTIONS(583), 1, + anon_sym_unit, + STATE(974), 1, + sym_pattern_bit_string_segment_options, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(57), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - ACTIONS(599), 3, + ACTIONS(617), 3, anon_sym_utf8, anon_sym_utf16, anon_sym_utf32, - STATE(727), 6, - sym__expression_bit_string_segment_option, - sym__expression_bit_string_named_segment_option, - sym__expression_bit_string_segment_option_size, + STATE(738), 6, + sym__pattern_bit_string_segment_option, + sym__pattern_bit_string_named_segment_option, + sym__pattern_bit_string_segment_option_size, sym_integer, sym__bit_string_segment_option_unit, sym__bit_string_segment_option_literal, - ACTIONS(597), 14, + ACTIONS(615), 14, anon_sym_binary, anon_sym_bytes, anon_sym_int, @@ -21533,38 +22310,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_big, anon_sym_little, anon_sym_native, - [19875] = 11, + [20588] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(59), 1, + ACTIONS(57), 1, sym__decimal, - ACTIONS(560), 1, + ACTIONS(579), 1, anon_sym_DASH, - ACTIONS(562), 1, - anon_sym_size, - ACTIONS(564), 1, + ACTIONS(583), 1, anon_sym_unit, - STATE(897), 1, - sym_constant_bit_string_segment_options, + ACTIONS(601), 1, + anon_sym_size, + STATE(963), 1, + sym_expression_bit_string_segment_options, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(57), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - ACTIONS(603), 3, + ACTIONS(621), 3, anon_sym_utf8, anon_sym_utf16, anon_sym_utf32, - STATE(731), 6, - sym__constant_bit_string_segment_option, - sym__constant_bit_string_named_segment_option, - sym__constant_bit_string_segment_option_size, + STATE(762), 6, + sym__expression_bit_string_segment_option, + sym__expression_bit_string_named_segment_option, + sym__expression_bit_string_segment_option_size, sym_integer, sym__bit_string_segment_option_unit, sym__bit_string_segment_option_literal, - ACTIONS(601), 14, + ACTIONS(619), 14, anon_sym_binary, anon_sym_bytes, anon_sym_int, @@ -21579,17 +22356,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_big, anon_sym_little, anon_sym_native, - [19932] = 6, + [20645] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(104), 1, - anon_sym_LPAREN, - ACTIONS(605), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(102), 8, + ACTIONS(267), 9, + anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -21598,9 +22372,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(97), 21, + ACTIONS(265), 22, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_GT_GT, @@ -21620,13 +22395,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [19979] = 4, + [20688] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(148), 9, + ACTIONS(242), 9, anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, @@ -21636,7 +22411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(146), 22, + ACTIONS(240), 22, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -21659,59 +22434,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [20022] = 11, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(59), 1, - sym__decimal, - ACTIONS(560), 1, - anon_sym_DASH, - ACTIONS(564), 1, - anon_sym_unit, - ACTIONS(572), 1, - anon_sym_size, - STATE(968), 1, - sym_pattern_bit_string_segment_options, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(57), 3, - sym__hex, - sym__octal, - sym__binary, - ACTIONS(611), 3, - anon_sym_utf8, - anon_sym_utf16, - anon_sym_utf32, - STATE(741), 6, - sym__pattern_bit_string_segment_option, - sym__pattern_bit_string_named_segment_option, - sym__pattern_bit_string_segment_option_size, - sym_integer, - sym__bit_string_segment_option_unit, - sym__bit_string_segment_option_literal, - ACTIONS(609), 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, - [20079] = 4, + [20731] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(144), 9, + ACTIONS(218), 9, anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, @@ -21721,7 +22450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(142), 22, + ACTIONS(216), 22, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -21744,13 +22473,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [20122] = 4, + [20774] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(176), 9, + ACTIONS(230), 9, anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, @@ -21760,7 +22489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(174), 22, + ACTIONS(228), 22, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -21783,14 +22512,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [20165] = 4, + [20817] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(259), 1, + anon_sym_LPAREN, + ACTIONS(623), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(186), 9, - anon_sym_DOT, + ACTIONS(257), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -21799,10 +22531,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(184), 22, + ACTIONS(252), 21, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_GT_GT, @@ -21822,13 +22553,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [20208] = 4, + [20864] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(182), 9, + ACTIONS(246), 9, anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, @@ -21838,7 +22569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(180), 22, + ACTIONS(244), 22, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -21861,13 +22592,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [20251] = 4, + [20907] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(194), 9, + ACTIONS(250), 9, anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, @@ -21877,7 +22608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(192), 22, + ACTIONS(248), 22, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -21900,13 +22631,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [20294] = 4, + [20950] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(172), 9, + ACTIONS(263), 9, anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, @@ -21916,7 +22647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(170), 22, + ACTIONS(261), 22, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -21939,52 +22670,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [20337] = 4, + [20993] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(152), 9, - anon_sym_DOT, - anon_sym_SLASH, + ACTIONS(57), 1, + sym__decimal, + ACTIONS(579), 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(150), 22, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DOT_DOT, - [20380] = 4, + ACTIONS(583), 1, + anon_sym_unit, + ACTIONS(593), 1, + anon_sym_size, + STATE(969), 1, + sym_constant_bit_string_segment_options, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(55), 3, + sym__hex, + sym__octal, + sym__binary, + ACTIONS(628), 3, + anon_sym_utf8, + anon_sym_utf16, + anon_sym_utf32, + STATE(757), 6, + sym__constant_bit_string_segment_option, + sym__constant_bit_string_named_segment_option, + sym__constant_bit_string_segment_option_size, + sym_integer, + sym__bit_string_segment_option_unit, + sym__bit_string_segment_option_literal, + ACTIONS(626), 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, + [21050] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(168), 9, + ACTIONS(214), 9, anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, @@ -21994,7 +22732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(166), 22, + ACTIONS(212), 22, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -22017,14 +22755,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [20423] = 4, + [21093] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(276), 9, - anon_sym_DOT, + ACTIONS(303), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -22033,9 +22770,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(274), 21, + ACTIONS(301), 22, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_GT_GT, @@ -22055,13 +22793,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [20465] = 4, + [21135] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(630), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(272), 8, + ACTIONS(293), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -22070,10 +22810,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(270), 22, + ACTIONS(291), 21, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_GT_GT, @@ -22093,130 +22832,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [20507] = 15, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(9), 1, - anon_sym_if, - ACTIONS(11), 1, - anon_sym_import, - ACTIONS(13), 1, - anon_sym_pub, - ACTIONS(15), 1, - anon_sym_const, - ACTIONS(17), 1, - anon_sym_external, - ACTIONS(19), 1, - anon_sym_type, - ACTIONS(21), 1, - anon_sym_fn, - ACTIONS(613), 1, - ts_builtin_sym_end, - STATE(647), 1, - sym__function, - STATE(649), 1, - sym__external_function, - STATE(650), 1, - sym__external_type, - STATE(651), 1, - sym__constant, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(266), 18, - sym__statement, - sym_target_group, - sym_import, - sym_public_constant, - sym_constant, - sym_public_external_type, - sym_external_type, - sym_public_external_function, - sym_external_function, - sym_function, - sym_public_function, - sym_type_definition, - sym_public_type_definition, - sym_public_opaque_type_definition, - sym_type_alias, - sym_public_type_alias, - sym_public_opaque_type_alias, - aux_sym_source_file_repeat1, - [20571] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(59), 1, - sym__decimal, - ACTIONS(560), 1, - anon_sym_DASH, - ACTIONS(564), 1, - anon_sym_unit, - ACTIONS(584), 1, - anon_sym_size, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(57), 3, - sym__hex, - sym__octal, - sym__binary, - ACTIONS(588), 3, - anon_sym_utf8, - anon_sym_utf16, - anon_sym_utf32, - STATE(763), 6, - sym__expression_bit_string_segment_option, - sym__expression_bit_string_named_segment_option, - sym__expression_bit_string_segment_option_size, - sym_integer, - sym__bit_string_segment_option_unit, - sym__bit_string_segment_option_literal, - ACTIONS(586), 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, - [20625] = 15, + [21179] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(615), 1, + ACTIONS(632), 1, ts_builtin_sym_end, - ACTIONS(617), 1, + ACTIONS(634), 1, anon_sym_if, - ACTIONS(620), 1, + ACTIONS(637), 1, anon_sym_import, - ACTIONS(623), 1, + ACTIONS(640), 1, anon_sym_pub, - ACTIONS(626), 1, + ACTIONS(643), 1, anon_sym_const, - ACTIONS(629), 1, + ACTIONS(646), 1, anon_sym_external, - ACTIONS(632), 1, + ACTIONS(649), 1, anon_sym_type, - ACTIONS(635), 1, + ACTIONS(652), 1, anon_sym_fn, - STATE(647), 1, + STATE(602), 1, sym__function, - STATE(649), 1, + STATE(617), 1, sym__external_function, - STATE(650), 1, + STATE(618), 1, sym__external_type, - STATE(651), 1, + STATE(620), 1, sym__constant, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(266), 18, + STATE(270), 18, sym__statement, sym_target_group, sym_import, @@ -22235,15 +22881,14 @@ static const uint16_t ts_small_parse_table[] = { sym_public_type_alias, sym_public_opaque_type_alias, aux_sym_source_file_repeat1, - [20689] = 5, + [21243] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(104), 1, - anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(102), 8, + ACTIONS(289), 9, + anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -22252,7 +22897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(97), 21, + ACTIONS(287), 21, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -22274,15 +22919,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [20733] = 5, + [21285] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(638), 1, + ACTIONS(655), 1, anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(102), 8, + ACTIONS(257), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -22291,7 +22936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(97), 21, + ACTIONS(252), 21, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -22313,15 +22958,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [20777] = 5, + [21329] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(640), 1, + ACTIONS(657), 1, anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(102), 8, + ACTIONS(257), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -22330,7 +22975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(97), 21, + ACTIONS(252), 21, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -22352,36 +22997,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [20821] = 10, + [21373] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(59), 1, + ACTIONS(57), 1, sym__decimal, - ACTIONS(560), 1, + ACTIONS(579), 1, anon_sym_DASH, - ACTIONS(562), 1, + ACTIONS(581), 1, anon_sym_size, - ACTIONS(564), 1, + ACTIONS(583), 1, anon_sym_unit, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(57), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - ACTIONS(568), 3, + ACTIONS(587), 3, anon_sym_utf8, anon_sym_utf16, anon_sym_utf32, - STATE(839), 6, - sym__constant_bit_string_segment_option, - sym__constant_bit_string_named_segment_option, - sym__constant_bit_string_segment_option_size, + STATE(782), 6, + sym__pattern_bit_string_segment_option, + sym__pattern_bit_string_named_segment_option, + sym__pattern_bit_string_segment_option_size, sym_integer, sym__bit_string_segment_option_unit, sym__bit_string_segment_option_literal, - ACTIONS(566), 14, + ACTIONS(585), 14, anon_sym_binary, anon_sym_bytes, anon_sym_int, @@ -22396,53 +23041,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_big, anon_sym_little, anon_sym_native, - [20875] = 4, + [21427] = 10, ACTIONS(3), 1, sym_module_comment, + ACTIONS(57), 1, + sym__decimal, + ACTIONS(579), 1, + anon_sym_DASH, + ACTIONS(583), 1, + anon_sym_unit, + ACTIONS(601), 1, + anon_sym_size, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(290), 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(288), 22, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DOT_DOT, - [20917] = 5, + ACTIONS(55), 3, + sym__hex, + sym__octal, + sym__binary, + ACTIONS(605), 3, + anon_sym_utf8, + anon_sym_utf16, + anon_sym_utf32, + STATE(805), 6, + sym__expression_bit_string_segment_option, + sym__expression_bit_string_named_segment_option, + sym__expression_bit_string_segment_option_size, + sym_integer, + sym__bit_string_segment_option_unit, + sym__bit_string_segment_option_literal, + ACTIONS(603), 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, + [21481] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(642), 1, - anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(280), 8, + ACTIONS(323), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -22451,9 +23100,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(278), 21, + ACTIONS(321), 22, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_GT_GT, @@ -22473,36 +23123,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [20961] = 10, + [21523] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(59), 1, + ACTIONS(57), 1, sym__decimal, - ACTIONS(560), 1, + ACTIONS(579), 1, anon_sym_DASH, - ACTIONS(564), 1, + ACTIONS(583), 1, anon_sym_unit, - ACTIONS(572), 1, + ACTIONS(593), 1, anon_sym_size, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(57), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - ACTIONS(576), 3, + ACTIONS(597), 3, anon_sym_utf8, anon_sym_utf16, anon_sym_utf32, - STATE(767), 6, - sym__pattern_bit_string_segment_option, - sym__pattern_bit_string_named_segment_option, - sym__pattern_bit_string_segment_option_size, + STATE(892), 6, + sym__constant_bit_string_segment_option, + sym__constant_bit_string_named_segment_option, + sym__constant_bit_string_segment_option_size, sym_integer, sym__bit_string_segment_option_unit, sym__bit_string_segment_option_literal, - ACTIONS(574), 14, + ACTIONS(595), 14, anon_sym_binary, anon_sym_bytes, anon_sym_int, @@ -22517,14 +23167,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_big, anon_sym_little, anon_sym_native, - [21015] = 4, + [21577] = 15, ACTIONS(3), 1, sym_module_comment, + ACTIONS(9), 1, + anon_sym_if, + ACTIONS(11), 1, + anon_sym_import, + ACTIONS(13), 1, + anon_sym_pub, + ACTIONS(15), 1, + anon_sym_const, + ACTIONS(17), 1, + anon_sym_external, + ACTIONS(19), 1, + anon_sym_type, + ACTIONS(21), 1, + anon_sym_fn, + ACTIONS(659), 1, + ts_builtin_sym_end, + STATE(602), 1, + sym__function, + STATE(617), 1, + sym__external_function, + STATE(618), 1, + sym__external_type, + STATE(620), 1, + sym__constant, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(256), 9, - anon_sym_DOT, + STATE(270), 18, + sym__statement, + sym_target_group, + sym_import, + sym_public_constant, + sym_constant, + sym_public_external_type, + sym_external_type, + sym_public_external_function, + sym_external_function, + sym_function, + sym_public_function, + sym_type_definition, + sym_public_type_definition, + sym_public_opaque_type_definition, + sym_type_alias, + sym_public_type_alias, + sym_public_opaque_type_alias, + aux_sym_source_file_repeat1, + [21641] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(279), 9, + anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -22533,7 +23232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(254), 21, + ACTIONS(277), 21, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -22555,13 +23254,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [21057] = 4, + [21683] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(294), 9, + ACTIONS(327), 9, anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, @@ -22571,7 +23270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(292), 21, + ACTIONS(325), 21, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -22593,13 +23292,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [21099] = 4, + [21725] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(260), 9, + ACTIONS(285), 9, anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, @@ -22609,7 +23308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(258), 21, + ACTIONS(283), 21, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -22631,14 +23330,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [21141] = 4, + [21767] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(259), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(286), 9, - anon_sym_DOT, + ACTIONS(257), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -22647,7 +23347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(284), 21, + ACTIONS(252), 21, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -22669,13 +23369,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [21183] = 4, + [21811] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(266), 9, + ACTIONS(331), 9, anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, @@ -22685,7 +23385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(264), 21, + ACTIONS(329), 21, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -22707,15 +23407,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [21225] = 5, + [21853] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(180), 1, - anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(410), 9, + ACTIONS(319), 9, anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, @@ -22725,11 +23423,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(408), 19, - anon_sym_as, + ACTIONS(317), 21, + 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, @@ -22745,68 +23445,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [21268] = 13, + [21895] = 9, ACTIONS(3), 1, sym_module_comment, - ACTIONS(648), 1, - anon_sym_PIPE_PIPE, - ACTIONS(650), 1, - anon_sym_AMP_AMP, - ACTIONS(658), 1, + ACTIONS(665), 1, anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(644), 2, + ACTIONS(661), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(646), 2, + ACTIONS(663), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(652), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(660), 2, + ACTIONS(667), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(662), 3, + ACTIONS(669), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(654), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(656), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(506), 7, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_DOT_DOT, - [21327] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(308), 8, - anon_sym_SLASH, - anon_sym_DASH, + ACTIONS(497), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(306), 21, + ACTIONS(491), 15, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -22821,40 +23486,23 @@ 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_DOT_DOT, - [21368] = 9, + [21946] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(658), 1, - anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(644), 2, + ACTIONS(385), 8, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(646), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(660), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(662), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(484), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(478), 15, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(383), 21, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -22869,101 +23517,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_DOT_DOT, - [21419] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(658), 1, anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(644), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(646), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(660), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(662), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(654), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(656), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(478), 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, - [21472] = 11, + [21987] = 21, ACTIONS(3), 1, sym_module_comment, - ACTIONS(658), 1, - anon_sym_PIPE_GT, + ACTIONS(671), 1, + anon_sym_POUND, + ACTIONS(673), 1, + anon_sym_LBRACK, + ACTIONS(675), 1, + anon_sym_LT_LT, + ACTIONS(677), 1, + anon_sym_DASH, + ACTIONS(679), 1, + anon_sym_DQUOTE, + ACTIONS(681), 1, + sym_float, + ACTIONS(685), 1, + sym__decimal, + ACTIONS(687), 1, + sym__discard_name, + ACTIONS(689), 1, + sym__name, + ACTIONS(691), 1, + sym__upname, + STATE(705), 1, + sym_identifier, + STATE(712), 1, + sym__pattern, + STATE(756), 1, + sym_case_clause_pattern, + STATE(842), 1, + sym_case_clause_patterns, + STATE(1010), 1, + sym_case_clauses, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(644), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(646), 2, + STATE(288), 2, + sym_case_clause, + aux_sym_case_clauses_repeat1, + STATE(503), 2, + sym_type_identifier, + sym_remote_type_identifier, + ACTIONS(683), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(707), 7, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_string, + sym_integer, + sym_discard, + [22062] = 21, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(671), 1, + anon_sym_POUND, + ACTIONS(673), 1, + anon_sym_LBRACK, + ACTIONS(675), 1, + anon_sym_LT_LT, + ACTIONS(677), 1, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(652), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(660), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(662), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(654), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(656), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(478), 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, - [21527] = 4, + ACTIONS(679), 1, + anon_sym_DQUOTE, + ACTIONS(681), 1, + sym_float, + ACTIONS(685), 1, + sym__decimal, + ACTIONS(687), 1, + sym__discard_name, + ACTIONS(689), 1, + sym__name, + ACTIONS(691), 1, + sym__upname, + ACTIONS(693), 1, + anon_sym_RBRACE, + STATE(705), 1, + sym_identifier, + STATE(712), 1, + sym__pattern, + STATE(756), 1, + sym_case_clause_pattern, + STATE(842), 1, + sym_case_clause_patterns, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(293), 2, + sym_case_clause, + aux_sym_case_clauses_repeat1, + STATE(503), 2, + sym_type_identifier, + sym_remote_type_identifier, + ACTIONS(683), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(707), 7, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_string, + sym_integer, + sym_discard, + [22137] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(348), 8, + ACTIONS(377), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -22972,7 +23647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(346), 21, + ACTIONS(375), 21, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -22994,72 +23669,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [21568] = 12, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(650), 1, - anon_sym_AMP_AMP, - ACTIONS(658), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(644), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(646), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(652), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(660), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(662), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(654), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(656), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(478), 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, - [21625] = 6, + [22178] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(644), 2, + ACTIONS(369), 8, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(662), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(484), 6, anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_PLUS, - ACTIONS(478), 18, + anon_sym_STAR, + ACTIONS(367), 21, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -23077,14 +23702,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_GT, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, anon_sym_DOT_DOT, - [21670] = 4, + [22219] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(484), 8, + ACTIONS(357), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -23093,7 +23721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(478), 21, + ACTIONS(355), 21, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -23115,54 +23743,277 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [21711] = 8, + [22260] = 21, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(644), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(646), 2, + ACTIONS(671), 1, + anon_sym_POUND, + ACTIONS(673), 1, + anon_sym_LBRACK, + ACTIONS(675), 1, + anon_sym_LT_LT, + ACTIONS(677), 1, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(660), 2, - anon_sym_PLUS_DOT, + ACTIONS(679), 1, + anon_sym_DQUOTE, + ACTIONS(681), 1, + sym_float, + ACTIONS(685), 1, + sym__decimal, + ACTIONS(687), 1, + sym__discard_name, + ACTIONS(689), 1, + sym__name, + ACTIONS(691), 1, + sym__upname, + STATE(705), 1, + sym_identifier, + STATE(712), 1, + sym__pattern, + STATE(756), 1, + sym_case_clause_pattern, + STATE(842), 1, + sym_case_clause_patterns, + STATE(1026), 1, + sym_case_clauses, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(288), 2, + sym_case_clause, + aux_sym_case_clauses_repeat1, + STATE(503), 2, + sym_type_identifier, + sym_remote_type_identifier, + ACTIONS(683), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(707), 7, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_string, + sym_integer, + sym_discard, + [22335] = 21, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(695), 1, + anon_sym_RBRACE, + ACTIONS(697), 1, + anon_sym_POUND, + ACTIONS(700), 1, + anon_sym_LBRACK, + ACTIONS(703), 1, + anon_sym_LT_LT, + ACTIONS(706), 1, + anon_sym_DASH, + ACTIONS(709), 1, + anon_sym_DQUOTE, + ACTIONS(712), 1, + sym_float, + ACTIONS(718), 1, + sym__decimal, + ACTIONS(721), 1, + sym__discard_name, + ACTIONS(724), 1, + sym__name, + ACTIONS(727), 1, + sym__upname, + STATE(705), 1, + sym_identifier, + STATE(712), 1, + sym__pattern, + STATE(756), 1, + sym_case_clause_pattern, + STATE(842), 1, + sym_case_clause_patterns, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(293), 2, + sym_case_clause, + aux_sym_case_clauses_repeat1, + STATE(503), 2, + sym_type_identifier, + sym_remote_type_identifier, + ACTIONS(715), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(707), 7, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_string, + sym_integer, + sym_discard, + [22410] = 13, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(665), 1, + anon_sym_PIPE_GT, + ACTIONS(730), 1, + anon_sym_PIPE_PIPE, + ACTIONS(732), 1, + anon_sym_AMP_AMP, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(661), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(663), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(667), 2, + anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(662), 3, + ACTIONS(734), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(669), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(484), 4, + ACTIONS(736), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(478), 16, + ACTIONS(738), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(527), 7, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_GT_GT, anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, anon_sym_DOT_DOT, - [21760] = 4, + [22469] = 22, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(37), 1, + anon_sym_DASH, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(57), 1, + sym__decimal, + ACTIONS(61), 1, + sym__name, + ACTIONS(63), 1, + sym__upname, + ACTIONS(671), 1, + anon_sym_POUND, + ACTIONS(673), 1, + anon_sym_LBRACK, + ACTIONS(675), 1, + anon_sym_LT_LT, + ACTIONS(687), 1, + sym__discard_name, + ACTIONS(740), 1, + anon_sym_RPAREN, + ACTIONS(742), 1, + anon_sym_DOT_DOT, + ACTIONS(744), 1, + sym_float, + STATE(579), 1, + sym_identifier, + STATE(716), 1, + sym_record_pattern_argument, + STATE(772), 1, + sym__pattern, + STATE(1045), 1, + sym_label, + STATE(1057), 1, + sym_pattern_spread, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(503), 2, + sym_type_identifier, + sym_remote_type_identifier, + ACTIONS(55), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(646), 7, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_string, + sym_integer, + sym_discard, + [22546] = 22, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(37), 1, + anon_sym_DASH, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(57), 1, + sym__decimal, + ACTIONS(61), 1, + sym__name, + ACTIONS(63), 1, + sym__upname, + ACTIONS(671), 1, + anon_sym_POUND, + ACTIONS(673), 1, + anon_sym_LBRACK, + ACTIONS(675), 1, + anon_sym_LT_LT, + ACTIONS(687), 1, + sym__discard_name, + ACTIONS(742), 1, + anon_sym_DOT_DOT, + ACTIONS(744), 1, + sym_float, + ACTIONS(746), 1, + anon_sym_RPAREN, + STATE(579), 1, + sym_identifier, + STATE(772), 1, + sym__pattern, + STATE(802), 1, + sym_record_pattern_argument, + STATE(1006), 1, + sym_pattern_spread, + STATE(1045), 1, + sym_label, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(503), 2, + sym_type_identifier, + sym_remote_type_identifier, + ACTIONS(55), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(646), 7, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_string, + sym_integer, + sym_discard, + [22623] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(364), 8, + ACTIONS(373), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -23171,7 +24022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(362), 21, + ACTIONS(371), 21, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -23193,13 +24044,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [21801] = 4, + [22664] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(368), 8, + ACTIONS(497), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -23208,7 +24059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(366), 21, + ACTIONS(491), 21, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -23230,22 +24081,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [21842] = 4, + [22705] = 6, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(476), 8, + ACTIONS(661), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(669), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(497), 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(474), 21, + ACTIONS(491), 18, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -23263,26 +24119,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_GT, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, anon_sym_DOT_DOT, - [21883] = 4, + [22750] = 12, ACTIONS(3), 1, sym_module_comment, + ACTIONS(665), 1, + anon_sym_PIPE_GT, + ACTIONS(732), 1, + anon_sym_AMP_AMP, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(304), 8, + ACTIONS(661), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(663), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(667), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(734), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(669), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(736), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(302), 21, + ACTIONS(738), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(491), 8, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -23290,27 +24164,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_COLON, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, anon_sym_DOT_DOT, - [21924] = 4, + [22807] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(316), 8, + ACTIONS(339), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -23319,7 +24180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(314), 21, + ACTIONS(337), 21, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -23341,13 +24202,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [21965] = 4, + [22848] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(336), 8, + ACTIONS(405), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -23356,7 +24217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(334), 21, + ACTIONS(403), 21, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -23378,13 +24239,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [22006] = 4, + [22889] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(372), 8, + ACTIONS(365), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -23393,7 +24254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(370), 21, + ACTIONS(363), 21, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -23415,13 +24276,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [22047] = 4, + [22930] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(328), 8, + ACTIONS(537), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -23430,7 +24291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(326), 21, + ACTIONS(535), 21, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -23452,22 +24313,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [22088] = 4, + [22971] = 11, ACTIONS(3), 1, sym_module_comment, + ACTIONS(665), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(352), 8, + ACTIONS(661), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(663), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(667), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(734), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(669), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(736), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(350), 21, + ACTIONS(738), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(491), 9, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -23476,35 +24356,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, anon_sym_DOT_DOT, - [22129] = 4, + [23026] = 13, ACTIONS(3), 1, sym_module_comment, + ACTIONS(665), 1, + anon_sym_PIPE_GT, + ACTIONS(730), 1, + anon_sym_PIPE_PIPE, + ACTIONS(732), 1, + anon_sym_AMP_AMP, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(360), 8, + ACTIONS(661), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(663), 2, anon_sym_DASH, - anon_sym_LT, + anon_sym_PLUS, + ACTIONS(667), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(734), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(669), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(736), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(738), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(519), 7, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_DOT_DOT, + [23085] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(353), 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(358), 21, + ACTIONS(351), 21, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -23526,13 +24440,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [22170] = 4, + [23126] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(244), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(356), 8, + ACTIONS(478), 9, + anon_sym_DOT, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -23541,13 +24458,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(354), 21, - anon_sym_LBRACE, + ACTIONS(476), 19, + anon_sym_as, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -23563,13 +24478,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [22211] = 4, + [23169] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(320), 8, + ACTIONS(343), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -23578,7 +24493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(318), 21, + ACTIONS(341), 21, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -23600,59 +24515,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [22252] = 13, + [23210] = 22, ACTIONS(3), 1, sym_module_comment, - ACTIONS(648), 1, - anon_sym_PIPE_PIPE, - ACTIONS(650), 1, - anon_sym_AMP_AMP, - ACTIONS(658), 1, - anon_sym_PIPE_GT, + ACTIONS(37), 1, + anon_sym_DASH, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(57), 1, + sym__decimal, + ACTIONS(61), 1, + sym__name, + ACTIONS(63), 1, + sym__upname, + ACTIONS(671), 1, + anon_sym_POUND, + ACTIONS(673), 1, + anon_sym_LBRACK, + ACTIONS(675), 1, + anon_sym_LT_LT, + ACTIONS(687), 1, + sym__discard_name, + ACTIONS(742), 1, + anon_sym_DOT_DOT, + ACTIONS(744), 1, + sym_float, + ACTIONS(748), 1, + anon_sym_RPAREN, + STATE(579), 1, + sym_identifier, + STATE(772), 1, + sym__pattern, + STATE(802), 1, + sym_record_pattern_argument, + STATE(1045), 1, + sym_label, + STATE(1064), 1, + sym_pattern_spread, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(644), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(646), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(652), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(660), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(662), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(654), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(656), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(510), 7, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_DOT_DOT, - [22311] = 4, + STATE(503), 2, + sym_type_identifier, + sym_remote_type_identifier, + ACTIONS(55), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(646), 7, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_string, + sym_integer, + sym_discard, + [23287] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(340), 8, + ACTIONS(349), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -23661,7 +24585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(338), 21, + ACTIONS(347), 21, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -23683,290 +24607,284 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_DOT, anon_sym_PERCENT, anon_sym_DOT_DOT, - [22352] = 14, + [23328] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(664), 1, - anon_sym_RBRACE, - ACTIONS(666), 1, - anon_sym_import, - ACTIONS(669), 1, - anon_sym_pub, - ACTIONS(672), 1, - anon_sym_const, - ACTIONS(675), 1, - anon_sym_external, - ACTIONS(678), 1, - anon_sym_type, - ACTIONS(681), 1, - anon_sym_fn, - STATE(656), 1, - sym__constant, - STATE(676), 1, - sym__function, - STATE(677), 1, - sym__external_function, - STATE(678), 1, - sym__external_type, + ACTIONS(665), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(304), 17, - sym__statement, - sym_import, - sym_public_constant, - sym_constant, - sym_public_external_type, - sym_external_type, - sym_public_external_function, - sym_external_function, - sym_function, - sym_public_function, - sym_type_definition, - sym_public_type_definition, - sym_public_opaque_type_definition, - sym_type_alias, - sym_public_type_alias, - sym_public_opaque_type_alias, - aux_sym_target_group_repeat1, - [22412] = 20, + ACTIONS(661), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(663), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(667), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(669), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(736), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(738), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(491), 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, + [23381] = 21, ACTIONS(3), 1, sym_module_comment, - ACTIONS(684), 1, - anon_sym_RBRACE, - ACTIONS(686), 1, + ACTIONS(671), 1, anon_sym_POUND, - ACTIONS(688), 1, + ACTIONS(673), 1, anon_sym_LBRACK, - ACTIONS(690), 1, + ACTIONS(675), 1, anon_sym_LT_LT, - ACTIONS(692), 1, + ACTIONS(677), 1, anon_sym_DASH, - ACTIONS(698), 1, + ACTIONS(679), 1, + anon_sym_DQUOTE, + ACTIONS(681), 1, + sym_float, + ACTIONS(685), 1, sym__decimal, - ACTIONS(700), 1, + ACTIONS(687), 1, sym__discard_name, - ACTIONS(702), 1, + ACTIONS(689), 1, sym__name, - ACTIONS(704), 1, + ACTIONS(691), 1, sym__upname, - STATE(687), 1, + STATE(705), 1, sym_identifier, - STATE(700), 1, + STATE(712), 1, sym__pattern, - STATE(733), 1, + STATE(756), 1, sym_case_clause_pattern, - STATE(853), 1, + STATE(842), 1, sym_case_clause_patterns, + STATE(1040), 1, + sym_case_clauses, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(694), 2, - sym_string, - sym_float, - STATE(308), 2, + STATE(288), 2, sym_case_clause, aux_sym_case_clauses_repeat1, - STATE(494), 2, + STATE(503), 2, sym_type_identifier, sym_remote_type_identifier, - ACTIONS(696), 3, + ACTIONS(683), 3, sym__hex, sym__octal, sym__binary, - STATE(703), 6, + STATE(707), 7, sym_record_pattern, sym_tuple_pattern, sym__pattern_bit_string, sym_list_pattern, + sym_string, sym_integer, sym_discard, - [22484] = 20, + [23456] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(686), 1, - anon_sym_POUND, - ACTIONS(688), 1, - anon_sym_LBRACK, - ACTIONS(690), 1, - anon_sym_LT_LT, - ACTIONS(692), 1, - anon_sym_DASH, - ACTIONS(698), 1, - sym__decimal, - ACTIONS(700), 1, - sym__discard_name, - ACTIONS(702), 1, - sym__name, - ACTIONS(704), 1, - sym__upname, - STATE(687), 1, - sym_identifier, - STATE(700), 1, - sym__pattern, - STATE(733), 1, - sym_case_clause_pattern, - STATE(853), 1, - sym_case_clause_patterns, - STATE(1042), 1, - sym_case_clauses, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(694), 2, - sym_string, - sym_float, - STATE(305), 2, - sym_case_clause, - aux_sym_case_clauses_repeat1, - STATE(494), 2, - sym_type_identifier, - sym_remote_type_identifier, - ACTIONS(696), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(703), 6, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [22556] = 21, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(41), 1, + ACTIONS(415), 8, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(59), 1, - sym__decimal, - ACTIONS(63), 1, - sym__name, - ACTIONS(65), 1, - sym__upname, - ACTIONS(686), 1, - anon_sym_POUND, - ACTIONS(688), 1, - anon_sym_LBRACK, - ACTIONS(690), 1, - anon_sym_LT_LT, - ACTIONS(700), 1, - sym__discard_name, - ACTIONS(706), 1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(413), 21, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(708), 1, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, anon_sym_DOT_DOT, - STATE(566), 1, - sym_identifier, - STATE(759), 1, - sym_record_pattern_argument, - STATE(861), 1, - sym__pattern, - STATE(1045), 1, - sym_label, - STATE(1051), 1, - sym_pattern_spread, + [23497] = 4, + ACTIONS(3), 1, + sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(710), 2, - sym_string, - sym_float, - STATE(494), 2, - sym_type_identifier, - sym_remote_type_identifier, - ACTIONS(57), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(606), 6, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [22630] = 20, + ACTIONS(395), 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(393), 21, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DOT_DOT, + [23538] = 8, ACTIONS(3), 1, sym_module_comment, - ACTIONS(712), 1, - anon_sym_RBRACE, - ACTIONS(714), 1, - anon_sym_POUND, - ACTIONS(717), 1, - anon_sym_LBRACK, - ACTIONS(720), 1, - anon_sym_LT_LT, - ACTIONS(723), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(661), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(663), 2, anon_sym_DASH, - ACTIONS(732), 1, - sym__decimal, - ACTIONS(735), 1, - sym__discard_name, - ACTIONS(738), 1, - sym__name, - ACTIONS(741), 1, - sym__upname, - STATE(687), 1, - sym_identifier, - STATE(700), 1, - sym__pattern, - STATE(733), 1, - sym_case_clause_pattern, - STATE(853), 1, - sym_case_clause_patterns, + anon_sym_PLUS, + ACTIONS(667), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(669), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(497), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(491), 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, + [23587] = 4, + ACTIONS(3), 1, + sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(726), 2, - sym_string, - sym_float, - STATE(308), 2, - sym_case_clause, - aux_sym_case_clauses_repeat1, - STATE(494), 2, - sym_type_identifier, - sym_remote_type_identifier, - ACTIONS(729), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(703), 6, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [22702] = 14, + ACTIONS(391), 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(389), 21, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_DOT_DOT, + [23628] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(744), 1, + ACTIONS(750), 1, anon_sym_RBRACE, - ACTIONS(746), 1, + ACTIONS(752), 1, anon_sym_import, - ACTIONS(748), 1, + ACTIONS(754), 1, anon_sym_pub, - ACTIONS(750), 1, + ACTIONS(756), 1, anon_sym_const, - ACTIONS(752), 1, + ACTIONS(758), 1, anon_sym_external, - ACTIONS(754), 1, + ACTIONS(760), 1, anon_sym_type, - ACTIONS(756), 1, + ACTIONS(762), 1, anon_sym_fn, - STATE(656), 1, - sym__constant, - STATE(676), 1, - sym__function, - STATE(677), 1, + STATE(665), 1, sym__external_function, - STATE(678), 1, + STATE(686), 1, + sym__function, + STATE(687), 1, sym__external_type, + STATE(688), 1, + sym__constant, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(304), 17, + STATE(319), 17, sym__statement, sym_import, sym_public_constant, @@ -23984,35 +24902,81 @@ static const uint16_t ts_small_parse_table[] = { sym_public_type_alias, sym_public_opaque_type_alias, aux_sym_target_group_repeat1, - [22762] = 14, + [23688] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(746), 1, + ACTIONS(764), 1, + anon_sym_RBRACE, + ACTIONS(766), 1, anon_sym_import, - ACTIONS(748), 1, + ACTIONS(769), 1, anon_sym_pub, - ACTIONS(750), 1, + ACTIONS(772), 1, anon_sym_const, - ACTIONS(752), 1, + ACTIONS(775), 1, anon_sym_external, - ACTIONS(754), 1, + ACTIONS(778), 1, anon_sym_type, - ACTIONS(756), 1, + ACTIONS(781), 1, anon_sym_fn, + STATE(665), 1, + sym__external_function, + STATE(686), 1, + sym__function, + STATE(687), 1, + sym__external_type, + STATE(688), 1, + sym__constant, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(319), 17, + sym__statement, + sym_import, + sym_public_constant, + sym_constant, + sym_public_external_type, + sym_external_type, + sym_public_external_function, + sym_external_function, + sym_function, + sym_public_function, + sym_type_definition, + sym_public_type_definition, + sym_public_opaque_type_definition, + sym_type_alias, + sym_public_type_alias, + sym_public_opaque_type_alias, + aux_sym_target_group_repeat1, + [23748] = 14, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(752), 1, + anon_sym_import, + ACTIONS(754), 1, + anon_sym_pub, + ACTIONS(756), 1, + anon_sym_const, ACTIONS(758), 1, + anon_sym_external, + ACTIONS(760), 1, + anon_sym_type, + ACTIONS(762), 1, + anon_sym_fn, + ACTIONS(784), 1, anon_sym_RBRACE, - STATE(656), 1, - sym__constant, - STATE(676), 1, - sym__function, - STATE(677), 1, + STATE(665), 1, sym__external_function, - STATE(678), 1, + STATE(686), 1, + sym__function, + STATE(687), 1, sym__external_type, + STATE(688), 1, + sym__constant, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(309), 17, + STATE(318), 17, sym__statement, sym_import, sym_public_constant, @@ -24030,384 +24994,437 @@ static const uint16_t ts_small_parse_table[] = { sym_public_type_alias, sym_public_opaque_type_alias, aux_sym_target_group_repeat1, - [22822] = 21, + [23808] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(41), 1, + ACTIONS(677), 1, anon_sym_DASH, - ACTIONS(59), 1, + ACTIONS(679), 1, + anon_sym_DQUOTE, + ACTIONS(685), 1, sym__decimal, - ACTIONS(63), 1, + ACTIONS(689), 1, sym__name, - ACTIONS(65), 1, + ACTIONS(691), 1, sym__upname, - ACTIONS(686), 1, + ACTIONS(786), 1, + anon_sym_LBRACE, + ACTIONS(788), 1, anon_sym_POUND, - ACTIONS(688), 1, + ACTIONS(790), 1, anon_sym_LBRACK, - ACTIONS(690), 1, + ACTIONS(792), 1, anon_sym_LT_LT, - ACTIONS(700), 1, - sym__discard_name, - ACTIONS(708), 1, - anon_sym_DOT_DOT, - ACTIONS(760), 1, - anon_sym_RPAREN, - STATE(566), 1, + ACTIONS(794), 1, + sym_float, + STATE(483), 1, sym_identifier, - STATE(759), 1, - sym_record_pattern_argument, - STATE(861), 1, - sym__pattern, - STATE(1037), 1, - sym_pattern_spread, - STATE(1045), 1, - sym_label, + STATE(485), 1, + sym__case_clause_tuple_access, + STATE(486), 1, + sym__case_clause_guard_binary_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(710), 2, - sym_string, - sym_float, - STATE(494), 2, + STATE(338), 2, sym_type_identifier, sym_remote_type_identifier, - ACTIONS(57), 3, + ACTIONS(683), 3, sym__hex, sym__octal, sym__binary, - STATE(606), 6, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, + STATE(501), 9, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym__case_clause_guard_expression, + sym__case_clause_guard_unit, + sym_string, sym_integer, - sym_discard, - [22896] = 20, + [23875] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(686), 1, - anon_sym_POUND, - ACTIONS(688), 1, - anon_sym_LBRACK, - ACTIONS(690), 1, - anon_sym_LT_LT, - ACTIONS(692), 1, + ACTIONS(677), 1, anon_sym_DASH, - ACTIONS(698), 1, + ACTIONS(679), 1, + anon_sym_DQUOTE, + ACTIONS(685), 1, sym__decimal, - ACTIONS(700), 1, - sym__discard_name, - ACTIONS(702), 1, + ACTIONS(689), 1, sym__name, - ACTIONS(704), 1, + ACTIONS(691), 1, sym__upname, - STATE(687), 1, + ACTIONS(786), 1, + anon_sym_LBRACE, + ACTIONS(788), 1, + anon_sym_POUND, + ACTIONS(790), 1, + anon_sym_LBRACK, + ACTIONS(792), 1, + anon_sym_LT_LT, + ACTIONS(796), 1, + sym_float, + STATE(483), 1, sym_identifier, - STATE(700), 1, - sym__pattern, - STATE(733), 1, - sym_case_clause_pattern, - STATE(853), 1, - sym_case_clause_patterns, - STATE(995), 1, - sym_case_clauses, + STATE(485), 1, + sym__case_clause_tuple_access, + STATE(486), 1, + sym__case_clause_guard_binary_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(694), 2, - sym_string, - sym_float, - STATE(305), 2, - sym_case_clause, - aux_sym_case_clauses_repeat1, - STATE(494), 2, + STATE(338), 2, sym_type_identifier, sym_remote_type_identifier, - ACTIONS(696), 3, + ACTIONS(683), 3, sym__hex, sym__octal, sym__binary, - STATE(703), 6, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, + STATE(492), 9, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym__case_clause_guard_expression, + sym__case_clause_guard_unit, + sym_string, sym_integer, - sym_discard, - [22968] = 20, + [23942] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(686), 1, + ACTIONS(37), 1, + anon_sym_DASH, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(57), 1, + sym__decimal, + ACTIONS(63), 1, + sym__upname, + ACTIONS(269), 1, + sym__name, + ACTIONS(786), 1, + anon_sym_LBRACE, + ACTIONS(788), 1, anon_sym_POUND, - ACTIONS(688), 1, + ACTIONS(790), 1, anon_sym_LBRACK, - ACTIONS(690), 1, + ACTIONS(792), 1, anon_sym_LT_LT, - ACTIONS(692), 1, + ACTIONS(798), 1, + sym_float, + STATE(484), 1, + sym_identifier, + STATE(485), 1, + sym__case_clause_tuple_access, + STATE(486), 1, + sym__case_clause_guard_binary_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(338), 2, + sym_type_identifier, + sym_remote_type_identifier, + ACTIONS(55), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(500), 9, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym__case_clause_guard_expression, + sym__case_clause_guard_unit, + sym_string, + sym_integer, + [24009] = 18, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(37), 1, anon_sym_DASH, - ACTIONS(698), 1, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(57), 1, sym__decimal, - ACTIONS(700), 1, - sym__discard_name, - ACTIONS(702), 1, - sym__name, - ACTIONS(704), 1, + ACTIONS(63), 1, sym__upname, - STATE(687), 1, + ACTIONS(269), 1, + sym__name, + ACTIONS(786), 1, + anon_sym_LBRACE, + ACTIONS(788), 1, + anon_sym_POUND, + ACTIONS(790), 1, + anon_sym_LBRACK, + ACTIONS(792), 1, + anon_sym_LT_LT, + ACTIONS(800), 1, + sym_float, + STATE(484), 1, sym_identifier, - STATE(700), 1, - sym__pattern, - STATE(733), 1, - sym_case_clause_pattern, - STATE(853), 1, - sym_case_clause_patterns, - STATE(993), 1, - sym_case_clauses, + STATE(485), 1, + sym__case_clause_tuple_access, + STATE(486), 1, + sym__case_clause_guard_binary_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(694), 2, + STATE(338), 2, + sym_type_identifier, + sym_remote_type_identifier, + ACTIONS(55), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(497), 9, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym__case_clause_guard_expression, + sym__case_clause_guard_unit, sym_string, + sym_integer, + [24076] = 18, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(37), 1, + anon_sym_DASH, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(57), 1, + sym__decimal, + ACTIONS(63), 1, + sym__upname, + ACTIONS(269), 1, + sym__name, + ACTIONS(786), 1, + anon_sym_LBRACE, + ACTIONS(788), 1, + anon_sym_POUND, + ACTIONS(790), 1, + anon_sym_LBRACK, + ACTIONS(792), 1, + anon_sym_LT_LT, + ACTIONS(802), 1, sym_float, - STATE(305), 2, - sym_case_clause, - aux_sym_case_clauses_repeat1, - STATE(494), 2, + STATE(484), 1, + sym_identifier, + STATE(485), 1, + sym__case_clause_tuple_access, + STATE(486), 1, + sym__case_clause_guard_binary_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(338), 2, sym_type_identifier, sym_remote_type_identifier, - ACTIONS(696), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(703), 6, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, + STATE(502), 9, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym__case_clause_guard_expression, + sym__case_clause_guard_unit, + sym_string, sym_integer, - sym_discard, - [23040] = 21, + [24143] = 20, ACTIONS(3), 1, sym_module_comment, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_DASH, - ACTIONS(59), 1, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(57), 1, sym__decimal, ACTIONS(63), 1, - sym__name, - ACTIONS(65), 1, sym__upname, - ACTIONS(686), 1, + ACTIONS(269), 1, + sym__name, + ACTIONS(671), 1, anon_sym_POUND, - ACTIONS(688), 1, + ACTIONS(673), 1, anon_sym_LBRACK, - ACTIONS(690), 1, + ACTIONS(675), 1, anon_sym_LT_LT, - ACTIONS(700), 1, + ACTIONS(687), 1, sym__discard_name, - ACTIONS(708), 1, + ACTIONS(744), 1, + sym_float, + ACTIONS(804), 1, + anon_sym_RBRACK, + ACTIONS(806), 1, anon_sym_DOT_DOT, - ACTIONS(762), 1, - anon_sym_RPAREN, - STATE(566), 1, + STATE(579), 1, sym_identifier, - STATE(707), 1, - sym_record_pattern_argument, - STATE(861), 1, + STATE(671), 1, sym__pattern, - STATE(1045), 1, - sym_label, - STATE(1047), 1, - sym_pattern_spread, + STATE(1044), 1, + sym_list_pattern_tail, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(710), 2, - sym_string, - sym_float, - STATE(494), 2, + STATE(503), 2, sym_type_identifier, sym_remote_type_identifier, - ACTIONS(57), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(606), 6, + STATE(646), 7, sym_record_pattern, sym_tuple_pattern, sym__pattern_bit_string, sym_list_pattern, + sym_string, sym_integer, sym_discard, - [23114] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(766), 1, - anon_sym_LPAREN, - STATE(355), 1, - sym_constant_record_arguments, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(768), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(764), 21, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_COMMA, - anon_sym_pub, - anon_sym_const, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [23157] = 13, + [24214] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(648), 1, + ACTIONS(665), 1, + anon_sym_PIPE_GT, + ACTIONS(730), 1, anon_sym_PIPE_PIPE, - ACTIONS(650), 1, + ACTIONS(732), 1, anon_sym_AMP_AMP, - ACTIONS(658), 1, - anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(644), 2, + ACTIONS(661), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(646), 2, + ACTIONS(663), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(652), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(660), 2, + ACTIONS(667), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(662), 3, + ACTIONS(734), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(669), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(654), 4, + ACTIONS(736), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(656), 4, + ACTIONS(738), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(770), 5, + ACTIONS(808), 5, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_DOT_DOT, - [23214] = 18, + [24271] = 20, ACTIONS(3), 1, sym_module_comment, - ACTIONS(686), 1, + ACTIONS(37), 1, + anon_sym_DASH, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(57), 1, + sym__decimal, + ACTIONS(63), 1, + sym__upname, + ACTIONS(269), 1, + sym__name, + ACTIONS(671), 1, anon_sym_POUND, - ACTIONS(688), 1, + ACTIONS(673), 1, anon_sym_LBRACK, - ACTIONS(690), 1, + ACTIONS(675), 1, anon_sym_LT_LT, - ACTIONS(692), 1, - anon_sym_DASH, - ACTIONS(698), 1, - sym__decimal, - ACTIONS(700), 1, + ACTIONS(687), 1, sym__discard_name, - ACTIONS(702), 1, - sym__name, - ACTIONS(704), 1, - sym__upname, - ACTIONS(772), 1, - anon_sym_if, - STATE(655), 1, - sym__pattern, - STATE(687), 1, + ACTIONS(744), 1, + sym_float, + ACTIONS(806), 1, + anon_sym_DOT_DOT, + ACTIONS(810), 1, + anon_sym_RBRACK, + STATE(579), 1, sym_identifier, + STATE(671), 1, + sym__pattern, + STATE(1066), 1, + sym_list_pattern_tail, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(694), 2, - sym_string, - sym_float, - ACTIONS(774), 2, - anon_sym_DASH_GT, - anon_sym_PIPE, - STATE(494), 2, + STATE(503), 2, sym_type_identifier, sym_remote_type_identifier, - ACTIONS(696), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(703), 6, + STATE(646), 7, sym_record_pattern, sym_tuple_pattern, sym__pattern_bit_string, sym_list_pattern, + sym_string, sym_integer, sym_discard, - [23280] = 17, + [24342] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(692), 1, + ACTIONS(37), 1, anon_sym_DASH, - ACTIONS(698), 1, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(57), 1, sym__decimal, - ACTIONS(702), 1, - sym__name, - ACTIONS(704), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(776), 1, + ACTIONS(269), 1, + sym__name, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(788), 1, anon_sym_POUND, - ACTIONS(780), 1, + ACTIONS(790), 1, anon_sym_LBRACK, - ACTIONS(782), 1, + ACTIONS(792), 1, anon_sym_LT_LT, - STATE(458), 1, - sym__case_clause_tuple_access, - STATE(468), 1, + ACTIONS(812), 1, + sym_float, + STATE(484), 1, sym_identifier, - STATE(473), 1, + STATE(485), 1, + sym__case_clause_tuple_access, + STATE(486), 1, sym__case_clause_guard_binary_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(784), 2, - sym_string, - sym_float, - STATE(315), 2, + STATE(338), 2, sym_type_identifier, sym_remote_type_identifier, - ACTIONS(696), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(488), 8, + STATE(494), 9, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -24415,95 +25432,48 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_record, sym__case_clause_guard_expression, sym__case_clause_guard_unit, - sym_integer, - [23344] = 19, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(41), 1, - anon_sym_DASH, - ACTIONS(59), 1, - sym__decimal, - ACTIONS(65), 1, - sym__upname, - ACTIONS(300), 1, - sym__name, - ACTIONS(686), 1, - anon_sym_POUND, - ACTIONS(688), 1, - anon_sym_LBRACK, - ACTIONS(690), 1, - anon_sym_LT_LT, - ACTIONS(700), 1, - sym__discard_name, - ACTIONS(786), 1, - anon_sym_RBRACK, - ACTIONS(788), 1, - anon_sym_DOT_DOT, - STATE(566), 1, - sym_identifier, - STATE(655), 1, - sym__pattern, - STATE(1029), 1, - sym_list_pattern_tail, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(710), 2, sym_string, - sym_float, - STATE(494), 2, - sym_type_identifier, - sym_remote_type_identifier, - ACTIONS(57), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(606), 6, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, sym_integer, - sym_discard, - [23412] = 17, + [24409] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(692), 1, + ACTIONS(677), 1, anon_sym_DASH, - ACTIONS(698), 1, + ACTIONS(679), 1, + anon_sym_DQUOTE, + ACTIONS(685), 1, sym__decimal, - ACTIONS(702), 1, + ACTIONS(689), 1, sym__name, - ACTIONS(704), 1, + ACTIONS(691), 1, sym__upname, - ACTIONS(776), 1, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(788), 1, anon_sym_POUND, - ACTIONS(780), 1, + ACTIONS(790), 1, anon_sym_LBRACK, - ACTIONS(782), 1, + ACTIONS(792), 1, anon_sym_LT_LT, - STATE(458), 1, - sym__case_clause_tuple_access, - STATE(468), 1, + ACTIONS(814), 1, + sym_float, + STATE(483), 1, sym_identifier, - STATE(473), 1, + STATE(485), 1, + sym__case_clause_tuple_access, + STATE(486), 1, sym__case_clause_guard_binary_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(790), 2, - sym_string, - sym_float, - STATE(315), 2, + STATE(338), 2, sym_type_identifier, sym_remote_type_identifier, - ACTIONS(696), 3, + ACTIONS(683), 3, sym__hex, sym__octal, sym__binary, - STATE(489), 8, + STATE(498), 9, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -24511,95 +25481,99 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_record, sym__case_clause_guard_expression, sym__case_clause_guard_unit, + sym_string, sym_integer, - [23476] = 19, + [24476] = 20, ACTIONS(3), 1, sym_module_comment, - ACTIONS(686), 1, + ACTIONS(671), 1, anon_sym_POUND, - ACTIONS(688), 1, + ACTIONS(673), 1, anon_sym_LBRACK, - ACTIONS(690), 1, + ACTIONS(675), 1, anon_sym_LT_LT, - ACTIONS(692), 1, + ACTIONS(677), 1, anon_sym_DASH, - ACTIONS(698), 1, + ACTIONS(679), 1, + anon_sym_DQUOTE, + ACTIONS(681), 1, + sym_float, + ACTIONS(685), 1, sym__decimal, - ACTIONS(700), 1, + ACTIONS(687), 1, sym__discard_name, - ACTIONS(702), 1, + ACTIONS(689), 1, sym__name, - ACTIONS(704), 1, + ACTIONS(691), 1, sym__upname, - ACTIONS(792), 1, + ACTIONS(816), 1, anon_sym_if, - ACTIONS(794), 1, + ACTIONS(818), 1, anon_sym_DASH_GT, - STATE(687), 1, + STATE(705), 1, sym_identifier, - STATE(700), 1, + STATE(712), 1, sym__pattern, - STATE(749), 1, + STATE(788), 1, sym_case_clause_pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(694), 2, - sym_string, - sym_float, - STATE(494), 2, + STATE(503), 2, sym_type_identifier, sym_remote_type_identifier, - ACTIONS(696), 3, + ACTIONS(683), 3, sym__hex, sym__octal, sym__binary, - STATE(703), 6, + STATE(707), 7, sym_record_pattern, sym_tuple_pattern, sym__pattern_bit_string, sym_list_pattern, + sym_string, sym_integer, sym_discard, - [23544] = 17, + [24547] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_DASH, - ACTIONS(59), 1, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(57), 1, sym__decimal, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(300), 1, + ACTIONS(269), 1, sym__name, - ACTIONS(776), 1, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(788), 1, anon_sym_POUND, - ACTIONS(780), 1, + ACTIONS(790), 1, anon_sym_LBRACK, - ACTIONS(782), 1, + ACTIONS(792), 1, anon_sym_LT_LT, - STATE(458), 1, - sym__case_clause_tuple_access, - STATE(463), 1, + ACTIONS(820), 1, + sym_float, + STATE(484), 1, sym_identifier, - STATE(473), 1, + STATE(485), 1, + sym__case_clause_tuple_access, + STATE(486), 1, sym__case_clause_guard_binary_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(796), 2, - sym_string, - sym_float, - STATE(315), 2, + STATE(338), 2, sym_type_identifier, sym_remote_type_identifier, - ACTIONS(57), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(492), 8, + STATE(468), 9, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -24607,92 +25581,48 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_record, sym__case_clause_guard_expression, sym__case_clause_guard_unit, + sym_string, sym_integer, - [23608] = 16, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(648), 1, - anon_sym_PIPE_PIPE, - ACTIONS(650), 1, - anon_sym_AMP_AMP, - ACTIONS(658), 1, - anon_sym_PIPE_GT, - ACTIONS(798), 1, - anon_sym_COMMA, - ACTIONS(800), 1, - anon_sym_RBRACK, - ACTIONS(802), 1, - anon_sym_DOT_DOT, - STATE(722), 1, - aux_sym_tuple_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(644), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(646), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(652), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(660), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(662), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(654), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(656), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [23670] = 17, + [24614] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(41), 1, + ACTIONS(677), 1, anon_sym_DASH, - ACTIONS(59), 1, + ACTIONS(679), 1, + anon_sym_DQUOTE, + ACTIONS(685), 1, sym__decimal, - ACTIONS(65), 1, - sym__upname, - ACTIONS(300), 1, + ACTIONS(689), 1, sym__name, - ACTIONS(776), 1, + ACTIONS(691), 1, + sym__upname, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(788), 1, anon_sym_POUND, - ACTIONS(780), 1, + ACTIONS(790), 1, anon_sym_LBRACK, - ACTIONS(782), 1, + ACTIONS(792), 1, anon_sym_LT_LT, - STATE(458), 1, - sym__case_clause_tuple_access, - STATE(463), 1, + ACTIONS(822), 1, + sym_float, + STATE(483), 1, sym_identifier, - STATE(473), 1, + STATE(485), 1, + sym__case_clause_tuple_access, + STATE(486), 1, sym__case_clause_guard_binary_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(804), 2, - sym_string, - sym_float, - STATE(315), 2, + STATE(338), 2, sym_type_identifier, sym_remote_type_identifier, - ACTIONS(57), 3, + ACTIONS(683), 3, sym__hex, sym__octal, sym__binary, - STATE(487), 8, + STATE(491), 9, sym__constant_value, sym_constant_tuple, sym_constant_list, @@ -24700,632 +25630,642 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_record, sym__case_clause_guard_expression, sym__case_clause_guard_unit, + sym_string, sym_integer, - [23734] = 19, + [24681] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(686), 1, - anon_sym_POUND, - ACTIONS(688), 1, - anon_sym_LBRACK, - ACTIONS(690), 1, - anon_sym_LT_LT, - ACTIONS(692), 1, + ACTIONS(677), 1, anon_sym_DASH, - ACTIONS(698), 1, + ACTIONS(679), 1, + anon_sym_DQUOTE, + ACTIONS(685), 1, sym__decimal, - ACTIONS(700), 1, - sym__discard_name, - ACTIONS(702), 1, + ACTIONS(689), 1, sym__name, - ACTIONS(704), 1, + ACTIONS(691), 1, sym__upname, - ACTIONS(806), 1, - anon_sym_if, - ACTIONS(808), 1, - anon_sym_DASH_GT, - STATE(687), 1, + ACTIONS(786), 1, + anon_sym_LBRACE, + ACTIONS(788), 1, + anon_sym_POUND, + ACTIONS(790), 1, + anon_sym_LBRACK, + ACTIONS(792), 1, + anon_sym_LT_LT, + ACTIONS(820), 1, + sym_float, + STATE(483), 1, sym_identifier, - STATE(700), 1, - sym__pattern, - STATE(749), 1, - sym_case_clause_pattern, + STATE(485), 1, + sym__case_clause_tuple_access, + STATE(486), 1, + sym__case_clause_guard_binary_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(694), 2, - sym_string, - sym_float, - STATE(494), 2, + STATE(338), 2, sym_type_identifier, sym_remote_type_identifier, - ACTIONS(696), 3, + ACTIONS(683), 3, sym__hex, sym__octal, sym__binary, - STATE(703), 6, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, + STATE(468), 9, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym__case_clause_guard_expression, + sym__case_clause_guard_unit, + sym_string, sym_integer, - sym_discard, - [23802] = 19, + [24748] = 20, ACTIONS(3), 1, sym_module_comment, - ACTIONS(41), 1, - anon_sym_DASH, - ACTIONS(59), 1, - sym__decimal, - ACTIONS(65), 1, - sym__upname, - ACTIONS(300), 1, - sym__name, - ACTIONS(686), 1, + ACTIONS(671), 1, anon_sym_POUND, - ACTIONS(688), 1, + ACTIONS(673), 1, anon_sym_LBRACK, - ACTIONS(690), 1, + ACTIONS(675), 1, anon_sym_LT_LT, - ACTIONS(700), 1, + ACTIONS(677), 1, + anon_sym_DASH, + ACTIONS(679), 1, + anon_sym_DQUOTE, + ACTIONS(681), 1, + sym_float, + ACTIONS(685), 1, + sym__decimal, + ACTIONS(687), 1, sym__discard_name, - ACTIONS(788), 1, - anon_sym_DOT_DOT, - ACTIONS(810), 1, - anon_sym_RBRACK, - STATE(566), 1, + ACTIONS(689), 1, + sym__name, + ACTIONS(691), 1, + sym__upname, + ACTIONS(824), 1, + anon_sym_if, + ACTIONS(826), 1, + anon_sym_DASH_GT, + STATE(705), 1, sym_identifier, - STATE(699), 1, + STATE(712), 1, sym__pattern, - STATE(1012), 1, - sym_list_pattern_tail, + STATE(788), 1, + sym_case_clause_pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(710), 2, - sym_string, - sym_float, - STATE(494), 2, + STATE(503), 2, sym_type_identifier, sym_remote_type_identifier, - ACTIONS(57), 3, + ACTIONS(683), 3, sym__hex, sym__octal, sym__binary, - STATE(606), 6, + STATE(707), 7, sym_record_pattern, sym_tuple_pattern, sym__pattern_bit_string, sym_list_pattern, + sym_string, sym_integer, sym_discard, - [23870] = 18, + [24819] = 19, ACTIONS(3), 1, sym_module_comment, - ACTIONS(686), 1, + ACTIONS(671), 1, anon_sym_POUND, - ACTIONS(688), 1, + ACTIONS(673), 1, anon_sym_LBRACK, - ACTIONS(690), 1, + ACTIONS(675), 1, anon_sym_LT_LT, - ACTIONS(692), 1, + ACTIONS(677), 1, anon_sym_DASH, - ACTIONS(698), 1, + ACTIONS(679), 1, + anon_sym_DQUOTE, + ACTIONS(681), 1, + sym_float, + ACTIONS(685), 1, sym__decimal, - ACTIONS(700), 1, + ACTIONS(687), 1, sym__discard_name, - ACTIONS(702), 1, + ACTIONS(689), 1, sym__name, - ACTIONS(704), 1, + ACTIONS(691), 1, sym__upname, - ACTIONS(812), 1, + ACTIONS(828), 1, anon_sym_if, - STATE(655), 1, + STATE(671), 1, sym__pattern, - STATE(687), 1, + STATE(705), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(694), 2, - sym_string, - sym_float, - ACTIONS(814), 2, + ACTIONS(830), 2, anon_sym_DASH_GT, anon_sym_PIPE, - STATE(494), 2, + STATE(503), 2, sym_type_identifier, sym_remote_type_identifier, - ACTIONS(696), 3, + ACTIONS(683), 3, sym__hex, sym__octal, sym__binary, - STATE(703), 6, + STATE(707), 7, sym_record_pattern, sym_tuple_pattern, sym__pattern_bit_string, sym_list_pattern, + sym_string, sym_integer, sym_discard, - [23936] = 17, + [24888] = 20, ACTIONS(3), 1, sym_module_comment, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_DASH, - ACTIONS(59), 1, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(57), 1, sym__decimal, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(300), 1, + ACTIONS(269), 1, sym__name, - ACTIONS(776), 1, - anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(671), 1, anon_sym_POUND, - ACTIONS(780), 1, + ACTIONS(673), 1, anon_sym_LBRACK, - ACTIONS(782), 1, + ACTIONS(675), 1, anon_sym_LT_LT, - STATE(458), 1, - sym__case_clause_tuple_access, - STATE(463), 1, + ACTIONS(687), 1, + sym__discard_name, + ACTIONS(744), 1, + sym_float, + ACTIONS(806), 1, + anon_sym_DOT_DOT, + ACTIONS(832), 1, + anon_sym_RBRACK, + STATE(579), 1, sym_identifier, - STATE(473), 1, - sym__case_clause_guard_binary_expression, + STATE(706), 1, + sym__pattern, + STATE(1007), 1, + sym_list_pattern_tail, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(816), 2, - sym_string, - sym_float, - STATE(315), 2, + STATE(503), 2, sym_type_identifier, sym_remote_type_identifier, - ACTIONS(57), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(496), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym__case_clause_guard_expression, - sym__case_clause_guard_unit, + STATE(646), 7, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_string, sym_integer, - [24000] = 16, + sym_discard, + [24959] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(648), 1, + ACTIONS(836), 1, + anon_sym_LPAREN, + STATE(372), 1, + sym_constant_record_arguments, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(838), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(834), 21, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_COMMA, + anon_sym_pub, + anon_sym_const, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_external, + anon_sym_type, + anon_sym_fn, + anon_sym_DASH_GT, anon_sym_PIPE_PIPE, - ACTIONS(650), 1, anon_sym_AMP_AMP, - ACTIONS(658), 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, + [25002] = 19, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(671), 1, + anon_sym_POUND, + ACTIONS(673), 1, + anon_sym_LBRACK, + ACTIONS(675), 1, + anon_sym_LT_LT, + ACTIONS(677), 1, + anon_sym_DASH, + ACTIONS(679), 1, + anon_sym_DQUOTE, + ACTIONS(681), 1, + sym_float, + ACTIONS(685), 1, + sym__decimal, + ACTIONS(687), 1, + sym__discard_name, + ACTIONS(689), 1, + sym__name, + ACTIONS(691), 1, + sym__upname, + ACTIONS(840), 1, + anon_sym_if, + STATE(671), 1, + sym__pattern, + STATE(705), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(842), 2, + anon_sym_DASH_GT, + anon_sym_PIPE, + STATE(503), 2, + sym_type_identifier, + sym_remote_type_identifier, + ACTIONS(683), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(707), 7, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_string, + sym_integer, + sym_discard, + [25071] = 16, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(665), 1, anon_sym_PIPE_GT, - ACTIONS(818), 1, + ACTIONS(730), 1, + anon_sym_PIPE_PIPE, + ACTIONS(732), 1, + anon_sym_AMP_AMP, + ACTIONS(844), 1, anon_sym_COMMA, - ACTIONS(820), 1, + ACTIONS(846), 1, anon_sym_RBRACK, - ACTIONS(822), 1, + ACTIONS(848), 1, anon_sym_DOT_DOT, - STATE(725), 1, + STATE(737), 1, aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(644), 2, + ACTIONS(661), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(646), 2, + ACTIONS(663), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(652), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(660), 2, + ACTIONS(667), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(662), 3, + ACTIONS(734), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(669), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(654), 4, + ACTIONS(736), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(656), 4, + ACTIONS(738), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [24062] = 17, + [25133] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(41), 1, - anon_sym_DASH, - ACTIONS(59), 1, - sym__decimal, - ACTIONS(65), 1, - sym__upname, - ACTIONS(300), 1, - sym__name, - ACTIONS(776), 1, - anon_sym_LBRACE, - ACTIONS(778), 1, - anon_sym_POUND, - ACTIONS(780), 1, - anon_sym_LBRACK, - ACTIONS(782), 1, - anon_sym_LT_LT, - STATE(458), 1, - sym__case_clause_tuple_access, - STATE(463), 1, - sym_identifier, - STATE(473), 1, - sym__case_clause_guard_binary_expression, + ACTIONS(665), 1, + anon_sym_PIPE_GT, + ACTIONS(730), 1, + anon_sym_PIPE_PIPE, + ACTIONS(732), 1, + anon_sym_AMP_AMP, + ACTIONS(850), 1, + anon_sym_COMMA, + ACTIONS(852), 1, + anon_sym_RBRACK, + ACTIONS(854), 1, + anon_sym_DOT_DOT, + STATE(767), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(824), 2, - sym_string, - sym_float, - STATE(315), 2, - sym_type_identifier, - sym_remote_type_identifier, - ACTIONS(57), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(495), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym__case_clause_guard_expression, - sym__case_clause_guard_unit, - sym_integer, - [24126] = 16, + ACTIONS(661), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(663), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(667), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(734), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(669), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(736), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(738), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [25195] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(648), 1, + ACTIONS(665), 1, + anon_sym_PIPE_GT, + ACTIONS(730), 1, anon_sym_PIPE_PIPE, - ACTIONS(650), 1, + ACTIONS(732), 1, anon_sym_AMP_AMP, - ACTIONS(658), 1, - anon_sym_PIPE_GT, - ACTIONS(826), 1, + ACTIONS(856), 1, anon_sym_COMMA, - ACTIONS(828), 1, + ACTIONS(858), 1, anon_sym_RBRACK, - ACTIONS(830), 1, + ACTIONS(860), 1, anon_sym_DOT_DOT, - STATE(719), 1, + STATE(748), 1, aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(644), 2, + ACTIONS(661), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(646), 2, + ACTIONS(663), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(652), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(660), 2, + ACTIONS(667), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(662), 3, + ACTIONS(734), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(669), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(654), 4, + ACTIONS(736), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(656), 4, + ACTIONS(738), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [24188] = 19, + [25257] = 19, ACTIONS(3), 1, sym_module_comment, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_DASH, - ACTIONS(59), 1, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(57), 1, sym__decimal, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(300), 1, + ACTIONS(269), 1, sym__name, - ACTIONS(686), 1, + ACTIONS(671), 1, anon_sym_POUND, - ACTIONS(688), 1, + ACTIONS(673), 1, anon_sym_LBRACK, - ACTIONS(690), 1, + ACTIONS(675), 1, anon_sym_LT_LT, - ACTIONS(700), 1, + ACTIONS(687), 1, sym__discard_name, - ACTIONS(788), 1, - anon_sym_DOT_DOT, - ACTIONS(832), 1, - anon_sym_RBRACK, - STATE(566), 1, + ACTIONS(744), 1, + sym_float, + ACTIONS(862), 1, + anon_sym_GT_GT, + STATE(579), 1, sym_identifier, - STATE(655), 1, + STATE(815), 1, sym__pattern, - STATE(996), 1, - sym_list_pattern_tail, + STATE(964), 1, + sym_pattern_bit_string_segment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(710), 2, - sym_string, - sym_float, - STATE(494), 2, + STATE(503), 2, sym_type_identifier, sym_remote_type_identifier, - ACTIONS(57), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(606), 6, + STATE(646), 7, sym_record_pattern, sym_tuple_pattern, sym__pattern_bit_string, sym_list_pattern, + sym_string, sym_integer, sym_discard, - [24256] = 17, + [25325] = 19, ACTIONS(3), 1, sym_module_comment, - ACTIONS(692), 1, + ACTIONS(37), 1, anon_sym_DASH, - ACTIONS(698), 1, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(57), 1, sym__decimal, - ACTIONS(702), 1, - sym__name, - ACTIONS(704), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(776), 1, - anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(269), 1, + sym__name, + ACTIONS(671), 1, anon_sym_POUND, - ACTIONS(780), 1, + ACTIONS(673), 1, anon_sym_LBRACK, - ACTIONS(782), 1, + ACTIONS(675), 1, anon_sym_LT_LT, - STATE(458), 1, - sym__case_clause_tuple_access, - STATE(468), 1, + ACTIONS(687), 1, + sym__discard_name, + ACTIONS(744), 1, + sym_float, + ACTIONS(864), 1, + anon_sym_GT_GT, + STATE(579), 1, sym_identifier, - STATE(473), 1, - sym__case_clause_guard_binary_expression, + STATE(815), 1, + sym__pattern, + STATE(964), 1, + sym_pattern_bit_string_segment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(834), 2, - sym_string, - sym_float, - STATE(315), 2, + STATE(503), 2, sym_type_identifier, sym_remote_type_identifier, - ACTIONS(696), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(474), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym__case_clause_guard_expression, - sym__case_clause_guard_unit, + STATE(646), 7, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_string, sym_integer, - [24320] = 17, + sym_discard, + [25393] = 19, ACTIONS(3), 1, sym_module_comment, - ACTIONS(692), 1, + ACTIONS(37), 1, anon_sym_DASH, - ACTIONS(698), 1, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(57), 1, sym__decimal, - ACTIONS(702), 1, - sym__name, - ACTIONS(704), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(776), 1, - anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(269), 1, + sym__name, + ACTIONS(671), 1, anon_sym_POUND, - ACTIONS(780), 1, + ACTIONS(673), 1, anon_sym_LBRACK, - ACTIONS(782), 1, + ACTIONS(675), 1, anon_sym_LT_LT, - STATE(458), 1, - sym__case_clause_tuple_access, - STATE(468), 1, + ACTIONS(687), 1, + sym__discard_name, + ACTIONS(744), 1, + sym_float, + ACTIONS(866), 1, + anon_sym_GT_GT, + STATE(579), 1, sym_identifier, - STATE(473), 1, - sym__case_clause_guard_binary_expression, + STATE(814), 1, + sym_pattern_bit_string_segment, + STATE(815), 1, + sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(836), 2, - sym_string, - sym_float, - STATE(315), 2, + STATE(503), 2, sym_type_identifier, sym_remote_type_identifier, - ACTIONS(696), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(490), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym__case_clause_guard_expression, - sym__case_clause_guard_unit, + STATE(646), 7, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_string, sym_integer, - [24384] = 17, + sym_discard, + [25461] = 19, ACTIONS(3), 1, sym_module_comment, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_DASH, - ACTIONS(59), 1, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(57), 1, sym__decimal, - ACTIONS(65), 1, - sym__upname, - ACTIONS(300), 1, + ACTIONS(61), 1, sym__name, - ACTIONS(776), 1, - anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(63), 1, + sym__upname, + ACTIONS(671), 1, anon_sym_POUND, - ACTIONS(780), 1, + ACTIONS(673), 1, anon_sym_LBRACK, - ACTIONS(782), 1, + ACTIONS(675), 1, anon_sym_LT_LT, - STATE(458), 1, - sym__case_clause_tuple_access, - STATE(463), 1, - sym_identifier, - STATE(473), 1, - sym__case_clause_guard_binary_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(834), 2, - sym_string, + ACTIONS(687), 1, + sym__discard_name, + ACTIONS(744), 1, sym_float, - STATE(315), 2, - sym_type_identifier, - sym_remote_type_identifier, - ACTIONS(57), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(474), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym__case_clause_guard_expression, - sym__case_clause_guard_unit, - sym_integer, - [24448] = 17, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(692), 1, - anon_sym_DASH, - ACTIONS(698), 1, - sym__decimal, - ACTIONS(702), 1, - sym__name, - ACTIONS(704), 1, - sym__upname, - ACTIONS(776), 1, - anon_sym_LBRACE, - ACTIONS(778), 1, - anon_sym_POUND, - ACTIONS(780), 1, - anon_sym_LBRACK, - ACTIONS(782), 1, - anon_sym_LT_LT, - STATE(458), 1, - sym__case_clause_tuple_access, - STATE(468), 1, + STATE(579), 1, sym_identifier, - STATE(473), 1, - sym__case_clause_guard_binary_expression, + STATE(772), 1, + sym__pattern, + STATE(802), 1, + sym_record_pattern_argument, + STATE(1045), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(838), 2, - sym_string, - sym_float, - STATE(315), 2, + STATE(503), 2, sym_type_identifier, sym_remote_type_identifier, - ACTIONS(696), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(483), 8, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym__case_clause_guard_expression, - sym__case_clause_guard_unit, + STATE(646), 7, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_string, sym_integer, - [24512] = 15, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(648), 1, - anon_sym_PIPE_PIPE, - ACTIONS(650), 1, - anon_sym_AMP_AMP, - ACTIONS(658), 1, - anon_sym_PIPE_GT, - ACTIONS(840), 1, - anon_sym_COMMA, - ACTIONS(842), 1, - anon_sym_RPAREN, - STATE(785), 1, - aux_sym_tuple_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(644), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(646), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(652), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(660), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(662), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(654), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(656), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [24571] = 4, + sym_discard, + [25529] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(846), 4, + ACTIONS(870), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(844), 21, + ACTIONS(868), 21, anon_sym_RBRACE, anon_sym_import, anon_sym_COMMA, @@ -25347,98 +26287,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [24608] = 4, + [25566] = 18, ACTIONS(3), 1, sym_module_comment, + ACTIONS(37), 1, + anon_sym_DASH, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(57), 1, + sym__decimal, + ACTIONS(63), 1, + sym__upname, + ACTIONS(269), 1, + sym__name, + ACTIONS(671), 1, + anon_sym_POUND, + ACTIONS(673), 1, + anon_sym_LBRACK, + ACTIONS(675), 1, + anon_sym_LT_LT, + ACTIONS(687), 1, + sym__discard_name, + ACTIONS(744), 1, + sym_float, + STATE(579), 1, + sym_identifier, + STATE(815), 1, + sym__pattern, + STATE(964), 1, + sym_pattern_bit_string_segment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(850), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(848), 21, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_COMMA, - anon_sym_pub, - anon_sym_const, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [24645] = 18, + STATE(503), 2, + sym_type_identifier, + sym_remote_type_identifier, + ACTIONS(55), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(646), 7, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_string, + sym_integer, + sym_discard, + [25631] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_DASH, - ACTIONS(59), 1, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(57), 1, sym__decimal, ACTIONS(63), 1, - sym__name, - ACTIONS(65), 1, sym__upname, - ACTIONS(686), 1, + ACTIONS(269), 1, + sym__name, + ACTIONS(671), 1, anon_sym_POUND, - ACTIONS(688), 1, + ACTIONS(673), 1, anon_sym_LBRACK, - ACTIONS(690), 1, + ACTIONS(675), 1, anon_sym_LT_LT, - ACTIONS(700), 1, + ACTIONS(687), 1, sym__discard_name, - STATE(566), 1, + ACTIONS(744), 1, + sym_float, + ACTIONS(872), 1, + anon_sym_RPAREN, + STATE(579), 1, sym_identifier, - STATE(759), 1, - sym_record_pattern_argument, - STATE(861), 1, + STATE(777), 1, sym__pattern, - STATE(1045), 1, - sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(710), 2, - sym_string, - sym_float, - STATE(494), 2, + STATE(503), 2, sym_type_identifier, sym_remote_type_identifier, - ACTIONS(57), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(606), 6, + STATE(646), 7, sym_record_pattern, sym_tuple_pattern, sym__pattern_bit_string, sym_list_pattern, + sym_string, sym_integer, sym_discard, - [24710] = 4, + [25696] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(854), 4, + ACTIONS(876), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(852), 21, + ACTIONS(874), 21, anon_sym_RBRACE, anon_sym_import, anon_sym_COMMA, @@ -25460,159 +26414,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [24747] = 18, + [25733] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(41), 1, - anon_sym_DASH, - ACTIONS(59), 1, - sym__decimal, - ACTIONS(65), 1, - sym__upname, - ACTIONS(300), 1, - sym__name, - ACTIONS(686), 1, + ACTIONS(671), 1, anon_sym_POUND, - ACTIONS(688), 1, + ACTIONS(673), 1, anon_sym_LBRACK, - ACTIONS(690), 1, + ACTIONS(675), 1, anon_sym_LT_LT, - ACTIONS(700), 1, - sym__discard_name, - ACTIONS(856), 1, - anon_sym_GT_GT, - STATE(566), 1, - sym_identifier, - STATE(771), 1, - sym__pattern, - STATE(879), 1, - sym_pattern_bit_string_segment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(710), 2, - sym_string, - sym_float, - STATE(494), 2, - sym_type_identifier, - sym_remote_type_identifier, - ACTIONS(57), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(606), 6, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [24812] = 18, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(41), 1, + ACTIONS(677), 1, anon_sym_DASH, - ACTIONS(59), 1, + ACTIONS(679), 1, + anon_sym_DQUOTE, + ACTIONS(681), 1, + sym_float, + ACTIONS(685), 1, sym__decimal, - ACTIONS(65), 1, - sym__upname, - ACTIONS(300), 1, - sym__name, - ACTIONS(686), 1, - anon_sym_POUND, - ACTIONS(688), 1, - anon_sym_LBRACK, - ACTIONS(690), 1, - anon_sym_LT_LT, - ACTIONS(700), 1, + ACTIONS(687), 1, sym__discard_name, - ACTIONS(858), 1, - anon_sym_GT_GT, - STATE(566), 1, + ACTIONS(689), 1, + sym__name, + ACTIONS(691), 1, + sym__upname, + STATE(705), 1, sym_identifier, - STATE(771), 1, + STATE(712), 1, sym__pattern, - STATE(879), 1, - sym_pattern_bit_string_segment, + STATE(788), 1, + sym_case_clause_pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(710), 2, - sym_string, - sym_float, - STATE(494), 2, + STATE(503), 2, sym_type_identifier, sym_remote_type_identifier, - ACTIONS(57), 3, + ACTIONS(683), 3, sym__hex, sym__octal, sym__binary, - STATE(606), 6, + STATE(707), 7, sym_record_pattern, sym_tuple_pattern, sym__pattern_bit_string, sym_list_pattern, + sym_string, sym_integer, sym_discard, - [24877] = 18, + [25798] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(41), 1, + ACTIONS(61), 1, + sym__name, + ACTIONS(63), 1, + sym__upname, + ACTIONS(103), 1, anon_sym_DASH, - ACTIONS(59), 1, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(123), 1, sym__decimal, - ACTIONS(65), 1, - sym__upname, - ACTIONS(300), 1, - sym__name, - ACTIONS(686), 1, + ACTIONS(788), 1, anon_sym_POUND, - ACTIONS(688), 1, + ACTIONS(790), 1, anon_sym_LBRACK, - ACTIONS(690), 1, + ACTIONS(792), 1, anon_sym_LT_LT, - ACTIONS(700), 1, - sym__discard_name, - ACTIONS(860), 1, - anon_sym_GT_GT, - STATE(566), 1, + ACTIONS(878), 1, + anon_sym_RPAREN, + ACTIONS(880), 1, + sym_float, + STATE(877), 1, + sym_constant_record_argument, + STATE(1061), 1, sym_identifier, - STATE(771), 1, - sym__pattern, - STATE(773), 1, - sym_pattern_bit_string_segment, + STATE(1086), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(710), 2, - sym_string, - sym_float, - STATE(494), 2, + STATE(338), 2, sym_type_identifier, sym_remote_type_identifier, - ACTIONS(57), 3, + ACTIONS(121), 3, sym__hex, sym__octal, sym__binary, - STATE(606), 6, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, + STATE(910), 7, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_string, sym_integer, - sym_discard, - [24942] = 4, + [25863] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(864), 4, + ACTIONS(884), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(862), 21, + ACTIONS(882), 21, anon_sym_RBRACE, anon_sym_import, anon_sym_COMMA, @@ -25634,18 +26541,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [24979] = 4, + [25900] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, + ACTIONS(37), 1, + anon_sym_DASH, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(57), 1, + sym__decimal, + ACTIONS(63), 1, + sym__upname, + ACTIONS(269), 1, + sym__name, + ACTIONS(671), 1, + anon_sym_POUND, + ACTIONS(673), 1, + anon_sym_LBRACK, + ACTIONS(675), 1, + anon_sym_LT_LT, + ACTIONS(687), 1, + sym__discard_name, + ACTIONS(744), 1, + sym_float, + STATE(96), 1, + sym__assignment, + STATE(579), 1, + sym_identifier, + STATE(865), 1, + sym__pattern, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(503), 2, + sym_type_identifier, + sym_remote_type_identifier, + ACTIONS(55), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(646), 7, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_string, + sym_integer, + sym_discard, + [25965] = 15, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(665), 1, + anon_sym_PIPE_GT, + ACTIONS(730), 1, + anon_sym_PIPE_PIPE, + ACTIONS(732), 1, + anon_sym_AMP_AMP, + ACTIONS(886), 1, + anon_sym_LBRACE, + ACTIONS(888), 1, + anon_sym_COMMA, + STATE(810), 1, + aux_sym_tuple_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(661), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(663), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(667), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(734), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(669), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(736), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(738), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [26024] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, sym_comment, - ACTIONS(868), 4, + ACTIONS(892), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(866), 21, + ACTIONS(890), 21, anon_sym_RBRACE, anon_sym_import, anon_sym_COMMA, @@ -25667,18 +26665,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [25016] = 4, + [26061] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(872), 4, + ACTIONS(896), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(870), 21, + ACTIONS(894), 21, anon_sym_RBRACE, anon_sym_import, anon_sym_COMMA, @@ -25700,18 +26698,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [25053] = 4, + [26098] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(876), 4, + ACTIONS(900), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(874), 21, + ACTIONS(898), 21, anon_sym_RBRACE, anon_sym_import, anon_sym_COMMA, @@ -25733,62 +26731,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [25090] = 15, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(648), 1, - anon_sym_PIPE_PIPE, - ACTIONS(650), 1, - anon_sym_AMP_AMP, - ACTIONS(658), 1, - anon_sym_PIPE_GT, - ACTIONS(878), 1, - anon_sym_COMMA, - ACTIONS(880), 1, - anon_sym_RPAREN, - STATE(838), 1, - aux_sym_tuple_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(644), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(646), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(652), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(660), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(662), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(654), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(656), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [25149] = 4, + [26135] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(884), 4, + ACTIONS(904), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(882), 21, + ACTIONS(902), 21, anon_sym_RBRACE, anon_sym_import, anon_sym_COMMA, @@ -25810,62 +26764,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [25186] = 15, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(648), 1, - anon_sym_PIPE_PIPE, - ACTIONS(650), 1, - anon_sym_AMP_AMP, - ACTIONS(658), 1, - anon_sym_PIPE_GT, - ACTIONS(886), 1, - anon_sym_LBRACE, - ACTIONS(888), 1, - anon_sym_COMMA, - STATE(781), 1, - aux_sym_tuple_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(644), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(646), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(652), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(660), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(662), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(654), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(656), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [25245] = 4, + [26172] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(892), 4, + ACTIONS(908), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(890), 21, + ACTIONS(906), 21, anon_sym_RBRACE, anon_sym_import, anon_sym_COMMA, @@ -25887,18 +26797,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [25282] = 4, + [26209] = 18, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(37), 1, + anon_sym_DASH, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(57), 1, + sym__decimal, + ACTIONS(63), 1, + sym__upname, + ACTIONS(269), 1, + sym__name, + ACTIONS(671), 1, + anon_sym_POUND, + ACTIONS(673), 1, + anon_sym_LBRACK, + ACTIONS(675), 1, + anon_sym_LT_LT, + ACTIONS(687), 1, + sym__discard_name, + ACTIONS(744), 1, + sym_float, + STATE(97), 1, + sym__assignment, + STATE(579), 1, + sym_identifier, + STATE(865), 1, + sym__pattern, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(503), 2, + sym_type_identifier, + sym_remote_type_identifier, + ACTIONS(55), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(646), 7, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_string, + sym_integer, + sym_discard, + [26274] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(896), 4, + ACTIONS(912), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(894), 21, + ACTIONS(910), 21, anon_sym_RBRACE, anon_sym_import, anon_sym_COMMA, @@ -25920,18 +26877,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [25319] = 4, + [26311] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(900), 4, + ACTIONS(916), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(898), 21, + ACTIONS(914), 21, anon_sym_RBRACE, anon_sym_import, anon_sym_COMMA, @@ -25953,18 +26910,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [25356] = 4, + [26348] = 18, ACTIONS(3), 1, sym_module_comment, + ACTIONS(61), 1, + sym__name, + ACTIONS(63), 1, + sym__upname, + ACTIONS(103), 1, + anon_sym_DASH, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(123), 1, + sym__decimal, + ACTIONS(788), 1, + anon_sym_POUND, + ACTIONS(790), 1, + anon_sym_LBRACK, + ACTIONS(792), 1, + anon_sym_LT_LT, + ACTIONS(880), 1, + sym_float, + ACTIONS(918), 1, + anon_sym_RPAREN, + STATE(887), 1, + sym_constant_record_argument, + STATE(1061), 1, + sym_identifier, + STATE(1086), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(904), 4, + STATE(338), 2, + sym_type_identifier, + sym_remote_type_identifier, + ACTIONS(121), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(910), 7, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_string, + sym_integer, + [26413] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(922), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(902), 21, + ACTIONS(920), 21, anon_sym_RBRACE, anon_sym_import, anon_sym_COMMA, @@ -25986,18 +26990,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [25393] = 4, + [26450] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(908), 4, + ACTIONS(926), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(906), 21, + ACTIONS(924), 21, anon_sym_RBRACE, anon_sym_import, anon_sym_COMMA, @@ -26019,95 +27023,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [25430] = 15, + [26487] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(648), 1, - anon_sym_PIPE_PIPE, - ACTIONS(650), 1, - anon_sym_AMP_AMP, - ACTIONS(658), 1, - anon_sym_PIPE_GT, - ACTIONS(910), 1, - anon_sym_COMMA, - ACTIONS(912), 1, - anon_sym_RPAREN, - STATE(807), 1, - aux_sym_tuple_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(644), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(646), 2, + ACTIONS(37), 1, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(652), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(660), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(662), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(654), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(656), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [25489] = 4, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(57), 1, + sym__decimal, + ACTIONS(63), 1, + sym__upname, + ACTIONS(269), 1, + sym__name, + ACTIONS(671), 1, + anon_sym_POUND, + ACTIONS(673), 1, + anon_sym_LBRACK, + ACTIONS(675), 1, + anon_sym_LT_LT, + ACTIONS(687), 1, + sym__discard_name, + ACTIONS(744), 1, + sym_float, + STATE(241), 1, + sym__assignment, + STATE(579), 1, + sym_identifier, + STATE(811), 1, + sym__pattern, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(503), 2, + sym_type_identifier, + sym_remote_type_identifier, + ACTIONS(55), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(646), 7, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_string, + sym_integer, + sym_discard, + [26552] = 18, ACTIONS(3), 1, sym_module_comment, + ACTIONS(37), 1, + anon_sym_DASH, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(57), 1, + sym__decimal, + ACTIONS(63), 1, + sym__upname, + ACTIONS(269), 1, + sym__name, + ACTIONS(671), 1, + anon_sym_POUND, + ACTIONS(673), 1, + anon_sym_LBRACK, + ACTIONS(675), 1, + anon_sym_LT_LT, + ACTIONS(687), 1, + sym__discard_name, + ACTIONS(744), 1, + sym_float, + STATE(239), 1, + sym__assignment, + STATE(579), 1, + sym_identifier, + STATE(811), 1, + sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(916), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(914), 21, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_COMMA, - anon_sym_pub, - anon_sym_const, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [25526] = 4, + STATE(503), 2, + sym_type_identifier, + sym_remote_type_identifier, + ACTIONS(55), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(646), 7, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_string, + sym_integer, + sym_discard, + [26617] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(920), 4, + ACTIONS(930), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(918), 21, + ACTIONS(928), 21, anon_sym_RBRACE, anon_sym_import, anon_sym_COMMA, @@ -26129,18 +27150,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [25563] = 4, + [26654] = 18, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(37), 1, + anon_sym_DASH, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(57), 1, + sym__decimal, + ACTIONS(63), 1, + sym__upname, + ACTIONS(269), 1, + sym__name, + ACTIONS(671), 1, + anon_sym_POUND, + ACTIONS(673), 1, + anon_sym_LBRACK, + ACTIONS(675), 1, + anon_sym_LT_LT, + ACTIONS(687), 1, + sym__discard_name, + ACTIONS(744), 1, + sym_float, + STATE(96), 1, + sym__assignment, + STATE(579), 1, + sym_identifier, + STATE(850), 1, + sym__pattern, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(503), 2, + sym_type_identifier, + sym_remote_type_identifier, + ACTIONS(55), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(646), 7, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_string, + sym_integer, + sym_discard, + [26719] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(924), 4, + ACTIONS(934), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(922), 21, + ACTIONS(932), 21, anon_sym_RBRACE, anon_sym_import, anon_sym_COMMA, @@ -26162,18 +27230,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [25600] = 4, + [26756] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(928), 4, + ACTIONS(938), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(926), 21, + ACTIONS(936), 21, anon_sym_RBRACE, anon_sym_import, anon_sym_COMMA, @@ -26195,2751 +27263,2577 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [25637] = 17, + [26793] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_DASH, - ACTIONS(59), 1, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(57), 1, sym__decimal, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(300), 1, + ACTIONS(269), 1, sym__name, - ACTIONS(686), 1, + ACTIONS(671), 1, anon_sym_POUND, - ACTIONS(688), 1, + ACTIONS(673), 1, anon_sym_LBRACK, - ACTIONS(690), 1, + ACTIONS(675), 1, anon_sym_LT_LT, - ACTIONS(700), 1, + ACTIONS(687), 1, sym__discard_name, - STATE(223), 1, + ACTIONS(744), 1, + sym_float, + STATE(315), 1, sym__assignment, - STATE(566), 1, + STATE(579), 1, sym_identifier, - STATE(789), 1, + STATE(865), 1, sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(710), 2, - sym_string, - sym_float, - STATE(494), 2, + STATE(503), 2, sym_type_identifier, sym_remote_type_identifier, - ACTIONS(57), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(606), 6, + STATE(646), 7, sym_record_pattern, sym_tuple_pattern, sym__pattern_bit_string, sym_list_pattern, + sym_string, sym_integer, sym_discard, - [25699] = 13, + [26858] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(648), 1, + ACTIONS(665), 1, + anon_sym_PIPE_GT, + ACTIONS(730), 1, anon_sym_PIPE_PIPE, - ACTIONS(650), 1, + ACTIONS(732), 1, anon_sym_AMP_AMP, - ACTIONS(658), 1, - anon_sym_PIPE_GT, + ACTIONS(940), 1, + anon_sym_COMMA, + ACTIONS(942), 1, + anon_sym_RPAREN, + STATE(794), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(644), 2, + ACTIONS(661), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(646), 2, + ACTIONS(663), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(652), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(660), 2, + ACTIONS(667), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(930), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(662), 3, + ACTIONS(734), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(669), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(654), 4, + ACTIONS(736), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(656), 4, + ACTIONS(738), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [25753] = 17, + [26917] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(63), 1, + ACTIONS(61), 1, sym__name, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(116), 1, + ACTIONS(103), 1, anon_sym_DASH, - ACTIONS(134), 1, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(123), 1, sym__decimal, - ACTIONS(778), 1, + ACTIONS(788), 1, anon_sym_POUND, - ACTIONS(780), 1, + ACTIONS(790), 1, anon_sym_LBRACK, - ACTIONS(782), 1, + ACTIONS(792), 1, anon_sym_LT_LT, - ACTIONS(932), 1, + ACTIONS(880), 1, + sym_float, + ACTIONS(944), 1, anon_sym_RPAREN, - STATE(961), 1, + STATE(933), 1, sym_constant_record_argument, - STATE(987), 1, + STATE(1061), 1, sym_identifier, - STATE(1058), 1, + STATE(1086), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(934), 2, - sym_string, - sym_float, - STATE(315), 2, + STATE(338), 2, sym_type_identifier, sym_remote_type_identifier, - ACTIONS(132), 3, + ACTIONS(121), 3, sym__hex, sym__octal, sym__binary, - STATE(908), 6, + STATE(910), 7, sym__constant_value, sym_constant_tuple, sym_constant_list, sym__constant_bit_string, sym_constant_record, + sym_string, sym_integer, - [25815] = 17, + [26982] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(41), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(948), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(946), 21, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_COMMA, + anon_sym_pub, + anon_sym_const, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_external, + anon_sym_type, + anon_sym_fn, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [27019] = 18, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(37), 1, anon_sym_DASH, - ACTIONS(59), 1, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(57), 1, sym__decimal, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(300), 1, + ACTIONS(269), 1, sym__name, - ACTIONS(686), 1, + ACTIONS(671), 1, anon_sym_POUND, - ACTIONS(688), 1, + ACTIONS(673), 1, anon_sym_LBRACK, - ACTIONS(690), 1, + ACTIONS(675), 1, anon_sym_LT_LT, - ACTIONS(700), 1, + ACTIONS(687), 1, sym__discard_name, - ACTIONS(936), 1, - anon_sym_RPAREN, - STATE(566), 1, + ACTIONS(744), 1, + sym_float, + STATE(317), 1, + sym__assignment, + STATE(579), 1, sym_identifier, - STATE(655), 1, + STATE(865), 1, sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(710), 2, - sym_string, - sym_float, - STATE(494), 2, + STATE(503), 2, sym_type_identifier, sym_remote_type_identifier, - ACTIONS(57), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(606), 6, + STATE(646), 7, sym_record_pattern, sym_tuple_pattern, sym__pattern_bit_string, sym_list_pattern, + sym_string, sym_integer, sym_discard, - [25877] = 17, + [27084] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(63), 1, - sym__name, - ACTIONS(65), 1, - sym__upname, - ACTIONS(116), 1, + ACTIONS(37), 1, anon_sym_DASH, - ACTIONS(134), 1, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(57), 1, sym__decimal, - ACTIONS(778), 1, + ACTIONS(63), 1, + sym__upname, + ACTIONS(269), 1, + sym__name, + ACTIONS(671), 1, anon_sym_POUND, - ACTIONS(780), 1, + ACTIONS(673), 1, anon_sym_LBRACK, - ACTIONS(782), 1, + ACTIONS(675), 1, anon_sym_LT_LT, - ACTIONS(938), 1, - anon_sym_RPAREN, - STATE(961), 1, - sym_constant_record_argument, - STATE(987), 1, + ACTIONS(687), 1, + sym__discard_name, + ACTIONS(744), 1, + sym_float, + STATE(97), 1, + sym__assignment, + STATE(579), 1, sym_identifier, - STATE(1058), 1, - sym_label, + STATE(850), 1, + sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(934), 2, - sym_string, - sym_float, - STATE(315), 2, + STATE(503), 2, sym_type_identifier, sym_remote_type_identifier, - ACTIONS(132), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(908), 6, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, + STATE(646), 7, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_string, sym_integer, - [25939] = 17, + sym_discard, + [27149] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(63), 1, - sym__name, - ACTIONS(65), 1, - sym__upname, - ACTIONS(116), 1, + ACTIONS(37), 1, anon_sym_DASH, - ACTIONS(134), 1, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(57), 1, sym__decimal, - ACTIONS(778), 1, + ACTIONS(63), 1, + sym__upname, + ACTIONS(269), 1, + sym__name, + ACTIONS(671), 1, anon_sym_POUND, - ACTIONS(780), 1, + ACTIONS(673), 1, anon_sym_LBRACK, - ACTIONS(782), 1, + ACTIONS(675), 1, anon_sym_LT_LT, - ACTIONS(940), 1, + ACTIONS(687), 1, + sym__discard_name, + ACTIONS(744), 1, + sym_float, + ACTIONS(950), 1, anon_sym_RPAREN, - STATE(820), 1, - sym_constant_record_argument, - STATE(987), 1, + STATE(579), 1, sym_identifier, - STATE(1058), 1, - sym_label, + STATE(671), 1, + sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(934), 2, - sym_string, - sym_float, - STATE(315), 2, + STATE(503), 2, sym_type_identifier, sym_remote_type_identifier, - ACTIONS(132), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(908), 6, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, + STATE(646), 7, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_string, sym_integer, - [26001] = 17, + sym_discard, + [27214] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(41), 1, + ACTIONS(61), 1, + sym__name, + ACTIONS(63), 1, + sym__upname, + ACTIONS(103), 1, anon_sym_DASH, - ACTIONS(59), 1, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(123), 1, sym__decimal, - ACTIONS(65), 1, - sym__upname, - ACTIONS(300), 1, - sym__name, - ACTIONS(686), 1, + ACTIONS(788), 1, anon_sym_POUND, - ACTIONS(688), 1, + ACTIONS(790), 1, anon_sym_LBRACK, - ACTIONS(690), 1, + ACTIONS(792), 1, anon_sym_LT_LT, - ACTIONS(700), 1, - sym__discard_name, - STATE(566), 1, + ACTIONS(880), 1, + sym_float, + ACTIONS(952), 1, + anon_sym_RPAREN, + STATE(933), 1, + sym_constant_record_argument, + STATE(1061), 1, sym_identifier, - STATE(771), 1, - sym__pattern, - STATE(879), 1, - sym_pattern_bit_string_segment, + STATE(1086), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(710), 2, - sym_string, - sym_float, - STATE(494), 2, + STATE(338), 2, sym_type_identifier, sym_remote_type_identifier, - ACTIONS(57), 3, + ACTIONS(121), 3, sym__hex, sym__octal, sym__binary, - STATE(606), 6, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, + STATE(910), 7, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_string, sym_integer, - sym_discard, - [26063] = 17, + [27279] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(41), 1, + ACTIONS(61), 1, + sym__name, + ACTIONS(63), 1, + sym__upname, + ACTIONS(103), 1, anon_sym_DASH, - ACTIONS(59), 1, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(123), 1, sym__decimal, - ACTIONS(65), 1, - sym__upname, - ACTIONS(300), 1, - sym__name, - ACTIONS(686), 1, + ACTIONS(788), 1, anon_sym_POUND, - ACTIONS(688), 1, + ACTIONS(790), 1, anon_sym_LBRACK, - ACTIONS(690), 1, + ACTIONS(792), 1, anon_sym_LT_LT, - ACTIONS(700), 1, - sym__discard_name, - STATE(84), 1, - sym__assignment, - STATE(566), 1, + ACTIONS(880), 1, + sym_float, + ACTIONS(954), 1, + anon_sym_RPAREN, + STATE(933), 1, + sym_constant_record_argument, + STATE(1061), 1, sym_identifier, - STATE(809), 1, - sym__pattern, + STATE(1086), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(710), 2, - sym_string, - sym_float, - STATE(494), 2, + STATE(338), 2, sym_type_identifier, sym_remote_type_identifier, - ACTIONS(57), 3, + ACTIONS(121), 3, sym__hex, sym__octal, sym__binary, - STATE(606), 6, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, + STATE(910), 7, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_string, sym_integer, - sym_discard, - [26125] = 17, + [27344] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_DASH, - ACTIONS(59), 1, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(57), 1, sym__decimal, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(300), 1, + ACTIONS(269), 1, sym__name, - ACTIONS(686), 1, + ACTIONS(671), 1, anon_sym_POUND, - ACTIONS(688), 1, + ACTIONS(673), 1, anon_sym_LBRACK, - ACTIONS(690), 1, + ACTIONS(675), 1, anon_sym_LT_LT, - ACTIONS(700), 1, + ACTIONS(687), 1, sym__discard_name, - STATE(225), 1, - sym__assignment, - STATE(566), 1, + ACTIONS(744), 1, + sym_float, + ACTIONS(956), 1, + anon_sym_RPAREN, + STATE(579), 1, sym_identifier, - STATE(789), 1, + STATE(671), 1, sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(710), 2, - sym_string, - sym_float, - STATE(494), 2, + STATE(503), 2, sym_type_identifier, sym_remote_type_identifier, - ACTIONS(57), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(606), 6, + STATE(646), 7, sym_record_pattern, sym_tuple_pattern, sym__pattern_bit_string, sym_list_pattern, + sym_string, sym_integer, sym_discard, - [26187] = 17, + [27409] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(41), 1, + ACTIONS(61), 1, + sym__name, + ACTIONS(63), 1, + sym__upname, + ACTIONS(103), 1, anon_sym_DASH, - ACTIONS(59), 1, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(123), 1, sym__decimal, - ACTIONS(65), 1, - sym__upname, - ACTIONS(300), 1, - sym__name, - ACTIONS(686), 1, + ACTIONS(788), 1, anon_sym_POUND, - ACTIONS(688), 1, + ACTIONS(790), 1, anon_sym_LBRACK, - ACTIONS(690), 1, + ACTIONS(792), 1, anon_sym_LT_LT, - ACTIONS(700), 1, - sym__discard_name, - STATE(300), 1, - sym__assignment, - STATE(566), 1, + ACTIONS(880), 1, + sym_float, + ACTIONS(958), 1, + anon_sym_RPAREN, + STATE(933), 1, + sym_constant_record_argument, + STATE(1061), 1, sym_identifier, - STATE(844), 1, - sym__pattern, + STATE(1086), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(710), 2, - sym_string, - sym_float, - STATE(494), 2, + STATE(338), 2, sym_type_identifier, sym_remote_type_identifier, - ACTIONS(57), 3, + ACTIONS(121), 3, sym__hex, sym__octal, sym__binary, - STATE(606), 6, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, + STATE(910), 7, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_string, sym_integer, - sym_discard, - [26249] = 13, + [27474] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(648), 1, + ACTIONS(665), 1, + anon_sym_PIPE_GT, + ACTIONS(730), 1, anon_sym_PIPE_PIPE, - ACTIONS(650), 1, + ACTIONS(732), 1, anon_sym_AMP_AMP, - ACTIONS(658), 1, - anon_sym_PIPE_GT, + ACTIONS(960), 1, + anon_sym_COMMA, + ACTIONS(962), 1, + anon_sym_RPAREN, + STATE(840), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(644), 2, + ACTIONS(661), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(646), 2, + ACTIONS(663), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(652), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(660), 2, + ACTIONS(667), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(942), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(662), 3, + ACTIONS(734), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(669), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(654), 4, + ACTIONS(736), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(656), 4, + ACTIONS(738), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [26303] = 17, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(686), 1, - anon_sym_POUND, - ACTIONS(688), 1, - anon_sym_LBRACK, - ACTIONS(690), 1, - anon_sym_LT_LT, - ACTIONS(692), 1, - anon_sym_DASH, - ACTIONS(698), 1, - sym__decimal, - ACTIONS(700), 1, - sym__discard_name, - ACTIONS(702), 1, - sym__name, - ACTIONS(704), 1, - sym__upname, - STATE(687), 1, - sym_identifier, - STATE(700), 1, - sym__pattern, - STATE(749), 1, - sym_case_clause_pattern, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(694), 2, - sym_string, - sym_float, - STATE(494), 2, - sym_type_identifier, - sym_remote_type_identifier, - ACTIONS(696), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(703), 6, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [26365] = 17, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(63), 1, - sym__name, - ACTIONS(65), 1, - sym__upname, - ACTIONS(116), 1, - anon_sym_DASH, - ACTIONS(134), 1, - sym__decimal, - ACTIONS(778), 1, - anon_sym_POUND, - ACTIONS(780), 1, - anon_sym_LBRACK, - ACTIONS(782), 1, - anon_sym_LT_LT, - ACTIONS(944), 1, - anon_sym_RPAREN, - STATE(857), 1, - sym_constant_record_argument, - STATE(987), 1, - sym_identifier, - STATE(1058), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(934), 2, - sym_string, - sym_float, - STATE(315), 2, - sym_type_identifier, - sym_remote_type_identifier, - ACTIONS(132), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(908), 6, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_integer, - [26427] = 13, + [27533] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(648), 1, + ACTIONS(665), 1, + anon_sym_PIPE_GT, + ACTIONS(730), 1, anon_sym_PIPE_PIPE, - ACTIONS(650), 1, + ACTIONS(732), 1, anon_sym_AMP_AMP, - ACTIONS(658), 1, - anon_sym_PIPE_GT, + ACTIONS(964), 1, + anon_sym_COMMA, + ACTIONS(966), 1, + anon_sym_RPAREN, + STATE(783), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(644), 2, + ACTIONS(661), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(646), 2, + ACTIONS(663), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(652), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(660), 2, + ACTIONS(667), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(946), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(662), 3, + ACTIONS(734), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(669), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(654), 4, + ACTIONS(736), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(656), 4, + ACTIONS(738), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [26481] = 17, + [27592] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(41), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(970), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(968), 21, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_COMMA, + anon_sym_pub, + anon_sym_const, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_external, + anon_sym_type, + anon_sym_fn, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [27629] = 17, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(63), 1, + sym__upname, + ACTIONS(103), 1, anon_sym_DASH, - ACTIONS(59), 1, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(123), 1, sym__decimal, - ACTIONS(65), 1, - sym__upname, - ACTIONS(300), 1, + ACTIONS(269), 1, sym__name, - ACTIONS(686), 1, + ACTIONS(788), 1, anon_sym_POUND, - ACTIONS(688), 1, + ACTIONS(790), 1, anon_sym_LBRACK, - ACTIONS(690), 1, + ACTIONS(792), 1, anon_sym_LT_LT, - ACTIONS(700), 1, - sym__discard_name, - STATE(85), 1, - sym__assignment, - STATE(566), 1, + ACTIONS(972), 1, + anon_sym_GT_GT, + ACTIONS(974), 1, + sym_float, + STATE(973), 1, + sym_constant_bit_string_segment, + STATE(1061), 1, sym_identifier, - STATE(844), 1, - sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(710), 2, - sym_string, - sym_float, - STATE(494), 2, + STATE(338), 2, sym_type_identifier, sym_remote_type_identifier, - ACTIONS(57), 3, + ACTIONS(121), 3, sym__hex, sym__octal, sym__binary, - STATE(606), 6, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, + STATE(827), 7, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_string, sym_integer, - sym_discard, - [26543] = 17, + [27691] = 17, ACTIONS(3), 1, sym_module_comment, - ACTIONS(41), 1, - anon_sym_DASH, - ACTIONS(59), 1, - sym__decimal, - ACTIONS(65), 1, - sym__upname, - ACTIONS(300), 1, - sym__name, - ACTIONS(686), 1, + ACTIONS(671), 1, anon_sym_POUND, - ACTIONS(688), 1, + ACTIONS(673), 1, anon_sym_LBRACK, - ACTIONS(690), 1, + ACTIONS(675), 1, anon_sym_LT_LT, - ACTIONS(700), 1, + ACTIONS(677), 1, + anon_sym_DASH, + ACTIONS(679), 1, + anon_sym_DQUOTE, + ACTIONS(681), 1, + sym_float, + ACTIONS(685), 1, + sym__decimal, + ACTIONS(687), 1, sym__discard_name, - STATE(85), 1, - sym__assignment, - STATE(566), 1, - sym_identifier, - STATE(809), 1, + ACTIONS(689), 1, + sym__name, + ACTIONS(691), 1, + sym__upname, + STATE(671), 1, sym__pattern, + STATE(705), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(710), 2, - sym_string, - sym_float, - STATE(494), 2, + STATE(503), 2, sym_type_identifier, sym_remote_type_identifier, - ACTIONS(57), 3, + ACTIONS(683), 3, sym__hex, sym__octal, sym__binary, - STATE(606), 6, + STATE(707), 7, sym_record_pattern, sym_tuple_pattern, sym__pattern_bit_string, sym_list_pattern, + sym_string, sym_integer, sym_discard, - [26605] = 17, + [27753] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(41), 1, + ACTIONS(665), 1, + anon_sym_PIPE_GT, + ACTIONS(730), 1, + anon_sym_PIPE_PIPE, + ACTIONS(732), 1, + anon_sym_AMP_AMP, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(661), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(663), 2, anon_sym_DASH, - ACTIONS(59), 1, + anon_sym_PLUS, + ACTIONS(667), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(734), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(976), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(669), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(736), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(738), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [27807] = 17, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(37), 1, + anon_sym_DASH, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(57), 1, sym__decimal, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(300), 1, + ACTIONS(269), 1, sym__name, - ACTIONS(686), 1, + ACTIONS(671), 1, anon_sym_POUND, - ACTIONS(688), 1, + ACTIONS(673), 1, anon_sym_LBRACK, - ACTIONS(690), 1, + ACTIONS(675), 1, anon_sym_LT_LT, - ACTIONS(700), 1, + ACTIONS(687), 1, sym__discard_name, - ACTIONS(948), 1, - anon_sym_RPAREN, - STATE(566), 1, + ACTIONS(744), 1, + sym_float, + STATE(579), 1, sym_identifier, - STATE(869), 1, + STATE(789), 1, sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(710), 2, - sym_string, - sym_float, - STATE(494), 2, + STATE(503), 2, sym_type_identifier, sym_remote_type_identifier, - ACTIONS(57), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(606), 6, + STATE(646), 7, sym_record_pattern, sym_tuple_pattern, sym__pattern_bit_string, sym_list_pattern, + sym_string, sym_integer, sym_discard, - [26667] = 17, + [27869] = 17, ACTIONS(3), 1, sym_module_comment, ACTIONS(63), 1, - sym__name, - ACTIONS(65), 1, sym__upname, - ACTIONS(116), 1, + ACTIONS(103), 1, anon_sym_DASH, - ACTIONS(134), 1, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(123), 1, sym__decimal, - ACTIONS(778), 1, + ACTIONS(269), 1, + sym__name, + ACTIONS(788), 1, anon_sym_POUND, - ACTIONS(780), 1, + ACTIONS(790), 1, anon_sym_LBRACK, - ACTIONS(782), 1, + ACTIONS(792), 1, anon_sym_LT_LT, - ACTIONS(950), 1, - anon_sym_RPAREN, - STATE(961), 1, - sym_constant_record_argument, - STATE(987), 1, + ACTIONS(974), 1, + sym_float, + ACTIONS(978), 1, + anon_sym_GT_GT, + STATE(973), 1, + sym_constant_bit_string_segment, + STATE(1061), 1, sym_identifier, - STATE(1058), 1, - sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(934), 2, - sym_string, - sym_float, - STATE(315), 2, + STATE(338), 2, sym_type_identifier, sym_remote_type_identifier, - ACTIONS(132), 3, + ACTIONS(121), 3, sym__hex, sym__octal, sym__binary, - STATE(908), 6, + STATE(827), 7, sym__constant_value, sym_constant_tuple, sym_constant_list, sym__constant_bit_string, sym_constant_record, + sym_string, sym_integer, - [26729] = 17, + [27931] = 17, ACTIONS(3), 1, sym_module_comment, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_DASH, - ACTIONS(59), 1, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(57), 1, sym__decimal, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(300), 1, + ACTIONS(269), 1, sym__name, - ACTIONS(686), 1, + ACTIONS(671), 1, anon_sym_POUND, - ACTIONS(688), 1, + ACTIONS(673), 1, anon_sym_LBRACK, - ACTIONS(690), 1, + ACTIONS(675), 1, anon_sym_LT_LT, - ACTIONS(700), 1, + ACTIONS(687), 1, sym__discard_name, - STATE(299), 1, - sym__assignment, - STATE(566), 1, + ACTIONS(744), 1, + sym_float, + STATE(579), 1, sym_identifier, - STATE(844), 1, + STATE(671), 1, sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(710), 2, - sym_string, - sym_float, - STATE(494), 2, + STATE(503), 2, sym_type_identifier, sym_remote_type_identifier, - ACTIONS(57), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(606), 6, + STATE(646), 7, sym_record_pattern, sym_tuple_pattern, sym__pattern_bit_string, sym_list_pattern, + sym_string, sym_integer, sym_discard, - [26791] = 17, + [27993] = 17, ACTIONS(3), 1, sym_module_comment, - ACTIONS(41), 1, + ACTIONS(61), 1, + sym__name, + ACTIONS(63), 1, + sym__upname, + ACTIONS(103), 1, anon_sym_DASH, - ACTIONS(59), 1, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(123), 1, sym__decimal, - ACTIONS(65), 1, - sym__upname, - ACTIONS(300), 1, - sym__name, - ACTIONS(686), 1, + ACTIONS(788), 1, anon_sym_POUND, - ACTIONS(688), 1, + ACTIONS(790), 1, anon_sym_LBRACK, - ACTIONS(690), 1, + ACTIONS(792), 1, anon_sym_LT_LT, - ACTIONS(700), 1, - sym__discard_name, - STATE(84), 1, - sym__assignment, - STATE(566), 1, + ACTIONS(880), 1, + sym_float, + STATE(933), 1, + sym_constant_record_argument, + STATE(1061), 1, sym_identifier, - STATE(844), 1, - sym__pattern, + STATE(1086), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(710), 2, - sym_string, - sym_float, - STATE(494), 2, + STATE(338), 2, sym_type_identifier, sym_remote_type_identifier, - ACTIONS(57), 3, + ACTIONS(121), 3, sym__hex, sym__octal, sym__binary, - STATE(606), 6, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, + STATE(910), 7, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_string, sym_integer, - sym_discard, - [26853] = 17, + [28055] = 13, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(665), 1, + anon_sym_PIPE_GT, + ACTIONS(730), 1, + anon_sym_PIPE_PIPE, + ACTIONS(732), 1, + anon_sym_AMP_AMP, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(661), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(663), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(667), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(734), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(980), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(669), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(736), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(738), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [28109] = 17, ACTIONS(3), 1, sym_module_comment, ACTIONS(63), 1, - sym__name, - ACTIONS(65), 1, sym__upname, - ACTIONS(116), 1, + ACTIONS(103), 1, anon_sym_DASH, - ACTIONS(134), 1, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(123), 1, sym__decimal, - ACTIONS(778), 1, + ACTIONS(269), 1, + sym__name, + ACTIONS(788), 1, anon_sym_POUND, - ACTIONS(780), 1, + ACTIONS(790), 1, anon_sym_LBRACK, - ACTIONS(782), 1, + ACTIONS(792), 1, anon_sym_LT_LT, - ACTIONS(952), 1, - anon_sym_RPAREN, - STATE(961), 1, - sym_constant_record_argument, - STATE(987), 1, + ACTIONS(974), 1, + sym_float, + ACTIONS(982), 1, + anon_sym_GT_GT, + STATE(900), 1, + sym_constant_bit_string_segment, + STATE(1061), 1, sym_identifier, - STATE(1058), 1, - sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(934), 2, - sym_string, - sym_float, - STATE(315), 2, + STATE(338), 2, sym_type_identifier, sym_remote_type_identifier, - ACTIONS(132), 3, + ACTIONS(121), 3, sym__hex, sym__octal, sym__binary, - STATE(908), 6, + STATE(827), 7, sym__constant_value, sym_constant_tuple, sym_constant_list, sym__constant_bit_string, sym_constant_record, - sym_integer, - [26915] = 17, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(41), 1, - anon_sym_DASH, - ACTIONS(59), 1, - sym__decimal, - ACTIONS(65), 1, - sym__upname, - ACTIONS(300), 1, - sym__name, - ACTIONS(686), 1, - anon_sym_POUND, - ACTIONS(688), 1, - anon_sym_LBRACK, - ACTIONS(690), 1, - anon_sym_LT_LT, - ACTIONS(700), 1, - sym__discard_name, - ACTIONS(954), 1, - anon_sym_RPAREN, - STATE(566), 1, - sym_identifier, - STATE(655), 1, - sym__pattern, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(710), 2, sym_string, - sym_float, - STATE(494), 2, - sym_type_identifier, - sym_remote_type_identifier, - ACTIONS(57), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(606), 6, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, sym_integer, - sym_discard, - [26977] = 13, + [28171] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(648), 1, + ACTIONS(665), 1, + anon_sym_PIPE_GT, + ACTIONS(730), 1, anon_sym_PIPE_PIPE, - ACTIONS(650), 1, + ACTIONS(732), 1, anon_sym_AMP_AMP, - ACTIONS(658), 1, - anon_sym_PIPE_GT, - ACTIONS(956), 1, - anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(644), 2, + ACTIONS(661), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(646), 2, + ACTIONS(663), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(652), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(660), 2, + ACTIONS(667), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(662), 3, + ACTIONS(734), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(984), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(669), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(654), 4, + ACTIONS(736), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(656), 4, + ACTIONS(738), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [27030] = 16, + [28225] = 17, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(116), 1, + ACTIONS(103), 1, anon_sym_DASH, - ACTIONS(134), 1, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(123), 1, sym__decimal, - ACTIONS(300), 1, + ACTIONS(269), 1, sym__name, - ACTIONS(778), 1, + ACTIONS(788), 1, anon_sym_POUND, - ACTIONS(780), 1, + ACTIONS(790), 1, anon_sym_LBRACK, - ACTIONS(782), 1, + ACTIONS(792), 1, anon_sym_LT_LT, - ACTIONS(958), 1, + ACTIONS(974), 1, + sym_float, + ACTIONS(986), 1, anon_sym_GT_GT, - STATE(895), 1, + STATE(829), 1, sym_constant_bit_string_segment, - STATE(987), 1, + STATE(1061), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(960), 2, - sym_string, - sym_float, - STATE(315), 2, + STATE(338), 2, sym_type_identifier, sym_remote_type_identifier, - ACTIONS(132), 3, + ACTIONS(121), 3, sym__hex, sym__octal, sym__binary, - STATE(811), 6, + STATE(827), 7, sym__constant_value, sym_constant_tuple, sym_constant_list, sym__constant_bit_string, sym_constant_record, + sym_string, sym_integer, - [27089] = 16, + [28287] = 17, ACTIONS(3), 1, sym_module_comment, - ACTIONS(41), 1, + ACTIONS(63), 1, + sym__upname, + ACTIONS(103), 1, anon_sym_DASH, - ACTIONS(59), 1, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(123), 1, sym__decimal, - ACTIONS(65), 1, - sym__upname, - ACTIONS(300), 1, + ACTIONS(269), 1, sym__name, - ACTIONS(686), 1, + ACTIONS(788), 1, anon_sym_POUND, - ACTIONS(688), 1, + ACTIONS(790), 1, anon_sym_LBRACK, - ACTIONS(690), 1, + ACTIONS(792), 1, anon_sym_LT_LT, - ACTIONS(700), 1, - sym__discard_name, - STATE(566), 1, + ACTIONS(974), 1, + sym_float, + ACTIONS(988), 1, + anon_sym_GT_GT, + STATE(973), 1, + sym_constant_bit_string_segment, + STATE(1061), 1, sym_identifier, - STATE(655), 1, - sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(710), 2, - sym_string, - sym_float, - STATE(494), 2, + STATE(338), 2, sym_type_identifier, sym_remote_type_identifier, - ACTIONS(57), 3, + ACTIONS(121), 3, sym__hex, sym__octal, sym__binary, - STATE(606), 6, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, + STATE(827), 7, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_string, sym_integer, - sym_discard, - [27148] = 16, + [28349] = 17, ACTIONS(3), 1, sym_module_comment, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_DASH, - ACTIONS(59), 1, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(57), 1, sym__decimal, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(300), 1, + ACTIONS(269), 1, sym__name, - ACTIONS(686), 1, + ACTIONS(671), 1, anon_sym_POUND, - ACTIONS(688), 1, + ACTIONS(673), 1, anon_sym_LBRACK, - ACTIONS(690), 1, + ACTIONS(675), 1, anon_sym_LT_LT, - ACTIONS(700), 1, + ACTIONS(687), 1, sym__discard_name, - STATE(566), 1, + ACTIONS(744), 1, + sym_float, + STATE(579), 1, sym_identifier, - STATE(790), 1, + STATE(853), 1, sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(710), 2, - sym_string, - sym_float, - STATE(494), 2, + STATE(503), 2, sym_type_identifier, sym_remote_type_identifier, - ACTIONS(57), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(606), 6, + STATE(646), 7, sym_record_pattern, sym_tuple_pattern, sym__pattern_bit_string, sym_list_pattern, + sym_string, sym_integer, sym_discard, - [27207] = 13, + [28411] = 17, ACTIONS(3), 1, sym_module_comment, - ACTIONS(648), 1, - anon_sym_PIPE_PIPE, - ACTIONS(650), 1, - anon_sym_AMP_AMP, - ACTIONS(658), 1, - anon_sym_PIPE_GT, - ACTIONS(962), 1, - anon_sym_COMMA, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(644), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(646), 2, + ACTIONS(63), 1, + sym__upname, + ACTIONS(103), 1, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(652), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(660), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(662), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(654), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(656), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [27260] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(648), 1, - anon_sym_PIPE_PIPE, - ACTIONS(650), 1, - anon_sym_AMP_AMP, - ACTIONS(658), 1, - anon_sym_PIPE_GT, - ACTIONS(964), 1, - anon_sym_COMMA, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(123), 1, + sym__decimal, + ACTIONS(269), 1, + sym__name, + ACTIONS(788), 1, + anon_sym_POUND, + ACTIONS(790), 1, + anon_sym_LBRACK, + ACTIONS(792), 1, + anon_sym_LT_LT, + ACTIONS(974), 1, + sym_float, + ACTIONS(990), 1, + anon_sym_GT_GT, + STATE(973), 1, + sym_constant_bit_string_segment, + STATE(1061), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(644), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(646), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(652), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(660), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(662), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(654), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(656), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [27313] = 13, + STATE(338), 2, + sym_type_identifier, + sym_remote_type_identifier, + ACTIONS(121), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(827), 7, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_string, + sym_integer, + [28473] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(648), 1, - anon_sym_PIPE_PIPE, - ACTIONS(650), 1, - anon_sym_AMP_AMP, - ACTIONS(658), 1, - anon_sym_PIPE_GT, - ACTIONS(966), 1, - anon_sym_RBRACK, + ACTIONS(63), 1, + sym__upname, + ACTIONS(103), 1, + anon_sym_DASH, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(123), 1, + sym__decimal, + ACTIONS(269), 1, + sym__name, + ACTIONS(788), 1, + anon_sym_POUND, + ACTIONS(790), 1, + anon_sym_LBRACK, + ACTIONS(792), 1, + anon_sym_LT_LT, + ACTIONS(974), 1, + sym_float, + STATE(973), 1, + sym_constant_bit_string_segment, + STATE(1061), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(644), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(646), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(652), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(660), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(662), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(654), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(656), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [27366] = 13, + STATE(338), 2, + sym_type_identifier, + sym_remote_type_identifier, + ACTIONS(121), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(827), 7, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_string, + sym_integer, + [28532] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(648), 1, - anon_sym_PIPE_PIPE, - ACTIONS(650), 1, - anon_sym_AMP_AMP, - ACTIONS(658), 1, - anon_sym_PIPE_GT, - ACTIONS(968), 1, + ACTIONS(63), 1, + sym__upname, + ACTIONS(103), 1, + anon_sym_DASH, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(123), 1, + sym__decimal, + ACTIONS(269), 1, + sym__name, + ACTIONS(788), 1, + anon_sym_POUND, + ACTIONS(790), 1, + anon_sym_LBRACK, + ACTIONS(792), 1, + anon_sym_LT_LT, + ACTIONS(992), 1, anon_sym_RBRACK, + ACTIONS(994), 1, + sym_float, + STATE(1061), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(644), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(646), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(652), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(660), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(662), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(654), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(656), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [27419] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(648), 1, - anon_sym_PIPE_PIPE, - ACTIONS(650), 1, - anon_sym_AMP_AMP, - ACTIONS(658), 1, - anon_sym_PIPE_GT, - ACTIONS(970), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(644), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(646), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(652), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(660), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(662), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(654), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(656), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [27472] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(648), 1, - anon_sym_PIPE_PIPE, - ACTIONS(650), 1, - anon_sym_AMP_AMP, - ACTIONS(658), 1, - anon_sym_PIPE_GT, - ACTIONS(972), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(644), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(646), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(652), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(660), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(662), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(654), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(656), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [27525] = 16, + STATE(338), 2, + sym_type_identifier, + sym_remote_type_identifier, + ACTIONS(121), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(899), 7, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_string, + sym_integer, + [28591] = 16, ACTIONS(3), 1, sym_module_comment, ACTIONS(63), 1, - sym__name, - ACTIONS(65), 1, sym__upname, - ACTIONS(116), 1, + ACTIONS(103), 1, anon_sym_DASH, - ACTIONS(134), 1, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(123), 1, sym__decimal, - ACTIONS(778), 1, + ACTIONS(269), 1, + sym__name, + ACTIONS(788), 1, anon_sym_POUND, - ACTIONS(780), 1, + ACTIONS(790), 1, anon_sym_LBRACK, - ACTIONS(782), 1, + ACTIONS(792), 1, anon_sym_LT_LT, - STATE(961), 1, - sym_constant_record_argument, - STATE(987), 1, + ACTIONS(996), 1, + anon_sym_RBRACK, + ACTIONS(998), 1, + sym_float, + STATE(1061), 1, sym_identifier, - STATE(1058), 1, - sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(934), 2, - sym_string, - sym_float, - STATE(315), 2, + STATE(338), 2, sym_type_identifier, sym_remote_type_identifier, - ACTIONS(132), 3, + ACTIONS(121), 3, sym__hex, sym__octal, sym__binary, - STATE(908), 6, + STATE(843), 7, sym__constant_value, sym_constant_tuple, sym_constant_list, sym__constant_bit_string, sym_constant_record, + sym_string, sym_integer, - [27584] = 16, + [28650] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(41), 1, + ACTIONS(63), 1, + sym__upname, + ACTIONS(103), 1, anon_sym_DASH, - ACTIONS(59), 1, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(123), 1, sym__decimal, - ACTIONS(65), 1, - sym__upname, - ACTIONS(300), 1, + ACTIONS(269), 1, sym__name, - ACTIONS(686), 1, + ACTIONS(788), 1, anon_sym_POUND, - ACTIONS(688), 1, + ACTIONS(790), 1, anon_sym_LBRACK, - ACTIONS(690), 1, + ACTIONS(792), 1, anon_sym_LT_LT, - ACTIONS(700), 1, - sym__discard_name, - STATE(566), 1, + ACTIONS(998), 1, + sym_float, + ACTIONS(1000), 1, + anon_sym_RBRACK, + STATE(1061), 1, sym_identifier, - STATE(850), 1, - sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(710), 2, - sym_string, - sym_float, - STATE(494), 2, + STATE(338), 2, sym_type_identifier, sym_remote_type_identifier, - ACTIONS(57), 3, + ACTIONS(121), 3, sym__hex, sym__octal, sym__binary, - STATE(606), 6, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, + STATE(843), 7, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_string, sym_integer, - sym_discard, - [27643] = 13, + [28709] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(648), 1, + ACTIONS(665), 1, + anon_sym_PIPE_GT, + ACTIONS(730), 1, anon_sym_PIPE_PIPE, - ACTIONS(650), 1, + ACTIONS(732), 1, anon_sym_AMP_AMP, - ACTIONS(658), 1, - anon_sym_PIPE_GT, - ACTIONS(974), 1, - anon_sym_COMMA, + ACTIONS(1002), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(644), 2, + ACTIONS(661), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(646), 2, + ACTIONS(663), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(652), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(660), 2, + ACTIONS(667), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(662), 3, + ACTIONS(734), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(669), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(654), 4, + ACTIONS(736), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(656), 4, + ACTIONS(738), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [27696] = 16, + [28762] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(116), 1, + ACTIONS(103), 1, anon_sym_DASH, - ACTIONS(134), 1, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(123), 1, sym__decimal, - ACTIONS(300), 1, + ACTIONS(269), 1, sym__name, - ACTIONS(778), 1, + ACTIONS(788), 1, anon_sym_POUND, - ACTIONS(780), 1, + ACTIONS(790), 1, anon_sym_LBRACK, - ACTIONS(782), 1, + ACTIONS(792), 1, anon_sym_LT_LT, - ACTIONS(976), 1, - anon_sym_GT_GT, - STATE(810), 1, - sym_constant_bit_string_segment, - STATE(987), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(960), 2, - sym_string, + ACTIONS(998), 1, sym_float, - STATE(315), 2, - sym_type_identifier, - sym_remote_type_identifier, - ACTIONS(132), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(811), 6, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_integer, - [27755] = 16, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(65), 1, - sym__upname, - ACTIONS(116), 1, - anon_sym_DASH, - ACTIONS(134), 1, - sym__decimal, - ACTIONS(300), 1, - sym__name, - ACTIONS(778), 1, - anon_sym_POUND, - ACTIONS(780), 1, - anon_sym_LBRACK, - ACTIONS(782), 1, - anon_sym_LT_LT, - ACTIONS(978), 1, - anon_sym_GT_GT, - STATE(895), 1, - sym_constant_bit_string_segment, - STATE(987), 1, + ACTIONS(1004), 1, + anon_sym_RPAREN, + STATE(1061), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(960), 2, - sym_string, - sym_float, - STATE(315), 2, + STATE(338), 2, sym_type_identifier, sym_remote_type_identifier, - ACTIONS(132), 3, + ACTIONS(121), 3, sym__hex, sym__octal, sym__binary, - STATE(811), 6, + STATE(843), 7, sym__constant_value, sym_constant_tuple, sym_constant_list, sym__constant_bit_string, sym_constant_record, + sym_string, sym_integer, - [27814] = 16, + [28821] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(116), 1, + ACTIONS(103), 1, anon_sym_DASH, - ACTIONS(134), 1, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(123), 1, sym__decimal, - ACTIONS(300), 1, + ACTIONS(269), 1, sym__name, - ACTIONS(778), 1, + ACTIONS(788), 1, anon_sym_POUND, - ACTIONS(780), 1, + ACTIONS(790), 1, anon_sym_LBRACK, - ACTIONS(782), 1, + ACTIONS(792), 1, anon_sym_LT_LT, - ACTIONS(980), 1, - anon_sym_GT_GT, - STATE(870), 1, - sym_constant_bit_string_segment, - STATE(987), 1, + ACTIONS(1006), 1, + anon_sym_RBRACK, + ACTIONS(1008), 1, + sym_float, + STATE(1061), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(960), 2, - sym_string, - sym_float, - STATE(315), 2, + STATE(338), 2, sym_type_identifier, sym_remote_type_identifier, - ACTIONS(132), 3, + ACTIONS(121), 3, sym__hex, sym__octal, sym__binary, - STATE(811), 6, + STATE(825), 7, sym__constant_value, sym_constant_tuple, sym_constant_list, sym__constant_bit_string, sym_constant_record, + sym_string, sym_integer, - [27873] = 13, + [28880] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(648), 1, + ACTIONS(665), 1, + anon_sym_PIPE_GT, + ACTIONS(730), 1, anon_sym_PIPE_PIPE, - ACTIONS(650), 1, + ACTIONS(732), 1, anon_sym_AMP_AMP, - ACTIONS(658), 1, - anon_sym_PIPE_GT, - ACTIONS(982), 1, - anon_sym_RPAREN, + ACTIONS(1010), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(644), 2, + ACTIONS(661), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(646), 2, + ACTIONS(663), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(652), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(660), 2, + ACTIONS(667), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(662), 3, + ACTIONS(734), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(669), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(654), 4, + ACTIONS(736), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(656), 4, + ACTIONS(738), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [27926] = 16, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(686), 1, - anon_sym_POUND, - ACTIONS(688), 1, - anon_sym_LBRACK, - ACTIONS(690), 1, - anon_sym_LT_LT, - ACTIONS(692), 1, - anon_sym_DASH, - ACTIONS(698), 1, - sym__decimal, - ACTIONS(700), 1, - sym__discard_name, - ACTIONS(702), 1, - sym__name, - ACTIONS(704), 1, - sym__upname, - STATE(655), 1, - sym__pattern, - STATE(687), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(694), 2, - sym_string, - sym_float, - STATE(494), 2, - sym_type_identifier, - sym_remote_type_identifier, - ACTIONS(696), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(703), 6, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_integer, - sym_discard, - [27985] = 13, + [28933] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(648), 1, + ACTIONS(665), 1, + anon_sym_PIPE_GT, + ACTIONS(730), 1, anon_sym_PIPE_PIPE, - ACTIONS(650), 1, + ACTIONS(732), 1, anon_sym_AMP_AMP, - ACTIONS(658), 1, - anon_sym_PIPE_GT, - ACTIONS(984), 1, + ACTIONS(1012), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(644), 2, + ACTIONS(661), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(646), 2, + ACTIONS(663), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(652), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(660), 2, + ACTIONS(667), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(662), 3, + ACTIONS(734), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(669), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(654), 4, + ACTIONS(736), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(656), 4, + ACTIONS(738), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [28038] = 13, + [28986] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(648), 1, + ACTIONS(665), 1, + anon_sym_PIPE_GT, + ACTIONS(730), 1, anon_sym_PIPE_PIPE, - ACTIONS(650), 1, + ACTIONS(732), 1, anon_sym_AMP_AMP, - ACTIONS(658), 1, - anon_sym_PIPE_GT, - ACTIONS(986), 1, + ACTIONS(1014), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(644), 2, + ACTIONS(661), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(646), 2, + ACTIONS(663), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(652), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(660), 2, + ACTIONS(667), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(662), 3, + ACTIONS(734), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(669), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(654), 4, + ACTIONS(736), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(656), 4, + ACTIONS(738), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [28091] = 13, + [29039] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(648), 1, - anon_sym_PIPE_PIPE, - ACTIONS(650), 1, - anon_sym_AMP_AMP, - ACTIONS(658), 1, - anon_sym_PIPE_GT, - ACTIONS(988), 1, - anon_sym_RBRACK, + ACTIONS(63), 1, + sym__upname, + ACTIONS(103), 1, + anon_sym_DASH, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(123), 1, + sym__decimal, + ACTIONS(269), 1, + sym__name, + ACTIONS(788), 1, + anon_sym_POUND, + ACTIONS(790), 1, + anon_sym_LBRACK, + ACTIONS(792), 1, + anon_sym_LT_LT, + ACTIONS(1016), 1, + anon_sym_RPAREN, + ACTIONS(1018), 1, + sym_float, + STATE(1061), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(644), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(646), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(652), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(660), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(662), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(654), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(656), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [28144] = 13, + STATE(338), 2, + sym_type_identifier, + sym_remote_type_identifier, + ACTIONS(121), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(880), 7, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_string, + sym_integer, + [29098] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(648), 1, + ACTIONS(665), 1, + anon_sym_PIPE_GT, + ACTIONS(730), 1, anon_sym_PIPE_PIPE, - ACTIONS(650), 1, + ACTIONS(732), 1, anon_sym_AMP_AMP, - ACTIONS(658), 1, - anon_sym_PIPE_GT, - ACTIONS(990), 1, + ACTIONS(1020), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(644), 2, + ACTIONS(661), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(646), 2, + ACTIONS(663), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(652), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(660), 2, + ACTIONS(667), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(662), 3, + ACTIONS(734), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(669), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(654), 4, + ACTIONS(736), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(656), 4, + ACTIONS(738), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [28197] = 16, + [29151] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(116), 1, + ACTIONS(103), 1, anon_sym_DASH, - ACTIONS(134), 1, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(123), 1, sym__decimal, - ACTIONS(300), 1, + ACTIONS(269), 1, sym__name, - ACTIONS(778), 1, + ACTIONS(788), 1, anon_sym_POUND, - ACTIONS(780), 1, + ACTIONS(790), 1, anon_sym_LBRACK, - ACTIONS(782), 1, + ACTIONS(792), 1, anon_sym_LT_LT, - ACTIONS(992), 1, - anon_sym_GT_GT, - STATE(895), 1, - sym_constant_bit_string_segment, - STATE(987), 1, + ACTIONS(998), 1, + sym_float, + ACTIONS(1022), 1, + anon_sym_RPAREN, + STATE(1061), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(960), 2, - sym_string, - sym_float, - STATE(315), 2, + STATE(338), 2, sym_type_identifier, sym_remote_type_identifier, - ACTIONS(132), 3, + ACTIONS(121), 3, sym__hex, sym__octal, sym__binary, - STATE(811), 6, + STATE(843), 7, sym__constant_value, sym_constant_tuple, sym_constant_list, sym__constant_bit_string, sym_constant_record, + sym_string, sym_integer, - [28256] = 16, + [29210] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(116), 1, + ACTIONS(103), 1, anon_sym_DASH, - ACTIONS(134), 1, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(123), 1, sym__decimal, - ACTIONS(300), 1, + ACTIONS(269), 1, sym__name, - ACTIONS(778), 1, + ACTIONS(788), 1, anon_sym_POUND, - ACTIONS(780), 1, + ACTIONS(790), 1, anon_sym_LBRACK, - ACTIONS(782), 1, + ACTIONS(792), 1, anon_sym_LT_LT, - ACTIONS(994), 1, - anon_sym_GT_GT, - STATE(895), 1, - sym_constant_bit_string_segment, - STATE(987), 1, + ACTIONS(998), 1, + sym_float, + ACTIONS(1024), 1, + anon_sym_RPAREN, + STATE(1061), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(960), 2, - sym_string, - sym_float, - STATE(315), 2, + STATE(338), 2, sym_type_identifier, sym_remote_type_identifier, - ACTIONS(132), 3, + ACTIONS(121), 3, sym__hex, sym__octal, sym__binary, - STATE(811), 6, + STATE(843), 7, sym__constant_value, sym_constant_tuple, sym_constant_list, sym__constant_bit_string, sym_constant_record, + sym_string, sym_integer, - [28315] = 15, + [29269] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(116), 1, + ACTIONS(103), 1, anon_sym_DASH, - ACTIONS(134), 1, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(123), 1, sym__decimal, - ACTIONS(300), 1, + ACTIONS(269), 1, sym__name, - ACTIONS(778), 1, + ACTIONS(788), 1, anon_sym_POUND, - ACTIONS(780), 1, + ACTIONS(790), 1, anon_sym_LBRACK, - ACTIONS(782), 1, + ACTIONS(792), 1, anon_sym_LT_LT, - ACTIONS(996), 1, + ACTIONS(1026), 1, anon_sym_RPAREN, - STATE(987), 1, + ACTIONS(1028), 1, + sym_float, + STATE(1061), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(998), 2, - sym_string, - sym_float, - STATE(315), 2, + STATE(338), 2, sym_type_identifier, sym_remote_type_identifier, - ACTIONS(132), 3, + ACTIONS(121), 3, sym__hex, sym__octal, sym__binary, - STATE(860), 6, + STATE(883), 7, sym__constant_value, sym_constant_tuple, sym_constant_list, sym__constant_bit_string, sym_constant_record, + sym_string, sym_integer, - [28371] = 15, + [29328] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(116), 1, + ACTIONS(103), 1, anon_sym_DASH, - ACTIONS(134), 1, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(123), 1, sym__decimal, - ACTIONS(300), 1, + ACTIONS(269), 1, sym__name, - ACTIONS(778), 1, + ACTIONS(788), 1, anon_sym_POUND, - ACTIONS(780), 1, + ACTIONS(790), 1, anon_sym_LBRACK, - ACTIONS(782), 1, + ACTIONS(792), 1, anon_sym_LT_LT, - ACTIONS(1000), 1, - anon_sym_RPAREN, - STATE(987), 1, + ACTIONS(998), 1, + sym_float, + ACTIONS(1030), 1, + anon_sym_RBRACK, + STATE(1061), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1002), 2, - sym_string, - sym_float, - STATE(315), 2, + STATE(338), 2, sym_type_identifier, sym_remote_type_identifier, - ACTIONS(132), 3, + ACTIONS(121), 3, sym__hex, sym__octal, sym__binary, - STATE(847), 6, + STATE(843), 7, sym__constant_value, sym_constant_tuple, sym_constant_list, sym__constant_bit_string, sym_constant_record, + sym_string, sym_integer, - [28427] = 15, + [29387] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, + ACTIONS(665), 1, + anon_sym_PIPE_GT, + ACTIONS(730), 1, + anon_sym_PIPE_PIPE, + ACTIONS(732), 1, + anon_sym_AMP_AMP, + ACTIONS(1032), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(661), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(663), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(667), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(734), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(669), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(736), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(738), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [29440] = 13, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(665), 1, + anon_sym_PIPE_GT, + ACTIONS(730), 1, + anon_sym_PIPE_PIPE, + ACTIONS(732), 1, + anon_sym_AMP_AMP, + ACTIONS(1034), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(661), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(663), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(667), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(734), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(669), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(736), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(738), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [29493] = 13, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(665), 1, + anon_sym_PIPE_GT, + ACTIONS(730), 1, + anon_sym_PIPE_PIPE, + ACTIONS(732), 1, + anon_sym_AMP_AMP, + ACTIONS(1036), 1, + anon_sym_COMMA, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(661), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(663), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(667), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(734), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(669), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(736), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(738), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [29546] = 16, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(63), 1, sym__upname, - ACTIONS(116), 1, + ACTIONS(103), 1, anon_sym_DASH, - ACTIONS(134), 1, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(123), 1, sym__decimal, - ACTIONS(300), 1, + ACTIONS(269), 1, sym__name, - ACTIONS(778), 1, + ACTIONS(788), 1, anon_sym_POUND, - ACTIONS(780), 1, + ACTIONS(790), 1, anon_sym_LBRACK, - ACTIONS(782), 1, + ACTIONS(792), 1, anon_sym_LT_LT, - ACTIONS(1004), 1, - anon_sym_RBRACK, - STATE(987), 1, + ACTIONS(998), 1, + sym_float, + ACTIONS(1038), 1, + anon_sym_RPAREN, + STATE(1061), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1006), 2, - sym_string, - sym_float, - STATE(315), 2, + STATE(338), 2, sym_type_identifier, sym_remote_type_identifier, - ACTIONS(132), 3, + ACTIONS(121), 3, sym__hex, sym__octal, sym__binary, - STATE(871), 6, + STATE(843), 7, sym__constant_value, sym_constant_tuple, sym_constant_list, sym__constant_bit_string, sym_constant_record, + sym_string, sym_integer, - [28483] = 15, + [29605] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(116), 1, + ACTIONS(103), 1, anon_sym_DASH, - ACTIONS(134), 1, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(123), 1, sym__decimal, - ACTIONS(300), 1, + ACTIONS(269), 1, sym__name, - ACTIONS(778), 1, + ACTIONS(788), 1, anon_sym_POUND, - ACTIONS(780), 1, + ACTIONS(790), 1, anon_sym_LBRACK, - ACTIONS(782), 1, + ACTIONS(792), 1, anon_sym_LT_LT, - STATE(895), 1, - sym_constant_bit_string_segment, - STATE(987), 1, + ACTIONS(998), 1, + sym_float, + ACTIONS(1040), 1, + anon_sym_RBRACK, + STATE(1061), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(960), 2, - sym_string, - sym_float, - STATE(315), 2, + STATE(338), 2, sym_type_identifier, sym_remote_type_identifier, - ACTIONS(132), 3, + ACTIONS(121), 3, sym__hex, sym__octal, sym__binary, - STATE(811), 6, + STATE(843), 7, sym__constant_value, sym_constant_tuple, sym_constant_list, sym__constant_bit_string, sym_constant_record, + sym_string, sym_integer, - [28539] = 15, + [29664] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, - sym__upname, - ACTIONS(116), 1, - anon_sym_DASH, - ACTIONS(134), 1, - sym__decimal, - ACTIONS(300), 1, - sym__name, - ACTIONS(778), 1, - anon_sym_POUND, - ACTIONS(780), 1, - anon_sym_LBRACK, - ACTIONS(782), 1, - anon_sym_LT_LT, - ACTIONS(1008), 1, - anon_sym_RPAREN, - STATE(987), 1, - sym_identifier, + ACTIONS(665), 1, + anon_sym_PIPE_GT, + ACTIONS(730), 1, + anon_sym_PIPE_PIPE, + ACTIONS(732), 1, + anon_sym_AMP_AMP, + ACTIONS(1042), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1002), 2, - sym_string, - sym_float, - STATE(315), 2, - sym_type_identifier, - sym_remote_type_identifier, - ACTIONS(132), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(847), 6, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_integer, - [28595] = 15, + ACTIONS(661), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(663), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(667), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(734), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(669), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(736), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(738), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [29717] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, - sym__upname, - ACTIONS(116), 1, - anon_sym_DASH, - ACTIONS(134), 1, - sym__decimal, - ACTIONS(300), 1, - sym__name, - ACTIONS(778), 1, - anon_sym_POUND, - ACTIONS(780), 1, - anon_sym_LBRACK, - ACTIONS(782), 1, - anon_sym_LT_LT, - ACTIONS(1010), 1, + ACTIONS(665), 1, + anon_sym_PIPE_GT, + ACTIONS(730), 1, + anon_sym_PIPE_PIPE, + ACTIONS(732), 1, + anon_sym_AMP_AMP, + ACTIONS(1044), 1, anon_sym_RBRACK, - STATE(987), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1012), 2, - sym_string, - sym_float, - STATE(315), 2, - sym_type_identifier, - sym_remote_type_identifier, - ACTIONS(132), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(813), 6, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_integer, - [28651] = 15, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(65), 1, - sym__upname, - ACTIONS(116), 1, + ACTIONS(661), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(663), 2, anon_sym_DASH, - ACTIONS(134), 1, - sym__decimal, - ACTIONS(300), 1, - sym__name, - ACTIONS(778), 1, - anon_sym_POUND, - ACTIONS(780), 1, - anon_sym_LBRACK, - ACTIONS(782), 1, - anon_sym_LT_LT, - ACTIONS(1014), 1, - anon_sym_RPAREN, - STATE(987), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1016), 2, - sym_string, - sym_float, - STATE(315), 2, - sym_type_identifier, - sym_remote_type_identifier, - ACTIONS(132), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(855), 6, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_integer, - [28707] = 15, + anon_sym_PLUS, + ACTIONS(667), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(734), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(669), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(736), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(738), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [29770] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, - sym__upname, - ACTIONS(116), 1, - anon_sym_DASH, - ACTIONS(134), 1, - sym__decimal, - ACTIONS(300), 1, - sym__name, - ACTIONS(778), 1, - anon_sym_POUND, - ACTIONS(780), 1, - anon_sym_LBRACK, - ACTIONS(782), 1, - anon_sym_LT_LT, - ACTIONS(1018), 1, + ACTIONS(665), 1, + anon_sym_PIPE_GT, + ACTIONS(730), 1, + anon_sym_PIPE_PIPE, + ACTIONS(732), 1, + anon_sym_AMP_AMP, + ACTIONS(1046), 1, anon_sym_RBRACK, - STATE(987), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1002), 2, - sym_string, - sym_float, - STATE(315), 2, - sym_type_identifier, - sym_remote_type_identifier, - ACTIONS(132), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(847), 6, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_integer, - [28763] = 15, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(65), 1, - sym__upname, - ACTIONS(116), 1, + ACTIONS(661), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(663), 2, anon_sym_DASH, - ACTIONS(134), 1, - sym__decimal, - ACTIONS(300), 1, - sym__name, - ACTIONS(778), 1, - anon_sym_POUND, - ACTIONS(780), 1, - anon_sym_LBRACK, - ACTIONS(782), 1, - anon_sym_LT_LT, - ACTIONS(1020), 1, - anon_sym_RPAREN, - STATE(987), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1002), 2, - sym_string, - sym_float, - STATE(315), 2, - sym_type_identifier, - sym_remote_type_identifier, - ACTIONS(132), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(847), 6, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_integer, - [28819] = 15, + anon_sym_PLUS, + ACTIONS(667), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(734), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(669), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(736), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(738), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [29823] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, - sym__upname, - ACTIONS(116), 1, - anon_sym_DASH, - ACTIONS(134), 1, - sym__decimal, - ACTIONS(300), 1, - sym__name, - ACTIONS(778), 1, - anon_sym_POUND, - ACTIONS(780), 1, - anon_sym_LBRACK, - ACTIONS(782), 1, - anon_sym_LT_LT, - ACTIONS(1022), 1, - anon_sym_RBRACK, - STATE(987), 1, - sym_identifier, + ACTIONS(665), 1, + anon_sym_PIPE_GT, + ACTIONS(730), 1, + anon_sym_PIPE_PIPE, + ACTIONS(732), 1, + anon_sym_AMP_AMP, + ACTIONS(1048), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1002), 2, - sym_string, - sym_float, - STATE(315), 2, - sym_type_identifier, - sym_remote_type_identifier, - ACTIONS(132), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(847), 6, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_integer, - [28875] = 15, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(65), 1, - sym__upname, - ACTIONS(116), 1, + ACTIONS(661), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(663), 2, anon_sym_DASH, - ACTIONS(134), 1, - sym__decimal, - ACTIONS(300), 1, - sym__name, - ACTIONS(778), 1, - anon_sym_POUND, - ACTIONS(780), 1, - anon_sym_LBRACK, - ACTIONS(782), 1, - anon_sym_LT_LT, - ACTIONS(1024), 1, - anon_sym_RBRACK, - STATE(987), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1002), 2, - sym_string, - sym_float, - STATE(315), 2, - sym_type_identifier, - sym_remote_type_identifier, - ACTIONS(132), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(847), 6, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_integer, - [28931] = 15, + anon_sym_PLUS, + ACTIONS(667), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(734), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(669), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(736), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(738), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [29876] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, - sym__upname, - ACTIONS(116), 1, - anon_sym_DASH, - ACTIONS(134), 1, - sym__decimal, - ACTIONS(300), 1, - sym__name, - ACTIONS(778), 1, - anon_sym_POUND, - ACTIONS(780), 1, - anon_sym_LBRACK, - ACTIONS(782), 1, - anon_sym_LT_LT, - ACTIONS(1026), 1, + ACTIONS(665), 1, + anon_sym_PIPE_GT, + ACTIONS(730), 1, + anon_sym_PIPE_PIPE, + ACTIONS(732), 1, + anon_sym_AMP_AMP, + ACTIONS(1050), 1, anon_sym_RPAREN, - STATE(987), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1002), 2, - sym_string, - sym_float, - STATE(315), 2, - sym_type_identifier, - sym_remote_type_identifier, - ACTIONS(132), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(847), 6, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_integer, - [28987] = 15, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(65), 1, - sym__upname, - ACTIONS(116), 1, + ACTIONS(661), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(663), 2, anon_sym_DASH, - ACTIONS(134), 1, - sym__decimal, - ACTIONS(300), 1, - sym__name, - ACTIONS(778), 1, - anon_sym_POUND, - ACTIONS(780), 1, - anon_sym_LBRACK, - ACTIONS(782), 1, - anon_sym_LT_LT, - ACTIONS(1028), 1, - anon_sym_RBRACK, - STATE(987), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1002), 2, - sym_string, - sym_float, - STATE(315), 2, - sym_type_identifier, - sym_remote_type_identifier, - ACTIONS(132), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(847), 6, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_integer, - [29043] = 14, + anon_sym_PLUS, + ACTIONS(667), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(734), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(669), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(736), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(738), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [29929] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, - sym__upname, - ACTIONS(116), 1, + ACTIONS(37), 1, anon_sym_DASH, - ACTIONS(134), 1, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(57), 1, sym__decimal, - ACTIONS(300), 1, + ACTIONS(63), 1, + sym__upname, + ACTIONS(269), 1, sym__name, - ACTIONS(778), 1, + ACTIONS(788), 1, anon_sym_POUND, - ACTIONS(780), 1, + ACTIONS(790), 1, anon_sym_LBRACK, - ACTIONS(782), 1, + ACTIONS(792), 1, anon_sym_LT_LT, - STATE(987), 1, + ACTIONS(1052), 1, + sym_float, + STATE(1028), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1002), 2, - sym_string, - sym_float, - STATE(315), 2, + STATE(338), 2, sym_type_identifier, sym_remote_type_identifier, - ACTIONS(132), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(847), 6, + STATE(682), 7, sym__constant_value, sym_constant_tuple, sym_constant_list, sym__constant_bit_string, sym_constant_record, + sym_string, sym_integer, - [29096] = 14, + [29985] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(41), 1, - anon_sym_DASH, - ACTIONS(59), 1, - sym__decimal, - ACTIONS(65), 1, - sym__upname, - ACTIONS(300), 1, + ACTIONS(269), 1, sym__name, - ACTIONS(778), 1, + ACTIONS(1054), 1, anon_sym_POUND, - ACTIONS(780), 1, + ACTIONS(1056), 1, anon_sym_LBRACK, - ACTIONS(782), 1, + ACTIONS(1058), 1, anon_sym_LT_LT, - STATE(1007), 1, + ACTIONS(1060), 1, + anon_sym_DASH, + ACTIONS(1062), 1, + anon_sym_DQUOTE, + ACTIONS(1064), 1, + sym_float, + ACTIONS(1068), 1, + sym__decimal, + ACTIONS(1070), 1, + sym__upname, + STATE(1079), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1030), 2, - sym_string, - sym_float, - STATE(315), 2, + STATE(561), 2, sym_type_identifier, sym_remote_type_identifier, - ACTIONS(57), 3, + ACTIONS(1066), 3, sym__hex, sym__octal, sym__binary, - STATE(673), 6, + STATE(628), 7, sym__constant_value, sym_constant_tuple, sym_constant_list, sym__constant_bit_string, sym_constant_record, + sym_string, sym_integer, - [29149] = 14, + [30041] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(300), 1, + ACTIONS(63), 1, + sym__upname, + ACTIONS(103), 1, + anon_sym_DASH, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(123), 1, + sym__decimal, + ACTIONS(269), 1, sym__name, - ACTIONS(1032), 1, + ACTIONS(788), 1, anon_sym_POUND, - ACTIONS(1034), 1, + ACTIONS(790), 1, anon_sym_LBRACK, - ACTIONS(1036), 1, + ACTIONS(792), 1, anon_sym_LT_LT, - ACTIONS(1038), 1, - anon_sym_DASH, - ACTIONS(1044), 1, - sym__decimal, - ACTIONS(1046), 1, - sym__upname, - STATE(1059), 1, + ACTIONS(998), 1, + sym_float, + STATE(1061), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1040), 2, - sym_string, - sym_float, - STATE(557), 2, + STATE(338), 2, sym_type_identifier, sym_remote_type_identifier, - ACTIONS(1042), 3, + ACTIONS(121), 3, sym__hex, sym__octal, sym__binary, - STATE(635), 6, + STATE(843), 7, sym__constant_value, sym_constant_tuple, sym_constant_list, sym__constant_bit_string, sym_constant_record, + sym_string, sym_integer, - [29202] = 14, + [30097] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, - sym__upname, - ACTIONS(116), 1, + ACTIONS(37), 1, anon_sym_DASH, - ACTIONS(134), 1, + ACTIONS(51), 1, + anon_sym_DQUOTE, + ACTIONS(57), 1, sym__decimal, - ACTIONS(300), 1, + ACTIONS(63), 1, + sym__upname, + ACTIONS(269), 1, sym__name, - ACTIONS(778), 1, + ACTIONS(788), 1, anon_sym_POUND, - ACTIONS(780), 1, + ACTIONS(790), 1, anon_sym_LBRACK, - ACTIONS(782), 1, + ACTIONS(792), 1, anon_sym_LT_LT, - STATE(987), 1, + ACTIONS(1072), 1, + sym_float, + STATE(1028), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1048), 2, - sym_string, - sym_float, - STATE(315), 2, + STATE(338), 2, sym_type_identifier, sym_remote_type_identifier, - ACTIONS(132), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - STATE(959), 6, + STATE(680), 7, sym__constant_value, sym_constant_tuple, sym_constant_list, sym__constant_bit_string, sym_constant_record, + sym_string, sym_integer, - [29255] = 14, + [30153] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(41), 1, - anon_sym_DASH, - ACTIONS(59), 1, - sym__decimal, - ACTIONS(65), 1, - sym__upname, - ACTIONS(300), 1, + ACTIONS(269), 1, sym__name, - ACTIONS(778), 1, + ACTIONS(1054), 1, anon_sym_POUND, - ACTIONS(780), 1, + ACTIONS(1056), 1, anon_sym_LBRACK, - ACTIONS(782), 1, + ACTIONS(1058), 1, anon_sym_LT_LT, - STATE(1007), 1, + ACTIONS(1060), 1, + anon_sym_DASH, + ACTIONS(1062), 1, + anon_sym_DQUOTE, + ACTIONS(1068), 1, + sym__decimal, + ACTIONS(1070), 1, + sym__upname, + ACTIONS(1074), 1, + sym_float, + STATE(1079), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1050), 2, - sym_string, - sym_float, - STATE(315), 2, + STATE(561), 2, sym_type_identifier, sym_remote_type_identifier, - ACTIONS(57), 3, + ACTIONS(1066), 3, sym__hex, sym__octal, sym__binary, - STATE(679), 6, + STATE(596), 7, sym__constant_value, sym_constant_tuple, sym_constant_list, sym__constant_bit_string, sym_constant_record, + sym_string, sym_integer, - [29308] = 14, + [30209] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(300), 1, + ACTIONS(63), 1, + sym__upname, + ACTIONS(103), 1, + anon_sym_DASH, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(123), 1, + sym__decimal, + ACTIONS(269), 1, sym__name, - ACTIONS(1032), 1, + ACTIONS(788), 1, anon_sym_POUND, - ACTIONS(1034), 1, + ACTIONS(790), 1, anon_sym_LBRACK, - ACTIONS(1036), 1, + ACTIONS(792), 1, anon_sym_LT_LT, - ACTIONS(1038), 1, - anon_sym_DASH, - ACTIONS(1044), 1, - sym__decimal, - ACTIONS(1046), 1, - sym__upname, - STATE(1059), 1, + ACTIONS(1076), 1, + sym_float, + STATE(1061), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1052), 2, - sym_string, - sym_float, - STATE(557), 2, + STATE(338), 2, sym_type_identifier, sym_remote_type_identifier, - ACTIONS(1042), 3, + ACTIONS(121), 3, sym__hex, sym__octal, sym__binary, - STATE(597), 6, + STATE(995), 7, sym__constant_value, sym_constant_tuple, sym_constant_list, sym__constant_bit_string, sym_constant_record, + sym_string, sym_integer, - [29361] = 4, + [30265] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(494), 9, + ACTIONS(533), 9, anon_sym_DASH, anon_sym_fn, anon_sym_try, @@ -28949,35 +29843,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_assert, sym__decimal, sym__name, - ACTIONS(492), 11, + ACTIONS(531), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, - sym_string, + anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [29393] = 4, + [30297] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(410), 5, + ACTIONS(25), 5, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_PIPE, - ACTIONS(408), 13, + ACTIONS(23), 13, anon_sym_if, - anon_sym_DOT, anon_sym_as, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -28987,19 +29881,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [29423] = 4, + [30327] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(25), 5, + ACTIONS(465), 5, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_PIPE, - ACTIONS(23), 13, + ACTIONS(463), 13, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -29013,23 +29907,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [29453] = 4, + [30357] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(380), 5, + ACTIONS(478), 5, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_PIPE, - ACTIONS(378), 13, + ACTIONS(476), 13, anon_sym_if, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -29039,87 +29933,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [29483] = 13, + [30387] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(79), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PIPE, + ACTIONS(77), 12, + anon_sym_if, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [30416] = 13, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(63), 1, sym__upname, - ACTIONS(1054), 1, + ACTIONS(1078), 1, anon_sym_POUND, - ACTIONS(1056), 1, + ACTIONS(1080), 1, anon_sym_RPAREN, - ACTIONS(1058), 1, + ACTIONS(1082), 1, anon_sym_fn, - ACTIONS(1060), 1, + ACTIONS(1084), 1, sym__discard_name, - ACTIONS(1062), 1, + ACTIONS(1086), 1, sym__name, - STATE(777), 1, + STATE(978), 1, sym_type_constructor_argument, - STATE(987), 1, + STATE(1061), 1, sym_identifier, - STATE(1014), 1, + STATE(1071), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(485), 2, + STATE(495), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(934), 6, + STATE(924), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [29530] = 13, + [30463] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(226), 5, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PIPE, + ACTIONS(224), 12, + anon_sym_if, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [30492] = 13, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(63), 1, sym__upname, - ACTIONS(1054), 1, + ACTIONS(1078), 1, anon_sym_POUND, - ACTIONS(1058), 1, + ACTIONS(1082), 1, anon_sym_fn, - ACTIONS(1060), 1, + ACTIONS(1084), 1, sym__discard_name, - ACTIONS(1062), 1, + ACTIONS(1086), 1, sym__name, - ACTIONS(1064), 1, + ACTIONS(1088), 1, anon_sym_RPAREN, - STATE(900), 1, + STATE(978), 1, + sym_type_constructor_argument, + STATE(1061), 1, + sym_identifier, + STATE(1071), 1, + sym_label, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(495), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(924), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [30539] = 13, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(63), 1, + sym__upname, + ACTIONS(1078), 1, + anon_sym_POUND, + ACTIONS(1082), 1, + anon_sym_fn, + ACTIONS(1084), 1, + sym__discard_name, + ACTIONS(1086), 1, + sym__name, + ACTIONS(1090), 1, + anon_sym_RPAREN, + STATE(874), 1, sym_type_constructor_argument, - STATE(987), 1, + STATE(1061), 1, sym_identifier, - STATE(1014), 1, + STATE(1071), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(485), 2, + STATE(495), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(934), 6, + STATE(924), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [29577] = 4, + [30586] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(73), 5, + ACTIONS(234), 5, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_PIPE, - ACTIONS(71), 12, + ACTIONS(232), 12, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -29132,19 +30110,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [29606] = 4, + [30615] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(29), 5, + ACTIONS(89), 5, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_PIPE, - ACTIONS(27), 12, + ACTIONS(87), 12, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -29157,730 +30135,724 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [29635] = 13, + [30644] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(1054), 1, + ACTIONS(1078), 1, anon_sym_POUND, - ACTIONS(1058), 1, + ACTIONS(1082), 1, anon_sym_fn, - ACTIONS(1060), 1, + ACTIONS(1084), 1, sym__discard_name, - ACTIONS(1062), 1, - sym__name, - ACTIONS(1066), 1, + ACTIONS(1092), 1, anon_sym_RPAREN, - STATE(900), 1, - sym_type_constructor_argument, - STATE(987), 1, + ACTIONS(1094), 1, + sym__name, + STATE(966), 1, sym_identifier, - STATE(1014), 1, - sym_label, + STATE(976), 1, + sym_external_function_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(485), 2, + STATE(495), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(934), 6, + STATE(959), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [29682] = 12, + [30688] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(1054), 1, + ACTIONS(1078), 1, anon_sym_POUND, - ACTIONS(1058), 1, + ACTIONS(1082), 1, anon_sym_fn, - ACTIONS(1060), 1, + ACTIONS(1084), 1, sym__discard_name, - ACTIONS(1068), 1, - anon_sym_RPAREN, - ACTIONS(1070), 1, + ACTIONS(1094), 1, sym__name, - STATE(899), 1, - sym_external_function_parameter, - STATE(957), 1, + ACTIONS(1096), 1, + anon_sym_RPAREN, + STATE(873), 1, + sym_type_argument, + STATE(1061), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(485), 2, + STATE(495), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(955), 6, + STATE(930), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [29726] = 12, + [30732] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(1054), 1, + ACTIONS(1078), 1, anon_sym_POUND, - ACTIONS(1058), 1, + ACTIONS(1082), 1, anon_sym_fn, - ACTIONS(1060), 1, + ACTIONS(1084), 1, sym__discard_name, - ACTIONS(1070), 1, + ACTIONS(1094), 1, sym__name, - ACTIONS(1072), 1, + ACTIONS(1098), 1, anon_sym_RPAREN, - STATE(899), 1, - sym_external_function_parameter, - STATE(957), 1, + STATE(968), 1, + sym_type_argument, + STATE(1061), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(485), 2, + STATE(495), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(955), 6, + STATE(930), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [29770] = 12, + [30776] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(1054), 1, + ACTIONS(1078), 1, anon_sym_POUND, - ACTIONS(1058), 1, + ACTIONS(1082), 1, anon_sym_fn, - ACTIONS(1060), 1, + ACTIONS(1084), 1, sym__discard_name, - ACTIONS(1070), 1, + ACTIONS(1094), 1, sym__name, - ACTIONS(1074), 1, + ACTIONS(1100), 1, anon_sym_RPAREN, - STATE(924), 1, - sym_type_argument, - STATE(987), 1, + STATE(837), 1, + sym_external_function_parameter, + STATE(966), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(485), 2, + STATE(495), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(965), 6, + STATE(959), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [29814] = 12, + [30820] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(1054), 1, + ACTIONS(1078), 1, anon_sym_POUND, - ACTIONS(1058), 1, + ACTIONS(1082), 1, anon_sym_fn, - ACTIONS(1060), 1, + ACTIONS(1084), 1, sym__discard_name, - ACTIONS(1070), 1, + ACTIONS(1094), 1, sym__name, - ACTIONS(1076), 1, + ACTIONS(1102), 1, anon_sym_RPAREN, - STATE(924), 1, + STATE(968), 1, sym_type_argument, - STATE(987), 1, + STATE(1061), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(485), 2, + STATE(495), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(965), 6, + STATE(930), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [29858] = 12, + [30864] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(1054), 1, + ACTIONS(1078), 1, anon_sym_POUND, - ACTIONS(1058), 1, + ACTIONS(1082), 1, anon_sym_fn, - ACTIONS(1060), 1, + ACTIONS(1084), 1, sym__discard_name, - ACTIONS(1070), 1, + ACTIONS(1094), 1, sym__name, - ACTIONS(1078), 1, + ACTIONS(1104), 1, anon_sym_RPAREN, - STATE(842), 1, + STATE(866), 1, sym_type_argument, - STATE(987), 1, + STATE(1061), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(485), 2, + STATE(495), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(965), 6, + STATE(930), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [29902] = 12, + [30908] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(1054), 1, + ACTIONS(1078), 1, anon_sym_POUND, - ACTIONS(1058), 1, + ACTIONS(1082), 1, anon_sym_fn, - ACTIONS(1060), 1, + ACTIONS(1084), 1, sym__discard_name, - ACTIONS(1062), 1, + ACTIONS(1086), 1, sym__name, - STATE(900), 1, + STATE(978), 1, sym_type_constructor_argument, - STATE(987), 1, + STATE(1061), 1, sym_identifier, - STATE(1014), 1, + STATE(1071), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(485), 2, + STATE(495), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(934), 6, + STATE(924), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [29946] = 12, + [30952] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(1054), 1, + ACTIONS(1078), 1, anon_sym_POUND, - ACTIONS(1058), 1, + ACTIONS(1082), 1, anon_sym_fn, - ACTIONS(1060), 1, + ACTIONS(1084), 1, sym__discard_name, - ACTIONS(1070), 1, + ACTIONS(1094), 1, sym__name, - ACTIONS(1080), 1, + ACTIONS(1106), 1, anon_sym_RPAREN, - STATE(924), 1, - sym_type_argument, - STATE(987), 1, + STATE(966), 1, sym_identifier, + STATE(976), 1, + sym_external_function_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(485), 2, + STATE(495), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(965), 6, + STATE(959), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [29990] = 12, + [30996] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(1054), 1, + ACTIONS(1078), 1, anon_sym_POUND, - ACTIONS(1058), 1, + ACTIONS(1082), 1, anon_sym_fn, - ACTIONS(1060), 1, + ACTIONS(1084), 1, sym__discard_name, - ACTIONS(1070), 1, + ACTIONS(1094), 1, sym__name, - ACTIONS(1082), 1, + ACTIONS(1108), 1, anon_sym_RPAREN, - STATE(924), 1, + STATE(968), 1, sym_type_argument, - STATE(987), 1, + STATE(1061), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(485), 2, + STATE(495), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(965), 6, + STATE(930), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [30034] = 12, + [31040] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(1054), 1, + ACTIONS(1078), 1, anon_sym_POUND, - ACTIONS(1058), 1, + ACTIONS(1082), 1, anon_sym_fn, - ACTIONS(1060), 1, + ACTIONS(1084), 1, sym__discard_name, - ACTIONS(1070), 1, + ACTIONS(1094), 1, sym__name, - ACTIONS(1084), 1, + ACTIONS(1110), 1, anon_sym_RPAREN, - STATE(877), 1, + STATE(968), 1, sym_type_argument, - STATE(987), 1, + STATE(1061), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(485), 2, + STATE(495), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(965), 6, + STATE(930), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [30078] = 12, + [31084] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(1054), 1, + ACTIONS(1078), 1, anon_sym_POUND, - ACTIONS(1058), 1, + ACTIONS(1082), 1, anon_sym_fn, - ACTIONS(1060), 1, + ACTIONS(1084), 1, sym__discard_name, - ACTIONS(1070), 1, + ACTIONS(1094), 1, sym__name, - ACTIONS(1086), 1, + ACTIONS(1112), 1, anon_sym_RPAREN, - STATE(802), 1, - sym_external_function_parameter, - STATE(957), 1, + STATE(1061), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(485), 2, + STATE(495), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(955), 6, + STATE(871), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [30122] = 11, + [31125] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(1054), 1, + ACTIONS(1078), 1, anon_sym_POUND, - ACTIONS(1058), 1, + ACTIONS(1082), 1, anon_sym_fn, - ACTIONS(1060), 1, + ACTIONS(1084), 1, sym__discard_name, - ACTIONS(1070), 1, + ACTIONS(1094), 1, sym__name, - ACTIONS(1088), 1, - anon_sym_RPAREN, - STATE(987), 1, + STATE(966), 1, sym_identifier, + STATE(976), 1, + sym_external_function_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(485), 2, + STATE(495), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(856), 6, + STATE(959), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [30163] = 11, + [31166] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(1054), 1, + ACTIONS(1078), 1, anon_sym_POUND, - ACTIONS(1058), 1, + ACTIONS(1082), 1, anon_sym_fn, - ACTIONS(1060), 1, + ACTIONS(1084), 1, sym__discard_name, - ACTIONS(1070), 1, + ACTIONS(1094), 1, sym__name, - ACTIONS(1090), 1, + ACTIONS(1114), 1, anon_sym_RPAREN, - STATE(987), 1, + STATE(1061), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(485), 2, + STATE(495), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(867), 6, + STATE(875), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [30204] = 11, + [31207] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(1054), 1, + ACTIONS(1078), 1, anon_sym_POUND, - ACTIONS(1058), 1, + ACTIONS(1082), 1, anon_sym_fn, - ACTIONS(1060), 1, + ACTIONS(1084), 1, sym__discard_name, - ACTIONS(1070), 1, + ACTIONS(1094), 1, sym__name, - ACTIONS(1092), 1, + ACTIONS(1116), 1, anon_sym_RPAREN, - STATE(987), 1, + STATE(1061), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(485), 2, + STATE(495), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(930), 6, + STATE(975), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [30245] = 11, + [31248] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(1054), 1, + ACTIONS(1078), 1, anon_sym_POUND, - ACTIONS(1058), 1, + ACTIONS(1082), 1, anon_sym_fn, - ACTIONS(1060), 1, + ACTIONS(1084), 1, sym__discard_name, - ACTIONS(1070), 1, - sym__name, ACTIONS(1094), 1, + sym__name, + ACTIONS(1118), 1, anon_sym_RPAREN, - STATE(987), 1, + STATE(1061), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(485), 2, + STATE(495), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(930), 6, + STATE(975), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [30286] = 11, + [31289] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(1054), 1, + ACTIONS(1078), 1, anon_sym_POUND, - ACTIONS(1058), 1, + ACTIONS(1082), 1, anon_sym_fn, - ACTIONS(1060), 1, + ACTIONS(1084), 1, sym__discard_name, - ACTIONS(1070), 1, + ACTIONS(1094), 1, sym__name, - ACTIONS(1096), 1, + ACTIONS(1120), 1, anon_sym_RPAREN, - STATE(987), 1, + STATE(1061), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(485), 2, + STATE(495), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(930), 6, + STATE(975), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [30327] = 11, + [31330] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(1054), 1, + ACTIONS(1078), 1, anon_sym_POUND, - ACTIONS(1058), 1, + ACTIONS(1082), 1, anon_sym_fn, - ACTIONS(1060), 1, + ACTIONS(1084), 1, sym__discard_name, - ACTIONS(1070), 1, + ACTIONS(1094), 1, sym__name, - ACTIONS(1098), 1, + ACTIONS(1122), 1, anon_sym_RPAREN, - STATE(987), 1, + STATE(1061), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(485), 2, + STATE(495), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(930), 6, + STATE(975), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [30368] = 11, + [31371] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(1054), 1, + ACTIONS(1078), 1, anon_sym_POUND, - ACTIONS(1058), 1, + ACTIONS(1082), 1, anon_sym_fn, - ACTIONS(1060), 1, + ACTIONS(1084), 1, sym__discard_name, - ACTIONS(1070), 1, + ACTIONS(1094), 1, sym__name, - ACTIONS(1100), 1, + ACTIONS(1124), 1, anon_sym_RPAREN, - STATE(987), 1, + STATE(1061), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(485), 2, + STATE(495), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(930), 6, + STATE(975), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [30409] = 11, + [31412] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(1054), 1, + ACTIONS(1078), 1, anon_sym_POUND, - ACTIONS(1058), 1, + ACTIONS(1082), 1, anon_sym_fn, - ACTIONS(1060), 1, + ACTIONS(1084), 1, sym__discard_name, - ACTIONS(1070), 1, + ACTIONS(1094), 1, sym__name, - STATE(924), 1, + STATE(968), 1, sym_type_argument, - STATE(987), 1, + STATE(1061), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(485), 2, + STATE(495), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(965), 6, + STATE(930), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [30450] = 11, + [31453] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(1054), 1, + ACTIONS(1078), 1, anon_sym_POUND, - ACTIONS(1058), 1, + ACTIONS(1082), 1, anon_sym_fn, - ACTIONS(1060), 1, + ACTIONS(1084), 1, sym__discard_name, - ACTIONS(1070), 1, + ACTIONS(1094), 1, sym__name, - STATE(899), 1, - sym_external_function_parameter, - STATE(957), 1, + ACTIONS(1126), 1, + anon_sym_RPAREN, + STATE(1061), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(485), 2, + STATE(495), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(955), 6, + STATE(975), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [30491] = 11, + [31494] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(1054), 1, + ACTIONS(1078), 1, anon_sym_POUND, - ACTIONS(1058), 1, + ACTIONS(1082), 1, anon_sym_fn, - ACTIONS(1060), 1, + ACTIONS(1084), 1, sym__discard_name, - ACTIONS(1070), 1, + ACTIONS(1094), 1, sym__name, - ACTIONS(1102), 1, + ACTIONS(1128), 1, anon_sym_RPAREN, - STATE(987), 1, + STATE(1061), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(485), 2, + STATE(495), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(864), 6, + STATE(868), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [30532] = 11, + [31535] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, + ACTIONS(1070), 1, sym__upname, - ACTIONS(1054), 1, + ACTIONS(1130), 1, anon_sym_POUND, - ACTIONS(1058), 1, + ACTIONS(1132), 1, anon_sym_fn, - ACTIONS(1060), 1, + ACTIONS(1134), 1, sym__discard_name, - ACTIONS(1070), 1, + ACTIONS(1136), 1, sym__name, - ACTIONS(1104), 1, - anon_sym_RPAREN, - STATE(987), 1, + STATE(1079), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(485), 2, + STATE(565), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(930), 6, + STATE(655), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [30573] = 10, + [31573] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(1054), 1, + ACTIONS(1078), 1, anon_sym_POUND, - ACTIONS(1058), 1, + ACTIONS(1082), 1, anon_sym_fn, - ACTIONS(1060), 1, + ACTIONS(1084), 1, sym__discard_name, - ACTIONS(1070), 1, + ACTIONS(1094), 1, sym__name, - STATE(987), 1, + STATE(1061), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(485), 2, + STATE(495), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1060), 6, + STATE(1070), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [30611] = 4, + [31611] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1108), 4, + ACTIONS(1140), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1106), 10, + ACTIONS(1138), 10, anon_sym_RBRACE, anon_sym_DASH_GT, anon_sym_PIPE_PIPE, @@ -29891,46 +30863,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [30637] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(65), 1, - sym__upname, - ACTIONS(1054), 1, - anon_sym_POUND, - ACTIONS(1058), 1, - anon_sym_fn, - ACTIONS(1060), 1, - sym__discard_name, - ACTIONS(1070), 1, - sym__name, - STATE(987), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(485), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(932), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [30675] = 4, + [31637] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1112), 4, + ACTIONS(1144), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1110), 10, + ACTIONS(1142), 10, anon_sym_RBRACE, anon_sym_DASH_GT, anon_sym_PIPE_PIPE, @@ -29941,77 +30885,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [30701] = 10, + [31663] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(1054), 1, + ACTIONS(1078), 1, anon_sym_POUND, - ACTIONS(1060), 1, + ACTIONS(1082), 1, + anon_sym_fn, + ACTIONS(1084), 1, sym__discard_name, - ACTIONS(1070), 1, + ACTIONS(1094), 1, sym__name, - ACTIONS(1114), 1, - anon_sym_fn, - STATE(1007), 1, + STATE(1061), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(485), 2, + STATE(495), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(675), 6, + STATE(1047), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [30739] = 10, + [31701] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(1054), 1, + ACTIONS(1078), 1, anon_sym_POUND, - ACTIONS(1058), 1, + ACTIONS(1082), 1, anon_sym_fn, - ACTIONS(1060), 1, + ACTIONS(1084), 1, sym__discard_name, - ACTIONS(1070), 1, + ACTIONS(1094), 1, sym__name, - STATE(987), 1, + STATE(1061), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(485), 2, + STATE(495), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1018), 6, + STATE(1065), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [30777] = 5, + [31739] = 10, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(63), 1, + sym__upname, + ACTIONS(1078), 1, + anon_sym_POUND, + ACTIONS(1084), 1, + sym__discard_name, + ACTIONS(1094), 1, + sym__name, + ACTIONS(1146), 1, + anon_sym_fn, + STATE(1028), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(495), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(536), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [31777] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1118), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1120), 4, + ACTIONS(1150), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1116), 9, + ACTIONS(1148), 10, anon_sym_RBRACE, + anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -30020,265 +30991,344 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [30805] = 10, + [31803] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(1054), 1, + ACTIONS(1078), 1, anon_sym_POUND, - ACTIONS(1058), 1, + ACTIONS(1082), 1, anon_sym_fn, - ACTIONS(1060), 1, + ACTIONS(1084), 1, sym__discard_name, - ACTIONS(1070), 1, + ACTIONS(1094), 1, sym__name, - STATE(987), 1, + STATE(1061), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(485), 2, + STATE(495), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(765), 6, + STATE(982), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [30843] = 10, + [31841] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(1054), 1, + ACTIONS(1078), 1, anon_sym_POUND, - ACTIONS(1058), 1, + ACTIONS(1082), 1, anon_sym_fn, - ACTIONS(1060), 1, + ACTIONS(1084), 1, sym__discard_name, - ACTIONS(1070), 1, + ACTIONS(1094), 1, sym__name, - STATE(987), 1, + STATE(1061), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(485), 2, + STATE(495), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1063), 6, + STATE(546), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [30881] = 10, + [31879] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1046), 1, + ACTIONS(1070), 1, sym__upname, - ACTIONS(1122), 1, + ACTIONS(1130), 1, anon_sym_POUND, - ACTIONS(1124), 1, + ACTIONS(1132), 1, anon_sym_fn, - ACTIONS(1126), 1, + ACTIONS(1134), 1, sym__discard_name, - ACTIONS(1128), 1, + ACTIONS(1136), 1, sym__name, - STATE(1059), 1, + STATE(1079), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(556), 2, + STATE(565), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(646), 6, + STATE(660), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [30919] = 10, + [31917] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(1054), 1, + ACTIONS(1078), 1, anon_sym_POUND, - ACTIONS(1058), 1, + ACTIONS(1082), 1, anon_sym_fn, - ACTIONS(1060), 1, + ACTIONS(1084), 1, sym__discard_name, - ACTIONS(1070), 1, + ACTIONS(1094), 1, sym__name, - STATE(987), 1, + STATE(1061), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(485), 2, + STATE(495), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(930), 6, + STATE(1072), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [30957] = 5, + [31955] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1130), 1, - anon_sym_DOT, + ACTIONS(63), 1, + sym__upname, + ACTIONS(1078), 1, + anon_sym_POUND, + ACTIONS(1082), 1, + anon_sym_fn, + ACTIONS(1084), 1, + sym__discard_name, + ACTIONS(1094), 1, + sym__name, + STATE(1061), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1120), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1116), 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, - [30985] = 10, + STATE(495), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(977), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [31993] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(1054), 1, + ACTIONS(1078), 1, anon_sym_POUND, - ACTIONS(1058), 1, - anon_sym_fn, - ACTIONS(1060), 1, + ACTIONS(1084), 1, sym__discard_name, - ACTIONS(1070), 1, + ACTIONS(1094), 1, sym__name, - STATE(987), 1, + ACTIONS(1146), 1, + anon_sym_fn, + STATE(1028), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(485), 2, + STATE(495), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(905), 6, + STATE(669), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [31023] = 10, + [32031] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(1054), 1, + ACTIONS(1078), 1, anon_sym_POUND, - ACTIONS(1058), 1, + ACTIONS(1082), 1, anon_sym_fn, - ACTIONS(1060), 1, + ACTIONS(1084), 1, sym__discard_name, - ACTIONS(1070), 1, + ACTIONS(1094), 1, sym__name, - STATE(987), 1, + STATE(1061), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(485), 2, + STATE(495), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(516), 6, + STATE(1067), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [31061] = 10, + [32069] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(1054), 1, + ACTIONS(1078), 1, anon_sym_POUND, - ACTIONS(1058), 1, + ACTIONS(1082), 1, anon_sym_fn, - ACTIONS(1060), 1, + ACTIONS(1084), 1, + sym__discard_name, + ACTIONS(1094), 1, + sym__name, + STATE(1061), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(495), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1074), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [32107] = 10, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(63), 1, + sym__upname, + ACTIONS(1078), 1, + anon_sym_POUND, + ACTIONS(1084), 1, sym__discard_name, - ACTIONS(1070), 1, + ACTIONS(1094), 1, sym__name, - STATE(987), 1, + ACTIONS(1146), 1, + anon_sym_fn, + STATE(1028), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(485), 2, + STATE(495), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(525), 6, + STATE(546), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [31099] = 10, + [32145] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1046), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(1122), 1, + ACTIONS(1078), 1, anon_sym_POUND, - ACTIONS(1124), 1, + ACTIONS(1082), 1, anon_sym_fn, - ACTIONS(1126), 1, + ACTIONS(1084), 1, sym__discard_name, - ACTIONS(1128), 1, + ACTIONS(1094), 1, sym__name, - STATE(1059), 1, + STATE(1061), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(556), 2, + STATE(495), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(589), 6, + STATE(1039), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [31137] = 4, + [32183] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1152), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1156), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1154), 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, + [32211] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1158), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1156), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1154), 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, + [32239] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1134), 4, + ACTIONS(1162), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1132), 10, + ACTIONS(1160), 10, anon_sym_RBRACE, anon_sym_DASH_GT, anon_sym_PIPE_PIPE, @@ -30289,18 +31339,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [31163] = 4, + [32265] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1138), 4, + ACTIONS(1166), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1136), 10, + ACTIONS(1164), 10, anon_sym_RBRACE, anon_sym_DASH_GT, anon_sym_PIPE_PIPE, @@ -30311,285 +31361,227 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [31189] = 10, + [32291] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, + ACTIONS(1070), 1, sym__upname, - ACTIONS(1054), 1, + ACTIONS(1130), 1, anon_sym_POUND, - ACTIONS(1060), 1, + ACTIONS(1132), 1, + anon_sym_fn, + ACTIONS(1134), 1, sym__discard_name, - ACTIONS(1070), 1, + ACTIONS(1136), 1, sym__name, - ACTIONS(1114), 1, - anon_sym_fn, - STATE(1007), 1, + STATE(1079), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(485), 2, + STATE(565), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(516), 6, + STATE(595), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [31227] = 10, + [32329] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1046), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(1122), 1, + ACTIONS(1078), 1, anon_sym_POUND, - ACTIONS(1124), 1, + ACTIONS(1082), 1, anon_sym_fn, - ACTIONS(1126), 1, + ACTIONS(1084), 1, sym__discard_name, - ACTIONS(1128), 1, + ACTIONS(1094), 1, sym__name, - STATE(1059), 1, + STATE(1061), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(556), 2, + STATE(495), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(601), 6, + STATE(975), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [31265] = 10, + [32367] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(1054), 1, + ACTIONS(1078), 1, anon_sym_POUND, - ACTIONS(1058), 1, + ACTIONS(1082), 1, anon_sym_fn, - ACTIONS(1060), 1, + ACTIONS(1084), 1, sym__discard_name, - ACTIONS(1070), 1, + ACTIONS(1094), 1, sym__name, - STATE(987), 1, + STATE(1061), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(485), 2, + STATE(495), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1046), 6, + STATE(536), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [31303] = 10, + [32405] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(1054), 1, + ACTIONS(1078), 1, anon_sym_POUND, - ACTIONS(1058), 1, + ACTIONS(1082), 1, anon_sym_fn, - ACTIONS(1060), 1, + ACTIONS(1084), 1, sym__discard_name, - ACTIONS(1070), 1, + ACTIONS(1094), 1, sym__name, - STATE(987), 1, + STATE(1061), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(485), 2, + STATE(495), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1049), 6, + STATE(858), 6, sym__type, sym_type_hole, sym_tuple_type, sym_function_type, sym_type, sym_type_var, - [31341] = 4, + [32443] = 6, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1142), 4, + ACTIONS(1168), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1142), 3, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(1170), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1140), 10, - anon_sym_RBRACE, + ACTIONS(1172), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [32472] = 8, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1174), 1, anon_sym_DASH_GT, + ACTIONS(1176), 1, anon_sym_PIPE_PIPE, + ACTIONS(1178), 1, anon_sym_AMP_AMP, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1168), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(1170), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1172), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [31367] = 10, + [32505] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(1054), 1, - anon_sym_POUND, - ACTIONS(1058), 1, - anon_sym_fn, - ACTIONS(1060), 1, - sym__discard_name, - ACTIONS(1070), 1, + ACTIONS(269), 1, sym__name, - STATE(987), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(485), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(977), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [31405] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(65), 1, - sym__upname, - ACTIONS(1054), 1, - anon_sym_POUND, - ACTIONS(1058), 1, - anon_sym_fn, - ACTIONS(1060), 1, + ACTIONS(1084), 1, sym__discard_name, - ACTIONS(1070), 1, - sym__name, - STATE(987), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(485), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1053), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [31443] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(65), 1, - sym__upname, - ACTIONS(1054), 1, + ACTIONS(1180), 1, anon_sym_POUND, - ACTIONS(1060), 1, - sym__discard_name, - ACTIONS(1070), 1, - sym__name, - ACTIONS(1114), 1, - anon_sym_fn, - STATE(1007), 1, + ACTIONS(1182), 1, + anon_sym_RPAREN, + STATE(769), 1, + sym_constant_type_argument, + STATE(1061), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(485), 2, + STATE(726), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(525), 6, - sym__type, + STATE(903), 4, + sym__constant_type, + sym_constant_tuple_type, + sym_constant_type, sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [31481] = 5, + [32544] = 5, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1144), 4, + ACTIONS(1184), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1146), 4, + ACTIONS(1186), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1136), 5, - anon_sym_DASH_GT, + ACTIONS(1142), 5, + anon_sym_RBRACE, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [31508] = 11, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(65), 1, - sym__upname, - ACTIONS(300), 1, - sym__name, - ACTIONS(1060), 1, - sym__discard_name, - ACTIONS(1148), 1, - anon_sym_POUND, - ACTIONS(1150), 1, - anon_sym_RPAREN, - STATE(948), 1, - sym_constant_type_argument, - STATE(987), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(701), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(920), 4, - sym__constant_type, - sym_constant_tuple_type, - sym_constant_type, - sym_type_hole, - [31547] = 5, + [32571] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1154), 1, + ACTIONS(1190), 1, anon_sym_LPAREN, - STATE(550), 1, + STATE(518), 1, sym_type_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1152), 11, + ACTIONS(1188), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -30601,215 +31593,397 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [31574] = 4, + [32598] = 11, ACTIONS(3), 1, sym_module_comment, + ACTIONS(63), 1, + sym__upname, + ACTIONS(269), 1, + sym__name, + ACTIONS(1084), 1, + sym__discard_name, + ACTIONS(1180), 1, + anon_sym_POUND, + ACTIONS(1192), 1, + anon_sym_RPAREN, + STATE(991), 1, + sym_constant_type_argument, + STATE(1061), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(408), 2, - anon_sym_DOT, - anon_sym_COLON, - ACTIONS(1156), 11, - anon_sym_LBRACE, + STATE(726), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(903), 4, + sym__constant_type, + sym_constant_tuple_type, + sym_constant_type, + sym_type_hole, + [32637] = 8, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1194), 1, anon_sym_RBRACE, - anon_sym_import, - anon_sym_COMMA, - anon_sym_pub, - anon_sym_const, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - [31599] = 8, + ACTIONS(1196), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1198), 1, + anon_sym_AMP_AMP, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1200), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1184), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1186), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [32670] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1158), 1, - anon_sym_RBRACE, - ACTIONS(1160), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1162), 1, + ACTIONS(1178), 1, anon_sym_AMP_AMP, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1164), 2, + ACTIONS(1142), 2, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + ACTIONS(1168), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1166), 4, + ACTIONS(1170), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1168), 4, + ACTIONS(1172), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [31632] = 6, + [32701] = 11, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(63), 1, + sym__upname, + ACTIONS(269), 1, + sym__name, + ACTIONS(1084), 1, + sym__discard_name, + ACTIONS(1180), 1, + anon_sym_POUND, + ACTIONS(1202), 1, + anon_sym_RPAREN, + STATE(991), 1, + sym_constant_type_argument, + STATE(1061), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(726), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(903), 4, + sym__constant_type, + sym_constant_tuple_type, + sym_constant_type, + sym_type_hole, + [32740] = 6, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1170), 2, + ACTIONS(1200), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1136), 3, - anon_sym_DASH_GT, + ACTIONS(1142), 3, + anon_sym_RBRACE, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(1144), 4, + ACTIONS(1184), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1146), 4, + ACTIONS(1186), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [31661] = 8, + [32769] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1172), 1, - anon_sym_DASH_GT, - ACTIONS(1174), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1176), 1, - anon_sym_AMP_AMP, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1170), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1144), 4, + ACTIONS(1170), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1146), 4, + ACTIONS(1172), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [31694] = 7, + ACTIONS(1142), 5, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [32796] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1176), 1, + ACTIONS(1198), 1, anon_sym_AMP_AMP, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1136), 2, - anon_sym_DASH_GT, + ACTIONS(1142), 2, + anon_sym_RBRACE, anon_sym_PIPE_PIPE, - ACTIONS(1170), 2, + ACTIONS(1200), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1144), 4, + ACTIONS(1184), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1146), 4, + ACTIONS(1186), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [31725] = 11, + [32827] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, + ACTIONS(1206), 1, + anon_sym_LPAREN, + STATE(554), 1, + sym_record_pattern_arguments, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1204), 11, + anon_sym_if, + anon_sym_as, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_DOT_DOT, + anon_sym_PIPE, + [32854] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(476), 2, + anon_sym_DOT, + anon_sym_COLON, + ACTIONS(1208), 11, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_COMMA, + anon_sym_pub, + anon_sym_const, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_external, + anon_sym_type, + anon_sym_fn, + [32879] = 10, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(63), 1, sym__upname, - ACTIONS(300), 1, + ACTIONS(269), 1, sym__name, - ACTIONS(1060), 1, + ACTIONS(1084), 1, sym__discard_name, - ACTIONS(1148), 1, + ACTIONS(1180), 1, anon_sym_POUND, - ACTIONS(1178), 1, - anon_sym_RPAREN, - STATE(948), 1, + STATE(991), 1, sym_constant_type_argument, - STATE(987), 1, + STATE(1061), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(701), 2, + STATE(726), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(920), 4, + STATE(903), 4, sym__constant_type, sym_constant_tuple_type, sym_constant_type, sym_type_hole, - [31764] = 7, + [32915] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1162), 1, - anon_sym_AMP_AMP, + ACTIONS(1212), 1, + anon_sym_SLASH, + STATE(508), 1, + aux_sym_module_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1136), 2, - anon_sym_RBRACE, - anon_sym_PIPE_PIPE, - ACTIONS(1164), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1166), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1168), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [31795] = 11, + ACTIONS(1210), 10, + ts_builtin_sym_end, + anon_sym_if, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_pub, + anon_sym_const, + anon_sym_external, + anon_sym_type, + anon_sym_fn, + [32941] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(300), 1, + ACTIONS(269), 1, sym__name, - ACTIONS(1060), 1, + ACTIONS(1084), 1, + sym__discard_name, + ACTIONS(1180), 1, + anon_sym_POUND, + ACTIONS(1214), 1, + anon_sym_RPAREN, + STATE(1061), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(726), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(994), 4, + sym__constant_type, + sym_constant_tuple_type, + sym_constant_type, + sym_type_hole, + [32977] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1212), 1, + anon_sym_SLASH, + STATE(509), 1, + aux_sym_module_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1216), 10, + ts_builtin_sym_end, + anon_sym_if, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_pub, + anon_sym_const, + anon_sym_external, + anon_sym_type, + anon_sym_fn, + [33003] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1220), 1, + anon_sym_SLASH, + STATE(509), 1, + aux_sym_module_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1218), 10, + ts_builtin_sym_end, + anon_sym_if, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_pub, + anon_sym_const, + anon_sym_external, + anon_sym_type, + anon_sym_fn, + [33029] = 10, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(63), 1, + sym__upname, + ACTIONS(269), 1, + sym__name, + ACTIONS(1084), 1, sym__discard_name, - ACTIONS(1148), 1, + ACTIONS(1180), 1, anon_sym_POUND, + ACTIONS(1223), 1, + anon_sym_RPAREN, + STATE(1061), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(726), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(994), 4, + sym__constant_type, + sym_constant_tuple_type, + sym_constant_type, + sym_type_hole, + [33065] = 10, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(63), 1, + sym__upname, + ACTIONS(269), 1, + sym__name, + ACTIONS(1084), 1, + sym__discard_name, ACTIONS(1180), 1, + anon_sym_POUND, + ACTIONS(1225), 1, anon_sym_RPAREN, - STATE(804), 1, - sym_constant_type_argument, - STATE(987), 1, + STATE(1061), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(701), 2, + STATE(726), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(920), 4, + STATE(894), 4, sym__constant_type, sym_constant_tuple_type, sym_constant_type, sym_type_hole, - [31834] = 5, + [33101] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1184), 1, - anon_sym_LPAREN, - STATE(538), 1, - sym_record_pattern_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1182), 11, + ACTIONS(1227), 11, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -30821,225 +31995,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [31861] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1166), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1168), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(1136), 5, - anon_sym_RBRACE, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [31888] = 6, + [33122] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1231), 1, + anon_sym_LPAREN, + STATE(583), 1, + sym_type_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1164), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1136), 3, + ACTIONS(1229), 9, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(1166), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1168), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [31917] = 10, + anon_sym_import, + anon_sym_pub, + anon_sym_const, + anon_sym_EQ, + anon_sym_external, + anon_sym_type, + anon_sym_fn, + [33147] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, - sym__upname, - ACTIONS(300), 1, - sym__name, - ACTIONS(1060), 1, + ACTIONS(1233), 1, + anon_sym_RPAREN, + ACTIONS(1235), 1, sym__discard_name, - ACTIONS(1148), 1, - anon_sym_POUND, - STATE(948), 1, - sym_constant_type_argument, - STATE(987), 1, + ACTIONS(1237), 1, + sym__name, + STATE(740), 1, + sym_label, + STATE(742), 1, + sym__name_param, + STATE(743), 1, + sym__labeled_name_param, + STATE(746), 1, + sym__discard_param, + STATE(751), 1, + sym__labeled_discard_param, + STATE(796), 1, + sym_function_parameter, + STATE(809), 1, sym_identifier, + STATE(816), 1, + sym_discard, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(701), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(920), 4, - sym__constant_type, - sym_constant_tuple_type, - sym_constant_type, - sym_type_hole, - [31953] = 5, + [33188] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1188), 1, - anon_sym_SLASH, - STATE(499), 1, - aux_sym_module_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1186), 10, - ts_builtin_sym_end, + ACTIONS(1239), 11, anon_sym_if, - anon_sym_import, - anon_sym_DOT, anon_sym_as, - anon_sym_pub, - anon_sym_const, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - [31979] = 5, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_DOT_DOT, + anon_sym_PIPE, + [33209] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1188), 1, - anon_sym_SLASH, - STATE(503), 1, - aux_sym_module_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1190), 10, - ts_builtin_sym_end, - anon_sym_if, + ACTIONS(1241), 11, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_import, - anon_sym_DOT, - anon_sym_as, + anon_sym_COMMA, anon_sym_pub, anon_sym_const, + anon_sym_EQ, + anon_sym_RPAREN, anon_sym_external, anon_sym_type, anon_sym_fn, - [32005] = 10, + [33230] = 9, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(300), 1, + ACTIONS(269), 1, sym__name, - ACTIONS(1060), 1, + ACTIONS(1084), 1, sym__discard_name, - ACTIONS(1148), 1, + ACTIONS(1180), 1, anon_sym_POUND, - ACTIONS(1192), 1, - anon_sym_RPAREN, - STATE(987), 1, + STATE(1061), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(701), 2, + STATE(726), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(956), 4, + STATE(994), 4, sym__constant_type, sym_constant_tuple_type, sym_constant_type, sym_type_hole, - [32041] = 10, + [33263] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, - sym__upname, - ACTIONS(300), 1, - sym__name, - ACTIONS(1060), 1, - sym__discard_name, - ACTIONS(1148), 1, - anon_sym_POUND, - ACTIONS(1194), 1, - anon_sym_RPAREN, - STATE(987), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(701), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(956), 4, - sym__constant_type, - sym_constant_tuple_type, - sym_constant_type, - sym_type_hole, - [32077] = 10, + ACTIONS(1243), 11, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_COMMA, + anon_sym_pub, + anon_sym_const, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_external, + anon_sym_type, + anon_sym_fn, + [33284] = 9, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(300), 1, + ACTIONS(269), 1, sym__name, - ACTIONS(1060), 1, + ACTIONS(1084), 1, sym__discard_name, - ACTIONS(1148), 1, + ACTIONS(1180), 1, anon_sym_POUND, - ACTIONS(1196), 1, - anon_sym_RPAREN, - STATE(987), 1, + STATE(1061), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(701), 2, + STATE(726), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(841), 4, + STATE(1033), 4, sym__constant_type, sym_constant_tuple_type, sym_constant_type, sym_type_hole, - [32113] = 5, + [33317] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1200), 1, - anon_sym_SLASH, - STATE(503), 1, - aux_sym_module_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1198), 10, - ts_builtin_sym_end, + ACTIONS(1245), 11, anon_sym_if, - anon_sym_import, - anon_sym_DOT, anon_sym_as, - anon_sym_pub, - anon_sym_const, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - [32139] = 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_DOT_DOT, + anon_sym_PIPE, + [33338] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1203), 11, + ACTIONS(1247), 11, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -31051,33 +32181,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [32160] = 5, + [33359] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1205), 1, - anon_sym_SLASH, - STATE(505), 1, - aux_sym_module_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1198), 9, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_DOT, + ACTIONS(1249), 11, + anon_sym_if, anon_sym_as, - anon_sym_pub, - anon_sym_const, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - [32185] = 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_DOT_DOT, + anon_sym_PIPE, + [33380] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1208), 11, + ACTIONS(1251), 11, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -31089,37 +32217,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [32206] = 9, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(65), 1, - sym__upname, - ACTIONS(300), 1, - sym__name, - ACTIONS(1060), 1, - sym__discard_name, - ACTIONS(1148), 1, - anon_sym_POUND, - STATE(987), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(701), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(956), 4, - sym__constant_type, - sym_constant_tuple_type, - sym_constant_type, - sym_type_hole, - [32239] = 3, + [33401] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1210), 11, + ACTIONS(1253), 11, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -31131,13 +32235,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [32260] = 3, + [33422] = 3, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1255), 11, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_COMMA, + anon_sym_pub, + anon_sym_const, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_external, + anon_sym_type, + anon_sym_fn, + [33443] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1212), 11, + ACTIONS(1253), 11, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -31149,13 +32271,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [32281] = 3, + [33464] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1214), 11, + ACTIONS(1257), 11, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -31167,31 +32289,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [32302] = 3, + [33485] = 13, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1235), 1, + sym__discard_name, + ACTIONS(1237), 1, + sym__name, + ACTIONS(1259), 1, + anon_sym_RPAREN, + STATE(740), 1, + sym_label, + STATE(742), 1, + sym__name_param, + STATE(743), 1, + sym__labeled_name_param, + STATE(746), 1, + sym__discard_param, + STATE(751), 1, + sym__labeled_discard_param, + STATE(809), 1, + sym_identifier, + STATE(816), 1, + sym_discard, + STATE(997), 1, + sym_function_parameter, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [33526] = 3, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1261), 11, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_COMMA, + anon_sym_pub, + anon_sym_const, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_external, + anon_sym_type, + anon_sym_fn, + [33547] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1216), 11, + ACTIONS(1263), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, - anon_sym_COMMA, + anon_sym_COMMA, + anon_sym_pub, + anon_sym_const, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_external, + anon_sym_type, + anon_sym_fn, + [33568] = 13, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1235), 1, + sym__discard_name, + ACTIONS(1237), 1, + sym__name, + ACTIONS(1265), 1, + anon_sym_RPAREN, + STATE(740), 1, + sym_label, + STATE(742), 1, + sym__name_param, + STATE(743), 1, + sym__labeled_name_param, + STATE(746), 1, + sym__discard_param, + STATE(751), 1, + sym__labeled_discard_param, + STATE(809), 1, + sym_identifier, + STATE(816), 1, + sym_discard, + STATE(997), 1, + sym_function_parameter, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [33609] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1267), 1, + anon_sym_SLASH, + STATE(532), 1, + aux_sym_module_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1218), 9, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, anon_sym_pub, anon_sym_const, - anon_sym_EQ, - anon_sym_RPAREN, anon_sym_external, anon_sym_type, anon_sym_fn, - [32323] = 3, + [33634] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1214), 11, + ACTIONS(1270), 11, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -31203,13 +32419,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [32344] = 3, + [33655] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1218), 11, + ACTIONS(1272), 11, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -31221,13 +32437,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [32365] = 3, + [33676] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1220), 11, + ACTIONS(1274), 11, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -31239,13 +32455,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [32386] = 3, + [33697] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1222), 11, + ACTIONS(1276), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -31257,31 +32473,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [32407] = 3, + [33718] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1278), 1, + anon_sym_SLASH, + STATE(532), 1, + aux_sym_module_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1224), 11, - anon_sym_LBRACE, + ACTIONS(1216), 9, anon_sym_RBRACE, anon_sym_import, - anon_sym_COMMA, + anon_sym_DOT, + anon_sym_as, anon_sym_pub, anon_sym_const, - anon_sym_EQ, - anon_sym_RPAREN, anon_sym_external, anon_sym_type, anon_sym_fn, - [32428] = 3, + [33743] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1226), 11, + ACTIONS(1280), 11, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -31293,13 +32511,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [32449] = 3, + [33764] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1228), 11, + ACTIONS(1282), 11, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -31311,31 +32529,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [32470] = 3, + [33785] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1230), 11, - anon_sym_if, - anon_sym_as, + ACTIONS(1284), 11, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_import, anon_sym_COMMA, + anon_sym_pub, + anon_sym_const, anon_sym_EQ, anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - [32491] = 3, + anon_sym_external, + anon_sym_type, + anon_sym_fn, + [33806] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1232), 11, + ACTIONS(1286), 11, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -31347,13 +32565,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [32512] = 3, + [33827] = 3, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1288), 11, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_COMMA, + anon_sym_pub, + anon_sym_const, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_external, + anon_sym_type, + anon_sym_fn, + [33848] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1234), 11, + ACTIONS(1286), 11, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -31365,32 +32601,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [32533] = 4, + [33869] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1236), 1, - anon_sym_SLASH, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1198), 10, - ts_builtin_sym_end, - anon_sym_if, + ACTIONS(1290), 11, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_import, - anon_sym_DOT, - anon_sym_as, + anon_sym_COMMA, anon_sym_pub, anon_sym_const, + anon_sym_EQ, + anon_sym_RPAREN, anon_sym_external, anon_sym_type, anon_sym_fn, - [32556] = 3, + [33890] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1238), 11, + ACTIONS(1292), 11, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -31402,41 +32637,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [32577] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1240), 1, - anon_sym_RPAREN, - ACTIONS(1242), 1, - sym__discard_name, - ACTIONS(1244), 1, - sym__name, - STATE(715), 1, - sym__labeled_name_param, - STATE(736), 1, - sym__discard_param, - STATE(737), 1, - sym__labeled_discard_param, - STATE(743), 1, - sym_label, - STATE(746), 1, - sym__name_param, - STATE(824), 1, - sym_identifier, - STATE(825), 1, - sym_function_parameter, - STATE(854), 1, - sym_discard, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [32618] = 3, + [33911] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1246), 11, + ACTIONS(1294), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -31448,13 +32655,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [32639] = 3, + [33932] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1248), 11, + ACTIONS(1296), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -31466,73 +32673,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [32660] = 3, + [33953] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1278), 1, + anon_sym_SLASH, + STATE(537), 1, + aux_sym_module_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1250), 11, - anon_sym_LBRACE, + ACTIONS(1210), 9, anon_sym_RBRACE, anon_sym_import, - anon_sym_COMMA, + anon_sym_DOT, + anon_sym_as, anon_sym_pub, anon_sym_const, - anon_sym_EQ, - anon_sym_RPAREN, anon_sym_external, anon_sym_type, anon_sym_fn, - [32681] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1252), 11, - anon_sym_if, - anon_sym_as, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - [32702] = 9, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(65), 1, - sym__upname, - ACTIONS(300), 1, - sym__name, - ACTIONS(1060), 1, - sym__discard_name, - ACTIONS(1148), 1, - anon_sym_POUND, - STATE(987), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(701), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1044), 4, - sym__constant_type, - sym_constant_tuple_type, - sym_constant_type, - sym_type_hole, - [32735] = 3, + [33978] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1254), 11, + ACTIONS(1298), 11, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -31544,13 +32711,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [32756] = 3, + [33999] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1256), 11, + ACTIONS(1300), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -31562,13 +32729,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [32777] = 3, + [34020] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1258), 11, + ACTIONS(1302), 11, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -31580,115 +32747,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [32798] = 3, + [34041] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1304), 1, + anon_sym_SLASH, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1260), 11, + ACTIONS(1218), 10, + ts_builtin_sym_end, anon_sym_if, - anon_sym_as, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - [32819] = 13, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1242), 1, - sym__discard_name, - ACTIONS(1244), 1, - sym__name, - ACTIONS(1262), 1, - anon_sym_RPAREN, - STATE(715), 1, - sym__labeled_name_param, - STATE(736), 1, - sym__discard_param, - STATE(737), 1, - sym__labeled_discard_param, - STATE(743), 1, - sym_label, - STATE(746), 1, - sym__name_param, - STATE(824), 1, - sym_identifier, - STATE(854), 1, - sym_discard, - STATE(946), 1, - sym_function_parameter, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [32860] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1266), 1, - anon_sym_LPAREN, - STATE(569), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1264), 9, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_pub, - anon_sym_const, - anon_sym_EQ, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - [32885] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1268), 11, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_COMMA, - anon_sym_pub, - anon_sym_const, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - [32906] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1270), 11, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_import, - anon_sym_COMMA, + anon_sym_DOT, + anon_sym_as, anon_sym_pub, anon_sym_const, - anon_sym_EQ, - anon_sym_RPAREN, anon_sym_external, anon_sym_type, anon_sym_fn, - [32927] = 3, + [34064] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1272), 11, + ACTIONS(1306), 11, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -31700,13 +32784,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [32948] = 3, + [34085] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1274), 11, + ACTIONS(1308), 11, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -31718,69 +32802,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [32969] = 5, + [34106] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1276), 1, - anon_sym_SLASH, - STATE(548), 1, - aux_sym_module_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1186), 9, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_DOT, + ACTIONS(1310), 11, + anon_sym_if, anon_sym_as, - anon_sym_pub, - anon_sym_const, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - [32994] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1278), 11, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_COMMA, - anon_sym_pub, - anon_sym_const, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - [33015] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1280), 11, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_import, anon_sym_COMMA, - anon_sym_pub, - anon_sym_const, anon_sym_EQ, anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - [33036] = 3, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_DOT_DOT, + anon_sym_PIPE, + [34127] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1282), 11, + ACTIONS(1312), 11, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -31792,13 +32838,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [33057] = 3, + [34148] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1258), 11, + ACTIONS(1314), 11, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -31810,13 +32856,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [33078] = 3, + [34169] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1284), 11, + ACTIONS(1316), 11, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -31828,13 +32874,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [33099] = 3, + [34190] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1286), 11, + ACTIONS(1318), 11, anon_sym_if, anon_sym_as, anon_sym_COMMA, @@ -31846,15 +32892,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [33120] = 3, + [34211] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1320), 1, + anon_sym_LPAREN, + STATE(647), 1, + sym_type_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1288), 11, + ACTIONS(1229), 8, + ts_builtin_sym_end, + anon_sym_if, + anon_sym_import, + anon_sym_pub, + anon_sym_const, + anon_sym_external, + anon_sym_type, + anon_sym_fn, + [34235] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1322), 1, + anon_sym_LPAREN, + STATE(629), 1, + sym_constant_record_arguments, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(834), 8, + ts_builtin_sym_end, + anon_sym_if, + anon_sym_import, + anon_sym_pub, + anon_sym_const, + anon_sym_external, + anon_sym_type, + anon_sym_fn, + [34259] = 3, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1324), 10, anon_sym_if, - anon_sym_as, anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, @@ -31864,234 +32947,245 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [33141] = 5, + [34279] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1276), 1, - anon_sym_SLASH, - STATE(505), 1, - aux_sym_module_repeat1, + ACTIONS(1328), 1, + anon_sym_DOT, + ACTIONS(1330), 1, + anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1190), 9, - anon_sym_RBRACE, + ACTIONS(1326), 8, + ts_builtin_sym_end, + anon_sym_if, anon_sym_import, - anon_sym_DOT, - anon_sym_as, anon_sym_pub, anon_sym_const, anon_sym_external, anon_sym_type, anon_sym_fn, - [33166] = 13, + [34303] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1242), 1, + ACTIONS(1235), 1, sym__discard_name, - ACTIONS(1244), 1, + ACTIONS(1237), 1, sym__name, - ACTIONS(1290), 1, - anon_sym_RPAREN, - STATE(715), 1, + STATE(740), 1, + sym_label, + STATE(742), 1, + sym__name_param, + STATE(743), 1, sym__labeled_name_param, - STATE(736), 1, + STATE(746), 1, sym__discard_param, - STATE(737), 1, + STATE(751), 1, sym__labeled_discard_param, - STATE(743), 1, - sym_label, - STATE(746), 1, - sym__name_param, - STATE(824), 1, + STATE(809), 1, sym_identifier, - STATE(854), 1, + STATE(816), 1, sym_discard, - STATE(946), 1, + STATE(997), 1, sym_function_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [33207] = 3, + [34341] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1332), 1, + anon_sym_LPAREN, + STATE(625), 1, + sym_type_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1292), 11, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(1188), 8, + ts_builtin_sym_end, + anon_sym_if, anon_sym_import, - anon_sym_COMMA, anon_sym_pub, anon_sym_const, - anon_sym_EQ, - anon_sym_RPAREN, anon_sym_external, anon_sym_type, anon_sym_fn, - [33228] = 3, + [34365] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1304), 1, + anon_sym_SLASH, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1294), 11, - anon_sym_if, + ACTIONS(1218), 9, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_DOT, anon_sym_as, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - [33249] = 3, + anon_sym_pub, + anon_sym_const, + anon_sym_external, + anon_sym_type, + anon_sym_fn, + [34387] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1296), 10, + ACTIONS(463), 9, + ts_builtin_sym_end, anon_sym_if, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - [33269] = 5, + anon_sym_import, + anon_sym_pub, + anon_sym_const, + anon_sym_LPAREN, + anon_sym_external, + anon_sym_type, + anon_sym_fn, + [34406] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1298), 1, - anon_sym_LPAREN, - STATE(653), 1, - sym_type_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1264), 8, + ACTIONS(1334), 9, ts_builtin_sym_end, anon_sym_if, anon_sym_import, + anon_sym_as, anon_sym_pub, anon_sym_const, anon_sym_external, anon_sym_type, anon_sym_fn, - [33293] = 5, + [34425] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1302), 1, - anon_sym_DOT, - ACTIONS(1304), 1, - anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1300), 8, + ACTIONS(1336), 9, ts_builtin_sym_end, anon_sym_if, anon_sym_import, + anon_sym_as, anon_sym_pub, anon_sym_const, anon_sym_external, anon_sym_type, anon_sym_fn, - [33317] = 12, + [34444] = 8, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1242), 1, - sym__discard_name, - ACTIONS(1244), 1, + ACTIONS(123), 1, + sym__decimal, + ACTIONS(1338), 1, + anon_sym_DASH, + ACTIONS(1340), 1, sym__name, - STATE(715), 1, - sym__labeled_name_param, - STATE(736), 1, - sym__discard_param, - STATE(737), 1, - sym__labeled_discard_param, - STATE(743), 1, - sym_label, - STATE(746), 1, - sym__name_param, - STATE(824), 1, + STATE(1023), 1, + sym__pattern_bit_string_segment_argument, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(1024), 2, + sym_integer, sym_identifier, - STATE(854), 1, - sym_discard, - STATE(946), 1, - sym_function_parameter, + ACTIONS(121), 3, + sym__hex, + sym__octal, + sym__binary, + [34473] = 3, + ACTIONS(3), 1, + sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [33355] = 5, + ACTIONS(1342), 9, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_pub, + anon_sym_const, + anon_sym_EQ, + anon_sym_external, + anon_sym_type, + anon_sym_fn, + [34492] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1306), 1, - anon_sym_LPAREN, - STATE(610), 1, - sym_type_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1152), 8, - ts_builtin_sym_end, - anon_sym_if, + ACTIONS(1344), 9, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_import, anon_sym_pub, anon_sym_const, + anon_sym_EQ, anon_sym_external, anon_sym_type, anon_sym_fn, - [33379] = 5, + [34511] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1308), 1, - anon_sym_LPAREN, - STATE(627), 1, - sym_constant_record_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(764), 8, + ACTIONS(1346), 9, ts_builtin_sym_end, anon_sym_if, anon_sym_import, + anon_sym_as, anon_sym_pub, anon_sym_const, anon_sym_external, anon_sym_type, anon_sym_fn, - [33403] = 4, + [34530] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1236), 1, - anon_sym_SLASH, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1198), 9, + ACTIONS(1348), 9, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_pub, + anon_sym_const, + anon_sym_EQ, + anon_sym_external, + anon_sym_type, + anon_sym_fn, + [34549] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(476), 1, anon_sym_DOT, - anon_sym_as, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1208), 8, + ts_builtin_sym_end, + anon_sym_if, + anon_sym_import, anon_sym_pub, anon_sym_const, anon_sym_external, anon_sym_type, anon_sym_fn, - [33425] = 3, + [34570] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1310), 9, + ACTIONS(1350), 9, ts_builtin_sym_end, anon_sym_if, anon_sym_import, @@ -32101,45 +33195,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [33444] = 3, + [34589] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1312), 9, - anon_sym_LBRACE, + ACTIONS(23), 9, + ts_builtin_sym_end, + anon_sym_if, + anon_sym_import, + anon_sym_pub, + anon_sym_const, + anon_sym_LPAREN, + anon_sym_external, + anon_sym_type, + anon_sym_fn, + [34608] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1352), 1, + anon_sym_DOT, + ACTIONS(1354), 1, + anon_sym_as, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1326), 7, anon_sym_RBRACE, anon_sym_import, anon_sym_pub, anon_sym_const, + anon_sym_external, + anon_sym_type, + anon_sym_fn, + [34631] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1356), 1, + anon_sym_DOT, + ACTIONS(1358), 1, + anon_sym_as, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1360), 7, + anon_sym_COMMA, anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_DOT_DOT, + [34654] = 11, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(15), 1, + anon_sym_const, + ACTIONS(17), 1, anon_sym_external, + ACTIONS(21), 1, + anon_sym_fn, + ACTIONS(1362), 1, anon_sym_type, + ACTIONS(1364), 1, + anon_sym_opaque, + STATE(604), 1, + sym__external_type, + STATE(606), 1, + sym__external_function, + STATE(611), 1, + sym__function, + STATE(637), 1, + sym__constant, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [34689] = 11, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(756), 1, + anon_sym_const, + ACTIONS(758), 1, + anon_sym_external, + ACTIONS(762), 1, anon_sym_fn, - [33463] = 3, + ACTIONS(1366), 1, + anon_sym_type, + ACTIONS(1368), 1, + anon_sym_opaque, + STATE(667), 1, + sym__external_function, + STATE(674), 1, + sym__function, + STATE(675), 1, + sym__external_type, + STATE(685), 1, + sym__constant, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [34724] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1372), 1, + anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(23), 9, + ACTIONS(1370), 8, ts_builtin_sym_end, anon_sym_if, anon_sym_import, anon_sym_pub, anon_sym_const, - anon_sym_LPAREN, anon_sym_external, anon_sym_type, anon_sym_fn, - [33482] = 3, + [34745] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1314), 9, + ACTIONS(1374), 9, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -32149,34 +33328,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [33501] = 8, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(134), 1, - sym__decimal, - ACTIONS(1316), 1, - anon_sym_DASH, - ACTIONS(1318), 1, - sym__name, - STATE(981), 1, - sym__pattern_bit_string_segment_argument, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(1003), 2, - sym_integer, - sym_identifier, - ACTIONS(132), 3, - sym__hex, - sym__octal, - sym__binary, - [33530] = 3, + [34764] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1320), 9, + ACTIONS(1376), 9, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -32186,99 +33344,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [33549] = 3, + [34783] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(378), 9, + ACTIONS(1378), 8, ts_builtin_sym_end, anon_sym_if, anon_sym_import, anon_sym_pub, anon_sym_const, - anon_sym_LPAREN, anon_sym_external, anon_sym_type, anon_sym_fn, - [33568] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1322), 1, - anon_sym_DOT, - ACTIONS(1324), 1, - anon_sym_as, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1326), 7, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_DOT_DOT, - [33591] = 5, + [34801] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1328), 1, - anon_sym_DOT, - ACTIONS(1330), 1, - anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1300), 7, - anon_sym_RBRACE, + ACTIONS(1380), 8, + ts_builtin_sym_end, + anon_sym_if, anon_sym_import, anon_sym_pub, anon_sym_const, anon_sym_external, anon_sym_type, anon_sym_fn, - [33614] = 3, + [34819] = 9, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(63), 1, + sym__upname, + ACTIONS(1340), 1, + sym__name, + STATE(651), 1, + sym__custom_type_definition, + STATE(659), 1, + sym__type_alias, + STATE(938), 1, + sym_type_name, + STATE(1061), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(513), 2, + sym_type_identifier, + sym_remote_type_identifier, + [34849] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1332), 9, + ACTIONS(1300), 8, ts_builtin_sym_end, anon_sym_if, anon_sym_import, - anon_sym_as, anon_sym_pub, anon_sym_const, anon_sym_external, anon_sym_type, anon_sym_fn, - [33633] = 3, + [34867] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1334), 9, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(1284), 8, + ts_builtin_sym_end, + anon_sym_if, anon_sym_import, anon_sym_pub, anon_sym_const, - anon_sym_EQ, anon_sym_external, anon_sym_type, anon_sym_fn, - [33652] = 4, + [34885] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1338), 1, - anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1336), 8, + ACTIONS(1255), 8, ts_builtin_sym_end, anon_sym_if, anon_sym_import, @@ -32287,95 +33440,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [33673] = 3, + [34903] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1340), 9, + ACTIONS(1382), 8, ts_builtin_sym_end, anon_sym_if, anon_sym_import, - anon_sym_as, anon_sym_pub, anon_sym_const, anon_sym_external, anon_sym_type, anon_sym_fn, - [33692] = 11, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(750), 1, - anon_sym_const, - ACTIONS(752), 1, - anon_sym_external, - ACTIONS(756), 1, - anon_sym_fn, - ACTIONS(1342), 1, - anon_sym_type, - ACTIONS(1344), 1, - anon_sym_opaque, - STATE(657), 1, - sym__constant, - STATE(658), 1, - sym__external_type, - STATE(659), 1, - sym__external_function, - STATE(660), 1, - sym__function, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [33727] = 3, + [34921] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1346), 9, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(1384), 8, + ts_builtin_sym_end, + anon_sym_if, anon_sym_import, anon_sym_pub, anon_sym_const, - anon_sym_EQ, anon_sym_external, anon_sym_type, anon_sym_fn, - [33746] = 11, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(15), 1, - anon_sym_const, - ACTIONS(17), 1, - anon_sym_external, - ACTIONS(21), 1, - anon_sym_fn, - ACTIONS(1348), 1, - anon_sym_type, - ACTIONS(1350), 1, - anon_sym_opaque, - STATE(634), 1, - sym__function, - STATE(636), 1, - sym__external_function, - STATE(638), 1, - sym__external_type, - STATE(639), 1, - sym__constant, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [33781] = 4, + [34939] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(408), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1156), 8, + ACTIONS(1386), 8, ts_builtin_sym_end, anon_sym_if, anon_sym_import, @@ -32384,50 +33485,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [33802] = 3, + [34957] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1352), 9, + ACTIONS(1290), 8, ts_builtin_sym_end, anon_sym_if, anon_sym_import, - anon_sym_as, anon_sym_pub, anon_sym_const, anon_sym_external, anon_sym_type, anon_sym_fn, - [33821] = 9, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(65), 1, - sym__upname, - ACTIONS(1318), 1, - sym__name, - STATE(663), 1, - sym__custom_type_definition, - STATE(664), 1, - sym__type_alias, - STATE(893), 1, - sym_type_name, - STATE(987), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(535), 2, - sym_type_identifier, - sym_remote_type_identifier, - [33851] = 3, + [34975] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1354), 8, + ACTIONS(1294), 8, ts_builtin_sym_end, anon_sym_if, anon_sym_import, @@ -32436,13 +33515,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [33869] = 3, + [34993] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(844), 8, + ACTIONS(1388), 8, ts_builtin_sym_end, anon_sym_if, anon_sym_import, @@ -32451,13 +33530,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [33887] = 3, + [35011] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1314), 8, + ACTIONS(1296), 8, ts_builtin_sym_end, anon_sym_if, anon_sym_import, @@ -32466,13 +33545,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [33905] = 3, + [35029] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(27), 8, + ACTIONS(906), 8, ts_builtin_sym_end, anon_sym_if, anon_sym_import, @@ -32481,28 +33560,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [33923] = 3, + [35047] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(866), 8, - ts_builtin_sym_end, - anon_sym_if, + ACTIONS(1336), 8, + anon_sym_RBRACE, anon_sym_import, + anon_sym_as, anon_sym_pub, anon_sym_const, anon_sym_external, anon_sym_type, anon_sym_fn, - [33941] = 3, + [35065] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(874), 8, + ACTIONS(77), 8, ts_builtin_sym_end, anon_sym_if, anon_sym_import, @@ -32511,13 +33590,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [33959] = 3, + [35083] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1268), 8, + ACTIONS(1348), 8, ts_builtin_sym_end, anon_sym_if, anon_sym_import, @@ -32526,13 +33605,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [33977] = 3, + [35101] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1356), 8, + ACTIONS(1390), 8, ts_builtin_sym_end, anon_sym_if, anon_sym_import, @@ -32541,13 +33620,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [33995] = 3, + [35119] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1270), 8, + ACTIONS(1261), 8, ts_builtin_sym_end, anon_sym_if, anon_sym_import, @@ -32556,13 +33635,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [34013] = 3, + [35137] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1358), 8, + ACTIONS(1392), 8, ts_builtin_sym_end, anon_sym_if, anon_sym_import, @@ -32571,13 +33650,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [34031] = 3, + [35155] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(906), 8, + ACTIONS(928), 8, ts_builtin_sym_end, anon_sym_if, anon_sym_import, @@ -32586,13 +33665,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [34049] = 3, + [35173] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1360), 8, + ACTIONS(1394), 8, ts_builtin_sym_end, anon_sym_if, anon_sym_import, @@ -32601,13 +33680,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [34067] = 3, + [35191] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(894), 8, + ACTIONS(914), 8, ts_builtin_sym_end, anon_sym_if, anon_sym_import, @@ -32616,28 +33695,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [34085] = 3, + [35209] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1352), 8, - anon_sym_RBRACE, + ACTIONS(910), 8, + ts_builtin_sym_end, + anon_sym_if, anon_sym_import, - anon_sym_as, anon_sym_pub, anon_sym_const, anon_sym_external, anon_sym_type, anon_sym_fn, - [34103] = 3, + [35227] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1362), 8, + ACTIONS(894), 8, ts_builtin_sym_end, anon_sym_if, anon_sym_import, @@ -32646,13 +33725,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [34121] = 3, + [35245] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(890), 8, + ACTIONS(902), 8, ts_builtin_sym_end, anon_sym_if, anon_sym_import, @@ -32661,13 +33740,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [34139] = 3, + [35263] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1222), 8, + ACTIONS(1396), 8, ts_builtin_sym_end, anon_sym_if, anon_sym_import, @@ -32676,13 +33755,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [34157] = 3, + [35281] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(914), 8, + ACTIONS(898), 8, ts_builtin_sym_end, anon_sym_if, anon_sym_import, @@ -32691,13 +33770,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [34175] = 3, + [35299] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(926), 8, + ACTIONS(1398), 8, ts_builtin_sym_end, anon_sym_if, anon_sym_import, @@ -32706,13 +33785,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [34193] = 3, + [35317] = 8, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(685), 1, + sym__decimal, + ACTIONS(691), 1, + sym__upname, + ACTIONS(1400), 1, + anon_sym_DASH, + STATE(434), 1, + sym_type_identifier, + STATE(467), 1, + sym_integer, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(683), 3, + sym__hex, + sym__octal, + sym__binary, + [35345] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1364), 8, + ACTIONS(1402), 8, ts_builtin_sym_end, anon_sym_if, anon_sym_import, @@ -32721,13 +33820,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [34211] = 3, + [35363] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(71), 8, + ACTIONS(890), 8, ts_builtin_sym_end, anon_sym_if, anon_sym_import, @@ -32736,13 +33835,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [34229] = 3, + [35381] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(882), 8, + ACTIONS(1404), 8, ts_builtin_sym_end, anon_sym_if, anon_sym_import, @@ -32751,13 +33850,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [34247] = 3, + [35399] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(898), 8, + ACTIONS(1406), 8, ts_builtin_sym_end, anon_sym_if, anon_sym_import, @@ -32766,13 +33865,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [34265] = 3, + [35417] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1246), 8, + ACTIONS(882), 8, ts_builtin_sym_end, anon_sym_if, anon_sym_import, @@ -32781,13 +33880,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [34283] = 3, + [35435] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1346), 8, + ACTIONS(1408), 8, ts_builtin_sym_end, anon_sym_if, anon_sym_import, @@ -32796,13 +33895,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [34301] = 3, + [35453] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1366), 8, + ACTIONS(932), 8, ts_builtin_sym_end, anon_sym_if, anon_sym_import, @@ -32811,13 +33910,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [34319] = 3, + [35471] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1368), 8, + ACTIONS(224), 8, ts_builtin_sym_end, anon_sym_if, anon_sym_import, @@ -32826,71 +33925,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [34337] = 9, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(65), 1, - sym__upname, - ACTIONS(1318), 1, - sym__name, - STATE(661), 1, - sym__custom_type_definition, - STATE(662), 1, - sym__type_alias, - STATE(893), 1, - sym_type_name, - STATE(987), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(535), 2, - sym_type_identifier, - sym_remote_type_identifier, - [34367] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1324), 1, - anon_sym_as, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1326), 7, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_DOT_DOT, - [34387] = 9, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(65), 1, - sym__upname, - ACTIONS(1318), 1, - sym__name, - STATE(667), 1, - sym__custom_type_definition, - STATE(669), 1, - sym__type_alias, - STATE(893), 1, - sym_type_name, - STATE(987), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(535), 2, - sym_type_identifier, - sym_remote_type_identifier, - [34417] = 3, + [35489] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(922), 8, + ACTIONS(1410), 8, ts_builtin_sym_end, anon_sym_if, anon_sym_import, @@ -32899,33 +33940,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [34435] = 8, + [35507] = 8, ACTIONS(3), 1, sym_module_comment, - ACTIONS(698), 1, + ACTIONS(57), 1, sym__decimal, - ACTIONS(704), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(1370), 1, + ACTIONS(579), 1, anon_sym_DASH, - STATE(429), 1, + STATE(184), 1, sym_type_identifier, - STATE(460), 1, + STATE(467), 1, sym_integer, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(696), 3, + ACTIONS(55), 3, sym__hex, sym__octal, sym__binary, - [34463] = 3, + [35535] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1292), 8, + ACTIONS(1243), 8, ts_builtin_sym_end, anon_sym_if, anon_sym_import, @@ -32934,28 +33975,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [34481] = 3, + [35553] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1372), 8, - ts_builtin_sym_end, - anon_sym_if, + ACTIONS(1346), 8, + anon_sym_RBRACE, anon_sym_import, + anon_sym_as, anon_sym_pub, anon_sym_const, anon_sym_external, anon_sym_type, anon_sym_fn, - [34499] = 3, + [35571] = 9, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(63), 1, + sym__upname, + ACTIONS(1340), 1, + sym__name, + STATE(677), 1, + sym__custom_type_definition, + STATE(678), 1, + sym__type_alias, + STATE(919), 1, + sym_type_name, + STATE(1061), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(513), 2, + sym_type_identifier, + sym_remote_type_identifier, + [35601] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(918), 8, + ACTIONS(1412), 8, ts_builtin_sym_end, anon_sym_if, anon_sym_import, @@ -32964,13 +34026,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [34517] = 3, + [35619] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1278), 8, + ACTIONS(936), 8, ts_builtin_sym_end, anon_sym_if, anon_sym_import, @@ -32979,13 +34041,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [34535] = 3, + [35637] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1280), 8, + ACTIONS(1414), 8, ts_builtin_sym_end, anon_sym_if, anon_sym_import, @@ -32994,28 +34056,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [34553] = 3, + [35655] = 9, ACTIONS(3), 1, sym_module_comment, + ACTIONS(63), 1, + sym__upname, + ACTIONS(1340), 1, + sym__name, + STATE(666), 1, + sym__type_alias, + STATE(683), 1, + sym__custom_type_definition, + STATE(919), 1, + sym_type_name, + STATE(1061), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1374), 8, - ts_builtin_sym_end, - anon_sym_if, + STATE(513), 2, + sym_type_identifier, + sym_remote_type_identifier, + [35685] = 3, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1334), 8, + anon_sym_RBRACE, anon_sym_import, + anon_sym_as, anon_sym_pub, anon_sym_const, anon_sym_external, anon_sym_type, anon_sym_fn, - [34571] = 3, + [35703] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1376), 8, + ACTIONS(1416), 8, ts_builtin_sym_end, anon_sym_if, anon_sym_import, @@ -33024,13 +34107,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [34589] = 3, + [35721] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1248), 8, + ACTIONS(232), 8, ts_builtin_sym_end, anon_sym_if, anon_sym_import, @@ -33039,13 +34122,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [34607] = 3, + [35739] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1378), 8, + ACTIONS(1418), 8, ts_builtin_sym_end, anon_sym_if, anon_sym_import, @@ -33054,34 +34137,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [34625] = 9, + [35757] = 9, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(1318), 1, + ACTIONS(1340), 1, sym__name, - STATE(603), 1, - sym__type_alias, - STATE(604), 1, + STATE(672), 1, sym__custom_type_definition, - STATE(954), 1, + STATE(673), 1, + sym__type_alias, + STATE(919), 1, sym_type_name, - STATE(987), 1, + STATE(1061), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(535), 2, + STATE(513), 2, sym_type_identifier, sym_remote_type_identifier, - [34655] = 3, + [35787] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(870), 8, + ACTIONS(1420), 8, ts_builtin_sym_end, anon_sym_if, anon_sym_import, @@ -33090,13 +34173,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [34673] = 3, + [35805] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(862), 8, + ACTIONS(1422), 8, ts_builtin_sym_end, anon_sym_if, anon_sym_import, @@ -33105,13 +34188,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [34691] = 3, + [35823] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1380), 8, + ACTIONS(87), 8, ts_builtin_sym_end, anon_sym_if, anon_sym_import, @@ -33120,13 +34203,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [34709] = 3, + [35841] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1382), 8, + ACTIONS(946), 8, ts_builtin_sym_end, anon_sym_if, anon_sym_import, @@ -33135,13 +34218,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [34727] = 3, + [35859] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(852), 8, + ACTIONS(1342), 8, ts_builtin_sym_end, anon_sym_if, anon_sym_import, @@ -33150,13 +34233,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [34745] = 3, + [35877] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(848), 8, + ACTIONS(476), 8, ts_builtin_sym_end, anon_sym_if, anon_sym_import, @@ -33165,28 +34248,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [34763] = 3, + [35895] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1310), 8, - anon_sym_RBRACE, + ACTIONS(868), 8, + ts_builtin_sym_end, + anon_sym_if, anon_sym_import, - anon_sym_as, anon_sym_pub, anon_sym_const, anon_sym_external, anon_sym_type, anon_sym_fn, - [34781] = 3, + [35913] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(902), 8, + ACTIONS(1424), 8, ts_builtin_sym_end, anon_sym_if, anon_sym_import, @@ -33195,13 +34278,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [34799] = 3, + [35931] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1384), 8, + ACTIONS(1376), 8, ts_builtin_sym_end, anon_sym_if, anon_sym_import, @@ -33210,13 +34293,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [34817] = 3, + [35949] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1358), 1, + anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1386), 8, + ACTIONS(1360), 7, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_DOT_DOT, + [35969] = 3, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1374), 8, ts_builtin_sym_end, anon_sym_if, anon_sym_import, @@ -33225,13 +34324,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [34835] = 3, + [35987] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1388), 8, + ACTIONS(924), 8, ts_builtin_sym_end, anon_sym_if, anon_sym_import, @@ -33240,13 +34339,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [34853] = 3, + [36005] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1320), 8, + ACTIONS(920), 8, ts_builtin_sym_end, anon_sym_if, anon_sym_import, @@ -33255,15 +34354,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [34871] = 4, + [36023] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1390), 1, + ACTIONS(1426), 1, anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1336), 7, + ACTIONS(1370), 7, anon_sym_RBRACE, anon_sym_import, anon_sym_pub, @@ -33271,13 +34370,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [34891] = 3, + [36043] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1312), 8, + ACTIONS(1428), 8, ts_builtin_sym_end, anon_sym_if, anon_sym_import, @@ -33286,13 +34385,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [34909] = 3, + [36061] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1392), 8, + ACTIONS(1263), 8, ts_builtin_sym_end, anon_sym_if, anon_sym_import, @@ -33301,13 +34400,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [34927] = 3, + [36079] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1394), 8, + ACTIONS(968), 8, ts_builtin_sym_end, anon_sym_if, anon_sym_import, @@ -33316,13 +34415,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [34945] = 3, + [36097] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1396), 8, + ACTIONS(874), 8, ts_builtin_sym_end, anon_sym_if, anon_sym_import, @@ -33331,28 +34430,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [34963] = 3, + [36115] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1340), 8, - anon_sym_RBRACE, + ACTIONS(1430), 8, + ts_builtin_sym_end, + anon_sym_if, anon_sym_import, - anon_sym_as, anon_sym_pub, anon_sym_const, anon_sym_external, anon_sym_type, anon_sym_fn, - [34981] = 3, + [36133] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1398), 8, + ACTIONS(1344), 8, ts_builtin_sym_end, anon_sym_if, anon_sym_import, @@ -33361,13 +34460,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [34999] = 3, + [36151] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1400), 8, + ACTIONS(1241), 8, ts_builtin_sym_end, anon_sym_if, anon_sym_import, @@ -33376,69 +34475,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [35017] = 3, + [36169] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(408), 8, - ts_builtin_sym_end, - anon_sym_if, + ACTIONS(1350), 8, + anon_sym_RBRACE, anon_sym_import, + anon_sym_as, anon_sym_pub, anon_sym_const, anon_sym_external, anon_sym_type, anon_sym_fn, - [35035] = 8, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(59), 1, - sym__decimal, - ACTIONS(65), 1, - sym__upname, - ACTIONS(560), 1, - anon_sym_DASH, - STATE(181), 1, - sym_type_identifier, - STATE(460), 1, - sym_integer, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(57), 3, - sym__hex, - sym__octal, - sym__binary, - [35063] = 9, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(65), 1, - sym__upname, - ACTIONS(1318), 1, - sym__name, - STATE(622), 1, - sym__type_alias, - STATE(623), 1, - sym__custom_type_definition, - STATE(954), 1, - sym_type_name, - STATE(987), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(535), 2, - sym_type_identifier, - sym_remote_type_identifier, - [35093] = 3, + [36187] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1256), 8, + ACTIONS(1432), 8, ts_builtin_sym_end, anon_sym_if, anon_sym_import, @@ -33447,13 +34505,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [35111] = 3, + [36205] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1402), 8, + ACTIONS(1276), 8, ts_builtin_sym_end, anon_sym_if, anon_sym_import, @@ -33462,28 +34520,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [35129] = 3, + [36223] = 9, ACTIONS(3), 1, sym_module_comment, + ACTIONS(63), 1, + sym__upname, + ACTIONS(1340), 1, + sym__name, + STATE(592), 1, + sym__type_alias, + STATE(615), 1, + sym__custom_type_definition, + STATE(938), 1, + sym_type_name, + STATE(1061), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1250), 8, - ts_builtin_sym_end, - anon_sym_if, - anon_sym_import, - anon_sym_pub, - anon_sym_const, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - [35147] = 3, + STATE(513), 2, + sym_type_identifier, + sym_remote_type_identifier, + [36253] = 9, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(63), 1, + sym__upname, + ACTIONS(1340), 1, + sym__name, + STATE(635), 1, + sym__type_alias, + STATE(664), 1, + sym__custom_type_definition, + STATE(938), 1, + sym_type_name, + STATE(1061), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(513), 2, + sym_type_identifier, + sym_remote_type_identifier, + [36283] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1224), 8, + ACTIONS(1288), 8, ts_builtin_sym_end, anon_sym_if, anon_sym_import, @@ -33492,13 +34577,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [35165] = 3, + [36301] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1404), 8, + ACTIONS(1434), 8, ts_builtin_sym_end, anon_sym_if, anon_sym_import, @@ -33507,124 +34592,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [35183] = 3, + [36319] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1216), 8, - ts_builtin_sym_end, - anon_sym_if, + ACTIONS(1404), 7, + anon_sym_RBRACE, anon_sym_import, anon_sym_pub, anon_sym_const, anon_sym_external, anon_sym_type, anon_sym_fn, - [35201] = 3, + [36336] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1406), 8, - ts_builtin_sym_end, - anon_sym_if, + ACTIONS(1432), 7, + anon_sym_RBRACE, anon_sym_import, anon_sym_pub, anon_sym_const, anon_sym_external, anon_sym_type, anon_sym_fn, - [35219] = 3, + [36353] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1408), 8, - ts_builtin_sym_end, - anon_sym_if, + ACTIONS(1394), 7, + anon_sym_RBRACE, anon_sym_import, anon_sym_pub, anon_sym_const, anon_sym_external, anon_sym_type, anon_sym_fn, - [35237] = 3, + [36370] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1410), 8, - ts_builtin_sym_end, - anon_sym_if, + ACTIONS(1422), 7, + anon_sym_RBRACE, anon_sym_import, anon_sym_pub, anon_sym_const, anon_sym_external, anon_sym_type, anon_sym_fn, - [35255] = 3, + [36387] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1332), 8, + ACTIONS(1430), 7, anon_sym_RBRACE, anon_sym_import, - anon_sym_as, anon_sym_pub, anon_sym_const, anon_sym_external, anon_sym_type, anon_sym_fn, - [35273] = 3, + [36404] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1334), 8, - ts_builtin_sym_end, - anon_sym_if, + ACTIONS(1382), 7, + anon_sym_RBRACE, anon_sym_import, anon_sym_pub, anon_sym_const, anon_sym_external, anon_sym_type, anon_sym_fn, - [35291] = 9, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(65), 1, - sym__upname, - ACTIONS(1318), 1, - sym__name, - STATE(628), 1, - sym__type_alias, - STATE(629), 1, - sym__custom_type_definition, - STATE(954), 1, - sym_type_name, - STATE(987), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(535), 2, - sym_type_identifier, - sym_remote_type_identifier, - [35321] = 3, + [36421] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1412), 7, + ACTIONS(1436), 7, anon_sym_if, anon_sym_COMMA, anon_sym_RPAREN, @@ -33632,13 +34690,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT_DOT, anon_sym_PIPE, - [35338] = 3, + [36438] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1410), 7, + ACTIONS(1402), 7, anon_sym_RBRACE, anon_sym_import, anon_sym_pub, @@ -33646,13 +34704,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [35355] = 3, + [36455] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1400), 7, + ACTIONS(1384), 7, anon_sym_RBRACE, anon_sym_import, anon_sym_pub, @@ -33660,13 +34718,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [35372] = 3, + [36472] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1398), 7, + ACTIONS(1396), 7, anon_sym_RBRACE, anon_sym_import, anon_sym_pub, @@ -33674,13 +34732,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [35389] = 3, + [36489] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1396), 7, + ACTIONS(1392), 7, anon_sym_RBRACE, anon_sym_import, anon_sym_pub, @@ -33688,13 +34746,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [35406] = 3, + [36506] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1392), 7, + ACTIONS(1416), 7, anon_sym_RBRACE, anon_sym_import, anon_sym_pub, @@ -33702,13 +34760,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [35423] = 3, + [36523] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1386), 7, + ACTIONS(1434), 7, anon_sym_RBRACE, anon_sym_import, anon_sym_pub, @@ -33716,13 +34774,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [35440] = 3, + [36540] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1384), 7, + ACTIONS(1418), 7, anon_sym_RBRACE, anon_sym_import, anon_sym_pub, @@ -33730,13 +34788,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [35457] = 3, + [36557] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1382), 7, + ACTIONS(1386), 7, anon_sym_RBRACE, anon_sym_import, anon_sym_pub, @@ -33744,13 +34802,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [35474] = 3, + [36574] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1380), 7, + ACTIONS(1412), 7, anon_sym_RBRACE, anon_sym_import, anon_sym_pub, @@ -33758,7 +34816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [35491] = 3, + [36591] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, @@ -33772,13 +34830,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [35508] = 3, + [36608] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1402), 7, + ACTIONS(1388), 7, anon_sym_RBRACE, anon_sym_import, anon_sym_pub, @@ -33786,13 +34844,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [35525] = 3, + [36625] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1368), 7, + ACTIONS(1428), 7, anon_sym_RBRACE, anon_sym_import, anon_sym_pub, @@ -33800,13 +34858,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [35542] = 3, + [36642] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1362), 7, + ACTIONS(1414), 7, anon_sym_RBRACE, anon_sym_import, anon_sym_pub, @@ -33814,13 +34872,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [35559] = 3, + [36659] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1366), 7, + ACTIONS(1420), 7, anon_sym_RBRACE, anon_sym_import, anon_sym_pub, @@ -33828,13 +34886,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [35576] = 3, + [36676] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1358), 7, + ACTIONS(1390), 7, anon_sym_RBRACE, anon_sym_import, anon_sym_pub, @@ -33842,13 +34900,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [35593] = 3, + [36693] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1354), 7, + ACTIONS(1406), 7, anon_sym_RBRACE, anon_sym_import, anon_sym_pub, @@ -33856,13 +34914,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [35610] = 3, + [36710] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1374), 7, + ACTIONS(1408), 7, anon_sym_RBRACE, anon_sym_import, anon_sym_pub, @@ -33870,13 +34928,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [35627] = 3, + [36727] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1364), 7, + ACTIONS(1398), 7, anon_sym_RBRACE, anon_sym_import, anon_sym_pub, @@ -33884,13 +34942,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [35644] = 3, + [36744] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1376), 7, + ACTIONS(1380), 7, anon_sym_RBRACE, anon_sym_import, anon_sym_pub, @@ -33898,4226 +34956,4299 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_external, anon_sym_type, anon_sym_fn, - [35661] = 3, + [36761] = 8, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(63), 1, + sym__upname, + ACTIONS(1340), 1, + sym__name, + ACTIONS(1438), 1, + anon_sym_RBRACE, + STATE(819), 1, + sym_identifier, + STATE(822), 1, + sym_type_identifier, + STATE(960), 1, + sym_unqualified_import, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [36787] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(123), 1, + sym__decimal, + ACTIONS(1338), 1, + anon_sym_DASH, + STATE(52), 1, + sym_integer, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(121), 3, + sym__hex, + sym__octal, + sym__binary, + [36809] = 7, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1070), 1, + sym__upname, + ACTIONS(1340), 1, + sym__name, + STATE(638), 1, + sym_type_name, + STATE(1079), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(560), 2, + sym_type_identifier, + sym_remote_type_identifier, + [36833] = 8, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(63), 1, + sym__upname, + ACTIONS(1340), 1, + sym__name, + ACTIONS(1440), 1, + anon_sym_RBRACE, + STATE(818), 1, + sym_unqualified_import, + STATE(819), 1, + sym_identifier, + STATE(822), 1, + sym_type_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [36859] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(123), 1, + sym__decimal, + ACTIONS(1338), 1, + anon_sym_DASH, + STATE(1085), 1, + sym_integer, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1360), 7, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_pub, - anon_sym_const, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - [35678] = 3, + ACTIONS(121), 3, + sym__hex, + sym__octal, + sym__binary, + [36881] = 8, ACTIONS(3), 1, sym_module_comment, + ACTIONS(63), 1, + sym__upname, + ACTIONS(1340), 1, + sym__name, + ACTIONS(1442), 1, + anon_sym_RBRACE, + STATE(819), 1, + sym_identifier, + STATE(822), 1, + sym_type_identifier, + STATE(960), 1, + sym_unqualified_import, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1404), 7, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_pub, - anon_sym_const, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - [35695] = 3, + [36907] = 8, ACTIONS(3), 1, sym_module_comment, + ACTIONS(63), 1, + sym__upname, + ACTIONS(1340), 1, + sym__name, + ACTIONS(1444), 1, + anon_sym_RBRACE, + STATE(819), 1, + sym_identifier, + STATE(822), 1, + sym_type_identifier, + STATE(960), 1, + sym_unqualified_import, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1406), 7, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_pub, - anon_sym_const, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - [35712] = 3, + [36933] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(443), 1, + sym__decimal, + ACTIONS(1446), 1, + anon_sym_DASH, + STATE(192), 1, + sym_integer, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1408), 7, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_pub, - anon_sym_const, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - [35729] = 3, + ACTIONS(441), 3, + sym__hex, + sym__octal, + sym__binary, + [36955] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1448), 1, + anon_sym_COMMA, + STATE(699), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1394), 7, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_pub, - anon_sym_const, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - [35746] = 3, + ACTIONS(808), 4, + anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [36975] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(57), 1, + sym__decimal, + ACTIONS(579), 1, + anon_sym_DASH, + STATE(259), 1, + sym_integer, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1388), 7, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_pub, - anon_sym_const, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - [35763] = 8, + ACTIONS(55), 3, + sym__hex, + sym__octal, + sym__binary, + [36997] = 8, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(1318), 1, + ACTIONS(1340), 1, sym__name, - ACTIONS(1414), 1, + ACTIONS(1451), 1, anon_sym_RBRACE, - STATE(798), 1, - sym_type_identifier, - STATE(818), 1, + STATE(819), 1, sym_identifier, - STATE(873), 1, + STATE(822), 1, + sym_type_identifier, + STATE(960), 1, sym_unqualified_import, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [35789] = 8, + [37023] = 8, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(1318), 1, + ACTIONS(1340), 1, sym__name, - ACTIONS(1416), 1, + ACTIONS(1453), 1, anon_sym_RBRACE, - STATE(798), 1, - sym_type_identifier, - STATE(818), 1, + STATE(819), 1, sym_identifier, - STATE(940), 1, + STATE(822), 1, + sym_type_identifier, + STATE(897), 1, sym_unqualified_import, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [35815] = 8, + [37049] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(1318), 1, + ACTIONS(1340), 1, sym__name, - ACTIONS(1418), 1, - anon_sym_RBRACE, - STATE(798), 1, - sym_type_identifier, - STATE(818), 1, + STATE(668), 1, + sym_type_name, + STATE(1028), 1, sym_identifier, - STATE(940), 1, - sym_unqualified_import, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [35841] = 6, + STATE(513), 2, + sym_type_identifier, + sym_remote_type_identifier, + [37073] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(438), 1, + ACTIONS(123), 1, sym__decimal, - ACTIONS(1420), 1, + ACTIONS(1338), 1, anon_sym_DASH, - STATE(195), 1, + STATE(1076), 1, sym_integer, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(436), 3, + ACTIONS(121), 3, sym__hex, sym__octal, sym__binary, - [35863] = 7, + [37095] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, - sym__upname, - ACTIONS(1318), 1, - sym__name, - STATE(665), 1, - sym_type_name, - STATE(1007), 1, - sym_identifier, + ACTIONS(1455), 1, + anon_sym_DOT, + ACTIONS(1457), 1, + anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(535), 2, - sym_type_identifier, - sym_remote_type_identifier, - [35887] = 8, + ACTIONS(1360), 4, + anon_sym_if, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_PIPE, + [37115] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, - sym__upname, - ACTIONS(1318), 1, - sym__name, - ACTIONS(1422), 1, - anon_sym_RBRACE, - STATE(798), 1, - sym_type_identifier, - STATE(818), 1, - sym_identifier, - STATE(940), 1, - sym_unqualified_import, + ACTIONS(806), 1, + anon_sym_DOT_DOT, + ACTIONS(1459), 1, + anon_sym_COMMA, + ACTIONS(1461), 1, + anon_sym_RBRACK, + STATE(724), 1, + aux_sym_case_clause_pattern_repeat1, + STATE(1051), 1, + sym_list_pattern_tail, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [35913] = 5, + [37138] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1424), 1, - anon_sym_DOT, - ACTIONS(1426), 1, + ACTIONS(1457), 1, anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1326), 4, + ACTIONS(1360), 4, anon_sym_if, anon_sym_COMMA, anon_sym_DASH_GT, anon_sym_PIPE, - [35933] = 6, - ACTIONS(3), 1, + [37155] = 4, + ACTIONS(1463), 1, + anon_sym_DQUOTE, + ACTIONS(1465), 2, + sym_escape_sequence, + sym_quoted_content, + STATE(719), 2, + sym__string_part, + aux_sym_string_repeat1, + ACTIONS(5), 3, sym_module_comment, - ACTIONS(134), 1, - sym__decimal, - ACTIONS(1316), 1, - anon_sym_DASH, - STATE(1027), 1, - sym_integer, - ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(132), 3, - sym__hex, - sym__octal, - sym__binary, - [35955] = 6, + [37172] = 4, + ACTIONS(1467), 1, + anon_sym_DQUOTE, + ACTIONS(1469), 2, + sym_escape_sequence, + sym_quoted_content, + STATE(708), 2, + sym__string_part, + aux_sym_string_repeat1, + ACTIONS(5), 3, + sym_module_comment, + sym_statement_comment, + sym_comment, + [37189] = 4, + ACTIONS(1471), 1, + anon_sym_DQUOTE, + ACTIONS(1465), 2, + sym_escape_sequence, + sym_quoted_content, + STATE(719), 2, + sym__string_part, + aux_sym_string_repeat1, + ACTIONS(5), 3, + sym_module_comment, + sym_statement_comment, + sym_comment, + [37206] = 4, + ACTIONS(1473), 1, + anon_sym_DQUOTE, + ACTIONS(1475), 2, + sym_escape_sequence, + sym_quoted_content, + STATE(710), 2, + sym__string_part, + aux_sym_string_repeat1, + ACTIONS(5), 3, + sym_module_comment, + sym_statement_comment, + sym_comment, + [37223] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(59), 1, - sym__decimal, - ACTIONS(560), 1, - anon_sym_DASH, - STATE(256), 1, - sym_integer, + ACTIONS(1479), 1, + anon_sym_COMMA, + STATE(729), 1, + aux_sym_case_clause_pattern_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(57), 3, - sym__hex, - sym__octal, - sym__binary, - [35977] = 6, + ACTIONS(1477), 3, + anon_sym_if, + anon_sym_DASH_GT, + anon_sym_PIPE, + [37242] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(134), 1, - sym__decimal, - ACTIONS(1316), 1, - anon_sym_DASH, - STATE(1028), 1, - sym_integer, + ACTIONS(63), 1, + sym__upname, + STATE(758), 1, + sym_type_identifier, + STATE(1016), 1, + sym_type_constructors, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(132), 3, - sym__hex, - sym__octal, - sym__binary, - [35999] = 7, + STATE(714), 2, + sym_type_constructor, + aux_sym_type_constructors_repeat1, + [37263] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1046), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(1318), 1, - sym__name, - STATE(618), 1, - sym_type_name, - STATE(1059), 1, - sym_identifier, + ACTIONS(1481), 1, + anon_sym_RBRACE, + STATE(758), 1, + sym_type_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(553), 2, - sym_type_identifier, - sym_remote_type_identifier, - [36023] = 5, + STATE(731), 2, + sym_type_constructor, + aux_sym_type_constructors_repeat1, + [37284] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1428), 1, - anon_sym_COMMA, - STATE(692), 1, - aux_sym_tuple_repeat1, + ACTIONS(244), 1, + sym__discard_name, + ACTIONS(246), 1, + sym__name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(770), 4, - anon_sym_LBRACE, + ACTIONS(476), 3, + anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [36043] = 8, + anon_sym_COLON, + [37303] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, - sym__upname, - ACTIONS(1318), 1, - sym__name, - ACTIONS(1431), 1, - anon_sym_RBRACE, - STATE(798), 1, - sym_type_identifier, - STATE(818), 1, - sym_identifier, - STATE(940), 1, - sym_unqualified_import, + ACTIONS(742), 1, + anon_sym_DOT_DOT, + ACTIONS(1483), 1, + anon_sym_COMMA, + ACTIONS(1485), 1, + anon_sym_RPAREN, + STATE(732), 1, + aux_sym_record_pattern_arguments_repeat1, + STATE(1012), 1, + sym_pattern_spread, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [36069] = 6, + [37326] = 4, + ACTIONS(1487), 1, + anon_sym_DQUOTE, + ACTIONS(1489), 2, + sym_escape_sequence, + sym_quoted_content, + STATE(718), 2, + sym__string_part, + aux_sym_string_repeat1, + ACTIONS(5), 3, + sym_module_comment, + sym_statement_comment, + sym_comment, + [37343] = 4, + ACTIONS(1491), 1, + anon_sym_DQUOTE, + ACTIONS(1465), 2, + sym_escape_sequence, + sym_quoted_content, + STATE(719), 2, + sym__string_part, + aux_sym_string_repeat1, + ACTIONS(5), 3, + sym_module_comment, + sym_statement_comment, + sym_comment, + [37360] = 4, + ACTIONS(1493), 1, + anon_sym_DQUOTE, + ACTIONS(1495), 2, + sym_escape_sequence, + sym_quoted_content, + STATE(719), 2, + sym__string_part, + aux_sym_string_repeat1, + ACTIONS(5), 3, + sym_module_comment, + sym_statement_comment, + sym_comment, + [37377] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(134), 1, - sym__decimal, - ACTIONS(1316), 1, - anon_sym_DASH, - STATE(36), 1, - sym_integer, + ACTIONS(1500), 1, + anon_sym_COMMA, + STATE(720), 1, + aux_sym_case_clause_pattern_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(132), 3, - sym__hex, - sym__octal, - sym__binary, - [36091] = 8, + ACTIONS(1498), 3, + anon_sym_if, + anon_sym_DASH_GT, + anon_sym_PIPE, + [37396] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, + ACTIONS(63), 1, sym__upname, - ACTIONS(1318), 1, + ACTIONS(1340), 1, sym__name, - ACTIONS(1433), 1, - anon_sym_RBRACE, - STATE(798), 1, - sym_type_identifier, - STATE(818), 1, - sym_identifier, STATE(819), 1, + sym_identifier, + STATE(822), 1, + sym_type_identifier, + STATE(960), 1, sym_unqualified_import, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [36117] = 7, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(708), 1, - anon_sym_DOT_DOT, - ACTIONS(760), 1, - anon_sym_RPAREN, - ACTIONS(1435), 1, - anon_sym_COMMA, - STATE(735), 1, - aux_sym_record_pattern_arguments_repeat1, - STATE(1037), 1, - sym_pattern_spread, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [36140] = 7, + [37419] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, - sym__upname, - ACTIONS(1318), 1, + ACTIONS(269), 1, sym__name, - STATE(798), 1, - sym_type_identifier, - STATE(818), 1, - sym_identifier, - STATE(940), 1, - sym_unqualified_import, + ACTIONS(1235), 1, + sym__discard_name, + ACTIONS(1503), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [36163] = 7, + STATE(1048), 2, + sym_identifier, + sym_discard, + [37440] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(788), 1, - anon_sym_DOT_DOT, - ACTIONS(1437), 1, + ACTIONS(1505), 1, anon_sym_COMMA, - ACTIONS(1439), 1, - anon_sym_RBRACK, - STATE(713), 1, + STATE(723), 1, aux_sym_case_clause_pattern_repeat1, - STATE(990), 1, - sym_list_pattern_tail, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [36186] = 7, + ACTIONS(1498), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [37459] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(788), 1, + ACTIONS(806), 1, anon_sym_DOT_DOT, - ACTIONS(1441), 1, + ACTIONS(1508), 1, anon_sym_COMMA, - ACTIONS(1443), 1, + ACTIONS(1510), 1, anon_sym_RBRACK, - STATE(698), 1, + STATE(723), 1, aux_sym_case_clause_pattern_repeat1, - STATE(1066), 1, + STATE(1032), 1, sym_list_pattern_tail, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [36209] = 5, + [37482] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1447), 1, - anon_sym_COMMA, - STATE(709), 1, - aux_sym_case_clause_pattern_repeat1, + ACTIONS(63), 1, + sym__upname, + STATE(758), 1, + sym_type_identifier, + STATE(1088), 1, + sym_type_constructors, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1445), 3, - anon_sym_if, - anon_sym_DASH_GT, - anon_sym_PIPE, - [36228] = 5, + STATE(714), 2, + sym_type_constructor, + aux_sym_type_constructors_repeat1, + [37503] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1451), 1, + ACTIONS(1514), 1, anon_sym_LPAREN, - STATE(805), 1, + STATE(831), 1, sym_constant_type_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1449), 3, + ACTIONS(1512), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, - [36247] = 6, - ACTIONS(3), 1, + [37522] = 4, + ACTIONS(1516), 1, + anon_sym_DQUOTE, + ACTIONS(1465), 2, + sym_escape_sequence, + sym_quoted_content, + STATE(719), 2, + sym__string_part, + aux_sym_string_repeat1, + ACTIONS(5), 3, sym_module_comment, - ACTIONS(65), 1, - sym__upname, - ACTIONS(1453), 1, - anon_sym_RBRACE, - STATE(745), 1, - sym_type_identifier, - ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(712), 2, - sym_type_constructor, - aux_sym_type_constructors_repeat1, - [36268] = 4, - ACTIONS(3), 1, + [37539] = 4, + ACTIONS(1518), 1, + anon_sym_DQUOTE, + ACTIONS(1520), 2, + sym_escape_sequence, + sym_quoted_content, + STATE(727), 2, + sym__string_part, + aux_sym_string_repeat1, + ACTIONS(5), 3, sym_module_comment, - ACTIONS(1426), 1, - anon_sym_as, - ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1326), 4, - anon_sym_if, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_PIPE, - [36285] = 5, + [37556] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(180), 1, - sym__discard_name, - ACTIONS(182), 1, - sym__name, + ACTIONS(1524), 1, + anon_sym_COMMA, + STATE(720), 1, + aux_sym_case_clause_pattern_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(408), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [36304] = 6, - ACTIONS(3), 1, + ACTIONS(1522), 3, + anon_sym_if, + anon_sym_DASH_GT, + anon_sym_PIPE, + [37575] = 4, + ACTIONS(1526), 1, + anon_sym_DQUOTE, + ACTIONS(1528), 2, + sym_escape_sequence, + sym_quoted_content, + STATE(734), 2, + sym__string_part, + aux_sym_string_repeat1, + ACTIONS(5), 3, sym_module_comment, - ACTIONS(65), 1, - sym__upname, - STATE(745), 1, - sym_type_identifier, - STATE(1023), 1, - sym_type_constructors, - ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(702), 2, - sym_type_constructor, - aux_sym_type_constructors_repeat1, - [36325] = 6, + [37592] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, + ACTIONS(1530), 1, + anon_sym_RBRACE, + ACTIONS(1532), 1, sym__upname, - STATE(745), 1, + STATE(758), 1, sym_type_identifier, - STATE(975), 1, - sym_type_constructors, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(702), 2, + STATE(731), 2, sym_type_constructor, aux_sym_type_constructors_repeat1, - [36346] = 7, + [37613] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(708), 1, + ACTIONS(742), 1, anon_sym_DOT_DOT, - ACTIONS(1455), 1, - anon_sym_COMMA, - ACTIONS(1457), 1, + ACTIONS(746), 1, anon_sym_RPAREN, - STATE(696), 1, + ACTIONS(1535), 1, + anon_sym_COMMA, + STATE(752), 1, aux_sym_record_pattern_arguments_repeat1, - STATE(979), 1, + STATE(1006), 1, sym_pattern_spread, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [36369] = 6, + [37636] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(300), 1, - sym__name, - ACTIONS(1242), 1, - sym__discard_name, - ACTIONS(1459), 1, - anon_sym_RBRACK, + ACTIONS(259), 1, + anon_sym_LPAREN, + ACTIONS(1537), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1064), 2, - sym_identifier, - sym_discard, - [36390] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1463), 1, + ACTIONS(252), 3, anon_sym_COMMA, - STATE(710), 1, - aux_sym_case_clause_pattern_repeat1, - ACTIONS(5), 2, + anon_sym_GT_GT, + anon_sym_COLON, + [37655] = 4, + ACTIONS(1541), 1, + anon_sym_DQUOTE, + ACTIONS(1465), 2, + sym_escape_sequence, + sym_quoted_content, + STATE(719), 2, + sym__string_part, + aux_sym_string_repeat1, + ACTIONS(5), 3, + sym_module_comment, sym_statement_comment, sym_comment, - ACTIONS(1461), 3, - anon_sym_if, - anon_sym_DASH_GT, - anon_sym_PIPE, - [36409] = 5, + [37672] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1467), 1, - anon_sym_COMMA, - STATE(710), 1, - aux_sym_case_clause_pattern_repeat1, + ACTIONS(1543), 1, + anon_sym_PIPE, + STATE(755), 1, + aux_sym_case_clause_patterns_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1465), 3, + ACTIONS(826), 2, anon_sym_if, anon_sym_DASH_GT, - anon_sym_PIPE, - [36428] = 5, + [37690] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(104), 1, - anon_sym_LPAREN, - ACTIONS(1470), 1, - anon_sym_DOT, + ACTIONS(1545), 1, + sym__name, + STATE(786), 1, + sym_record_update_argument, + STATE(1018), 1, + sym_record_update_arguments, + STATE(1043), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(97), 3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_COLON, - [36447] = 6, + [37710] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1474), 1, - anon_sym_RBRACE, - ACTIONS(1476), 1, - sym__upname, - STATE(745), 1, - sym_type_identifier, + ACTIONS(333), 1, + anon_sym_RBRACK, + ACTIONS(335), 1, + anon_sym_DOT_DOT, + ACTIONS(1547), 1, + anon_sym_COMMA, + STATE(699), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(712), 2, - sym_type_constructor, - aux_sym_type_constructors_repeat1, - [36468] = 5, + [37730] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1479), 1, - anon_sym_COMMA, - STATE(713), 1, - aux_sym_case_clause_pattern_repeat1, + ACTIONS(1551), 1, + anon_sym_DASH, + STATE(747), 1, + aux_sym_pattern_bit_string_segment_options_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1465), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [36487] = 4, + ACTIONS(1549), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [37748] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1484), 1, + ACTIONS(1555), 1, sym__decimal, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1482), 3, + ACTIONS(1553), 3, sym__hex, sym__octal, sym__binary, - [36503] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1488), 1, - anon_sym_COLON, - STATE(926), 1, - sym__type_annotation, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1486), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [36521] = 6, + [37764] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1490), 1, + ACTIONS(269), 1, sym__name, - STATE(848), 1, - sym_record_update_argument, - STATE(1001), 1, - sym_record_update_arguments, - STATE(1039), 1, - sym_label, + ACTIONS(1235), 1, + sym__discard_name, + STATE(851), 1, + sym_identifier, + STATE(854), 1, + sym_discard, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [36541] = 6, + [37784] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1490), 1, + ACTIONS(1545), 1, sym__name, - STATE(848), 1, + STATE(786), 1, sym_record_update_argument, - STATE(982), 1, + STATE(1019), 1, sym_record_update_arguments, - STATE(1039), 1, + STATE(1043), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [36561] = 5, + [37804] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1494), 1, - anon_sym_DASH, - STATE(718), 1, - aux_sym_pattern_bit_string_segment_options_repeat1, + ACTIONS(1559), 1, + anon_sym_COLON, + STATE(948), 1, + sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1492), 2, + ACTIONS(1557), 2, anon_sym_COMMA, - anon_sym_GT_GT, - [36579] = 6, + anon_sym_RPAREN, + [37822] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(374), 1, - anon_sym_RBRACK, - ACTIONS(376), 1, - anon_sym_DOT_DOT, - ACTIONS(1497), 1, - anon_sym_COMMA, - STATE(692), 1, - aux_sym_tuple_repeat1, + ACTIONS(1559), 1, + anon_sym_COLON, + STATE(950), 1, + sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [36599] = 4, + ACTIONS(1561), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [37840] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1501), 1, - sym__decimal, + ACTIONS(1565), 1, + anon_sym_DASH, + STATE(744), 1, + aux_sym_expression_bit_string_segment_options_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1499), 3, - sym__hex, - sym__octal, - sym__binary, - [36615] = 4, + ACTIONS(1563), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [37858] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1505), 1, - sym__decimal, + ACTIONS(1568), 1, + anon_sym_DASH, + STATE(744), 1, + aux_sym_expression_bit_string_segment_options_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1503), 3, - sym__hex, - sym__octal, - sym__binary, - [36631] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(342), 1, - anon_sym_RBRACK, - ACTIONS(344), 1, - anon_sym_DOT_DOT, - ACTIONS(1507), 1, + ACTIONS(609), 2, anon_sym_COMMA, - STATE(692), 1, - aux_sym_tuple_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [36651] = 5, + anon_sym_GT_GT, + [37876] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(180), 1, + ACTIONS(1559), 1, anon_sym_COLON, - ACTIONS(408), 1, - anon_sym_DOT, + STATE(955), 1, + sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1156), 2, + ACTIONS(1557), 2, anon_sym_COMMA, anon_sym_RPAREN, - [36669] = 5, + [37894] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1509), 1, - anon_sym_DASH, - STATE(742), 1, - aux_sym_constant_bit_string_segment_options_repeat1, + ACTIONS(1570), 1, + anon_sym_DASH, + STATE(761), 1, + aux_sym_pattern_bit_string_segment_options_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(558), 2, + ACTIONS(577), 2, anon_sym_COMMA, anon_sym_GT_GT, - [36687] = 6, + [37912] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(330), 1, + ACTIONS(309), 1, anon_sym_RBRACK, - ACTIONS(332), 1, + ACTIONS(311), 1, anon_sym_DOT_DOT, - ACTIONS(1511), 1, + ACTIONS(1572), 1, anon_sym_COMMA, - STATE(692), 1, + STATE(699), 1, aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [36707] = 6, + [37932] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1490), 1, - sym__name, - ACTIONS(1513), 1, - anon_sym_RPAREN, - STATE(911), 1, - sym_record_update_argument, - STATE(1039), 1, - sym_label, + ACTIONS(1576), 1, + sym__decimal, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [36727] = 5, + ACTIONS(1574), 3, + sym__hex, + sym__octal, + sym__binary, + [37948] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1517), 1, + ACTIONS(1580), 1, anon_sym_DASH, - STATE(739), 1, - aux_sym_expression_bit_string_segment_options_repeat1, + STATE(750), 1, + aux_sym_constant_bit_string_segment_options_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1515), 2, + ACTIONS(1578), 2, anon_sym_COMMA, anon_sym_GT_GT, - [36745] = 4, + [37966] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1521), 1, - sym__decimal, + ACTIONS(1559), 1, + anon_sym_COLON, + STATE(956), 1, + sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1519), 3, - sym__hex, - sym__octal, - sym__binary, - [36761] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1490), 1, - sym__name, - ACTIONS(1523), 1, + ACTIONS(1561), 2, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(911), 1, - sym_record_update_argument, - STATE(1039), 1, - sym_label, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [36781] = 5, + [37984] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1527), 1, - anon_sym_PIPE, - STATE(730), 1, - aux_sym_case_clause_patterns_repeat1, + ACTIONS(1583), 1, + anon_sym_COMMA, + STATE(752), 1, + aux_sym_record_pattern_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1525), 2, - anon_sym_if, - anon_sym_DASH_GT, - [36799] = 5, + ACTIONS(1586), 2, + anon_sym_RPAREN, + anon_sym_DOT_DOT, + [38002] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1532), 1, - anon_sym_DASH, - STATE(724), 1, - aux_sym_constant_bit_string_segment_options_repeat1, + ACTIONS(244), 1, + anon_sym_COLON, + ACTIONS(476), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1530), 2, + ACTIONS(1208), 2, anon_sym_COMMA, - anon_sym_GT_GT, - [36817] = 5, + anon_sym_RPAREN, + [38020] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1534), 1, + ACTIONS(1588), 1, anon_sym_COMMA, - STATE(732), 1, + STATE(754), 1, aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1537), 2, + ACTIONS(1591), 2, anon_sym_RPAREN, anon_sym_RBRACK, - [36835] = 5, + [38038] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1541), 1, + ACTIONS(1595), 1, anon_sym_PIPE, - STATE(744), 1, + STATE(755), 1, aux_sym_case_clause_patterns_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1539), 2, + ACTIONS(1593), 2, anon_sym_if, anon_sym_DASH_GT, - [36853] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1545), 1, - sym__decimal, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1543), 3, - sym__hex, - sym__octal, - sym__binary, - [36869] = 5, + [38056] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1547), 1, - anon_sym_COMMA, + ACTIONS(1600), 1, + anon_sym_PIPE, STATE(735), 1, - aux_sym_record_pattern_arguments_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1550), 2, - anon_sym_RPAREN, - anon_sym_DOT_DOT, - [36887] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1488), 1, - anon_sym_COLON, - STATE(943), 1, - sym__type_annotation, + aux_sym_case_clause_patterns_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1552), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [36905] = 5, + ACTIONS(1598), 2, + anon_sym_if, + anon_sym_DASH_GT, + [38074] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1488), 1, - anon_sym_COLON, - STATE(947), 1, - sym__type_annotation, + ACTIONS(1604), 1, + anon_sym_DASH, + STATE(768), 1, + aux_sym_constant_bit_string_segment_options_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1486), 2, + ACTIONS(1602), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [36923] = 5, + anon_sym_GT_GT, + [38092] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1556), 1, - anon_sym_DASH, - STATE(738), 1, - aux_sym_expression_bit_string_segment_options_repeat1, + ACTIONS(1608), 1, + anon_sym_LPAREN, + STATE(965), 1, + sym_type_constructor_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1554), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [36941] = 5, + ACTIONS(1606), 2, + anon_sym_RBRACE, + sym__upname, + [38110] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1559), 1, - anon_sym_DASH, - STATE(738), 1, - aux_sym_expression_bit_string_segment_options_repeat1, + ACTIONS(1612), 1, + sym__decimal, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(592), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [36959] = 6, + ACTIONS(1610), 3, + sym__hex, + sym__octal, + sym__binary, + [38126] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1490), 1, - sym__name, - STATE(848), 1, - sym_record_update_argument, - STATE(1039), 1, - sym_label, - STATE(1054), 1, - sym_record_update_arguments, + ACTIONS(1616), 1, + sym__decimal, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [36979] = 5, + ACTIONS(1614), 3, + sym__hex, + sym__octal, + sym__binary, + [38142] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1563), 1, + ACTIONS(1620), 1, anon_sym_DASH, - STATE(747), 1, + STATE(761), 1, aux_sym_pattern_bit_string_segment_options_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1561), 2, + ACTIONS(1618), 2, anon_sym_COMMA, anon_sym_GT_GT, - [36997] = 5, + [38160] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1567), 1, + ACTIONS(1625), 1, anon_sym_DASH, - STATE(742), 1, - aux_sym_constant_bit_string_segment_options_repeat1, + STATE(745), 1, + aux_sym_expression_bit_string_segment_options_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1565), 2, + ACTIONS(1623), 2, anon_sym_COMMA, anon_sym_GT_GT, - [37015] = 6, + [38178] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(300), 1, + ACTIONS(1545), 1, sym__name, - ACTIONS(1242), 1, - sym__discard_name, - STATE(769), 1, - sym_discard, - STATE(770), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [37035] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1570), 1, - anon_sym_PIPE, - STATE(730), 1, - aux_sym_case_clause_patterns_repeat1, + ACTIONS(1627), 1, + anon_sym_RPAREN, + STATE(962), 1, + sym_record_update_argument, + STATE(1043), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(794), 2, - anon_sym_if, - anon_sym_DASH_GT, - [37053] = 5, + [38198] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1574), 1, - anon_sym_LPAREN, - STATE(964), 1, - sym_type_constructor_arguments, + ACTIONS(1631), 1, + sym__decimal, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1572), 2, - anon_sym_RBRACE, - sym__upname, - [37071] = 5, + ACTIONS(1629), 3, + sym__hex, + sym__octal, + sym__binary, + [38214] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1488), 1, - anon_sym_COLON, - STATE(923), 1, - sym__type_annotation, + ACTIONS(1545), 1, + sym__name, + ACTIONS(1633), 1, + anon_sym_RPAREN, + STATE(962), 1, + sym_record_update_argument, + STATE(1043), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1552), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [37089] = 5, + [38234] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1576), 1, - anon_sym_DASH, - STATE(718), 1, - aux_sym_pattern_bit_string_segment_options_repeat1, + ACTIONS(1545), 1, + sym__name, + STATE(786), 1, + sym_record_update_argument, + STATE(1015), 1, + sym_record_update_arguments, + STATE(1043), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(590), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [37107] = 5, + [38254] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1578), 1, + ACTIONS(305), 1, + anon_sym_RBRACK, + ACTIONS(307), 1, + anon_sym_DOT_DOT, + ACTIONS(1635), 1, anon_sym_COMMA, - ACTIONS(1580), 1, - anon_sym_RPAREN, - STATE(753), 1, - aux_sym_type_parameters_repeat1, + STATE(699), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [37124] = 3, + [38274] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1637), 1, + anon_sym_DASH, + STATE(750), 1, + aux_sym_constant_bit_string_segment_options_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1525), 3, - anon_sym_if, - anon_sym_DASH_GT, - anon_sym_PIPE, - [37137] = 5, + ACTIONS(591), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [38292] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1194), 1, - anon_sym_RPAREN, - ACTIONS(1582), 1, + ACTIONS(1639), 1, anon_sym_COMMA, - STATE(800), 1, - aux_sym_constant_tuple_type_repeat1, + ACTIONS(1641), 1, + anon_sym_RPAREN, + STATE(804), 1, + aux_sym_constant_type_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [37154] = 3, + [38309] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1584), 3, + ACTIONS(1643), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, - [37167] = 5, + [38322] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1418), 1, - anon_sym_RBRACE, - ACTIONS(1586), 1, - anon_sym_COMMA, - STATE(821), 1, - aux_sym_unqualified_imports_repeat1, + ACTIONS(1645), 1, + anon_sym_EQ, + ACTIONS(1647), 1, + anon_sym_COLON, + STATE(1050), 1, + sym__constant_type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [37184] = 5, + [38339] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1588), 1, - anon_sym_COMMA, - ACTIONS(1591), 1, - anon_sym_RPAREN, - STATE(753), 1, - aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [37201] = 5, + ACTIONS(1649), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DOT_DOT, + [38352] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1150), 1, - anon_sym_RPAREN, - ACTIONS(1593), 1, - anon_sym_COMMA, - STATE(808), 1, - aux_sym_constant_type_arguments_repeat1, + ACTIONS(1651), 1, + anon_sym_LPAREN, + ACTIONS(1653), 1, + anon_sym_DASH_GT, + STATE(1052), 1, + sym_function_parameter_types, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [37218] = 5, + [38369] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1595), 1, + ACTIONS(862), 1, + anon_sym_GT_GT, + ACTIONS(1655), 1, anon_sym_COMMA, - ACTIONS(1598), 1, - anon_sym_RPAREN, - STATE(755), 1, - aux_sym_external_function_parameters_repeat1, + STATE(830), 1, + aux_sym__pattern_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [37235] = 5, + [38386] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1064), 1, - anon_sym_RPAREN, - ACTIONS(1600), 1, - anon_sym_COMMA, - STATE(822), 1, - aux_sym_type_constructor_arguments_repeat1, + ACTIONS(1545), 1, + sym__name, + STATE(962), 1, + sym_record_update_argument, + STATE(1043), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [37252] = 5, + [38403] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1100), 1, - anon_sym_RPAREN, - ACTIONS(1602), 1, + ACTIONS(1657), 1, anon_sym_COMMA, - STATE(830), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(1660), 1, + anon_sym_RPAREN, + STATE(776), 1, + aux_sym_record_update_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [37269] = 5, + [38420] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1604), 1, - anon_sym_LPAREN, - ACTIONS(1606), 1, - anon_sym_DASH_GT, - STATE(1031), 1, - sym_function_parameter_types, + ACTIONS(1662), 1, + anon_sym_COMMA, + ACTIONS(1664), 1, + anon_sym_RPAREN, + STATE(867), 1, + aux_sym_case_clause_pattern_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [37286] = 3, + [38437] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1666), 1, + anon_sym_RPAREN, + ACTIONS(1668), 1, + sym__name, + STATE(793), 1, + sym_type_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1550), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DOT_DOT, - [37299] = 5, + [38454] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1098), 1, - anon_sym_RPAREN, - ACTIONS(1608), 1, + ACTIONS(1670), 1, anon_sym_COMMA, - STATE(830), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(1673), 1, + anon_sym_GT_GT, + STATE(779), 1, + aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [37316] = 5, + [38471] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1074), 1, - anon_sym_RPAREN, - ACTIONS(1610), 1, - anon_sym_COMMA, - STATE(835), 1, - aux_sym_type_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [37333] = 5, + ACTIONS(1675), 3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DASH, + [38484] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(978), 1, - anon_sym_GT_GT, - ACTIONS(1612), 1, + ACTIONS(1627), 1, + anon_sym_RPAREN, + ACTIONS(1677), 1, anon_sym_COMMA, - STATE(852), 1, - aux_sym__constant_bit_string_repeat1, + STATE(776), 1, + aux_sym_record_update_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [37350] = 3, + [38501] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1554), 3, + ACTIONS(1618), 3, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_DASH, - [37363] = 5, + [38514] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1614), 1, - anon_sym_COMMA, - ACTIONS(1617), 1, + ACTIONS(379), 1, anon_sym_RPAREN, - STATE(764), 1, - aux_sym_function_parameters_repeat1, + ACTIONS(1679), 1, + anon_sym_COMMA, + STATE(699), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [37380] = 3, + [38531] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1681), 1, + anon_sym_COMMA, + ACTIONS(1684), 1, + anon_sym_RPAREN, + STATE(784), 1, + aux_sym_type_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1619), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [37393] = 3, + [38548] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1621), 3, + ACTIONS(1686), 3, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_DASH, - [37406] = 3, + [38561] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1688), 1, + anon_sym_COMMA, + ACTIONS(1690), 1, + anon_sym_RPAREN, + STATE(781), 1, + aux_sym_record_update_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1492), 3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DASH, - [37419] = 5, + [38578] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(470), 1, - anon_sym_GT_GT, - ACTIONS(1623), 1, + ACTIONS(1692), 1, anon_sym_COMMA, - STATE(865), 1, - aux_sym__expression_bit_string_repeat1, + ACTIONS(1695), 1, + anon_sym_RPAREN, + STATE(787), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [37436] = 3, + [38595] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1625), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [37449] = 3, + ACTIONS(1593), 3, + anon_sym_if, + anon_sym_DASH_GT, + anon_sym_PIPE, + [38608] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1627), 3, + ACTIONS(1697), 3, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_COLON, - [37462] = 4, + anon_sym_DOT_DOT, + [38621] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1631), 1, - anon_sym_COLON, + ACTIONS(1699), 1, + anon_sym_COMMA, + ACTIONS(1702), 1, + anon_sym_RPAREN, + STATE(790), 1, + aux_sym_type_constructor_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1629), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [37477] = 5, + [38638] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1028), 1, - anon_sym_RBRACK, - ACTIONS(1633), 1, + ACTIONS(91), 1, + anon_sym_RPAREN, + ACTIONS(1704), 1, anon_sym_COMMA, - STATE(732), 1, - aux_sym_constant_tuple_repeat1, + STATE(813), 1, + aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [37494] = 5, + [38655] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1635), 1, - anon_sym_COMMA, - ACTIONS(1637), 1, - anon_sym_GT_GT, - STATE(872), 1, - aux_sym__pattern_bit_string_repeat1, + ACTIONS(1651), 1, + anon_sym_LPAREN, + ACTIONS(1706), 1, + anon_sym_DASH_GT, + STATE(1041), 1, + sym_function_parameter_types, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [37511] = 3, + [38672] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1708), 1, + anon_sym_COMMA, + ACTIONS(1710), 1, + anon_sym_RPAREN, + STATE(845), 1, + aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1639), 3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DASH, - [37524] = 5, + [38689] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1641), 1, - anon_sym_EQ, - ACTIONS(1643), 1, - anon_sym_COLON, - STATE(994), 1, - sym__constant_type_annotation, + ACTIONS(401), 1, + anon_sym_RPAREN, + ACTIONS(1712), 1, + anon_sym_COMMA, + STATE(699), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [37541] = 5, + [38706] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1645), 1, + ACTIONS(1714), 1, anon_sym_COMMA, - ACTIONS(1648), 1, + ACTIONS(1717), 1, anon_sym_RPAREN, - STATE(776), 1, - aux_sym_arguments_repeat1, + STATE(795), 1, + aux_sym_constant_type_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [37558] = 5, + [38723] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1650), 1, + ACTIONS(1719), 1, anon_sym_COMMA, - ACTIONS(1652), 1, + ACTIONS(1721), 1, anon_sym_RPAREN, - STATE(756), 1, - aux_sym_type_constructor_arguments_repeat1, + STATE(847), 1, + aux_sym_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [37575] = 4, + [38740] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1656), 1, - anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1654), 2, + ACTIONS(1723), 3, anon_sym_COMMA, - anon_sym_GT_GT, - [37590] = 5, + anon_sym_EQ, + anon_sym_RPAREN, + [38753] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1262), 1, - anon_sym_RPAREN, - ACTIONS(1658), 1, + ACTIONS(1725), 1, anon_sym_COMMA, - STATE(764), 1, - aux_sym_function_parameters_repeat1, + ACTIONS(1728), 1, + anon_sym_RPAREN, + STATE(798), 1, + aux_sym_constant_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [37607] = 5, + [38770] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(89), 1, - anon_sym_RPAREN, - ACTIONS(1660), 1, + ACTIONS(1730), 1, anon_sym_COMMA, - STATE(776), 1, + ACTIONS(1732), 1, + anon_sym_RPAREN, + STATE(791), 1, aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [37624] = 5, + [38787] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1662), 1, - anon_sym_LBRACE, - ACTIONS(1664), 1, - anon_sym_COMMA, - STATE(692), 1, - aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [37641] = 5, + ACTIONS(1734), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [38800] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1666), 1, + ACTIONS(459), 1, + anon_sym_GT_GT, + ACTIONS(1736), 1, anon_sym_COMMA, - ACTIONS(1668), 1, - anon_sym_RPAREN, - STATE(753), 1, - aux_sym_type_parameters_repeat1, + STATE(779), 1, + aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [37658] = 5, + [38817] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1670), 1, - anon_sym_COMMA, - ACTIONS(1672), 1, - anon_sym_GT_GT, - STATE(768), 1, - aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [37675] = 5, + ACTIONS(1586), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DOT_DOT, + [38830] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1668), 1, + ACTIONS(1738), 1, + anon_sym_COMMA, + ACTIONS(1741), 1, anon_sym_RPAREN, - ACTIONS(1674), 1, - sym__name, - STATE(881), 1, - sym_type_parameter, + STATE(803), 1, + aux_sym_constant_record_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [37692] = 5, + [38847] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(402), 1, + ACTIONS(1192), 1, anon_sym_RPAREN, - ACTIONS(1676), 1, + ACTIONS(1743), 1, anon_sym_COMMA, - STATE(692), 1, - aux_sym_tuple_repeat1, + STATE(795), 1, + aux_sym_constant_type_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [37709] = 5, + [38864] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1678), 1, - anon_sym_COMMA, - ACTIONS(1680), 1, - anon_sym_RPAREN, - STATE(780), 1, - aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [37726] = 5, + ACTIONS(1563), 3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DASH, + [38877] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(461), 1, - anon_sym_GT_GT, - ACTIONS(1682), 1, - anon_sym_COMMA, - STATE(865), 1, - aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [37743] = 5, + ACTIONS(1745), 3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DASH, + [38890] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1684), 1, + ACTIONS(1747), 1, anon_sym_COMMA, - ACTIONS(1686), 1, + ACTIONS(1749), 1, anon_sym_RPAREN, - STATE(845), 1, + STATE(876), 1, aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [37760] = 5, + [38907] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1488), 1, - anon_sym_COLON, - ACTIONS(1688), 1, - anon_sym_EQ, - STATE(985), 1, - sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [37777] = 5, + ACTIONS(1751), 3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DASH, + [38920] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1488), 1, - anon_sym_COLON, - ACTIONS(1690), 1, - anon_sym_EQ, - STATE(997), 1, - sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [37794] = 5, + ACTIONS(1753), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [38933] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1692), 1, + ACTIONS(1755), 1, + anon_sym_LBRACE, + ACTIONS(1757), 1, anon_sym_COMMA, - ACTIONS(1694), 1, - anon_sym_GT_GT, - STATE(787), 1, - aux_sym__expression_bit_string_repeat1, + STATE(699), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [37811] = 5, + [38950] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1696), 1, - anon_sym_COMMA, - ACTIONS(1699), 1, - anon_sym_GT_GT, - STATE(792), 1, - aux_sym__pattern_bit_string_repeat1, + ACTIONS(1559), 1, + anon_sym_COLON, + ACTIONS(1759), 1, + anon_sym_EQ, + STATE(1002), 1, + sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [37828] = 3, + [38967] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1761), 1, + anon_sym_COMMA, + ACTIONS(1763), 1, + anon_sym_GT_GT, + STATE(801), 1, + aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1701), 3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DASH, - [37841] = 5, + [38984] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1674), 1, - sym__name, - ACTIONS(1703), 1, + ACTIONS(1765), 1, + anon_sym_COMMA, + ACTIONS(1768), 1, anon_sym_RPAREN, - STATE(881), 1, - sym_type_parameter, + STATE(813), 1, + aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [37858] = 5, + [39001] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1072), 1, - anon_sym_RPAREN, - ACTIONS(1705), 1, + ACTIONS(1770), 1, anon_sym_COMMA, - STATE(755), 1, - aux_sym_external_function_parameters_repeat1, + ACTIONS(1772), 1, + anon_sym_GT_GT, + STATE(774), 1, + aux_sym__pattern_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [37875] = 5, + [39018] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1707), 1, - anon_sym_COMMA, - ACTIONS(1710), 1, - anon_sym_RPAREN, - STATE(796), 1, - aux_sym_constant_record_arguments_repeat1, + ACTIONS(1776), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [37892] = 3, + ACTIONS(1774), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [39033] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1712), 3, + ACTIONS(1778), 3, anon_sym_COMMA, - anon_sym_EQ, anon_sym_RPAREN, - [37905] = 4, + anon_sym_COLON, + [39046] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1716), 1, - anon_sym_as, + ACTIONS(489), 1, + anon_sym_GT_GT, + ACTIONS(1780), 1, + anon_sym_COMMA, + STATE(779), 1, + aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1714), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [37920] = 5, + [39063] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1490), 1, - sym__name, - STATE(911), 1, - sym_record_update_argument, - STATE(1039), 1, - sym_label, + ACTIONS(1782), 1, + anon_sym_RBRACE, + ACTIONS(1784), 1, + anon_sym_COMMA, + STATE(870), 1, + aux_sym_unqualified_imports_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [37937] = 5, + [39080] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1718), 1, - anon_sym_COMMA, - ACTIONS(1721), 1, - anon_sym_RPAREN, - STATE(800), 1, - aux_sym_constant_tuple_type_repeat1, + ACTIONS(1788), 1, + anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [37954] = 5, + ACTIONS(1786), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [39095] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(81), 1, + ACTIONS(1110), 1, anon_sym_RPAREN, - ACTIONS(1723), 1, + ACTIONS(1790), 1, anon_sym_COMMA, - STATE(776), 1, - aux_sym_arguments_repeat1, + STATE(784), 1, + aux_sym_type_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [37971] = 5, + [39112] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1725), 1, - anon_sym_COMMA, - ACTIONS(1727), 1, + ACTIONS(1122), 1, anon_sym_RPAREN, - STATE(795), 1, - aux_sym_external_function_parameters_repeat1, + ACTIONS(1792), 1, + anon_sym_COMMA, + STATE(787), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [37988] = 3, + [39129] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1794), 1, + anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1729), 3, + ACTIONS(1786), 2, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [38001] = 5, + [39144] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1731), 1, - anon_sym_COMMA, - ACTIONS(1733), 1, + ACTIONS(1124), 1, anon_sym_RPAREN, - STATE(754), 1, - aux_sym_constant_type_arguments_repeat1, + ACTIONS(1796), 1, + anon_sym_COMMA, + STATE(787), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [38018] = 3, + [39161] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1088), 1, + anon_sym_RPAREN, + ACTIONS(1798), 1, + anon_sym_COMMA, + STATE(790), 1, + aux_sym_type_constructor_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1735), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [38031] = 5, + [39178] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1737), 1, + ACTIONS(1800), 1, anon_sym_COMMA, - ACTIONS(1739), 1, - anon_sym_RPAREN, - STATE(713), 1, - aux_sym_case_clause_pattern_repeat1, + ACTIONS(1802), 1, + anon_sym_RBRACK, + STATE(882), 1, + aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [38048] = 5, + [39195] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(392), 1, - anon_sym_RPAREN, - ACTIONS(1741), 1, - anon_sym_COMMA, - STATE(692), 1, - aux_sym_tuple_repeat1, + ACTIONS(117), 1, + anon_sym_DQUOTE, + STATE(593), 1, + sym_external_function_body, + STATE(980), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [38065] = 5, + [39212] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1743), 1, - anon_sym_COMMA, - ACTIONS(1746), 1, - anon_sym_RPAREN, - STATE(808), 1, - aux_sym_constant_type_arguments_repeat1, + ACTIONS(1806), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [38082] = 5, + ACTIONS(1804), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [39227] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1488), 1, - anon_sym_COLON, - ACTIONS(1748), 1, - anon_sym_EQ, - STATE(989), 1, - sym__type_annotation, + ACTIONS(1808), 1, + anon_sym_COMMA, + ACTIONS(1811), 1, + anon_sym_RPAREN, + STATE(828), 1, + aux_sym_external_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [38099] = 5, + [39244] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1750), 1, + ACTIONS(1813), 1, anon_sym_COMMA, - ACTIONS(1752), 1, + ACTIONS(1815), 1, anon_sym_GT_GT, - STATE(762), 1, + STATE(886), 1, aux_sym__constant_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [38116] = 4, + [39261] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1756), 1, - anon_sym_COLON, + ACTIONS(1817), 1, + anon_sym_COMMA, + ACTIONS(1820), 1, + anon_sym_GT_GT, + STATE(830), 1, + aux_sym__pattern_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1754), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [38131] = 3, + [39278] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1758), 3, + ACTIONS(1822), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, - [38144] = 5, + [39291] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1760), 1, - anon_sym_COMMA, - ACTIONS(1762), 1, - anon_sym_RBRACK, - STATE(772), 1, - aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [38161] = 4, + ACTIONS(1824), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [39304] = 5, ACTIONS(3), 1, sym_module_comment, - STATE(1025), 1, - sym_target, + ACTIONS(1214), 1, + anon_sym_RPAREN, + ACTIONS(1826), 1, + anon_sym_COMMA, + STATE(798), 1, + aux_sym_constant_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1764), 2, - anon_sym_erlang, - anon_sym_javascript, - [38176] = 5, + [39321] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1766), 1, - anon_sym_COMMA, - ACTIONS(1768), 1, - anon_sym_RPAREN, - STATE(801), 1, - aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [38193] = 5, + ACTIONS(1828), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [39334] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(463), 1, - anon_sym_GT_GT, - ACTIONS(1770), 1, + ACTIONS(944), 1, + anon_sym_RPAREN, + ACTIONS(1830), 1, anon_sym_COMMA, - STATE(865), 1, - aux_sym__expression_bit_string_repeat1, + STATE(803), 1, + aux_sym_constant_record_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [38210] = 5, + [39351] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1674), 1, - sym__name, - ACTIONS(1772), 1, - anon_sym_RPAREN, - STATE(829), 1, - sym_type_parameter, + ACTIONS(1832), 1, + anon_sym_COMMA, + ACTIONS(1835), 1, + anon_sym_GT_GT, + STATE(836), 1, + aux_sym__constant_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [38227] = 4, + [39368] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1774), 1, - anon_sym_as, + ACTIONS(1837), 1, + anon_sym_COMMA, + ACTIONS(1839), 1, + anon_sym_RPAREN, + STATE(885), 1, + aux_sym_external_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1714), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [38242] = 5, + [39385] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1776), 1, - anon_sym_RBRACE, - ACTIONS(1778), 1, + ACTIONS(81), 1, + anon_sym_RPAREN, + ACTIONS(1841), 1, anon_sym_COMMA, - STATE(752), 1, - aux_sym_unqualified_imports_repeat1, + STATE(813), 1, + aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [38259] = 5, + [39402] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1780), 1, - anon_sym_COMMA, - ACTIONS(1782), 1, - anon_sym_RPAREN, - STATE(840), 1, - aux_sym_constant_record_arguments_repeat1, + STATE(1078), 1, + sym_target, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [38276] = 5, + ACTIONS(1843), 2, + anon_sym_erlang, + anon_sym_javascript, + [39417] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1784), 1, - anon_sym_RBRACE, - ACTIONS(1786), 1, + ACTIONS(381), 1, + anon_sym_RPAREN, + ACTIONS(1845), 1, anon_sym_COMMA, - STATE(821), 1, - aux_sym_unqualified_imports_repeat1, + STATE(699), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [38293] = 5, + [39434] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1789), 1, - anon_sym_COMMA, - ACTIONS(1792), 1, + ACTIONS(1668), 1, + sym__name, + ACTIONS(1847), 1, anon_sym_RPAREN, - STATE(822), 1, - aux_sym_type_constructor_arguments_repeat1, + STATE(937), 1, + sym_type_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [38310] = 5, + [39451] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1674), 1, - sym__name, - ACTIONS(1794), 1, - anon_sym_RPAREN, - STATE(881), 1, - sym_type_parameter, + ACTIONS(1849), 1, + anon_sym_if, + ACTIONS(1851), 1, + anon_sym_DASH_GT, + STATE(1011), 1, + sym_case_clause_guard, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [38327] = 3, + [39468] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1796), 3, + ACTIONS(1591), 3, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_COLON, - [38340] = 5, + anon_sym_RBRACK, + [39481] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1798), 1, - anon_sym_COMMA, - ACTIONS(1800), 1, + ACTIONS(1004), 1, anon_sym_RPAREN, - STATE(779), 1, - aux_sym_function_parameters_repeat1, + ACTIONS(1853), 1, + anon_sym_COMMA, + STATE(754), 1, + aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [38357] = 5, + [39498] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1523), 1, + ACTIONS(1847), 1, anon_sym_RPAREN, - ACTIONS(1802), 1, + ACTIONS(1855), 1, anon_sym_COMMA, - STATE(843), 1, - aux_sym_record_update_arguments_repeat1, + STATE(863), 1, + aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [38374] = 5, + [39515] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1076), 1, - anon_sym_RPAREN, - ACTIONS(1804), 1, + ACTIONS(1857), 1, + anon_sym_RBRACE, + ACTIONS(1859), 1, anon_sym_COMMA, - STATE(835), 1, - aux_sym_type_arguments_repeat1, + STATE(846), 1, + aux_sym_unqualified_imports_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [38391] = 5, + [39532] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1092), 1, + ACTIONS(1259), 1, anon_sym_RPAREN, - ACTIONS(1806), 1, + ACTIONS(1862), 1, anon_sym_COMMA, - STATE(830), 1, - aux_sym_tuple_type_repeat1, + STATE(859), 1, + aux_sym_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [38408] = 5, + [39549] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1808), 1, + ACTIONS(1864), 1, anon_sym_COMMA, - ACTIONS(1810), 1, + ACTIONS(1866), 1, anon_sym_RPAREN, - STATE(782), 1, - aux_sym_type_parameters_repeat1, + STATE(838), 1, + aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [38425] = 5, + [39566] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1812), 1, + ACTIONS(482), 1, + anon_sym_GT_GT, + ACTIONS(1868), 1, anon_sym_COMMA, - ACTIONS(1815), 1, - anon_sym_RPAREN, - STATE(830), 1, - aux_sym_tuple_type_repeat1, + STATE(779), 1, + aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [38442] = 3, + [39583] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1559), 1, + anon_sym_COLON, + ACTIONS(1870), 1, + anon_sym_EQ, + STATE(1003), 1, + sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1817), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [38455] = 3, + [39600] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1819), 3, + ACTIONS(1872), 3, anon_sym_COMMA, - anon_sym_EQ, anon_sym_RPAREN, - [38468] = 5, + anon_sym_COLON, + [39613] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(952), 1, + ACTIONS(1108), 1, anon_sym_RPAREN, - ACTIONS(1821), 1, + ACTIONS(1874), 1, anon_sym_COMMA, - STATE(796), 1, - aux_sym_constant_record_arguments_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [38485] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1604), 1, - anon_sym_LPAREN, - ACTIONS(1823), 1, - anon_sym_DASH_GT, - STATE(986), 1, - sym_function_parameter_types, + STATE(784), 1, + aux_sym_type_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [38502] = 5, + [39630] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1825), 1, - anon_sym_COMMA, - ACTIONS(1828), 1, - anon_sym_RPAREN, - STATE(835), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(1559), 1, + anon_sym_COLON, + ACTIONS(1876), 1, + anon_sym_EQ, + STATE(1005), 1, + sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [38519] = 3, + [39647] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1830), 3, + ACTIONS(1878), 3, anon_sym_COMMA, - anon_sym_EQ, anon_sym_RPAREN, - [38532] = 5, + anon_sym_COLON, + [39660] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1026), 1, + ACTIONS(1120), 1, anon_sym_RPAREN, - ACTIONS(1832), 1, + ACTIONS(1880), 1, anon_sym_COMMA, - STATE(732), 1, - aux_sym_constant_tuple_repeat1, + STATE(787), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [38549] = 5, + [39677] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(404), 1, - anon_sym_RPAREN, - ACTIONS(1834), 1, + ACTIONS(1882), 1, anon_sym_COMMA, - STATE(692), 1, - aux_sym_tuple_repeat1, + ACTIONS(1884), 1, + anon_sym_GT_GT, + STATE(817), 1, + aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [38566] = 3, + [39694] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1888), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1565), 3, + ACTIONS(1886), 2, anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_DASH, - [38579] = 5, + [39709] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(932), 1, - anon_sym_RPAREN, - ACTIONS(1836), 1, - anon_sym_COMMA, - STATE(796), 1, - aux_sym_constant_record_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [38596] = 5, + ACTIONS(1890), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [39722] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1838), 1, + ACTIONS(1892), 1, anon_sym_COMMA, - ACTIONS(1840), 1, + ACTIONS(1895), 1, anon_sym_RPAREN, - STATE(750), 1, - aux_sym_constant_tuple_type_repeat1, + STATE(859), 1, + aux_sym_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [38613] = 5, + [39739] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1842), 1, - anon_sym_COMMA, - ACTIONS(1844), 1, - anon_sym_RPAREN, - STATE(827), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(117), 1, + anon_sym_DQUOTE, + STATE(679), 1, + sym_external_function_body, + STATE(958), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [38630] = 5, + [39756] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1846), 1, - anon_sym_COMMA, - ACTIONS(1849), 1, + ACTIONS(958), 1, anon_sym_RPAREN, - STATE(843), 1, - aux_sym_record_update_arguments_repeat1, + ACTIONS(1897), 1, + anon_sym_COMMA, + STATE(803), 1, + aux_sym_constant_record_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [38647] = 5, + [39773] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1488), 1, - anon_sym_COLON, - ACTIONS(1851), 1, - anon_sym_EQ, - STATE(1005), 1, - sym__type_annotation, + ACTIONS(1038), 1, + anon_sym_RPAREN, + ACTIONS(1899), 1, + anon_sym_COMMA, + STATE(754), 1, + aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [38664] = 5, + [39790] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(93), 1, - anon_sym_RPAREN, - ACTIONS(1853), 1, + ACTIONS(1901), 1, anon_sym_COMMA, - STATE(776), 1, - aux_sym_arguments_repeat1, + ACTIONS(1904), 1, + anon_sym_RPAREN, + STATE(863), 1, + aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [38681] = 5, + [39807] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1000), 1, + ACTIONS(1668), 1, + sym__name, + ACTIONS(1906), 1, anon_sym_RPAREN, - ACTIONS(1855), 1, - anon_sym_COMMA, - STATE(732), 1, - aux_sym_constant_tuple_repeat1, + STATE(937), 1, + sym_type_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [38698] = 3, + [39824] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1559), 1, + anon_sym_COLON, + ACTIONS(1908), 1, + anon_sym_EQ, + STATE(1021), 1, + sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1537), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [38711] = 5, + [39841] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1857), 1, + ACTIONS(1910), 1, anon_sym_COMMA, - ACTIONS(1859), 1, + ACTIONS(1912), 1, anon_sym_RPAREN, - STATE(826), 1, - aux_sym_record_update_arguments_repeat1, + STATE(820), 1, + aux_sym_type_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [38728] = 3, + [39858] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1914), 1, + anon_sym_COMMA, + ACTIONS(1916), 1, + anon_sym_RPAREN, + STATE(723), 1, + aux_sym_case_clause_pattern_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1861), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [38741] = 3, + [39875] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1918), 1, + anon_sym_COMMA, + ACTIONS(1920), 1, + anon_sym_RPAREN, + STATE(821), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1863), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DOT_DOT, - [38754] = 5, + [39892] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1865), 1, + ACTIONS(1922), 1, anon_sym_COMMA, - ACTIONS(1867), 1, + ACTIONS(1924), 1, anon_sym_GT_GT, - STATE(816), 1, + STATE(849), 1, aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [38771] = 5, + [39909] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1869), 1, + ACTIONS(1444), 1, + anon_sym_RBRACE, + ACTIONS(1926), 1, anon_sym_COMMA, - ACTIONS(1872), 1, - anon_sym_GT_GT, - STATE(852), 1, - aux_sym__constant_bit_string_repeat1, + STATE(846), 1, + aux_sym_unqualified_imports_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [38788] = 5, + [39926] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1874), 1, - anon_sym_if, - ACTIONS(1876), 1, - anon_sym_DASH_GT, - STATE(983), 1, - sym_case_clause_guard, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(1930), 1, + anon_sym_RPAREN, + STATE(823), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [38805] = 3, + [39943] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1668), 1, + sym__name, + ACTIONS(1932), 1, + anon_sym_RPAREN, + STATE(937), 1, + sym_type_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1878), 3, + [39960] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1934), 1, anon_sym_COMMA, + ACTIONS(1936), 1, anon_sym_RPAREN, - anon_sym_COLON, - [38818] = 5, + STATE(852), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [39977] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1880), 1, + ACTIONS(1938), 1, anon_sym_COMMA, - ACTIONS(1882), 1, + ACTIONS(1940), 1, anon_sym_RPAREN, - STATE(846), 1, - aux_sym_constant_tuple_repeat1, + STATE(824), 1, + aux_sym_type_constructor_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [38835] = 5, + [39994] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1884), 1, + ACTIONS(1942), 1, anon_sym_COMMA, - ACTIONS(1886), 1, + ACTIONS(1944), 1, anon_sym_RPAREN, - STATE(828), 1, + STATE(855), 1, aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [38852] = 5, + [40011] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1888), 1, + ACTIONS(85), 1, + anon_sym_RPAREN, + ACTIONS(1946), 1, + anon_sym_COMMA, + STATE(813), 1, + aux_sym_arguments_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [40028] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1948), 1, anon_sym_COMMA, - ACTIONS(1890), 1, + ACTIONS(1950), 1, anon_sym_RPAREN, - STATE(833), 1, + STATE(861), 1, aux_sym_constant_record_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [38869] = 5, + [40045] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(992), 1, + ACTIONS(988), 1, anon_sym_GT_GT, - ACTIONS(1892), 1, + ACTIONS(1952), 1, anon_sym_COMMA, - STATE(852), 1, + STATE(836), 1, aux_sym__constant_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [38886] = 5, + [40062] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1018), 1, - anon_sym_RBRACK, - ACTIONS(1894), 1, - anon_sym_COMMA, - STATE(732), 1, - aux_sym_constant_tuple_repeat1, + ACTIONS(1647), 1, + anon_sym_COLON, + ACTIONS(1954), 1, + anon_sym_EQ, + STATE(1083), 1, + sym__constant_type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [38903] = 5, + [40079] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1896), 1, + ACTIONS(1956), 1, anon_sym_COMMA, - ACTIONS(1898), 1, + ACTIONS(1958), 1, anon_sym_RPAREN, - STATE(837), 1, + STATE(844), 1, aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [38920] = 3, + [40096] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1000), 1, + anon_sym_RBRACK, + ACTIONS(1960), 1, + anon_sym_COMMA, + STATE(754), 1, + aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1900), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DOT_DOT, - [38933] = 5, + [40113] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1431), 1, - anon_sym_RBRACE, - ACTIONS(1902), 1, + ACTIONS(996), 1, + anon_sym_RBRACK, + ACTIONS(1962), 1, anon_sym_COMMA, - STATE(821), 1, - aux_sym_unqualified_imports_repeat1, + STATE(754), 1, + aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [38950] = 3, + [40130] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1964), 1, + anon_sym_COMMA, + ACTIONS(1966), 1, + anon_sym_RPAREN, + STATE(862), 1, + aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1904), 3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DASH, - [38963] = 5, + [40147] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1906), 1, + ACTIONS(1451), 1, + anon_sym_RBRACE, + ACTIONS(1968), 1, anon_sym_COMMA, - ACTIONS(1908), 1, - anon_sym_RPAREN, - STATE(757), 1, - aux_sym_tuple_type_repeat1, + STATE(846), 1, + aux_sym_unqualified_imports_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [38980] = 5, + [40164] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1910), 1, + ACTIONS(1092), 1, + anon_sym_RPAREN, + ACTIONS(1970), 1, anon_sym_COMMA, - ACTIONS(1913), 1, - anon_sym_GT_GT, - STATE(865), 1, - aux_sym__expression_bit_string_repeat1, + STATE(828), 1, + aux_sym_external_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [38997] = 5, + [40181] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1643), 1, - anon_sym_COLON, - ACTIONS(1915), 1, - anon_sym_EQ, - STATE(1065), 1, - sym__constant_type_annotation, + ACTIONS(978), 1, + anon_sym_GT_GT, + ACTIONS(1972), 1, + anon_sym_COMMA, + STATE(836), 1, + aux_sym__constant_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [39014] = 5, + [40198] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1917), 1, + ACTIONS(1974), 1, anon_sym_COMMA, - ACTIONS(1919), 1, + ACTIONS(1976), 1, anon_sym_RPAREN, - STATE(760), 1, - aux_sym_tuple_type_repeat1, + STATE(835), 1, + aux_sym_constant_record_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [39031] = 5, + [40215] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1580), 1, - anon_sym_RPAREN, - ACTIONS(1674), 1, + ACTIONS(1668), 1, sym__name, - STATE(881), 1, + ACTIONS(1978), 1, + anon_sym_RPAREN, + STATE(896), 1, sym_type_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [39048] = 5, + [40232] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1921), 1, + ACTIONS(1980), 1, anon_sym_COMMA, - ACTIONS(1923), 1, + ACTIONS(1982), 1, anon_sym_RPAREN, - STATE(806), 1, - aux_sym_case_clause_pattern_repeat1, + STATE(863), 1, + aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [39065] = 5, + [40249] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1925), 1, - anon_sym_COMMA, - ACTIONS(1927), 1, - anon_sym_GT_GT, - STATE(858), 1, - aux_sym__constant_bit_string_repeat1, + ACTIONS(1668), 1, + sym__name, + ACTIONS(1982), 1, + anon_sym_RPAREN, + STATE(937), 1, + sym_type_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [39082] = 5, + [40266] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1929), 1, - anon_sym_COMMA, - ACTIONS(1931), 1, - anon_sym_RBRACK, - STATE(859), 1, - aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [39099] = 5, + ACTIONS(1984), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [40279] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(856), 1, - anon_sym_GT_GT, - ACTIONS(1933), 1, - anon_sym_COMMA, - STATE(792), 1, - aux_sym__pattern_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [39116] = 5, + ACTIONS(1578), 3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DASH, + [40292] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1935), 1, - anon_sym_RBRACE, - ACTIONS(1937), 1, - anon_sym_COMMA, - STATE(862), 1, - aux_sym_unqualified_imports_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [39133] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1939), 1, + ACTIONS(1986), 3, anon_sym_COMMA, - ACTIONS(1941), 1, + anon_sym_EQ, anon_sym_RPAREN, - STATE(748), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [39150] = 5, + [40305] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1674), 1, - sym__name, - ACTIONS(1943), 1, + ACTIONS(1988), 1, + anon_sym_COMMA, + ACTIONS(1990), 1, anon_sym_RPAREN, - STATE(874), 1, - sym_type_parameter, + STATE(833), 1, + aux_sym_constant_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [39167] = 5, + [40322] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1604), 1, + ACTIONS(1651), 1, anon_sym_LPAREN, - ACTIONS(1945), 1, + ACTIONS(1992), 1, anon_sym_DASH_GT, - STATE(1061), 1, + STATE(1089), 1, sym_function_parameter_types, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [39184] = 5, + [40339] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1947), 1, + ACTIONS(1994), 1, anon_sym_COMMA, - ACTIONS(1949), 1, + ACTIONS(1996), 1, anon_sym_RPAREN, - STATE(761), 1, - aux_sym_type_arguments_repeat1, + STATE(889), 1, + aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [39201] = 4, + [40356] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, - sym__upname, - STATE(181), 1, - sym_type_identifier, + ACTIONS(1998), 1, + anon_sym_RBRACE, + ACTIONS(2000), 1, + anon_sym_COMMA, + STATE(884), 1, + aux_sym_unqualified_imports_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [39215] = 3, + [40373] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1699), 2, + ACTIONS(2002), 3, anon_sym_COMMA, - anon_sym_GT_GT, - [39227] = 4, + anon_sym_EQ, + anon_sym_RPAREN, + [40386] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1318), 1, - sym__name, - STATE(882), 1, - sym_identifier, + ACTIONS(2004), 1, + anon_sym_COMMA, + ACTIONS(2006), 1, + anon_sym_RBRACK, + STATE(881), 1, + aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [39241] = 3, + [40403] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2008), 1, + anon_sym_COMMA, + ACTIONS(2010), 1, + anon_sym_GT_GT, + STATE(878), 1, + aux_sym__constant_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1591), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [39253] = 4, + [40420] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1951), 1, - anon_sym_LPAREN, - STATE(1056), 1, - sym_external_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [39267] = 4, + ACTIONS(2012), 2, + anon_sym_LBRACE, + anon_sym_DASH_GT, + [40432] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1318), 1, - sym__name, - STATE(892), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [39281] = 4, + ACTIONS(976), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [40444] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1953), 1, - sym__name, - STATE(554), 1, - sym_module, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [39295] = 4, + ACTIONS(2014), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [40456] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1318), 1, + ACTIONS(1340), 1, sym__name, - STATE(928), 1, + STATE(905), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [39309] = 4, + [40470] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1955), 1, - anon_sym_LBRACE, - STATE(632), 1, - sym_unqualified_imports, + ACTIONS(2016), 1, + anon_sym_LPAREN, + STATE(1077), 1, + sym_external_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [39323] = 4, + [40484] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1957), 1, - anon_sym_LPAREN, - STATE(902), 1, - sym_function_parameters, + ACTIONS(1340), 1, + sym__name, + STATE(689), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [39337] = 4, + [40498] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1318), 1, + ACTIONS(1340), 1, sym__name, - STATE(775), 1, + STATE(920), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [39351] = 4, + [40512] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1959), 1, - anon_sym_LPAREN, - STATE(22), 1, - sym_arguments, + ACTIONS(2018), 1, + sym__name, + STATE(563), 1, + sym_module, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [39365] = 4, + [40526] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1961), 1, - anon_sym_type, - ACTIONS(1963), 1, - anon_sym_fn, + ACTIONS(1340), 1, + sym__name, + STATE(771), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [39379] = 4, + [40540] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1957), 1, - anon_sym_LPAREN, - STATE(903), 1, - sym_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [39393] = 4, + ACTIONS(2020), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [40552] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1957), 1, - anon_sym_LPAREN, - STATE(907), 1, - sym_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [39407] = 4, + ACTIONS(2022), 2, + anon_sym_RBRACE, + sym__upname, + [40564] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1965), 1, - anon_sym_LBRACE, - ACTIONS(1967), 1, - anon_sym_EQ, + ACTIONS(63), 1, + sym__upname, + STATE(184), 1, + sym_type_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [39421] = 4, + [40578] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1318), 1, - sym__name, - STATE(666), 1, - sym_identifier, + ACTIONS(2024), 1, + anon_sym_LPAREN, + STATE(260), 1, + sym_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [39435] = 3, + [40592] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2026), 1, + anon_sym_type, + ACTIONS(2028), 1, + anon_sym_fn, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1872), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [39447] = 3, + [40606] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2030), 1, + anon_sym_LPAREN, + STATE(921), 1, + sym_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1913), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [39459] = 3, + [40620] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2032), 1, + anon_sym_LBRACE, + STATE(650), 1, + sym_unqualified_imports, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1969), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [39471] = 4, + [40634] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1971), 1, - anon_sym_LPAREN, - STATE(252), 1, - sym_arguments, + ACTIONS(1340), 1, + sym__name, + STATE(939), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [39485] = 3, + [40648] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2030), 1, + anon_sym_LPAREN, + STATE(928), 1, + sym_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1598), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [39497] = 3, + [40662] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2034), 1, + anon_sym_LBRACE, + ACTIONS(2036), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1792), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [39509] = 4, + [40676] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1973), 1, - sym__name, - STATE(567), 1, - sym_module, + ACTIONS(2030), 1, + anon_sym_LPAREN, + STATE(934), 1, + sym_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [39523] = 4, + [40690] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1975), 1, + ACTIONS(2038), 1, anon_sym_LBRACE, - ACTIONS(1977), 1, + ACTIONS(2040), 1, anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [39537] = 4, + [40704] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1979), 1, - anon_sym_LBRACE, - ACTIONS(1981), 1, - anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [39551] = 3, + ACTIONS(2042), 2, + anon_sym_RBRACE, + sym__upname, + [40716] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2044), 1, + sym__name, + STATE(578), 1, + sym_module, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1983), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [39563] = 3, + [40730] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1985), 2, + ACTIONS(2046), 2, anon_sym_COMMA, anon_sym_RPAREN, - [39575] = 4, + [40742] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(442), 1, + ACTIONS(63), 1, sym__upname, - STATE(189), 1, + STATE(961), 1, sym_type_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [39589] = 4, + [40756] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1987), 1, - anon_sym_LBRACE, - ACTIONS(1989), 1, - anon_sym_DASH_GT, + ACTIONS(1340), 1, + sym__name, + STATE(961), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [39603] = 3, + [40770] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2048), 1, + anon_sym_COMMA, + ACTIONS(2050), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1991), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [39615] = 4, + [40784] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1993), 1, - sym_string, - STATE(578), 1, - sym_external_function_body, + ACTIONS(2052), 1, + anon_sym_LBRACE, + ACTIONS(2054), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [39629] = 4, + [40798] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, + ACTIONS(447), 1, sym__upname, - STATE(928), 1, + STATE(200), 1, sym_type_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [39643] = 3, + [40812] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1849), 2, + ACTIONS(2056), 2, anon_sym_COMMA, anon_sym_RPAREN, - [39655] = 4, + [40824] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1318), 1, + ACTIONS(1340), 1, sym__name, - STATE(962), 1, + STATE(676), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [39669] = 4, + [40838] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(704), 1, - sym__upname, - STATE(429), 1, - sym_type_identifier, + ACTIONS(2058), 1, + sym__name, + STATE(264), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [39683] = 3, + [40852] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1995), 2, - anon_sym_RBRACE, - sym__upname, - [39695] = 3, + ACTIONS(1741), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [40864] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2060), 1, + anon_sym_LBRACE, + ACTIONS(2062), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1997), 2, - anon_sym_LBRACE, - anon_sym_DASH_GT, - [39707] = 3, + [40878] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1340), 1, + sym__name, + STATE(951), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1999), 2, - anon_sym_RBRACE, - sym__upname, - [39719] = 4, + [40892] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2064), 1, + anon_sym_LPAREN, + STATE(37), 1, + sym_arguments, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [40906] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2001), 1, - sym__name, - STATE(258), 1, - sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [39733] = 4, + ACTIONS(1904), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [40918] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2003), 1, + ACTIONS(2066), 1, anon_sym_LBRACE, - ACTIONS(2005), 1, - anon_sym_DASH_GT, + ACTIONS(2068), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [39747] = 4, + [40932] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1957), 1, + ACTIONS(2030), 1, anon_sym_LPAREN, - STATE(953), 1, + STATE(954), 1, sym_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [39761] = 3, + [40946] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2030), 1, + anon_sym_LPAREN, + STATE(945), 1, + sym_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2007), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [39773] = 4, + [40960] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1674), 1, - sym__name, - STATE(881), 1, - sym_type_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [39787] = 3, + ACTIONS(2070), 2, + anon_sym_LBRACE, + anon_sym_DASH_GT, + [40972] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(691), 1, + sym__upname, + STATE(434), 1, + sym_type_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2009), 2, - anon_sym_LBRACE, - anon_sym_DASH_GT, - [39799] = 3, + [40986] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2072), 1, + anon_sym_LBRACE, + STATE(582), 1, + sym_unqualified_imports, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2011), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [39811] = 3, + [41000] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(117), 1, + anon_sym_DQUOTE, + STATE(1001), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1828), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [39823] = 4, + [41014] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1046), 1, - sym__upname, - STATE(561), 1, - sym_type_identifier, + ACTIONS(2074), 1, + anon_sym_LBRACE, + ACTIONS(2076), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [39837] = 3, + [41028] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2078), 1, + sym__name, + STATE(633), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2013), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [39849] = 4, + [41042] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2015), 1, + ACTIONS(117), 1, + anon_sym_DQUOTE, + STATE(1004), 1, sym_string, - STATE(671), 1, - sym_external_function_body, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [39863] = 3, + [41056] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2017), 2, - anon_sym_RBRACE, + ACTIONS(2080), 2, anon_sym_COMMA, - [39875] = 3, + anon_sym_RPAREN, + [41068] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1070), 1, + sym__upname, + STATE(577), 1, + sym_type_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2019), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [39887] = 3, + [41082] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1815), 2, + ACTIONS(2082), 2, anon_sym_COMMA, anon_sym_RPAREN, - [39899] = 3, + [41094] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2016), 1, + anon_sym_LPAREN, + STATE(1017), 1, + sym_external_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2021), 2, - anon_sym_LBRACE, - anon_sym_DASH_GT, - [39911] = 3, + [41108] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(63), 1, + sym__upname, + STATE(2), 1, + sym_type_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2023), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [39923] = 3, + [41122] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2025), 2, - anon_sym_RBRACE, - sym__upname, - [39935] = 3, + ACTIONS(1673), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [41134] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2084), 1, + anon_sym_LBRACE, + ACTIONS(2086), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2027), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [39947] = 4, + [41148] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2029), 1, - anon_sym_COMMA, - ACTIONS(2031), 1, - anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [39961] = 4, + ACTIONS(2080), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [41160] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(65), 1, - sym__upname, - STATE(2), 1, - sym_type_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [39975] = 4, + ACTIONS(2082), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [41172] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2033), 1, - anon_sym_type, - ACTIONS(2035), 1, - anon_sym_fn, + ACTIONS(1545), 1, + sym__name, + STATE(54), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [39989] = 4, + [41186] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1318), 1, - sym__name, - STATE(866), 1, - sym_identifier, + ACTIONS(51), 1, + anon_sym_DQUOTE, + STATE(670), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [40003] = 4, + [41200] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2037), 1, - sym__name, - STATE(552), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [40017] = 3, + ACTIONS(2088), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [41212] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1784), 2, + ACTIONS(1857), 2, anon_sym_RBRACE, anon_sym_COMMA, - [40029] = 4, + [41224] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1490), 1, - sym__name, - STATE(38), 1, - sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [40043] = 3, + ACTIONS(2090), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [41236] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2039), 2, - anon_sym_RBRACE, - sym__upname, - [40055] = 3, + ACTIONS(1660), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [41248] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2011), 2, + ACTIONS(2092), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [40067] = 3, + anon_sym_GT_GT, + [41260] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(946), 2, + ACTIONS(1820), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [40079] = 4, + anon_sym_GT_GT, + [41272] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1318), 1, - sym__name, - STATE(552), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [40093] = 3, + ACTIONS(2094), 2, + anon_sym_RBRACE, + sym__upname, + [41284] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2096), 1, + anon_sym_DOT, + ACTIONS(2098), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1617), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [40105] = 3, + [41298] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(117), 1, + anon_sym_DQUOTE, + STATE(1046), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2013), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [40117] = 3, + [41312] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1746), 2, + ACTIONS(1684), 2, anon_sym_COMMA, anon_sym_RPAREN, - [40129] = 3, + [41324] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2041), 2, - anon_sym_LBRACE, - anon_sym_DASH_GT, - [40141] = 4, + ACTIONS(2100), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [41336] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1951), 1, - anon_sym_LPAREN, - STATE(1024), 1, - sym_external_function_parameters, + ACTIONS(2102), 1, + anon_sym_type, + ACTIONS(2104), 1, + anon_sym_fn, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [40155] = 3, + [41350] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1340), 1, + sym__name, + STATE(879), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1648), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [40167] = 4, + [41364] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1318), 1, + ACTIONS(2106), 1, sym__name, - STATE(950), 1, + STATE(562), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [40181] = 4, + [41378] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2043), 1, - anon_sym_LBRACE, - ACTIONS(2045), 1, - anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [40195] = 4, + ACTIONS(1835), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [41390] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2047), 1, - anon_sym_LBRACE, - ACTIONS(2049), 1, - anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [40209] = 3, + ACTIONS(2108), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [41402] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2051), 2, + ACTIONS(1695), 2, anon_sym_COMMA, anon_sym_RPAREN, - [40221] = 3, + [41414] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1721), 2, + ACTIONS(1811), 2, anon_sym_COMMA, anon_sym_RPAREN, - [40233] = 4, + [41426] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2053), 1, - anon_sym_DOT, - ACTIONS(2055), 1, - anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [40247] = 3, + ACTIONS(2110), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [41438] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2057), 2, + ACTIONS(1702), 2, anon_sym_COMMA, anon_sym_RPAREN, - [40259] = 3, + [41450] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2059), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [40271] = 4, + ACTIONS(2112), 2, + anon_sym_RBRACE, + sym__upname, + [41462] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(138), 1, - sym__upname, - STATE(2), 1, - sym_type_identifier, + ACTIONS(1062), 1, + anon_sym_DQUOTE, + STATE(591), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [40285] = 3, + [41476] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1710), 2, + ACTIONS(1768), 2, anon_sym_COMMA, anon_sym_RPAREN, - [40297] = 4, + [41488] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1957), 1, - anon_sym_LPAREN, - STATE(918), 1, - sym_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [40311] = 3, + ACTIONS(2114), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [41500] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2078), 1, + sym__name, + STATE(613), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(930), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [40323] = 3, + [41514] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2061), 2, + ACTIONS(2116), 2, anon_sym_RBRACE, sym__upname, - [40335] = 3, + [41526] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2063), 2, + ACTIONS(2118), 2, anon_sym_COMMA, anon_sym_RPAREN, - [40347] = 4, + [41538] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2065), 1, - sym__name, - STATE(192), 1, - sym_label, + ACTIONS(2120), 1, + anon_sym_LPAREN, + STATE(195), 1, + sym_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [40361] = 4, + [41552] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1318), 1, + ACTIONS(1668), 1, sym__name, - STATE(674), 1, - sym_identifier, + STATE(937), 1, + sym_type_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [40375] = 3, + [41566] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2067), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [40387] = 4, + ACTIONS(2122), 2, + anon_sym_LBRACE, + anon_sym_DASH_GT, + [41578] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2069), 1, - anon_sym_LPAREN, - STATE(199), 1, - sym_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [40401] = 4, + ACTIONS(2124), 2, + anon_sym_LBRACE, + anon_sym_DASH_GT, + [41590] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2071), 1, + ACTIONS(1340), 1, sym__name, - STATE(644), 1, + STATE(562), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [40415] = 4, + [41604] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2073), 1, - anon_sym_LBRACE, - STATE(570), 1, - sym_unqualified_imports, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [40429] = 4, + ACTIONS(1717), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [41616] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2071), 1, - sym__name, - STATE(616), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [40443] = 3, + ACTIONS(980), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [41628] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2075), 1, - anon_sym_COLON, + ACTIONS(2126), 1, + sym__name, + STATE(194), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [40454] = 3, + [41642] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2077), 1, - anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [40465] = 3, + ACTIONS(1728), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [41654] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2079), 1, - anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [40476] = 3, + ACTIONS(2128), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [41666] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2081), 1, - anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [40487] = 3, + ACTIONS(2130), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [41678] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2083), 1, - anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [40498] = 3, + ACTIONS(1895), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [41690] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2085), 1, - sym__name, + ACTIONS(127), 1, + sym__upname, + STATE(2), 1, + sym_type_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [40509] = 3, + [41704] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(760), 1, - anon_sym_RPAREN, + ACTIONS(2132), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [40520] = 3, + [41715] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2087), 1, - anon_sym_DASH_GT, + ACTIONS(2134), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [40531] = 3, + [41726] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2089), 1, + ACTIONS(2136), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [40542] = 3, + [41737] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2091), 1, - anon_sym_RPAREN, + ACTIONS(2138), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [40553] = 3, + [41748] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2093), 1, - anon_sym_DASH_GT, + ACTIONS(2140), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [40564] = 3, + [41759] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2095), 1, + ACTIONS(2142), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [40575] = 3, + [41770] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2097), 1, + ACTIONS(2144), 1, anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [40586] = 3, + [41781] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2099), 1, - anon_sym_DASH_GT, + ACTIONS(748), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [40597] = 3, + [41792] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2053), 1, - anon_sym_DOT, + ACTIONS(2146), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [40608] = 3, + [41803] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2101), 1, - anon_sym_LPAREN, + ACTIONS(2148), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [40619] = 3, + [41814] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2103), 1, - anon_sym_EQ, + ACTIONS(2150), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [40630] = 3, + [41825] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2105), 1, - anon_sym_RBRACK, + ACTIONS(2152), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [40641] = 3, + [41836] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2107), 1, + ACTIONS(2154), 1, anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [40652] = 3, + [41847] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2109), 1, + ACTIONS(746), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [40663] = 3, + [41858] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2111), 1, - anon_sym_RBRACE, + ACTIONS(2156), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [40674] = 3, + [41869] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2113), 1, - anon_sym_EQ, + ACTIONS(2158), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [40685] = 3, + [41880] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2115), 1, - anon_sym_RBRACE, + ACTIONS(2160), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [40696] = 3, + [41891] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2117), 1, - anon_sym_RBRACK, + ACTIONS(2162), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [40707] = 3, + [41902] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2119), 1, - anon_sym_EQ, + ACTIONS(2164), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [40718] = 3, + [41913] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2121), 1, - sym_string, + ACTIONS(2166), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [40729] = 3, + [41924] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2123), 1, - anon_sym_LBRACE, + ACTIONS(2168), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [40740] = 3, + [41935] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2125), 1, + ACTIONS(2170), 1, anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [40751] = 3, + [41946] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2127), 1, - anon_sym_RPAREN, + ACTIONS(2172), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [40762] = 3, + [41957] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2129), 1, - sym_string, + ACTIONS(2174), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [40773] = 3, + [41968] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2131), 1, + ACTIONS(2176), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [40784] = 3, + [41979] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2133), 1, - sym_string, + ACTIONS(2178), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [40795] = 3, + [41990] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2135), 1, - anon_sym_EQ, + ACTIONS(2180), 1, + anon_sym_DASH_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [42001] = 3, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2182), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [40806] = 3, + [42012] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2137), 1, + ACTIONS(2184), 1, anon_sym_type, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [40817] = 3, + [42023] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2139), 1, + ACTIONS(2186), 1, anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [40828] = 3, + [42034] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2141), 1, - anon_sym_RPAREN, + ACTIONS(2188), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [40839] = 3, + [42045] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2143), 1, + ACTIONS(2190), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [40850] = 3, + [42056] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2145), 1, + ACTIONS(2192), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [40861] = 3, + [42067] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2147), 1, - anon_sym_DASH_GT, + ACTIONS(2194), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [40872] = 3, + [42078] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2149), 1, - anon_sym_RBRACK, + ACTIONS(2196), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [40883] = 3, + [42089] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2151), 1, + ACTIONS(2198), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [40894] = 3, + [42100] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2153), 1, - anon_sym_COLON, + ACTIONS(2200), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [40905] = 3, + [42111] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2155), 1, + ACTIONS(2202), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [40916] = 3, + [42122] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2157), 1, + ACTIONS(2204), 1, anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [40927] = 3, + [42133] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2159), 1, + ACTIONS(2206), 1, anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [40938] = 3, + [42144] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2161), 1, + ACTIONS(2208), 1, anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [40949] = 3, + [42155] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2163), 1, - sym_string, + ACTIONS(2210), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [40960] = 3, + [42166] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2165), 1, - anon_sym_RPAREN, + ACTIONS(2212), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [40971] = 3, + [42177] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2167), 1, - anon_sym_type, + ACTIONS(2214), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [40982] = 3, + [42188] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2169), 1, - anon_sym_LPAREN, + ACTIONS(2216), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [40993] = 3, + [42199] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2171), 1, - anon_sym_RBRACE, + ACTIONS(2218), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [41004] = 3, + [42210] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2173), 1, - anon_sym_DASH_GT, + ACTIONS(2220), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [41015] = 3, + [42221] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2175), 1, - anon_sym_LBRACE, + ACTIONS(2222), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [41026] = 3, + [42232] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2177), 1, + ACTIONS(2224), 1, anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [41037] = 3, + [42243] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2179), 1, - anon_sym_RPAREN, + ACTIONS(2226), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [41048] = 3, + [42254] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2181), 1, - anon_sym_RPAREN, + ACTIONS(2228), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [41059] = 3, + [42265] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2183), 1, - anon_sym_RBRACK, + ACTIONS(2230), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [41070] = 3, + [42276] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2185), 1, - anon_sym_LPAREN, + ACTIONS(2232), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [41081] = 3, + [42287] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2187), 1, + ACTIONS(2234), 1, anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [41092] = 3, + [42298] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2189), 1, - anon_sym_DASH_GT, + ACTIONS(2236), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [41103] = 3, + [42309] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2191), 1, + ACTIONS(2238), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [41114] = 3, + [42320] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2193), 1, + ACTIONS(2240), 1, anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [41125] = 3, + [42331] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2195), 1, + ACTIONS(2242), 1, anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [41136] = 3, + [42342] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2197), 1, - sym_string, + ACTIONS(1485), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [41147] = 3, + [42353] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(706), 1, - anon_sym_RPAREN, + ACTIONS(2244), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [41158] = 3, + [42364] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2199), 1, - anon_sym_DOT, + ACTIONS(2246), 1, + sym__name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [41169] = 3, + [42375] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2201), 1, - anon_sym_COLON, + ACTIONS(2248), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [41180] = 3, + [42386] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2203), 1, - ts_builtin_sym_end, + ACTIONS(2096), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [41191] = 3, + [42397] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2205), 1, - anon_sym_LPAREN, + ACTIONS(2250), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [41202] = 3, + [42408] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2207), 1, - anon_sym_RBRACE, + ACTIONS(2252), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [41213] = 3, + [42419] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2209), 1, - anon_sym_LPAREN, + ACTIONS(2254), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [41224] = 3, + [42430] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2211), 1, - anon_sym_EQ, + ACTIONS(2256), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [41235] = 3, + [42441] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2213), 1, - anon_sym_COLON, + ACTIONS(2258), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [41246] = 3, + [42452] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2215), 1, + ACTIONS(2260), 1, anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [41257] = 3, + [42463] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1457), 1, - anon_sym_RPAREN, + ACTIONS(2262), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [41268] = 3, + [42474] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2217), 1, + ACTIONS(2264), 1, anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [41279] = 3, + [42485] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2219), 1, + ACTIONS(2266), 1, anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [41290] = 3, + [42496] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2221), 1, - anon_sym_DOT, + ACTIONS(2268), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [41301] = 3, + [42507] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2223), 1, - anon_sym_RPAREN, + ACTIONS(2270), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [41312] = 3, + [42518] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2225), 1, + ACTIONS(2272), 1, anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [41323] = 3, + [42529] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2227), 1, + ACTIONS(2274), 1, anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [41334] = 3, + [42540] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2229), 1, - anon_sym_RPAREN, + ACTIONS(2276), 1, + anon_sym_type, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [41345] = 3, + [42551] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2231), 1, - anon_sym_LPAREN, + ACTIONS(2278), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [41356] = 3, + [42562] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2233), 1, + ACTIONS(2280), 1, anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [41367] = 3, + [42573] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2235), 1, - anon_sym_DASH_GT, + ACTIONS(2282), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [41378] = 3, + [42584] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2237), 1, - anon_sym_COLON, + ACTIONS(2284), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [41389] = 3, + [42595] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2239), 1, - anon_sym_DOT, + ACTIONS(2286), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [41400] = 3, + [42606] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2241), 1, - anon_sym_LBRACE, + ACTIONS(2288), 1, + ts_builtin_sym_end, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [41411] = 3, + [42617] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2243), 1, - anon_sym_DASH_GT, + ACTIONS(2290), 1, + sym__name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [41422] = 3, + [42628] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2245), 1, - sym__name, + ACTIONS(2292), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [41433] = 3, + [42639] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2247), 1, - anon_sym_LBRACE, + ACTIONS(2294), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [41444] = 3, + [42650] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2249), 1, - anon_sym_RBRACK, + ACTIONS(2296), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [41455] = 3, + [42661] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2251), 1, - anon_sym_EQ, + ACTIONS(2298), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [41466] = 3, + [42672] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2253), 1, - anon_sym_RBRACK, + ACTIONS(2300), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [41477] = 3, + [42683] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2255), 1, - anon_sym_LPAREN, + ACTIONS(2302), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [41488] = 3, + [42694] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2257), 1, + ACTIONS(2304), 1, anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, @@ -38127,1071 +39258,1092 @@ static const uint16_t ts_small_parse_table[] = { static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(2)] = 0, [SMALL_STATE(3)] = 61, - [SMALL_STATE(4)] = 121, - [SMALL_STATE(5)] = 241, - [SMALL_STATE(6)] = 361, - [SMALL_STATE(7)] = 421, - [SMALL_STATE(8)] = 541, - [SMALL_STATE(9)] = 658, - [SMALL_STATE(10)] = 775, - [SMALL_STATE(11)] = 892, - [SMALL_STATE(12)] = 1009, - [SMALL_STATE(13)] = 1072, - [SMALL_STATE(14)] = 1189, - [SMALL_STATE(15)] = 1306, - [SMALL_STATE(16)] = 1423, - [SMALL_STATE(17)] = 1540, - [SMALL_STATE(18)] = 1657, - [SMALL_STATE(19)] = 1719, - [SMALL_STATE(20)] = 1833, - [SMALL_STATE(21)] = 1947, - [SMALL_STATE(22)] = 2005, - [SMALL_STATE(23)] = 2063, - [SMALL_STATE(24)] = 2177, - [SMALL_STATE(25)] = 2235, - [SMALL_STATE(26)] = 2349, - [SMALL_STATE(27)] = 2463, - [SMALL_STATE(28)] = 2577, - [SMALL_STATE(29)] = 2691, - [SMALL_STATE(30)] = 2805, - [SMALL_STATE(31)] = 2919, - [SMALL_STATE(32)] = 2977, - [SMALL_STATE(33)] = 3035, - [SMALL_STATE(34)] = 3093, - [SMALL_STATE(35)] = 3207, - [SMALL_STATE(36)] = 3265, - [SMALL_STATE(37)] = 3323, - [SMALL_STATE(38)] = 3381, - [SMALL_STATE(39)] = 3439, - [SMALL_STATE(40)] = 3553, - [SMALL_STATE(41)] = 3667, - [SMALL_STATE(42)] = 3781, - [SMALL_STATE(43)] = 3895, - [SMALL_STATE(44)] = 4009, - [SMALL_STATE(45)] = 4120, - [SMALL_STATE(46)] = 4231, - [SMALL_STATE(47)] = 4342, - [SMALL_STATE(48)] = 4453, - [SMALL_STATE(49)] = 4564, - [SMALL_STATE(50)] = 4621, - [SMALL_STATE(51)] = 4732, - [SMALL_STATE(52)] = 4789, - [SMALL_STATE(53)] = 4848, - [SMALL_STATE(54)] = 4959, - [SMALL_STATE(55)] = 5070, - [SMALL_STATE(56)] = 5181, - [SMALL_STATE(57)] = 5240, - [SMALL_STATE(58)] = 5297, - [SMALL_STATE(59)] = 5356, - [SMALL_STATE(60)] = 5413, - [SMALL_STATE(61)] = 5470, - [SMALL_STATE(62)] = 5581, - [SMALL_STATE(63)] = 5640, - [SMALL_STATE(64)] = 5751, - [SMALL_STATE(65)] = 5862, - [SMALL_STATE(66)] = 5919, - [SMALL_STATE(67)] = 6030, - [SMALL_STATE(68)] = 6087, - [SMALL_STATE(69)] = 6144, - [SMALL_STATE(70)] = 6252, - [SMALL_STATE(71)] = 6308, - [SMALL_STATE(72)] = 6364, - [SMALL_STATE(73)] = 6472, - [SMALL_STATE(74)] = 6580, - [SMALL_STATE(75)] = 6636, - [SMALL_STATE(76)] = 6692, - [SMALL_STATE(77)] = 6800, - [SMALL_STATE(78)] = 6856, - [SMALL_STATE(79)] = 6964, - [SMALL_STATE(80)] = 7020, - [SMALL_STATE(81)] = 7076, - [SMALL_STATE(82)] = 7184, - [SMALL_STATE(83)] = 7240, - [SMALL_STATE(84)] = 7296, - [SMALL_STATE(85)] = 7352, - [SMALL_STATE(86)] = 7408, - [SMALL_STATE(87)] = 7464, - [SMALL_STATE(88)] = 7520, - [SMALL_STATE(89)] = 7576, - [SMALL_STATE(90)] = 7684, - [SMALL_STATE(91)] = 7789, - [SMALL_STATE(92)] = 7844, - [SMALL_STATE(93)] = 7949, - [SMALL_STATE(94)] = 8054, - [SMALL_STATE(95)] = 8159, - [SMALL_STATE(96)] = 8218, - [SMALL_STATE(97)] = 8323, - [SMALL_STATE(98)] = 8428, - [SMALL_STATE(99)] = 8533, - [SMALL_STATE(100)] = 8638, - [SMALL_STATE(101)] = 8743, - [SMALL_STATE(102)] = 8848, - [SMALL_STATE(103)] = 8953, - [SMALL_STATE(104)] = 9058, - [SMALL_STATE(105)] = 9163, - [SMALL_STATE(106)] = 9268, - [SMALL_STATE(107)] = 9323, - [SMALL_STATE(108)] = 9428, - [SMALL_STATE(109)] = 9530, - [SMALL_STATE(110)] = 9632, - [SMALL_STATE(111)] = 9734, - [SMALL_STATE(112)] = 9836, - [SMALL_STATE(113)] = 9938, - [SMALL_STATE(114)] = 10040, - [SMALL_STATE(115)] = 10142, - [SMALL_STATE(116)] = 10244, - [SMALL_STATE(117)] = 10346, - [SMALL_STATE(118)] = 10448, - [SMALL_STATE(119)] = 10550, - [SMALL_STATE(120)] = 10652, - [SMALL_STATE(121)] = 10754, - [SMALL_STATE(122)] = 10856, - [SMALL_STATE(123)] = 10958, - [SMALL_STATE(124)] = 11060, - [SMALL_STATE(125)] = 11162, - [SMALL_STATE(126)] = 11264, - [SMALL_STATE(127)] = 11366, - [SMALL_STATE(128)] = 11468, - [SMALL_STATE(129)] = 11572, - [SMALL_STATE(130)] = 11676, - [SMALL_STATE(131)] = 11778, - [SMALL_STATE(132)] = 11880, - [SMALL_STATE(133)] = 11982, - [SMALL_STATE(134)] = 12084, - [SMALL_STATE(135)] = 12186, - [SMALL_STATE(136)] = 12288, - [SMALL_STATE(137)] = 12392, - [SMALL_STATE(138)] = 12494, - [SMALL_STATE(139)] = 12596, - [SMALL_STATE(140)] = 12698, - [SMALL_STATE(141)] = 12802, - [SMALL_STATE(142)] = 12904, - [SMALL_STATE(143)] = 13006, - [SMALL_STATE(144)] = 13108, - [SMALL_STATE(145)] = 13210, - [SMALL_STATE(146)] = 13312, - [SMALL_STATE(147)] = 13416, - [SMALL_STATE(148)] = 13520, - [SMALL_STATE(149)] = 13622, - [SMALL_STATE(150)] = 13724, - [SMALL_STATE(151)] = 13826, - [SMALL_STATE(152)] = 13928, - [SMALL_STATE(153)] = 14030, - [SMALL_STATE(154)] = 14132, - [SMALL_STATE(155)] = 14234, - [SMALL_STATE(156)] = 14336, - [SMALL_STATE(157)] = 14440, - [SMALL_STATE(158)] = 14542, - [SMALL_STATE(159)] = 14644, - [SMALL_STATE(160)] = 14746, - [SMALL_STATE(161)] = 14848, - [SMALL_STATE(162)] = 14950, - [SMALL_STATE(163)] = 15052, - [SMALL_STATE(164)] = 15156, - [SMALL_STATE(165)] = 15260, - [SMALL_STATE(166)] = 15313, - [SMALL_STATE(167)] = 15376, - [SMALL_STATE(168)] = 15449, - [SMALL_STATE(169)] = 15516, - [SMALL_STATE(170)] = 15585, - [SMALL_STATE(171)] = 15656, - [SMALL_STATE(172)] = 15729, - [SMALL_STATE(173)] = 15802, - [SMALL_STATE(174)] = 15855, - [SMALL_STATE(175)] = 15928, - [SMALL_STATE(176)] = 15985, - [SMALL_STATE(177)] = 16086, - [SMALL_STATE(178)] = 16147, - [SMALL_STATE(179)] = 16220, - [SMALL_STATE(180)] = 16273, - [SMALL_STATE(181)] = 16325, - [SMALL_STATE(182)] = 16377, - [SMALL_STATE(183)] = 16429, - [SMALL_STATE(184)] = 16481, - [SMALL_STATE(185)] = 16535, - [SMALL_STATE(186)] = 16588, - [SMALL_STATE(187)] = 16637, - [SMALL_STATE(188)] = 16686, - [SMALL_STATE(189)] = 16735, - [SMALL_STATE(190)] = 16784, - [SMALL_STATE(191)] = 16833, - [SMALL_STATE(192)] = 16882, - [SMALL_STATE(193)] = 16931, - [SMALL_STATE(194)] = 16980, - [SMALL_STATE(195)] = 17029, - [SMALL_STATE(196)] = 17078, - [SMALL_STATE(197)] = 17127, - [SMALL_STATE(198)] = 17176, - [SMALL_STATE(199)] = 17225, - [SMALL_STATE(200)] = 17274, - [SMALL_STATE(201)] = 17323, - [SMALL_STATE(202)] = 17376, - [SMALL_STATE(203)] = 17426, - [SMALL_STATE(204)] = 17476, - [SMALL_STATE(205)] = 17526, - [SMALL_STATE(206)] = 17574, - [SMALL_STATE(207)] = 17622, - [SMALL_STATE(208)] = 17670, - [SMALL_STATE(209)] = 17720, - [SMALL_STATE(210)] = 17768, - [SMALL_STATE(211)] = 17816, - [SMALL_STATE(212)] = 17864, - [SMALL_STATE(213)] = 17912, - [SMALL_STATE(214)] = 17960, - [SMALL_STATE(215)] = 18007, - [SMALL_STATE(216)] = 18072, - [SMALL_STATE(217)] = 18119, - [SMALL_STATE(218)] = 18166, - [SMALL_STATE(219)] = 18213, - [SMALL_STATE(220)] = 18260, - [SMALL_STATE(221)] = 18307, - [SMALL_STATE(222)] = 18374, - [SMALL_STATE(223)] = 18441, - [SMALL_STATE(224)] = 18488, - [SMALL_STATE(225)] = 18535, - [SMALL_STATE(226)] = 18582, - [SMALL_STATE(227)] = 18629, - [SMALL_STATE(228)] = 18696, - [SMALL_STATE(229)] = 18743, - [SMALL_STATE(230)] = 18790, - [SMALL_STATE(231)] = 18837, - [SMALL_STATE(232)] = 18884, - [SMALL_STATE(233)] = 18939, - [SMALL_STATE(234)] = 18996, - [SMALL_STATE(235)] = 19043, - [SMALL_STATE(236)] = 19104, - [SMALL_STATE(237)] = 19167, - [SMALL_STATE(238)] = 19214, - [SMALL_STATE(239)] = 19281, - [SMALL_STATE(240)] = 19332, - [SMALL_STATE(241)] = 19390, - [SMALL_STATE(242)] = 19448, - [SMALL_STATE(243)] = 19506, - [SMALL_STATE(244)] = 19554, - [SMALL_STATE(245)] = 19612, - [SMALL_STATE(246)] = 19670, - [SMALL_STATE(247)] = 19728, - [SMALL_STATE(248)] = 19775, - [SMALL_STATE(249)] = 19818, - [SMALL_STATE(250)] = 19875, - [SMALL_STATE(251)] = 19932, - [SMALL_STATE(252)] = 19979, - [SMALL_STATE(253)] = 20022, - [SMALL_STATE(254)] = 20079, - [SMALL_STATE(255)] = 20122, - [SMALL_STATE(256)] = 20165, - [SMALL_STATE(257)] = 20208, - [SMALL_STATE(258)] = 20251, - [SMALL_STATE(259)] = 20294, - [SMALL_STATE(260)] = 20337, - [SMALL_STATE(261)] = 20380, - [SMALL_STATE(262)] = 20423, - [SMALL_STATE(263)] = 20465, - [SMALL_STATE(264)] = 20507, - [SMALL_STATE(265)] = 20571, - [SMALL_STATE(266)] = 20625, - [SMALL_STATE(267)] = 20689, - [SMALL_STATE(268)] = 20733, - [SMALL_STATE(269)] = 20777, - [SMALL_STATE(270)] = 20821, - [SMALL_STATE(271)] = 20875, - [SMALL_STATE(272)] = 20917, - [SMALL_STATE(273)] = 20961, - [SMALL_STATE(274)] = 21015, - [SMALL_STATE(275)] = 21057, - [SMALL_STATE(276)] = 21099, - [SMALL_STATE(277)] = 21141, - [SMALL_STATE(278)] = 21183, - [SMALL_STATE(279)] = 21225, - [SMALL_STATE(280)] = 21268, - [SMALL_STATE(281)] = 21327, - [SMALL_STATE(282)] = 21368, - [SMALL_STATE(283)] = 21419, - [SMALL_STATE(284)] = 21472, - [SMALL_STATE(285)] = 21527, - [SMALL_STATE(286)] = 21568, - [SMALL_STATE(287)] = 21625, - [SMALL_STATE(288)] = 21670, - [SMALL_STATE(289)] = 21711, - [SMALL_STATE(290)] = 21760, - [SMALL_STATE(291)] = 21801, - [SMALL_STATE(292)] = 21842, - [SMALL_STATE(293)] = 21883, - [SMALL_STATE(294)] = 21924, - [SMALL_STATE(295)] = 21965, - [SMALL_STATE(296)] = 22006, - [SMALL_STATE(297)] = 22047, - [SMALL_STATE(298)] = 22088, - [SMALL_STATE(299)] = 22129, - [SMALL_STATE(300)] = 22170, - [SMALL_STATE(301)] = 22211, - [SMALL_STATE(302)] = 22252, - [SMALL_STATE(303)] = 22311, - [SMALL_STATE(304)] = 22352, - [SMALL_STATE(305)] = 22412, - [SMALL_STATE(306)] = 22484, - [SMALL_STATE(307)] = 22556, - [SMALL_STATE(308)] = 22630, - [SMALL_STATE(309)] = 22702, - [SMALL_STATE(310)] = 22762, - [SMALL_STATE(311)] = 22822, - [SMALL_STATE(312)] = 22896, - [SMALL_STATE(313)] = 22968, - [SMALL_STATE(314)] = 23040, - [SMALL_STATE(315)] = 23114, - [SMALL_STATE(316)] = 23157, - [SMALL_STATE(317)] = 23214, - [SMALL_STATE(318)] = 23280, - [SMALL_STATE(319)] = 23344, - [SMALL_STATE(320)] = 23412, - [SMALL_STATE(321)] = 23476, - [SMALL_STATE(322)] = 23544, - [SMALL_STATE(323)] = 23608, - [SMALL_STATE(324)] = 23670, - [SMALL_STATE(325)] = 23734, - [SMALL_STATE(326)] = 23802, - [SMALL_STATE(327)] = 23870, - [SMALL_STATE(328)] = 23936, - [SMALL_STATE(329)] = 24000, - [SMALL_STATE(330)] = 24062, - [SMALL_STATE(331)] = 24126, - [SMALL_STATE(332)] = 24188, - [SMALL_STATE(333)] = 24256, - [SMALL_STATE(334)] = 24320, - [SMALL_STATE(335)] = 24384, - [SMALL_STATE(336)] = 24448, - [SMALL_STATE(337)] = 24512, - [SMALL_STATE(338)] = 24571, - [SMALL_STATE(339)] = 24608, - [SMALL_STATE(340)] = 24645, - [SMALL_STATE(341)] = 24710, - [SMALL_STATE(342)] = 24747, - [SMALL_STATE(343)] = 24812, - [SMALL_STATE(344)] = 24877, - [SMALL_STATE(345)] = 24942, - [SMALL_STATE(346)] = 24979, - [SMALL_STATE(347)] = 25016, - [SMALL_STATE(348)] = 25053, - [SMALL_STATE(349)] = 25090, - [SMALL_STATE(350)] = 25149, - [SMALL_STATE(351)] = 25186, - [SMALL_STATE(352)] = 25245, - [SMALL_STATE(353)] = 25282, - [SMALL_STATE(354)] = 25319, - [SMALL_STATE(355)] = 25356, - [SMALL_STATE(356)] = 25393, - [SMALL_STATE(357)] = 25430, - [SMALL_STATE(358)] = 25489, - [SMALL_STATE(359)] = 25526, - [SMALL_STATE(360)] = 25563, - [SMALL_STATE(361)] = 25600, - [SMALL_STATE(362)] = 25637, - [SMALL_STATE(363)] = 25699, - [SMALL_STATE(364)] = 25753, - [SMALL_STATE(365)] = 25815, - [SMALL_STATE(366)] = 25877, - [SMALL_STATE(367)] = 25939, - [SMALL_STATE(368)] = 26001, - [SMALL_STATE(369)] = 26063, - [SMALL_STATE(370)] = 26125, - [SMALL_STATE(371)] = 26187, - [SMALL_STATE(372)] = 26249, - [SMALL_STATE(373)] = 26303, - [SMALL_STATE(374)] = 26365, - [SMALL_STATE(375)] = 26427, - [SMALL_STATE(376)] = 26481, - [SMALL_STATE(377)] = 26543, - [SMALL_STATE(378)] = 26605, - [SMALL_STATE(379)] = 26667, - [SMALL_STATE(380)] = 26729, - [SMALL_STATE(381)] = 26791, - [SMALL_STATE(382)] = 26853, - [SMALL_STATE(383)] = 26915, - [SMALL_STATE(384)] = 26977, - [SMALL_STATE(385)] = 27030, - [SMALL_STATE(386)] = 27089, - [SMALL_STATE(387)] = 27148, - [SMALL_STATE(388)] = 27207, - [SMALL_STATE(389)] = 27260, - [SMALL_STATE(390)] = 27313, - [SMALL_STATE(391)] = 27366, - [SMALL_STATE(392)] = 27419, - [SMALL_STATE(393)] = 27472, - [SMALL_STATE(394)] = 27525, - [SMALL_STATE(395)] = 27584, - [SMALL_STATE(396)] = 27643, - [SMALL_STATE(397)] = 27696, - [SMALL_STATE(398)] = 27755, - [SMALL_STATE(399)] = 27814, - [SMALL_STATE(400)] = 27873, - [SMALL_STATE(401)] = 27926, - [SMALL_STATE(402)] = 27985, - [SMALL_STATE(403)] = 28038, - [SMALL_STATE(404)] = 28091, - [SMALL_STATE(405)] = 28144, - [SMALL_STATE(406)] = 28197, - [SMALL_STATE(407)] = 28256, - [SMALL_STATE(408)] = 28315, - [SMALL_STATE(409)] = 28371, - [SMALL_STATE(410)] = 28427, - [SMALL_STATE(411)] = 28483, - [SMALL_STATE(412)] = 28539, - [SMALL_STATE(413)] = 28595, - [SMALL_STATE(414)] = 28651, - [SMALL_STATE(415)] = 28707, - [SMALL_STATE(416)] = 28763, - [SMALL_STATE(417)] = 28819, - [SMALL_STATE(418)] = 28875, - [SMALL_STATE(419)] = 28931, - [SMALL_STATE(420)] = 28987, - [SMALL_STATE(421)] = 29043, - [SMALL_STATE(422)] = 29096, - [SMALL_STATE(423)] = 29149, - [SMALL_STATE(424)] = 29202, - [SMALL_STATE(425)] = 29255, - [SMALL_STATE(426)] = 29308, - [SMALL_STATE(427)] = 29361, - [SMALL_STATE(428)] = 29393, - [SMALL_STATE(429)] = 29423, - [SMALL_STATE(430)] = 29453, - [SMALL_STATE(431)] = 29483, - [SMALL_STATE(432)] = 29530, - [SMALL_STATE(433)] = 29577, - [SMALL_STATE(434)] = 29606, - [SMALL_STATE(435)] = 29635, - [SMALL_STATE(436)] = 29682, - [SMALL_STATE(437)] = 29726, - [SMALL_STATE(438)] = 29770, - [SMALL_STATE(439)] = 29814, - [SMALL_STATE(440)] = 29858, - [SMALL_STATE(441)] = 29902, - [SMALL_STATE(442)] = 29946, - [SMALL_STATE(443)] = 29990, - [SMALL_STATE(444)] = 30034, - [SMALL_STATE(445)] = 30078, - [SMALL_STATE(446)] = 30122, - [SMALL_STATE(447)] = 30163, - [SMALL_STATE(448)] = 30204, - [SMALL_STATE(449)] = 30245, - [SMALL_STATE(450)] = 30286, - [SMALL_STATE(451)] = 30327, - [SMALL_STATE(452)] = 30368, - [SMALL_STATE(453)] = 30409, - [SMALL_STATE(454)] = 30450, - [SMALL_STATE(455)] = 30491, - [SMALL_STATE(456)] = 30532, - [SMALL_STATE(457)] = 30573, - [SMALL_STATE(458)] = 30611, - [SMALL_STATE(459)] = 30637, - [SMALL_STATE(460)] = 30675, - [SMALL_STATE(461)] = 30701, - [SMALL_STATE(462)] = 30739, - [SMALL_STATE(463)] = 30777, - [SMALL_STATE(464)] = 30805, - [SMALL_STATE(465)] = 30843, - [SMALL_STATE(466)] = 30881, - [SMALL_STATE(467)] = 30919, - [SMALL_STATE(468)] = 30957, - [SMALL_STATE(469)] = 30985, - [SMALL_STATE(470)] = 31023, - [SMALL_STATE(471)] = 31061, - [SMALL_STATE(472)] = 31099, - [SMALL_STATE(473)] = 31137, - [SMALL_STATE(474)] = 31163, - [SMALL_STATE(475)] = 31189, - [SMALL_STATE(476)] = 31227, - [SMALL_STATE(477)] = 31265, - [SMALL_STATE(478)] = 31303, - [SMALL_STATE(479)] = 31341, - [SMALL_STATE(480)] = 31367, - [SMALL_STATE(481)] = 31405, - [SMALL_STATE(482)] = 31443, - [SMALL_STATE(483)] = 31481, - [SMALL_STATE(484)] = 31508, - [SMALL_STATE(485)] = 31547, - [SMALL_STATE(486)] = 31574, - [SMALL_STATE(487)] = 31599, - [SMALL_STATE(488)] = 31632, - [SMALL_STATE(489)] = 31661, - [SMALL_STATE(490)] = 31694, - [SMALL_STATE(491)] = 31725, - [SMALL_STATE(492)] = 31764, - [SMALL_STATE(493)] = 31795, - [SMALL_STATE(494)] = 31834, - [SMALL_STATE(495)] = 31861, - [SMALL_STATE(496)] = 31888, - [SMALL_STATE(497)] = 31917, - [SMALL_STATE(498)] = 31953, - [SMALL_STATE(499)] = 31979, - [SMALL_STATE(500)] = 32005, - [SMALL_STATE(501)] = 32041, - [SMALL_STATE(502)] = 32077, - [SMALL_STATE(503)] = 32113, - [SMALL_STATE(504)] = 32139, - [SMALL_STATE(505)] = 32160, - [SMALL_STATE(506)] = 32185, - [SMALL_STATE(507)] = 32206, - [SMALL_STATE(508)] = 32239, - [SMALL_STATE(509)] = 32260, - [SMALL_STATE(510)] = 32281, - [SMALL_STATE(511)] = 32302, - [SMALL_STATE(512)] = 32323, - [SMALL_STATE(513)] = 32344, - [SMALL_STATE(514)] = 32365, - [SMALL_STATE(515)] = 32386, - [SMALL_STATE(516)] = 32407, - [SMALL_STATE(517)] = 32428, - [SMALL_STATE(518)] = 32449, - [SMALL_STATE(519)] = 32470, - [SMALL_STATE(520)] = 32491, - [SMALL_STATE(521)] = 32512, - [SMALL_STATE(522)] = 32533, - [SMALL_STATE(523)] = 32556, - [SMALL_STATE(524)] = 32577, - [SMALL_STATE(525)] = 32618, - [SMALL_STATE(526)] = 32639, - [SMALL_STATE(527)] = 32660, - [SMALL_STATE(528)] = 32681, - [SMALL_STATE(529)] = 32702, - [SMALL_STATE(530)] = 32735, - [SMALL_STATE(531)] = 32756, - [SMALL_STATE(532)] = 32777, - [SMALL_STATE(533)] = 32798, - [SMALL_STATE(534)] = 32819, - [SMALL_STATE(535)] = 32860, - [SMALL_STATE(536)] = 32885, - [SMALL_STATE(537)] = 32906, - [SMALL_STATE(538)] = 32927, - [SMALL_STATE(539)] = 32948, - [SMALL_STATE(540)] = 32969, - [SMALL_STATE(541)] = 32994, - [SMALL_STATE(542)] = 33015, - [SMALL_STATE(543)] = 33036, - [SMALL_STATE(544)] = 33057, - [SMALL_STATE(545)] = 33078, - [SMALL_STATE(546)] = 33099, - [SMALL_STATE(547)] = 33120, - [SMALL_STATE(548)] = 33141, - [SMALL_STATE(549)] = 33166, - [SMALL_STATE(550)] = 33207, - [SMALL_STATE(551)] = 33228, - [SMALL_STATE(552)] = 33249, - [SMALL_STATE(553)] = 33269, - [SMALL_STATE(554)] = 33293, - [SMALL_STATE(555)] = 33317, - [SMALL_STATE(556)] = 33355, - [SMALL_STATE(557)] = 33379, - [SMALL_STATE(558)] = 33403, - [SMALL_STATE(559)] = 33425, - [SMALL_STATE(560)] = 33444, - [SMALL_STATE(561)] = 33463, - [SMALL_STATE(562)] = 33482, - [SMALL_STATE(563)] = 33501, - [SMALL_STATE(564)] = 33530, - [SMALL_STATE(565)] = 33549, - [SMALL_STATE(566)] = 33568, - [SMALL_STATE(567)] = 33591, - [SMALL_STATE(568)] = 33614, - [SMALL_STATE(569)] = 33633, - [SMALL_STATE(570)] = 33652, - [SMALL_STATE(571)] = 33673, - [SMALL_STATE(572)] = 33692, - [SMALL_STATE(573)] = 33727, - [SMALL_STATE(574)] = 33746, - [SMALL_STATE(575)] = 33781, - [SMALL_STATE(576)] = 33802, - [SMALL_STATE(577)] = 33821, - [SMALL_STATE(578)] = 33851, - [SMALL_STATE(579)] = 33869, - [SMALL_STATE(580)] = 33887, - [SMALL_STATE(581)] = 33905, - [SMALL_STATE(582)] = 33923, - [SMALL_STATE(583)] = 33941, - [SMALL_STATE(584)] = 33959, - [SMALL_STATE(585)] = 33977, - [SMALL_STATE(586)] = 33995, - [SMALL_STATE(587)] = 34013, - [SMALL_STATE(588)] = 34031, - [SMALL_STATE(589)] = 34049, - [SMALL_STATE(590)] = 34067, - [SMALL_STATE(591)] = 34085, - [SMALL_STATE(592)] = 34103, - [SMALL_STATE(593)] = 34121, - [SMALL_STATE(594)] = 34139, - [SMALL_STATE(595)] = 34157, - [SMALL_STATE(596)] = 34175, - [SMALL_STATE(597)] = 34193, - [SMALL_STATE(598)] = 34211, - [SMALL_STATE(599)] = 34229, - [SMALL_STATE(600)] = 34247, - [SMALL_STATE(601)] = 34265, - [SMALL_STATE(602)] = 34283, - [SMALL_STATE(603)] = 34301, - [SMALL_STATE(604)] = 34319, - [SMALL_STATE(605)] = 34337, - [SMALL_STATE(606)] = 34367, - [SMALL_STATE(607)] = 34387, - [SMALL_STATE(608)] = 34417, - [SMALL_STATE(609)] = 34435, - [SMALL_STATE(610)] = 34463, - [SMALL_STATE(611)] = 34481, - [SMALL_STATE(612)] = 34499, - [SMALL_STATE(613)] = 34517, - [SMALL_STATE(614)] = 34535, - [SMALL_STATE(615)] = 34553, - [SMALL_STATE(616)] = 34571, - [SMALL_STATE(617)] = 34589, - [SMALL_STATE(618)] = 34607, - [SMALL_STATE(619)] = 34625, - [SMALL_STATE(620)] = 34655, - [SMALL_STATE(621)] = 34673, - [SMALL_STATE(622)] = 34691, - [SMALL_STATE(623)] = 34709, - [SMALL_STATE(624)] = 34727, - [SMALL_STATE(625)] = 34745, - [SMALL_STATE(626)] = 34763, - [SMALL_STATE(627)] = 34781, - [SMALL_STATE(628)] = 34799, - [SMALL_STATE(629)] = 34817, - [SMALL_STATE(630)] = 34835, - [SMALL_STATE(631)] = 34853, - [SMALL_STATE(632)] = 34871, - [SMALL_STATE(633)] = 34891, - [SMALL_STATE(634)] = 34909, - [SMALL_STATE(635)] = 34927, - [SMALL_STATE(636)] = 34945, - [SMALL_STATE(637)] = 34963, - [SMALL_STATE(638)] = 34981, - [SMALL_STATE(639)] = 34999, - [SMALL_STATE(640)] = 35017, - [SMALL_STATE(641)] = 35035, - [SMALL_STATE(642)] = 35063, - [SMALL_STATE(643)] = 35093, - [SMALL_STATE(644)] = 35111, - [SMALL_STATE(645)] = 35129, - [SMALL_STATE(646)] = 35147, - [SMALL_STATE(647)] = 35165, - [SMALL_STATE(648)] = 35183, - [SMALL_STATE(649)] = 35201, - [SMALL_STATE(650)] = 35219, - [SMALL_STATE(651)] = 35237, - [SMALL_STATE(652)] = 35255, - [SMALL_STATE(653)] = 35273, - [SMALL_STATE(654)] = 35291, - [SMALL_STATE(655)] = 35321, - [SMALL_STATE(656)] = 35338, - [SMALL_STATE(657)] = 35355, - [SMALL_STATE(658)] = 35372, - [SMALL_STATE(659)] = 35389, - [SMALL_STATE(660)] = 35406, - [SMALL_STATE(661)] = 35423, - [SMALL_STATE(662)] = 35440, - [SMALL_STATE(663)] = 35457, - [SMALL_STATE(664)] = 35474, - [SMALL_STATE(665)] = 35491, - [SMALL_STATE(666)] = 35508, - [SMALL_STATE(667)] = 35525, - [SMALL_STATE(668)] = 35542, - [SMALL_STATE(669)] = 35559, - [SMALL_STATE(670)] = 35576, - [SMALL_STATE(671)] = 35593, - [SMALL_STATE(672)] = 35610, - [SMALL_STATE(673)] = 35627, - [SMALL_STATE(674)] = 35644, - [SMALL_STATE(675)] = 35661, - [SMALL_STATE(676)] = 35678, - [SMALL_STATE(677)] = 35695, - [SMALL_STATE(678)] = 35712, - [SMALL_STATE(679)] = 35729, - [SMALL_STATE(680)] = 35746, - [SMALL_STATE(681)] = 35763, - [SMALL_STATE(682)] = 35789, - [SMALL_STATE(683)] = 35815, - [SMALL_STATE(684)] = 35841, - [SMALL_STATE(685)] = 35863, - [SMALL_STATE(686)] = 35887, - [SMALL_STATE(687)] = 35913, - [SMALL_STATE(688)] = 35933, - [SMALL_STATE(689)] = 35955, - [SMALL_STATE(690)] = 35977, - [SMALL_STATE(691)] = 35999, - [SMALL_STATE(692)] = 36023, - [SMALL_STATE(693)] = 36043, - [SMALL_STATE(694)] = 36069, - [SMALL_STATE(695)] = 36091, - [SMALL_STATE(696)] = 36117, - [SMALL_STATE(697)] = 36140, - [SMALL_STATE(698)] = 36163, - [SMALL_STATE(699)] = 36186, - [SMALL_STATE(700)] = 36209, - [SMALL_STATE(701)] = 36228, - [SMALL_STATE(702)] = 36247, - [SMALL_STATE(703)] = 36268, - [SMALL_STATE(704)] = 36285, - [SMALL_STATE(705)] = 36304, - [SMALL_STATE(706)] = 36325, - [SMALL_STATE(707)] = 36346, - [SMALL_STATE(708)] = 36369, - [SMALL_STATE(709)] = 36390, - [SMALL_STATE(710)] = 36409, - [SMALL_STATE(711)] = 36428, - [SMALL_STATE(712)] = 36447, - [SMALL_STATE(713)] = 36468, - [SMALL_STATE(714)] = 36487, - [SMALL_STATE(715)] = 36503, - [SMALL_STATE(716)] = 36521, - [SMALL_STATE(717)] = 36541, - [SMALL_STATE(718)] = 36561, - [SMALL_STATE(719)] = 36579, - [SMALL_STATE(720)] = 36599, - [SMALL_STATE(721)] = 36615, - [SMALL_STATE(722)] = 36631, - [SMALL_STATE(723)] = 36651, - [SMALL_STATE(724)] = 36669, - [SMALL_STATE(725)] = 36687, - [SMALL_STATE(726)] = 36707, - [SMALL_STATE(727)] = 36727, - [SMALL_STATE(728)] = 36745, - [SMALL_STATE(729)] = 36761, - [SMALL_STATE(730)] = 36781, - [SMALL_STATE(731)] = 36799, - [SMALL_STATE(732)] = 36817, - [SMALL_STATE(733)] = 36835, - [SMALL_STATE(734)] = 36853, - [SMALL_STATE(735)] = 36869, - [SMALL_STATE(736)] = 36887, - [SMALL_STATE(737)] = 36905, - [SMALL_STATE(738)] = 36923, - [SMALL_STATE(739)] = 36941, - [SMALL_STATE(740)] = 36959, - [SMALL_STATE(741)] = 36979, - [SMALL_STATE(742)] = 36997, - [SMALL_STATE(743)] = 37015, - [SMALL_STATE(744)] = 37035, - [SMALL_STATE(745)] = 37053, - [SMALL_STATE(746)] = 37071, - [SMALL_STATE(747)] = 37089, - [SMALL_STATE(748)] = 37107, - [SMALL_STATE(749)] = 37124, - [SMALL_STATE(750)] = 37137, - [SMALL_STATE(751)] = 37154, - [SMALL_STATE(752)] = 37167, - [SMALL_STATE(753)] = 37184, - [SMALL_STATE(754)] = 37201, - [SMALL_STATE(755)] = 37218, - [SMALL_STATE(756)] = 37235, - [SMALL_STATE(757)] = 37252, - [SMALL_STATE(758)] = 37269, - [SMALL_STATE(759)] = 37286, - [SMALL_STATE(760)] = 37299, - [SMALL_STATE(761)] = 37316, - [SMALL_STATE(762)] = 37333, - [SMALL_STATE(763)] = 37350, - [SMALL_STATE(764)] = 37363, - [SMALL_STATE(765)] = 37380, - [SMALL_STATE(766)] = 37393, - [SMALL_STATE(767)] = 37406, - [SMALL_STATE(768)] = 37419, - [SMALL_STATE(769)] = 37436, - [SMALL_STATE(770)] = 37449, - [SMALL_STATE(771)] = 37462, - [SMALL_STATE(772)] = 37477, - [SMALL_STATE(773)] = 37494, - [SMALL_STATE(774)] = 37511, - [SMALL_STATE(775)] = 37524, - [SMALL_STATE(776)] = 37541, - [SMALL_STATE(777)] = 37558, - [SMALL_STATE(778)] = 37575, - [SMALL_STATE(779)] = 37590, - [SMALL_STATE(780)] = 37607, - [SMALL_STATE(781)] = 37624, - [SMALL_STATE(782)] = 37641, - [SMALL_STATE(783)] = 37658, - [SMALL_STATE(784)] = 37675, - [SMALL_STATE(785)] = 37692, - [SMALL_STATE(786)] = 37709, - [SMALL_STATE(787)] = 37726, - [SMALL_STATE(788)] = 37743, - [SMALL_STATE(789)] = 37760, - [SMALL_STATE(790)] = 37777, - [SMALL_STATE(791)] = 37794, - [SMALL_STATE(792)] = 37811, - [SMALL_STATE(793)] = 37828, - [SMALL_STATE(794)] = 37841, - [SMALL_STATE(795)] = 37858, - [SMALL_STATE(796)] = 37875, - [SMALL_STATE(797)] = 37892, - [SMALL_STATE(798)] = 37905, - [SMALL_STATE(799)] = 37920, - [SMALL_STATE(800)] = 37937, - [SMALL_STATE(801)] = 37954, - [SMALL_STATE(802)] = 37971, - [SMALL_STATE(803)] = 37988, - [SMALL_STATE(804)] = 38001, - [SMALL_STATE(805)] = 38018, - [SMALL_STATE(806)] = 38031, - [SMALL_STATE(807)] = 38048, - [SMALL_STATE(808)] = 38065, - [SMALL_STATE(809)] = 38082, - [SMALL_STATE(810)] = 38099, - [SMALL_STATE(811)] = 38116, - [SMALL_STATE(812)] = 38131, - [SMALL_STATE(813)] = 38144, - [SMALL_STATE(814)] = 38161, - [SMALL_STATE(815)] = 38176, - [SMALL_STATE(816)] = 38193, - [SMALL_STATE(817)] = 38210, - [SMALL_STATE(818)] = 38227, - [SMALL_STATE(819)] = 38242, - [SMALL_STATE(820)] = 38259, - [SMALL_STATE(821)] = 38276, - [SMALL_STATE(822)] = 38293, - [SMALL_STATE(823)] = 38310, - [SMALL_STATE(824)] = 38327, - [SMALL_STATE(825)] = 38340, - [SMALL_STATE(826)] = 38357, - [SMALL_STATE(827)] = 38374, - [SMALL_STATE(828)] = 38391, - [SMALL_STATE(829)] = 38408, - [SMALL_STATE(830)] = 38425, - [SMALL_STATE(831)] = 38442, - [SMALL_STATE(832)] = 38455, - [SMALL_STATE(833)] = 38468, - [SMALL_STATE(834)] = 38485, - [SMALL_STATE(835)] = 38502, - [SMALL_STATE(836)] = 38519, - [SMALL_STATE(837)] = 38532, - [SMALL_STATE(838)] = 38549, - [SMALL_STATE(839)] = 38566, - [SMALL_STATE(840)] = 38579, - [SMALL_STATE(841)] = 38596, - [SMALL_STATE(842)] = 38613, - [SMALL_STATE(843)] = 38630, - [SMALL_STATE(844)] = 38647, - [SMALL_STATE(845)] = 38664, - [SMALL_STATE(846)] = 38681, - [SMALL_STATE(847)] = 38698, - [SMALL_STATE(848)] = 38711, - [SMALL_STATE(849)] = 38728, - [SMALL_STATE(850)] = 38741, - [SMALL_STATE(851)] = 38754, - [SMALL_STATE(852)] = 38771, - [SMALL_STATE(853)] = 38788, - [SMALL_STATE(854)] = 38805, - [SMALL_STATE(855)] = 38818, - [SMALL_STATE(856)] = 38835, - [SMALL_STATE(857)] = 38852, - [SMALL_STATE(858)] = 38869, - [SMALL_STATE(859)] = 38886, - [SMALL_STATE(860)] = 38903, - [SMALL_STATE(861)] = 38920, - [SMALL_STATE(862)] = 38933, - [SMALL_STATE(863)] = 38950, - [SMALL_STATE(864)] = 38963, - [SMALL_STATE(865)] = 38980, - [SMALL_STATE(866)] = 38997, - [SMALL_STATE(867)] = 39014, - [SMALL_STATE(868)] = 39031, - [SMALL_STATE(869)] = 39048, - [SMALL_STATE(870)] = 39065, - [SMALL_STATE(871)] = 39082, - [SMALL_STATE(872)] = 39099, - [SMALL_STATE(873)] = 39116, - [SMALL_STATE(874)] = 39133, - [SMALL_STATE(875)] = 39150, - [SMALL_STATE(876)] = 39167, - [SMALL_STATE(877)] = 39184, - [SMALL_STATE(878)] = 39201, - [SMALL_STATE(879)] = 39215, - [SMALL_STATE(880)] = 39227, - [SMALL_STATE(881)] = 39241, - [SMALL_STATE(882)] = 39253, - [SMALL_STATE(883)] = 39267, - [SMALL_STATE(884)] = 39281, - [SMALL_STATE(885)] = 39295, - [SMALL_STATE(886)] = 39309, - [SMALL_STATE(887)] = 39323, - [SMALL_STATE(888)] = 39337, - [SMALL_STATE(889)] = 39351, - [SMALL_STATE(890)] = 39365, - [SMALL_STATE(891)] = 39379, - [SMALL_STATE(892)] = 39393, - [SMALL_STATE(893)] = 39407, - [SMALL_STATE(894)] = 39421, - [SMALL_STATE(895)] = 39435, - [SMALL_STATE(896)] = 39447, - [SMALL_STATE(897)] = 39459, - [SMALL_STATE(898)] = 39471, - [SMALL_STATE(899)] = 39485, - [SMALL_STATE(900)] = 39497, - [SMALL_STATE(901)] = 39509, - [SMALL_STATE(902)] = 39523, - [SMALL_STATE(903)] = 39537, - [SMALL_STATE(904)] = 39551, - [SMALL_STATE(905)] = 39563, - [SMALL_STATE(906)] = 39575, - [SMALL_STATE(907)] = 39589, - [SMALL_STATE(908)] = 39603, - [SMALL_STATE(909)] = 39615, - [SMALL_STATE(910)] = 39629, - [SMALL_STATE(911)] = 39643, - [SMALL_STATE(912)] = 39655, - [SMALL_STATE(913)] = 39669, - [SMALL_STATE(914)] = 39683, - [SMALL_STATE(915)] = 39695, - [SMALL_STATE(916)] = 39707, - [SMALL_STATE(917)] = 39719, - [SMALL_STATE(918)] = 39733, - [SMALL_STATE(919)] = 39747, - [SMALL_STATE(920)] = 39761, - [SMALL_STATE(921)] = 39773, - [SMALL_STATE(922)] = 39787, - [SMALL_STATE(923)] = 39799, - [SMALL_STATE(924)] = 39811, - [SMALL_STATE(925)] = 39823, - [SMALL_STATE(926)] = 39837, - [SMALL_STATE(927)] = 39849, - [SMALL_STATE(928)] = 39863, - [SMALL_STATE(929)] = 39875, - [SMALL_STATE(930)] = 39887, - [SMALL_STATE(931)] = 39899, - [SMALL_STATE(932)] = 39911, - [SMALL_STATE(933)] = 39923, - [SMALL_STATE(934)] = 39935, - [SMALL_STATE(935)] = 39947, - [SMALL_STATE(936)] = 39961, - [SMALL_STATE(937)] = 39975, - [SMALL_STATE(938)] = 39989, - [SMALL_STATE(939)] = 40003, - [SMALL_STATE(940)] = 40017, - [SMALL_STATE(941)] = 40029, - [SMALL_STATE(942)] = 40043, - [SMALL_STATE(943)] = 40055, - [SMALL_STATE(944)] = 40067, - [SMALL_STATE(945)] = 40079, - [SMALL_STATE(946)] = 40093, - [SMALL_STATE(947)] = 40105, - [SMALL_STATE(948)] = 40117, - [SMALL_STATE(949)] = 40129, - [SMALL_STATE(950)] = 40141, - [SMALL_STATE(951)] = 40155, - [SMALL_STATE(952)] = 40167, - [SMALL_STATE(953)] = 40181, - [SMALL_STATE(954)] = 40195, - [SMALL_STATE(955)] = 40209, - [SMALL_STATE(956)] = 40221, - [SMALL_STATE(957)] = 40233, - [SMALL_STATE(958)] = 40247, - [SMALL_STATE(959)] = 40259, - [SMALL_STATE(960)] = 40271, - [SMALL_STATE(961)] = 40285, - [SMALL_STATE(962)] = 40297, - [SMALL_STATE(963)] = 40311, - [SMALL_STATE(964)] = 40323, - [SMALL_STATE(965)] = 40335, - [SMALL_STATE(966)] = 40347, - [SMALL_STATE(967)] = 40361, - [SMALL_STATE(968)] = 40375, - [SMALL_STATE(969)] = 40387, - [SMALL_STATE(970)] = 40401, - [SMALL_STATE(971)] = 40415, - [SMALL_STATE(972)] = 40429, - [SMALL_STATE(973)] = 40443, - [SMALL_STATE(974)] = 40454, - [SMALL_STATE(975)] = 40465, - [SMALL_STATE(976)] = 40476, - [SMALL_STATE(977)] = 40487, - [SMALL_STATE(978)] = 40498, - [SMALL_STATE(979)] = 40509, - [SMALL_STATE(980)] = 40520, - [SMALL_STATE(981)] = 40531, - [SMALL_STATE(982)] = 40542, - [SMALL_STATE(983)] = 40553, - [SMALL_STATE(984)] = 40564, - [SMALL_STATE(985)] = 40575, - [SMALL_STATE(986)] = 40586, - [SMALL_STATE(987)] = 40597, - [SMALL_STATE(988)] = 40608, - [SMALL_STATE(989)] = 40619, - [SMALL_STATE(990)] = 40630, - [SMALL_STATE(991)] = 40641, - [SMALL_STATE(992)] = 40652, - [SMALL_STATE(993)] = 40663, - [SMALL_STATE(994)] = 40674, - [SMALL_STATE(995)] = 40685, - [SMALL_STATE(996)] = 40696, - [SMALL_STATE(997)] = 40707, - [SMALL_STATE(998)] = 40718, - [SMALL_STATE(999)] = 40729, - [SMALL_STATE(1000)] = 40740, - [SMALL_STATE(1001)] = 40751, - [SMALL_STATE(1002)] = 40762, - [SMALL_STATE(1003)] = 40773, - [SMALL_STATE(1004)] = 40784, - [SMALL_STATE(1005)] = 40795, - [SMALL_STATE(1006)] = 40806, - [SMALL_STATE(1007)] = 40817, - [SMALL_STATE(1008)] = 40828, - [SMALL_STATE(1009)] = 40839, - [SMALL_STATE(1010)] = 40850, - [SMALL_STATE(1011)] = 40861, - [SMALL_STATE(1012)] = 40872, - [SMALL_STATE(1013)] = 40883, - [SMALL_STATE(1014)] = 40894, - [SMALL_STATE(1015)] = 40905, - [SMALL_STATE(1016)] = 40916, - [SMALL_STATE(1017)] = 40927, - [SMALL_STATE(1018)] = 40938, - [SMALL_STATE(1019)] = 40949, - [SMALL_STATE(1020)] = 40960, - [SMALL_STATE(1021)] = 40971, - [SMALL_STATE(1022)] = 40982, - [SMALL_STATE(1023)] = 40993, - [SMALL_STATE(1024)] = 41004, - [SMALL_STATE(1025)] = 41015, - [SMALL_STATE(1026)] = 41026, - [SMALL_STATE(1027)] = 41037, - [SMALL_STATE(1028)] = 41048, - [SMALL_STATE(1029)] = 41059, - [SMALL_STATE(1030)] = 41070, - [SMALL_STATE(1031)] = 41081, - [SMALL_STATE(1032)] = 41092, - [SMALL_STATE(1033)] = 41103, - [SMALL_STATE(1034)] = 41114, - [SMALL_STATE(1035)] = 41125, - [SMALL_STATE(1036)] = 41136, - [SMALL_STATE(1037)] = 41147, - [SMALL_STATE(1038)] = 41158, - [SMALL_STATE(1039)] = 41169, - [SMALL_STATE(1040)] = 41180, - [SMALL_STATE(1041)] = 41191, - [SMALL_STATE(1042)] = 41202, - [SMALL_STATE(1043)] = 41213, - [SMALL_STATE(1044)] = 41224, - [SMALL_STATE(1045)] = 41235, - [SMALL_STATE(1046)] = 41246, - [SMALL_STATE(1047)] = 41257, - [SMALL_STATE(1048)] = 41268, - [SMALL_STATE(1049)] = 41279, - [SMALL_STATE(1050)] = 41290, - [SMALL_STATE(1051)] = 41301, - [SMALL_STATE(1052)] = 41312, - [SMALL_STATE(1053)] = 41323, - [SMALL_STATE(1054)] = 41334, - [SMALL_STATE(1055)] = 41345, - [SMALL_STATE(1056)] = 41356, - [SMALL_STATE(1057)] = 41367, - [SMALL_STATE(1058)] = 41378, - [SMALL_STATE(1059)] = 41389, - [SMALL_STATE(1060)] = 41400, - [SMALL_STATE(1061)] = 41411, - [SMALL_STATE(1062)] = 41422, - [SMALL_STATE(1063)] = 41433, - [SMALL_STATE(1064)] = 41444, - [SMALL_STATE(1065)] = 41455, - [SMALL_STATE(1066)] = 41466, - [SMALL_STATE(1067)] = 41477, - [SMALL_STATE(1068)] = 41488, + [SMALL_STATE(4)] = 184, + [SMALL_STATE(5)] = 307, + [SMALL_STATE(6)] = 430, + [SMALL_STATE(7)] = 550, + [SMALL_STATE(8)] = 670, + [SMALL_STATE(9)] = 790, + [SMALL_STATE(10)] = 850, + [SMALL_STATE(11)] = 970, + [SMALL_STATE(12)] = 1090, + [SMALL_STATE(13)] = 1210, + [SMALL_STATE(14)] = 1330, + [SMALL_STATE(15)] = 1390, + [SMALL_STATE(16)] = 1510, + [SMALL_STATE(17)] = 1630, + [SMALL_STATE(18)] = 1747, + [SMALL_STATE(19)] = 1864, + [SMALL_STATE(20)] = 1981, + [SMALL_STATE(21)] = 2098, + [SMALL_STATE(22)] = 2161, + [SMALL_STATE(23)] = 2278, + [SMALL_STATE(24)] = 2395, + [SMALL_STATE(25)] = 2512, + [SMALL_STATE(26)] = 2629, + [SMALL_STATE(27)] = 2746, + [SMALL_STATE(28)] = 2863, + [SMALL_STATE(29)] = 2980, + [SMALL_STATE(30)] = 3097, + [SMALL_STATE(31)] = 3214, + [SMALL_STATE(32)] = 3331, + [SMALL_STATE(33)] = 3448, + [SMALL_STATE(34)] = 3506, + [SMALL_STATE(35)] = 3620, + [SMALL_STATE(36)] = 3734, + [SMALL_STATE(37)] = 3848, + [SMALL_STATE(38)] = 3906, + [SMALL_STATE(39)] = 4020, + [SMALL_STATE(40)] = 4078, + [SMALL_STATE(41)] = 4192, + [SMALL_STATE(42)] = 4250, + [SMALL_STATE(43)] = 4364, + [SMALL_STATE(44)] = 4478, + [SMALL_STATE(45)] = 4536, + [SMALL_STATE(46)] = 4650, + [SMALL_STATE(47)] = 4764, + [SMALL_STATE(48)] = 4822, + [SMALL_STATE(49)] = 4880, + [SMALL_STATE(50)] = 4994, + [SMALL_STATE(51)] = 5108, + [SMALL_STATE(52)] = 5222, + [SMALL_STATE(53)] = 5280, + [SMALL_STATE(54)] = 5338, + [SMALL_STATE(55)] = 5396, + [SMALL_STATE(56)] = 5458, + [SMALL_STATE(57)] = 5516, + [SMALL_STATE(58)] = 5630, + [SMALL_STATE(59)] = 5688, + [SMALL_STATE(60)] = 5799, + [SMALL_STATE(61)] = 5858, + [SMALL_STATE(62)] = 5969, + [SMALL_STATE(63)] = 6028, + [SMALL_STATE(64)] = 6085, + [SMALL_STATE(65)] = 6144, + [SMALL_STATE(66)] = 6201, + [SMALL_STATE(67)] = 6258, + [SMALL_STATE(68)] = 6317, + [SMALL_STATE(69)] = 6428, + [SMALL_STATE(70)] = 6485, + [SMALL_STATE(71)] = 6596, + [SMALL_STATE(72)] = 6707, + [SMALL_STATE(73)] = 6818, + [SMALL_STATE(74)] = 6875, + [SMALL_STATE(75)] = 6932, + [SMALL_STATE(76)] = 6989, + [SMALL_STATE(77)] = 7046, + [SMALL_STATE(78)] = 7157, + [SMALL_STATE(79)] = 7213, + [SMALL_STATE(80)] = 7269, + [SMALL_STATE(81)] = 7377, + [SMALL_STATE(82)] = 7433, + [SMALL_STATE(83)] = 7489, + [SMALL_STATE(84)] = 7545, + [SMALL_STATE(85)] = 7653, + [SMALL_STATE(86)] = 7761, + [SMALL_STATE(87)] = 7869, + [SMALL_STATE(88)] = 7925, + [SMALL_STATE(89)] = 7981, + [SMALL_STATE(90)] = 8037, + [SMALL_STATE(91)] = 8093, + [SMALL_STATE(92)] = 8201, + [SMALL_STATE(93)] = 8309, + [SMALL_STATE(94)] = 8365, + [SMALL_STATE(95)] = 8473, + [SMALL_STATE(96)] = 8581, + [SMALL_STATE(97)] = 8637, + [SMALL_STATE(98)] = 8693, + [SMALL_STATE(99)] = 8801, + [SMALL_STATE(100)] = 8909, + [SMALL_STATE(101)] = 9017, + [SMALL_STATE(102)] = 9125, + [SMALL_STATE(103)] = 9181, + [SMALL_STATE(104)] = 9289, + [SMALL_STATE(105)] = 9397, + [SMALL_STATE(106)] = 9505, + [SMALL_STATE(107)] = 9561, + [SMALL_STATE(108)] = 9666, + [SMALL_STATE(109)] = 9771, + [SMALL_STATE(110)] = 9878, + [SMALL_STATE(111)] = 9983, + [SMALL_STATE(112)] = 10090, + [SMALL_STATE(113)] = 10195, + [SMALL_STATE(114)] = 10300, + [SMALL_STATE(115)] = 10405, + [SMALL_STATE(116)] = 10510, + [SMALL_STATE(117)] = 10615, + [SMALL_STATE(118)] = 10720, + [SMALL_STATE(119)] = 10825, + [SMALL_STATE(120)] = 10930, + [SMALL_STATE(121)] = 11035, + [SMALL_STATE(122)] = 11142, + [SMALL_STATE(123)] = 11249, + [SMALL_STATE(124)] = 11354, + [SMALL_STATE(125)] = 11409, + [SMALL_STATE(126)] = 11514, + [SMALL_STATE(127)] = 11619, + [SMALL_STATE(128)] = 11724, + [SMALL_STATE(129)] = 11829, + [SMALL_STATE(130)] = 11934, + [SMALL_STATE(131)] = 12039, + [SMALL_STATE(132)] = 12146, + [SMALL_STATE(133)] = 12251, + [SMALL_STATE(134)] = 12356, + [SMALL_STATE(135)] = 12461, + [SMALL_STATE(136)] = 12566, + [SMALL_STATE(137)] = 12671, + [SMALL_STATE(138)] = 12776, + [SMALL_STATE(139)] = 12881, + [SMALL_STATE(140)] = 12940, + [SMALL_STATE(141)] = 12995, + [SMALL_STATE(142)] = 13100, + [SMALL_STATE(143)] = 13205, + [SMALL_STATE(144)] = 13310, + [SMALL_STATE(145)] = 13417, + [SMALL_STATE(146)] = 13522, + [SMALL_STATE(147)] = 13627, + [SMALL_STATE(148)] = 13732, + [SMALL_STATE(149)] = 13837, + [SMALL_STATE(150)] = 13942, + [SMALL_STATE(151)] = 14049, + [SMALL_STATE(152)] = 14154, + [SMALL_STATE(153)] = 14259, + [SMALL_STATE(154)] = 14364, + [SMALL_STATE(155)] = 14471, + [SMALL_STATE(156)] = 14576, + [SMALL_STATE(157)] = 14681, + [SMALL_STATE(158)] = 14786, + [SMALL_STATE(159)] = 14891, + [SMALL_STATE(160)] = 14996, + [SMALL_STATE(161)] = 15101, + [SMALL_STATE(162)] = 15206, + [SMALL_STATE(163)] = 15313, + [SMALL_STATE(164)] = 15418, + [SMALL_STATE(165)] = 15523, + [SMALL_STATE(166)] = 15628, + [SMALL_STATE(167)] = 15733, + [SMALL_STATE(168)] = 15837, + [SMALL_STATE(169)] = 15898, + [SMALL_STATE(170)] = 15961, + [SMALL_STATE(171)] = 16014, + [SMALL_STATE(172)] = 16081, + [SMALL_STATE(173)] = 16150, + [SMALL_STATE(174)] = 16221, + [SMALL_STATE(175)] = 16294, + [SMALL_STATE(176)] = 16351, + [SMALL_STATE(177)] = 16404, + [SMALL_STATE(178)] = 16477, + [SMALL_STATE(179)] = 16550, + [SMALL_STATE(180)] = 16623, + [SMALL_STATE(181)] = 16696, + [SMALL_STATE(182)] = 16749, + [SMALL_STATE(183)] = 16801, + [SMALL_STATE(184)] = 16853, + [SMALL_STATE(185)] = 16905, + [SMALL_STATE(186)] = 16957, + [SMALL_STATE(187)] = 17007, + [SMALL_STATE(188)] = 17057, + [SMALL_STATE(189)] = 17111, + [SMALL_STATE(190)] = 17160, + [SMALL_STATE(191)] = 17213, + [SMALL_STATE(192)] = 17266, + [SMALL_STATE(193)] = 17315, + [SMALL_STATE(194)] = 17364, + [SMALL_STATE(195)] = 17413, + [SMALL_STATE(196)] = 17462, + [SMALL_STATE(197)] = 17511, + [SMALL_STATE(198)] = 17560, + [SMALL_STATE(199)] = 17609, + [SMALL_STATE(200)] = 17658, + [SMALL_STATE(201)] = 17707, + [SMALL_STATE(202)] = 17756, + [SMALL_STATE(203)] = 17805, + [SMALL_STATE(204)] = 17854, + [SMALL_STATE(205)] = 17903, + [SMALL_STATE(206)] = 17952, + [SMALL_STATE(207)] = 18000, + [SMALL_STATE(208)] = 18050, + [SMALL_STATE(209)] = 18098, + [SMALL_STATE(210)] = 18148, + [SMALL_STATE(211)] = 18198, + [SMALL_STATE(212)] = 18246, + [SMALL_STATE(213)] = 18294, + [SMALL_STATE(214)] = 18342, + [SMALL_STATE(215)] = 18392, + [SMALL_STATE(216)] = 18440, + [SMALL_STATE(217)] = 18488, + [SMALL_STATE(218)] = 18536, + [SMALL_STATE(219)] = 18583, + [SMALL_STATE(220)] = 18630, + [SMALL_STATE(221)] = 18677, + [SMALL_STATE(222)] = 18724, + [SMALL_STATE(223)] = 18771, + [SMALL_STATE(224)] = 18834, + [SMALL_STATE(225)] = 18901, + [SMALL_STATE(226)] = 18962, + [SMALL_STATE(227)] = 19019, + [SMALL_STATE(228)] = 19074, + [SMALL_STATE(229)] = 19121, + [SMALL_STATE(230)] = 19168, + [SMALL_STATE(231)] = 19235, + [SMALL_STATE(232)] = 19300, + [SMALL_STATE(233)] = 19367, + [SMALL_STATE(234)] = 19414, + [SMALL_STATE(235)] = 19461, + [SMALL_STATE(236)] = 19508, + [SMALL_STATE(237)] = 19555, + [SMALL_STATE(238)] = 19602, + [SMALL_STATE(239)] = 19653, + [SMALL_STATE(240)] = 19700, + [SMALL_STATE(241)] = 19767, + [SMALL_STATE(242)] = 19814, + [SMALL_STATE(243)] = 19861, + [SMALL_STATE(244)] = 19908, + [SMALL_STATE(245)] = 19955, + [SMALL_STATE(246)] = 20002, + [SMALL_STATE(247)] = 20050, + [SMALL_STATE(248)] = 20108, + [SMALL_STATE(249)] = 20166, + [SMALL_STATE(250)] = 20224, + [SMALL_STATE(251)] = 20282, + [SMALL_STATE(252)] = 20340, + [SMALL_STATE(253)] = 20398, + [SMALL_STATE(254)] = 20441, + [SMALL_STATE(255)] = 20488, + [SMALL_STATE(256)] = 20531, + [SMALL_STATE(257)] = 20588, + [SMALL_STATE(258)] = 20645, + [SMALL_STATE(259)] = 20688, + [SMALL_STATE(260)] = 20731, + [SMALL_STATE(261)] = 20774, + [SMALL_STATE(262)] = 20817, + [SMALL_STATE(263)] = 20864, + [SMALL_STATE(264)] = 20907, + [SMALL_STATE(265)] = 20950, + [SMALL_STATE(266)] = 20993, + [SMALL_STATE(267)] = 21050, + [SMALL_STATE(268)] = 21093, + [SMALL_STATE(269)] = 21135, + [SMALL_STATE(270)] = 21179, + [SMALL_STATE(271)] = 21243, + [SMALL_STATE(272)] = 21285, + [SMALL_STATE(273)] = 21329, + [SMALL_STATE(274)] = 21373, + [SMALL_STATE(275)] = 21427, + [SMALL_STATE(276)] = 21481, + [SMALL_STATE(277)] = 21523, + [SMALL_STATE(278)] = 21577, + [SMALL_STATE(279)] = 21641, + [SMALL_STATE(280)] = 21683, + [SMALL_STATE(281)] = 21725, + [SMALL_STATE(282)] = 21767, + [SMALL_STATE(283)] = 21811, + [SMALL_STATE(284)] = 21853, + [SMALL_STATE(285)] = 21895, + [SMALL_STATE(286)] = 21946, + [SMALL_STATE(287)] = 21987, + [SMALL_STATE(288)] = 22062, + [SMALL_STATE(289)] = 22137, + [SMALL_STATE(290)] = 22178, + [SMALL_STATE(291)] = 22219, + [SMALL_STATE(292)] = 22260, + [SMALL_STATE(293)] = 22335, + [SMALL_STATE(294)] = 22410, + [SMALL_STATE(295)] = 22469, + [SMALL_STATE(296)] = 22546, + [SMALL_STATE(297)] = 22623, + [SMALL_STATE(298)] = 22664, + [SMALL_STATE(299)] = 22705, + [SMALL_STATE(300)] = 22750, + [SMALL_STATE(301)] = 22807, + [SMALL_STATE(302)] = 22848, + [SMALL_STATE(303)] = 22889, + [SMALL_STATE(304)] = 22930, + [SMALL_STATE(305)] = 22971, + [SMALL_STATE(306)] = 23026, + [SMALL_STATE(307)] = 23085, + [SMALL_STATE(308)] = 23126, + [SMALL_STATE(309)] = 23169, + [SMALL_STATE(310)] = 23210, + [SMALL_STATE(311)] = 23287, + [SMALL_STATE(312)] = 23328, + [SMALL_STATE(313)] = 23381, + [SMALL_STATE(314)] = 23456, + [SMALL_STATE(315)] = 23497, + [SMALL_STATE(316)] = 23538, + [SMALL_STATE(317)] = 23587, + [SMALL_STATE(318)] = 23628, + [SMALL_STATE(319)] = 23688, + [SMALL_STATE(320)] = 23748, + [SMALL_STATE(321)] = 23808, + [SMALL_STATE(322)] = 23875, + [SMALL_STATE(323)] = 23942, + [SMALL_STATE(324)] = 24009, + [SMALL_STATE(325)] = 24076, + [SMALL_STATE(326)] = 24143, + [SMALL_STATE(327)] = 24214, + [SMALL_STATE(328)] = 24271, + [SMALL_STATE(329)] = 24342, + [SMALL_STATE(330)] = 24409, + [SMALL_STATE(331)] = 24476, + [SMALL_STATE(332)] = 24547, + [SMALL_STATE(333)] = 24614, + [SMALL_STATE(334)] = 24681, + [SMALL_STATE(335)] = 24748, + [SMALL_STATE(336)] = 24819, + [SMALL_STATE(337)] = 24888, + [SMALL_STATE(338)] = 24959, + [SMALL_STATE(339)] = 25002, + [SMALL_STATE(340)] = 25071, + [SMALL_STATE(341)] = 25133, + [SMALL_STATE(342)] = 25195, + [SMALL_STATE(343)] = 25257, + [SMALL_STATE(344)] = 25325, + [SMALL_STATE(345)] = 25393, + [SMALL_STATE(346)] = 25461, + [SMALL_STATE(347)] = 25529, + [SMALL_STATE(348)] = 25566, + [SMALL_STATE(349)] = 25631, + [SMALL_STATE(350)] = 25696, + [SMALL_STATE(351)] = 25733, + [SMALL_STATE(352)] = 25798, + [SMALL_STATE(353)] = 25863, + [SMALL_STATE(354)] = 25900, + [SMALL_STATE(355)] = 25965, + [SMALL_STATE(356)] = 26024, + [SMALL_STATE(357)] = 26061, + [SMALL_STATE(358)] = 26098, + [SMALL_STATE(359)] = 26135, + [SMALL_STATE(360)] = 26172, + [SMALL_STATE(361)] = 26209, + [SMALL_STATE(362)] = 26274, + [SMALL_STATE(363)] = 26311, + [SMALL_STATE(364)] = 26348, + [SMALL_STATE(365)] = 26413, + [SMALL_STATE(366)] = 26450, + [SMALL_STATE(367)] = 26487, + [SMALL_STATE(368)] = 26552, + [SMALL_STATE(369)] = 26617, + [SMALL_STATE(370)] = 26654, + [SMALL_STATE(371)] = 26719, + [SMALL_STATE(372)] = 26756, + [SMALL_STATE(373)] = 26793, + [SMALL_STATE(374)] = 26858, + [SMALL_STATE(375)] = 26917, + [SMALL_STATE(376)] = 26982, + [SMALL_STATE(377)] = 27019, + [SMALL_STATE(378)] = 27084, + [SMALL_STATE(379)] = 27149, + [SMALL_STATE(380)] = 27214, + [SMALL_STATE(381)] = 27279, + [SMALL_STATE(382)] = 27344, + [SMALL_STATE(383)] = 27409, + [SMALL_STATE(384)] = 27474, + [SMALL_STATE(385)] = 27533, + [SMALL_STATE(386)] = 27592, + [SMALL_STATE(387)] = 27629, + [SMALL_STATE(388)] = 27691, + [SMALL_STATE(389)] = 27753, + [SMALL_STATE(390)] = 27807, + [SMALL_STATE(391)] = 27869, + [SMALL_STATE(392)] = 27931, + [SMALL_STATE(393)] = 27993, + [SMALL_STATE(394)] = 28055, + [SMALL_STATE(395)] = 28109, + [SMALL_STATE(396)] = 28171, + [SMALL_STATE(397)] = 28225, + [SMALL_STATE(398)] = 28287, + [SMALL_STATE(399)] = 28349, + [SMALL_STATE(400)] = 28411, + [SMALL_STATE(401)] = 28473, + [SMALL_STATE(402)] = 28532, + [SMALL_STATE(403)] = 28591, + [SMALL_STATE(404)] = 28650, + [SMALL_STATE(405)] = 28709, + [SMALL_STATE(406)] = 28762, + [SMALL_STATE(407)] = 28821, + [SMALL_STATE(408)] = 28880, + [SMALL_STATE(409)] = 28933, + [SMALL_STATE(410)] = 28986, + [SMALL_STATE(411)] = 29039, + [SMALL_STATE(412)] = 29098, + [SMALL_STATE(413)] = 29151, + [SMALL_STATE(414)] = 29210, + [SMALL_STATE(415)] = 29269, + [SMALL_STATE(416)] = 29328, + [SMALL_STATE(417)] = 29387, + [SMALL_STATE(418)] = 29440, + [SMALL_STATE(419)] = 29493, + [SMALL_STATE(420)] = 29546, + [SMALL_STATE(421)] = 29605, + [SMALL_STATE(422)] = 29664, + [SMALL_STATE(423)] = 29717, + [SMALL_STATE(424)] = 29770, + [SMALL_STATE(425)] = 29823, + [SMALL_STATE(426)] = 29876, + [SMALL_STATE(427)] = 29929, + [SMALL_STATE(428)] = 29985, + [SMALL_STATE(429)] = 30041, + [SMALL_STATE(430)] = 30097, + [SMALL_STATE(431)] = 30153, + [SMALL_STATE(432)] = 30209, + [SMALL_STATE(433)] = 30265, + [SMALL_STATE(434)] = 30297, + [SMALL_STATE(435)] = 30327, + [SMALL_STATE(436)] = 30357, + [SMALL_STATE(437)] = 30387, + [SMALL_STATE(438)] = 30416, + [SMALL_STATE(439)] = 30463, + [SMALL_STATE(440)] = 30492, + [SMALL_STATE(441)] = 30539, + [SMALL_STATE(442)] = 30586, + [SMALL_STATE(443)] = 30615, + [SMALL_STATE(444)] = 30644, + [SMALL_STATE(445)] = 30688, + [SMALL_STATE(446)] = 30732, + [SMALL_STATE(447)] = 30776, + [SMALL_STATE(448)] = 30820, + [SMALL_STATE(449)] = 30864, + [SMALL_STATE(450)] = 30908, + [SMALL_STATE(451)] = 30952, + [SMALL_STATE(452)] = 30996, + [SMALL_STATE(453)] = 31040, + [SMALL_STATE(454)] = 31084, + [SMALL_STATE(455)] = 31125, + [SMALL_STATE(456)] = 31166, + [SMALL_STATE(457)] = 31207, + [SMALL_STATE(458)] = 31248, + [SMALL_STATE(459)] = 31289, + [SMALL_STATE(460)] = 31330, + [SMALL_STATE(461)] = 31371, + [SMALL_STATE(462)] = 31412, + [SMALL_STATE(463)] = 31453, + [SMALL_STATE(464)] = 31494, + [SMALL_STATE(465)] = 31535, + [SMALL_STATE(466)] = 31573, + [SMALL_STATE(467)] = 31611, + [SMALL_STATE(468)] = 31637, + [SMALL_STATE(469)] = 31663, + [SMALL_STATE(470)] = 31701, + [SMALL_STATE(471)] = 31739, + [SMALL_STATE(472)] = 31777, + [SMALL_STATE(473)] = 31803, + [SMALL_STATE(474)] = 31841, + [SMALL_STATE(475)] = 31879, + [SMALL_STATE(476)] = 31917, + [SMALL_STATE(477)] = 31955, + [SMALL_STATE(478)] = 31993, + [SMALL_STATE(479)] = 32031, + [SMALL_STATE(480)] = 32069, + [SMALL_STATE(481)] = 32107, + [SMALL_STATE(482)] = 32145, + [SMALL_STATE(483)] = 32183, + [SMALL_STATE(484)] = 32211, + [SMALL_STATE(485)] = 32239, + [SMALL_STATE(486)] = 32265, + [SMALL_STATE(487)] = 32291, + [SMALL_STATE(488)] = 32329, + [SMALL_STATE(489)] = 32367, + [SMALL_STATE(490)] = 32405, + [SMALL_STATE(491)] = 32443, + [SMALL_STATE(492)] = 32472, + [SMALL_STATE(493)] = 32505, + [SMALL_STATE(494)] = 32544, + [SMALL_STATE(495)] = 32571, + [SMALL_STATE(496)] = 32598, + [SMALL_STATE(497)] = 32637, + [SMALL_STATE(498)] = 32670, + [SMALL_STATE(499)] = 32701, + [SMALL_STATE(500)] = 32740, + [SMALL_STATE(501)] = 32769, + [SMALL_STATE(502)] = 32796, + [SMALL_STATE(503)] = 32827, + [SMALL_STATE(504)] = 32854, + [SMALL_STATE(505)] = 32879, + [SMALL_STATE(506)] = 32915, + [SMALL_STATE(507)] = 32941, + [SMALL_STATE(508)] = 32977, + [SMALL_STATE(509)] = 33003, + [SMALL_STATE(510)] = 33029, + [SMALL_STATE(511)] = 33065, + [SMALL_STATE(512)] = 33101, + [SMALL_STATE(513)] = 33122, + [SMALL_STATE(514)] = 33147, + [SMALL_STATE(515)] = 33188, + [SMALL_STATE(516)] = 33209, + [SMALL_STATE(517)] = 33230, + [SMALL_STATE(518)] = 33263, + [SMALL_STATE(519)] = 33284, + [SMALL_STATE(520)] = 33317, + [SMALL_STATE(521)] = 33338, + [SMALL_STATE(522)] = 33359, + [SMALL_STATE(523)] = 33380, + [SMALL_STATE(524)] = 33401, + [SMALL_STATE(525)] = 33422, + [SMALL_STATE(526)] = 33443, + [SMALL_STATE(527)] = 33464, + [SMALL_STATE(528)] = 33485, + [SMALL_STATE(529)] = 33526, + [SMALL_STATE(530)] = 33547, + [SMALL_STATE(531)] = 33568, + [SMALL_STATE(532)] = 33609, + [SMALL_STATE(533)] = 33634, + [SMALL_STATE(534)] = 33655, + [SMALL_STATE(535)] = 33676, + [SMALL_STATE(536)] = 33697, + [SMALL_STATE(537)] = 33718, + [SMALL_STATE(538)] = 33743, + [SMALL_STATE(539)] = 33764, + [SMALL_STATE(540)] = 33785, + [SMALL_STATE(541)] = 33806, + [SMALL_STATE(542)] = 33827, + [SMALL_STATE(543)] = 33848, + [SMALL_STATE(544)] = 33869, + [SMALL_STATE(545)] = 33890, + [SMALL_STATE(546)] = 33911, + [SMALL_STATE(547)] = 33932, + [SMALL_STATE(548)] = 33953, + [SMALL_STATE(549)] = 33978, + [SMALL_STATE(550)] = 33999, + [SMALL_STATE(551)] = 34020, + [SMALL_STATE(552)] = 34041, + [SMALL_STATE(553)] = 34064, + [SMALL_STATE(554)] = 34085, + [SMALL_STATE(555)] = 34106, + [SMALL_STATE(556)] = 34127, + [SMALL_STATE(557)] = 34148, + [SMALL_STATE(558)] = 34169, + [SMALL_STATE(559)] = 34190, + [SMALL_STATE(560)] = 34211, + [SMALL_STATE(561)] = 34235, + [SMALL_STATE(562)] = 34259, + [SMALL_STATE(563)] = 34279, + [SMALL_STATE(564)] = 34303, + [SMALL_STATE(565)] = 34341, + [SMALL_STATE(566)] = 34365, + [SMALL_STATE(567)] = 34387, + [SMALL_STATE(568)] = 34406, + [SMALL_STATE(569)] = 34425, + [SMALL_STATE(570)] = 34444, + [SMALL_STATE(571)] = 34473, + [SMALL_STATE(572)] = 34492, + [SMALL_STATE(573)] = 34511, + [SMALL_STATE(574)] = 34530, + [SMALL_STATE(575)] = 34549, + [SMALL_STATE(576)] = 34570, + [SMALL_STATE(577)] = 34589, + [SMALL_STATE(578)] = 34608, + [SMALL_STATE(579)] = 34631, + [SMALL_STATE(580)] = 34654, + [SMALL_STATE(581)] = 34689, + [SMALL_STATE(582)] = 34724, + [SMALL_STATE(583)] = 34745, + [SMALL_STATE(584)] = 34764, + [SMALL_STATE(585)] = 34783, + [SMALL_STATE(586)] = 34801, + [SMALL_STATE(587)] = 34819, + [SMALL_STATE(588)] = 34849, + [SMALL_STATE(589)] = 34867, + [SMALL_STATE(590)] = 34885, + [SMALL_STATE(591)] = 34903, + [SMALL_STATE(592)] = 34921, + [SMALL_STATE(593)] = 34939, + [SMALL_STATE(594)] = 34957, + [SMALL_STATE(595)] = 34975, + [SMALL_STATE(596)] = 34993, + [SMALL_STATE(597)] = 35011, + [SMALL_STATE(598)] = 35029, + [SMALL_STATE(599)] = 35047, + [SMALL_STATE(600)] = 35065, + [SMALL_STATE(601)] = 35083, + [SMALL_STATE(602)] = 35101, + [SMALL_STATE(603)] = 35119, + [SMALL_STATE(604)] = 35137, + [SMALL_STATE(605)] = 35155, + [SMALL_STATE(606)] = 35173, + [SMALL_STATE(607)] = 35191, + [SMALL_STATE(608)] = 35209, + [SMALL_STATE(609)] = 35227, + [SMALL_STATE(610)] = 35245, + [SMALL_STATE(611)] = 35263, + [SMALL_STATE(612)] = 35281, + [SMALL_STATE(613)] = 35299, + [SMALL_STATE(614)] = 35317, + [SMALL_STATE(615)] = 35345, + [SMALL_STATE(616)] = 35363, + [SMALL_STATE(617)] = 35381, + [SMALL_STATE(618)] = 35399, + [SMALL_STATE(619)] = 35417, + [SMALL_STATE(620)] = 35435, + [SMALL_STATE(621)] = 35453, + [SMALL_STATE(622)] = 35471, + [SMALL_STATE(623)] = 35489, + [SMALL_STATE(624)] = 35507, + [SMALL_STATE(625)] = 35535, + [SMALL_STATE(626)] = 35553, + [SMALL_STATE(627)] = 35571, + [SMALL_STATE(628)] = 35601, + [SMALL_STATE(629)] = 35619, + [SMALL_STATE(630)] = 35637, + [SMALL_STATE(631)] = 35655, + [SMALL_STATE(632)] = 35685, + [SMALL_STATE(633)] = 35703, + [SMALL_STATE(634)] = 35721, + [SMALL_STATE(635)] = 35739, + [SMALL_STATE(636)] = 35757, + [SMALL_STATE(637)] = 35787, + [SMALL_STATE(638)] = 35805, + [SMALL_STATE(639)] = 35823, + [SMALL_STATE(640)] = 35841, + [SMALL_STATE(641)] = 35859, + [SMALL_STATE(642)] = 35877, + [SMALL_STATE(643)] = 35895, + [SMALL_STATE(644)] = 35913, + [SMALL_STATE(645)] = 35931, + [SMALL_STATE(646)] = 35949, + [SMALL_STATE(647)] = 35969, + [SMALL_STATE(648)] = 35987, + [SMALL_STATE(649)] = 36005, + [SMALL_STATE(650)] = 36023, + [SMALL_STATE(651)] = 36043, + [SMALL_STATE(652)] = 36061, + [SMALL_STATE(653)] = 36079, + [SMALL_STATE(654)] = 36097, + [SMALL_STATE(655)] = 36115, + [SMALL_STATE(656)] = 36133, + [SMALL_STATE(657)] = 36151, + [SMALL_STATE(658)] = 36169, + [SMALL_STATE(659)] = 36187, + [SMALL_STATE(660)] = 36205, + [SMALL_STATE(661)] = 36223, + [SMALL_STATE(662)] = 36253, + [SMALL_STATE(663)] = 36283, + [SMALL_STATE(664)] = 36301, + [SMALL_STATE(665)] = 36319, + [SMALL_STATE(666)] = 36336, + [SMALL_STATE(667)] = 36353, + [SMALL_STATE(668)] = 36370, + [SMALL_STATE(669)] = 36387, + [SMALL_STATE(670)] = 36404, + [SMALL_STATE(671)] = 36421, + [SMALL_STATE(672)] = 36438, + [SMALL_STATE(673)] = 36455, + [SMALL_STATE(674)] = 36472, + [SMALL_STATE(675)] = 36489, + [SMALL_STATE(676)] = 36506, + [SMALL_STATE(677)] = 36523, + [SMALL_STATE(678)] = 36540, + [SMALL_STATE(679)] = 36557, + [SMALL_STATE(680)] = 36574, + [SMALL_STATE(681)] = 36591, + [SMALL_STATE(682)] = 36608, + [SMALL_STATE(683)] = 36625, + [SMALL_STATE(684)] = 36642, + [SMALL_STATE(685)] = 36659, + [SMALL_STATE(686)] = 36676, + [SMALL_STATE(687)] = 36693, + [SMALL_STATE(688)] = 36710, + [SMALL_STATE(689)] = 36727, + [SMALL_STATE(690)] = 36744, + [SMALL_STATE(691)] = 36761, + [SMALL_STATE(692)] = 36787, + [SMALL_STATE(693)] = 36809, + [SMALL_STATE(694)] = 36833, + [SMALL_STATE(695)] = 36859, + [SMALL_STATE(696)] = 36881, + [SMALL_STATE(697)] = 36907, + [SMALL_STATE(698)] = 36933, + [SMALL_STATE(699)] = 36955, + [SMALL_STATE(700)] = 36975, + [SMALL_STATE(701)] = 36997, + [SMALL_STATE(702)] = 37023, + [SMALL_STATE(703)] = 37049, + [SMALL_STATE(704)] = 37073, + [SMALL_STATE(705)] = 37095, + [SMALL_STATE(706)] = 37115, + [SMALL_STATE(707)] = 37138, + [SMALL_STATE(708)] = 37155, + [SMALL_STATE(709)] = 37172, + [SMALL_STATE(710)] = 37189, + [SMALL_STATE(711)] = 37206, + [SMALL_STATE(712)] = 37223, + [SMALL_STATE(713)] = 37242, + [SMALL_STATE(714)] = 37263, + [SMALL_STATE(715)] = 37284, + [SMALL_STATE(716)] = 37303, + [SMALL_STATE(717)] = 37326, + [SMALL_STATE(718)] = 37343, + [SMALL_STATE(719)] = 37360, + [SMALL_STATE(720)] = 37377, + [SMALL_STATE(721)] = 37396, + [SMALL_STATE(722)] = 37419, + [SMALL_STATE(723)] = 37440, + [SMALL_STATE(724)] = 37459, + [SMALL_STATE(725)] = 37482, + [SMALL_STATE(726)] = 37503, + [SMALL_STATE(727)] = 37522, + [SMALL_STATE(728)] = 37539, + [SMALL_STATE(729)] = 37556, + [SMALL_STATE(730)] = 37575, + [SMALL_STATE(731)] = 37592, + [SMALL_STATE(732)] = 37613, + [SMALL_STATE(733)] = 37636, + [SMALL_STATE(734)] = 37655, + [SMALL_STATE(735)] = 37672, + [SMALL_STATE(736)] = 37690, + [SMALL_STATE(737)] = 37710, + [SMALL_STATE(738)] = 37730, + [SMALL_STATE(739)] = 37748, + [SMALL_STATE(740)] = 37764, + [SMALL_STATE(741)] = 37784, + [SMALL_STATE(742)] = 37804, + [SMALL_STATE(743)] = 37822, + [SMALL_STATE(744)] = 37840, + [SMALL_STATE(745)] = 37858, + [SMALL_STATE(746)] = 37876, + [SMALL_STATE(747)] = 37894, + [SMALL_STATE(748)] = 37912, + [SMALL_STATE(749)] = 37932, + [SMALL_STATE(750)] = 37948, + [SMALL_STATE(751)] = 37966, + [SMALL_STATE(752)] = 37984, + [SMALL_STATE(753)] = 38002, + [SMALL_STATE(754)] = 38020, + [SMALL_STATE(755)] = 38038, + [SMALL_STATE(756)] = 38056, + [SMALL_STATE(757)] = 38074, + [SMALL_STATE(758)] = 38092, + [SMALL_STATE(759)] = 38110, + [SMALL_STATE(760)] = 38126, + [SMALL_STATE(761)] = 38142, + [SMALL_STATE(762)] = 38160, + [SMALL_STATE(763)] = 38178, + [SMALL_STATE(764)] = 38198, + [SMALL_STATE(765)] = 38214, + [SMALL_STATE(766)] = 38234, + [SMALL_STATE(767)] = 38254, + [SMALL_STATE(768)] = 38274, + [SMALL_STATE(769)] = 38292, + [SMALL_STATE(770)] = 38309, + [SMALL_STATE(771)] = 38322, + [SMALL_STATE(772)] = 38339, + [SMALL_STATE(773)] = 38352, + [SMALL_STATE(774)] = 38369, + [SMALL_STATE(775)] = 38386, + [SMALL_STATE(776)] = 38403, + [SMALL_STATE(777)] = 38420, + [SMALL_STATE(778)] = 38437, + [SMALL_STATE(779)] = 38454, + [SMALL_STATE(780)] = 38471, + [SMALL_STATE(781)] = 38484, + [SMALL_STATE(782)] = 38501, + [SMALL_STATE(783)] = 38514, + [SMALL_STATE(784)] = 38531, + [SMALL_STATE(785)] = 38548, + [SMALL_STATE(786)] = 38561, + [SMALL_STATE(787)] = 38578, + [SMALL_STATE(788)] = 38595, + [SMALL_STATE(789)] = 38608, + [SMALL_STATE(790)] = 38621, + [SMALL_STATE(791)] = 38638, + [SMALL_STATE(792)] = 38655, + [SMALL_STATE(793)] = 38672, + [SMALL_STATE(794)] = 38689, + [SMALL_STATE(795)] = 38706, + [SMALL_STATE(796)] = 38723, + [SMALL_STATE(797)] = 38740, + [SMALL_STATE(798)] = 38753, + [SMALL_STATE(799)] = 38770, + [SMALL_STATE(800)] = 38787, + [SMALL_STATE(801)] = 38800, + [SMALL_STATE(802)] = 38817, + [SMALL_STATE(803)] = 38830, + [SMALL_STATE(804)] = 38847, + [SMALL_STATE(805)] = 38864, + [SMALL_STATE(806)] = 38877, + [SMALL_STATE(807)] = 38890, + [SMALL_STATE(808)] = 38907, + [SMALL_STATE(809)] = 38920, + [SMALL_STATE(810)] = 38933, + [SMALL_STATE(811)] = 38950, + [SMALL_STATE(812)] = 38967, + [SMALL_STATE(813)] = 38984, + [SMALL_STATE(814)] = 39001, + [SMALL_STATE(815)] = 39018, + [SMALL_STATE(816)] = 39033, + [SMALL_STATE(817)] = 39046, + [SMALL_STATE(818)] = 39063, + [SMALL_STATE(819)] = 39080, + [SMALL_STATE(820)] = 39095, + [SMALL_STATE(821)] = 39112, + [SMALL_STATE(822)] = 39129, + [SMALL_STATE(823)] = 39144, + [SMALL_STATE(824)] = 39161, + [SMALL_STATE(825)] = 39178, + [SMALL_STATE(826)] = 39195, + [SMALL_STATE(827)] = 39212, + [SMALL_STATE(828)] = 39227, + [SMALL_STATE(829)] = 39244, + [SMALL_STATE(830)] = 39261, + [SMALL_STATE(831)] = 39278, + [SMALL_STATE(832)] = 39291, + [SMALL_STATE(833)] = 39304, + [SMALL_STATE(834)] = 39321, + [SMALL_STATE(835)] = 39334, + [SMALL_STATE(836)] = 39351, + [SMALL_STATE(837)] = 39368, + [SMALL_STATE(838)] = 39385, + [SMALL_STATE(839)] = 39402, + [SMALL_STATE(840)] = 39417, + [SMALL_STATE(841)] = 39434, + [SMALL_STATE(842)] = 39451, + [SMALL_STATE(843)] = 39468, + [SMALL_STATE(844)] = 39481, + [SMALL_STATE(845)] = 39498, + [SMALL_STATE(846)] = 39515, + [SMALL_STATE(847)] = 39532, + [SMALL_STATE(848)] = 39549, + [SMALL_STATE(849)] = 39566, + [SMALL_STATE(850)] = 39583, + [SMALL_STATE(851)] = 39600, + [SMALL_STATE(852)] = 39613, + [SMALL_STATE(853)] = 39630, + [SMALL_STATE(854)] = 39647, + [SMALL_STATE(855)] = 39660, + [SMALL_STATE(856)] = 39677, + [SMALL_STATE(857)] = 39694, + [SMALL_STATE(858)] = 39709, + [SMALL_STATE(859)] = 39722, + [SMALL_STATE(860)] = 39739, + [SMALL_STATE(861)] = 39756, + [SMALL_STATE(862)] = 39773, + [SMALL_STATE(863)] = 39790, + [SMALL_STATE(864)] = 39807, + [SMALL_STATE(865)] = 39824, + [SMALL_STATE(866)] = 39841, + [SMALL_STATE(867)] = 39858, + [SMALL_STATE(868)] = 39875, + [SMALL_STATE(869)] = 39892, + [SMALL_STATE(870)] = 39909, + [SMALL_STATE(871)] = 39926, + [SMALL_STATE(872)] = 39943, + [SMALL_STATE(873)] = 39960, + [SMALL_STATE(874)] = 39977, + [SMALL_STATE(875)] = 39994, + [SMALL_STATE(876)] = 40011, + [SMALL_STATE(877)] = 40028, + [SMALL_STATE(878)] = 40045, + [SMALL_STATE(879)] = 40062, + [SMALL_STATE(880)] = 40079, + [SMALL_STATE(881)] = 40096, + [SMALL_STATE(882)] = 40113, + [SMALL_STATE(883)] = 40130, + [SMALL_STATE(884)] = 40147, + [SMALL_STATE(885)] = 40164, + [SMALL_STATE(886)] = 40181, + [SMALL_STATE(887)] = 40198, + [SMALL_STATE(888)] = 40215, + [SMALL_STATE(889)] = 40232, + [SMALL_STATE(890)] = 40249, + [SMALL_STATE(891)] = 40266, + [SMALL_STATE(892)] = 40279, + [SMALL_STATE(893)] = 40292, + [SMALL_STATE(894)] = 40305, + [SMALL_STATE(895)] = 40322, + [SMALL_STATE(896)] = 40339, + [SMALL_STATE(897)] = 40356, + [SMALL_STATE(898)] = 40373, + [SMALL_STATE(899)] = 40386, + [SMALL_STATE(900)] = 40403, + [SMALL_STATE(901)] = 40420, + [SMALL_STATE(902)] = 40432, + [SMALL_STATE(903)] = 40444, + [SMALL_STATE(904)] = 40456, + [SMALL_STATE(905)] = 40470, + [SMALL_STATE(906)] = 40484, + [SMALL_STATE(907)] = 40498, + [SMALL_STATE(908)] = 40512, + [SMALL_STATE(909)] = 40526, + [SMALL_STATE(910)] = 40540, + [SMALL_STATE(911)] = 40552, + [SMALL_STATE(912)] = 40564, + [SMALL_STATE(913)] = 40578, + [SMALL_STATE(914)] = 40592, + [SMALL_STATE(915)] = 40606, + [SMALL_STATE(916)] = 40620, + [SMALL_STATE(917)] = 40634, + [SMALL_STATE(918)] = 40648, + [SMALL_STATE(919)] = 40662, + [SMALL_STATE(920)] = 40676, + [SMALL_STATE(921)] = 40690, + [SMALL_STATE(922)] = 40704, + [SMALL_STATE(923)] = 40716, + [SMALL_STATE(924)] = 40730, + [SMALL_STATE(925)] = 40742, + [SMALL_STATE(926)] = 40756, + [SMALL_STATE(927)] = 40770, + [SMALL_STATE(928)] = 40784, + [SMALL_STATE(929)] = 40798, + [SMALL_STATE(930)] = 40812, + [SMALL_STATE(931)] = 40824, + [SMALL_STATE(932)] = 40838, + [SMALL_STATE(933)] = 40852, + [SMALL_STATE(934)] = 40864, + [SMALL_STATE(935)] = 40878, + [SMALL_STATE(936)] = 40892, + [SMALL_STATE(937)] = 40906, + [SMALL_STATE(938)] = 40918, + [SMALL_STATE(939)] = 40932, + [SMALL_STATE(940)] = 40946, + [SMALL_STATE(941)] = 40960, + [SMALL_STATE(942)] = 40972, + [SMALL_STATE(943)] = 40986, + [SMALL_STATE(944)] = 41000, + [SMALL_STATE(945)] = 41014, + [SMALL_STATE(946)] = 41028, + [SMALL_STATE(947)] = 41042, + [SMALL_STATE(948)] = 41056, + [SMALL_STATE(949)] = 41068, + [SMALL_STATE(950)] = 41082, + [SMALL_STATE(951)] = 41094, + [SMALL_STATE(952)] = 41108, + [SMALL_STATE(953)] = 41122, + [SMALL_STATE(954)] = 41134, + [SMALL_STATE(955)] = 41148, + [SMALL_STATE(956)] = 41160, + [SMALL_STATE(957)] = 41172, + [SMALL_STATE(958)] = 41186, + [SMALL_STATE(959)] = 41200, + [SMALL_STATE(960)] = 41212, + [SMALL_STATE(961)] = 41224, + [SMALL_STATE(962)] = 41236, + [SMALL_STATE(963)] = 41248, + [SMALL_STATE(964)] = 41260, + [SMALL_STATE(965)] = 41272, + [SMALL_STATE(966)] = 41284, + [SMALL_STATE(967)] = 41298, + [SMALL_STATE(968)] = 41312, + [SMALL_STATE(969)] = 41324, + [SMALL_STATE(970)] = 41336, + [SMALL_STATE(971)] = 41350, + [SMALL_STATE(972)] = 41364, + [SMALL_STATE(973)] = 41378, + [SMALL_STATE(974)] = 41390, + [SMALL_STATE(975)] = 41402, + [SMALL_STATE(976)] = 41414, + [SMALL_STATE(977)] = 41426, + [SMALL_STATE(978)] = 41438, + [SMALL_STATE(979)] = 41450, + [SMALL_STATE(980)] = 41462, + [SMALL_STATE(981)] = 41476, + [SMALL_STATE(982)] = 41488, + [SMALL_STATE(983)] = 41500, + [SMALL_STATE(984)] = 41514, + [SMALL_STATE(985)] = 41526, + [SMALL_STATE(986)] = 41538, + [SMALL_STATE(987)] = 41552, + [SMALL_STATE(988)] = 41566, + [SMALL_STATE(989)] = 41578, + [SMALL_STATE(990)] = 41590, + [SMALL_STATE(991)] = 41604, + [SMALL_STATE(992)] = 41616, + [SMALL_STATE(993)] = 41628, + [SMALL_STATE(994)] = 41642, + [SMALL_STATE(995)] = 41654, + [SMALL_STATE(996)] = 41666, + [SMALL_STATE(997)] = 41678, + [SMALL_STATE(998)] = 41690, + [SMALL_STATE(999)] = 41704, + [SMALL_STATE(1000)] = 41715, + [SMALL_STATE(1001)] = 41726, + [SMALL_STATE(1002)] = 41737, + [SMALL_STATE(1003)] = 41748, + [SMALL_STATE(1004)] = 41759, + [SMALL_STATE(1005)] = 41770, + [SMALL_STATE(1006)] = 41781, + [SMALL_STATE(1007)] = 41792, + [SMALL_STATE(1008)] = 41803, + [SMALL_STATE(1009)] = 41814, + [SMALL_STATE(1010)] = 41825, + [SMALL_STATE(1011)] = 41836, + [SMALL_STATE(1012)] = 41847, + [SMALL_STATE(1013)] = 41858, + [SMALL_STATE(1014)] = 41869, + [SMALL_STATE(1015)] = 41880, + [SMALL_STATE(1016)] = 41891, + [SMALL_STATE(1017)] = 41902, + [SMALL_STATE(1018)] = 41913, + [SMALL_STATE(1019)] = 41924, + [SMALL_STATE(1020)] = 41935, + [SMALL_STATE(1021)] = 41946, + [SMALL_STATE(1022)] = 41957, + [SMALL_STATE(1023)] = 41968, + [SMALL_STATE(1024)] = 41979, + [SMALL_STATE(1025)] = 41990, + [SMALL_STATE(1026)] = 42001, + [SMALL_STATE(1027)] = 42012, + [SMALL_STATE(1028)] = 42023, + [SMALL_STATE(1029)] = 42034, + [SMALL_STATE(1030)] = 42045, + [SMALL_STATE(1031)] = 42056, + [SMALL_STATE(1032)] = 42067, + [SMALL_STATE(1033)] = 42078, + [SMALL_STATE(1034)] = 42089, + [SMALL_STATE(1035)] = 42100, + [SMALL_STATE(1036)] = 42111, + [SMALL_STATE(1037)] = 42122, + [SMALL_STATE(1038)] = 42133, + [SMALL_STATE(1039)] = 42144, + [SMALL_STATE(1040)] = 42155, + [SMALL_STATE(1041)] = 42166, + [SMALL_STATE(1042)] = 42177, + [SMALL_STATE(1043)] = 42188, + [SMALL_STATE(1044)] = 42199, + [SMALL_STATE(1045)] = 42210, + [SMALL_STATE(1046)] = 42221, + [SMALL_STATE(1047)] = 42232, + [SMALL_STATE(1048)] = 42243, + [SMALL_STATE(1049)] = 42254, + [SMALL_STATE(1050)] = 42265, + [SMALL_STATE(1051)] = 42276, + [SMALL_STATE(1052)] = 42287, + [SMALL_STATE(1053)] = 42298, + [SMALL_STATE(1054)] = 42309, + [SMALL_STATE(1055)] = 42320, + [SMALL_STATE(1056)] = 42331, + [SMALL_STATE(1057)] = 42342, + [SMALL_STATE(1058)] = 42353, + [SMALL_STATE(1059)] = 42364, + [SMALL_STATE(1060)] = 42375, + [SMALL_STATE(1061)] = 42386, + [SMALL_STATE(1062)] = 42397, + [SMALL_STATE(1063)] = 42408, + [SMALL_STATE(1064)] = 42419, + [SMALL_STATE(1065)] = 42430, + [SMALL_STATE(1066)] = 42441, + [SMALL_STATE(1067)] = 42452, + [SMALL_STATE(1068)] = 42463, + [SMALL_STATE(1069)] = 42474, + [SMALL_STATE(1070)] = 42485, + [SMALL_STATE(1071)] = 42496, + [SMALL_STATE(1072)] = 42507, + [SMALL_STATE(1073)] = 42518, + [SMALL_STATE(1074)] = 42529, + [SMALL_STATE(1075)] = 42540, + [SMALL_STATE(1076)] = 42551, + [SMALL_STATE(1077)] = 42562, + [SMALL_STATE(1078)] = 42573, + [SMALL_STATE(1079)] = 42584, + [SMALL_STATE(1080)] = 42595, + [SMALL_STATE(1081)] = 42606, + [SMALL_STATE(1082)] = 42617, + [SMALL_STATE(1083)] = 42628, + [SMALL_STATE(1084)] = 42639, + [SMALL_STATE(1085)] = 42650, + [SMALL_STATE(1086)] = 42661, + [SMALL_STATE(1087)] = 42672, + [SMALL_STATE(1088)] = 42683, + [SMALL_STATE(1089)] = 42694, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -39200,1092 +40352,1114 @@ 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 = true}}, SHIFT(814), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), [23] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_type_identifier, 3, .production_id = 13), [25] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_type_identifier, 3, .production_id = 13), - [27] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer, 2), - [29] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer, 2), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [71] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer, 1), - [73] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer, 1), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [83] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record, 1, .production_id = 6), - [85] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record, 1, .production_id = 6), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [97] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_unit, 1), - [99] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), - [102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_unit, 1), - [104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__maybe_function_expression, 1), - [106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), - [120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), - [122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), - [124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), - [126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), - [136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), - [138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), - [144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), - [146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 2, .production_id = 27), - [148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 2, .production_id = 27), - [150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case, 5, .production_id = 53), - [152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case, 5, .production_id = 53), - [154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), - [168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), - [170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), - [172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), - [174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), - [176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), - [178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 1), - [182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 1), - [184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_access, 3, .production_id = 34), - [186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_access, 3, .production_id = 34), - [188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_group, 3), - [190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_group, 3), - [192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 3, .production_id = 35), - [194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 3, .production_id = 35), - [196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(63), - [199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), - [201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(1022), - [204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(101), - [207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(156), - [210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(728), - [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(919), - [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(387), - [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(62), - [222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(90), - [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(377), - [228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(369), - [231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(165), - [234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(6), - [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(6), - [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(106), - [243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(91), - [246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 4), - [256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 4), - [258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 6), - [260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 6), - [262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), - [264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update, 7, .production_id = 66), - [266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_update, 7, .production_id = 66), - [268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__maybe_record_expression, 1), - [270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 7, .production_id = 64), - [272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 7, .production_id = 64), - [274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 5), - [276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 5), - [278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_todo, 1), - [280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_todo, 1), - [282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3), - [286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3), - [288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 5, .production_id = 47), - [290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 5, .production_id = 47), - [292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record, 2, .production_id = 17), - [294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record, 2, .production_id = 17), - [296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 5, .production_id = 46), - [304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 5, .production_id = 46), - [306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 7, .production_id = 63), - [308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 7, .production_id = 63), - [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 6, .production_id = 57), - [316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 6, .production_id = 57), - [318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_todo, 4, .production_id = 42), - [320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_todo, 4, .production_id = 42), - [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string, 4), - [328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 4), - [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 5), - [336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 5), - [338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 4), - [340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 4), - [342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), - [348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), - [350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string, 5), - [352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 5), - [354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert, 2, .production_id = 25), - [356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert, 2, .production_id = 25), - [358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let, 2, .production_id = 25), - [360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let, 2, .production_id = 25), - [362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string, 3), - [364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 3), - [366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), - [368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), - [370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string, 2), - [372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 2), - [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_identifier, 1), - [380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_identifier, 1), - [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [388] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(960), - [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1), - [410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 1), - [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), - [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), - [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_subjects, 3), SHIFT(61), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_subjects, 2), SHIFT(61), - [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 33), - [480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 33), - [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_seq, 1), - [494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_seq, 1), - [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment, 3, .production_id = 44), - [508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment, 3, .production_id = 44), - [510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment, 4, .production_id = 54), - [512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment, 4, .production_id = 54), - [514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try, 4, .production_id = 40), - [516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try, 4, .production_id = 40), - [518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try, 5, .production_id = 52), - [520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try, 5, .production_id = 52), - [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [524] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(906), - [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 3, .production_id = 62), - [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 3, .production_id = 62), - [554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 4, .production_id = 65), - [556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 4, .production_id = 65), - [558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment_options, 2), - [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment_options, 3), - [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment_options, 3), - [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment_options, 3), - [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment_options, 2), - [592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment_options, 2), - [594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [605] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(878), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), - [615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), - [617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(814), - [620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(884), - [623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(574), - [626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(888), - [629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(890), - [632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(654), - [635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(912), - [638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__maybe_tuple_expression, 1), - [640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__maybe_record_expression, 1), - [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), - [666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(901), - [669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(572), - [672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(938), - [675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(937), - [678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(605), - [681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(883), - [684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clauses, 1), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), - [714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(988), - [717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(326), - [720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(344), - [723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(721), - [726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(703), - [729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(433), - [732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(433), - [735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(508), - [738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(428), - [741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(430), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record, 1, .production_id = 6), - [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record, 1, .production_id = 6), - [770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_repeat1, 2), - [772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_pattern, 2, .production_id = 43), - [774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_pattern, 2, .production_id = 43), - [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_patterns, 2), - [794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_patterns, 2), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [77] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer, 1), + [79] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer, 1), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [87] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer, 2), + [89] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer, 2), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(35), + [134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), + [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(1058), + [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(85), + [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(154), + [145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(749), + [148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(940), + [151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(399), + [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(67), + [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(84), + [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(378), + [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(370), + [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(717), + [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(181), + [172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(9), + [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(9), + [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(140), + [181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(124), + [184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record, 1, .production_id = 6), + [188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record, 1, .production_id = 6), + [190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case, 5, .production_id = 53), + [214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case, 5, .production_id = 53), + [216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 2, .production_id = 27), + [218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 2, .production_id = 27), + [220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_group, 3), + [222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_group, 3), + [224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), + [226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), + [228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), + [230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), + [232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), + [234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), + [236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), + [238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), + [240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_access, 3, .production_id = 34), + [242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_access, 3, .production_id = 34), + [244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 1), + [246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 1), + [248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 3, .production_id = 35), + [250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 3, .production_id = 35), + [252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_unit, 1), + [254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), + [257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_unit, 1), + [259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__maybe_function_expression, 1), + [261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), + [263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), + [265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), + [267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 5), + [279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 5), + [281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__maybe_record_expression, 1), + [283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record, 2, .production_id = 17), + [285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record, 2, .production_id = 17), + [287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 6), + [289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 6), + [291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_todo, 1), + [293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_todo, 1), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 7, .production_id = 64), + [303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 7, .production_id = 64), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update, 7, .production_id = 66), + [319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_update, 7, .production_id = 66), + [321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 5, .production_id = 47), + [323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 5, .production_id = 47), + [325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3), + [327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3), + [329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 4), + [331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 4), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 5, .production_id = 46), + [339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 5, .production_id = 46), + [341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 7, .production_id = 63), + [343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 7, .production_id = 63), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), + [349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), + [351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 6, .production_id = 57), + [353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 6, .production_id = 57), + [355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_todo, 4, .production_id = 42), + [357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_todo, 4, .production_id = 42), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string, 5), + [365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 5), + [367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string, 4), + [369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 4), + [371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), + [373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), + [375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 4), + [377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 4), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string, 3), + [385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 3), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert, 2, .production_id = 25), + [391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert, 2, .production_id = 25), + [393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let, 2, .production_id = 25), + [395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let, 2, .production_id = 25), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 5), + [405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 5), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string, 2), + [415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 2), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_identifier, 1), + [465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_identifier, 1), + [467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_subjects, 2), SHIFT(43), + [470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [472] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(998), + [476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1), + [478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 1), + [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_subjects, 3), SHIFT(43), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 33), + [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 33), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try, 4, .production_id = 40), + [515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try, 4, .production_id = 40), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment, 4, .production_id = 54), + [521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment, 4, .production_id = 54), + [523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try, 5, .production_id = 52), + [525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try, 5, .production_id = 52), + [527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment, 3, .production_id = 44), + [529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment, 3, .production_id = 44), + [531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_seq, 1), + [533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_seq, 1), + [535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [541] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(929), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 4, .production_id = 65), + [569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 4, .production_id = 65), + [571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 3, .production_id = 62), + [573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 3, .production_id = 62), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment_options, 2), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment_options, 3), + [591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment_options, 2), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment_options, 3), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment_options, 3), + [609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment_options, 2), + [611] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(912), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), + [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), + [634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(839), + [637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(908), + [640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(580), + [643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(909), + [646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(914), + [649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(661), + [652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(917), + [655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__maybe_record_expression, 1), + [657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__maybe_tuple_expression, 1), + [659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), + [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clauses, 1), + [695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), + [697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(1053), + [700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(337), + [703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(345), + [706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(759), + [709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(711), + [712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(707), + [715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(437), + [718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(437), + [721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(538), + [724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(436), + [727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(435), + [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), + [766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(923), + [769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(581), + [772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(971), + [775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(970), + [778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(636), + [781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(907), + [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_patterns, 3), - [808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_patterns, 3), - [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_pattern, 3, .production_id = 50), - [814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_pattern, 3, .production_id = 50), - [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple, 3), - [846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_tuple, 3), - [848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple, 5), - [850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_tuple, 5), - [852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_list, 5), - [854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_list, 5), - [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string, 5), - [864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string, 5), - [866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string, 2), - [868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string, 2), - [870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_arguments, 4), - [872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record_arguments, 4), - [874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_list, 2), - [876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_list, 2), - [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string, 3), - [884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string, 3), + [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_repeat1, 2), + [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_patterns, 3), + [818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_patterns, 3), + [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_patterns, 2), + [826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_patterns, 2), + [828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_pattern, 2, .production_id = 43), + [830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_pattern, 2, .production_id = 43), + [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record, 1, .production_id = 6), + [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record, 1, .production_id = 6), + [840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_pattern, 3, .production_id = 50), + [842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_pattern, 3, .production_id = 50), + [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_list, 2), + [870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_list, 2), + [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_arguments, 4), + [876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record_arguments, 4), + [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_list, 3), + [884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_list, 3), [886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_subjects, 1), - [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_list, 3), - [892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_list, 3), + [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple, 3), + [892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_tuple, 3), [894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple, 6), [896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_tuple, 6), - [898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_arguments, 2), - [900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record_arguments, 2), - [902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record, 2, .production_id = 17), - [904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record, 2, .production_id = 17), + [898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple, 4), + [900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_tuple, 4), + [902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_list, 4), + [904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_list, 4), [906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_arguments, 5), [908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record_arguments, 5), - [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple, 4), - [916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_tuple, 4), - [918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_arguments, 3), - [920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record_arguments, 3), - [922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string, 4), - [924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string, 4), - [926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_list, 4), - [928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_list, 4), - [930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 1, .production_id = 16), - [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update_argument, 3, .production_id = 36), - [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 3, .production_id = 36), - [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string, 4), + [912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string, 4), + [914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_arguments, 3), + [916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record_arguments, 3), + [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_list, 5), + [922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_list, 5), + [924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple, 5), + [926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_tuple, 5), + [928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_arguments, 2), + [930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record_arguments, 2), + [932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string, 3), + [934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string, 3), + [936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record, 2, .production_id = 17), + [938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record, 2, .production_id = 17), + [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string, 2), + [948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string, 2), + [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string, 5), + [970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string, 5), + [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 1, .production_id = 16), [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [1022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [1036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [1038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [1042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), - [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [1070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [1084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [1094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_guard_unit, 1, .production_id = 61), - [1108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_unit, 1, .production_id = 61), - [1110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_tuple_access, 3, .production_id = 34), - [1112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_tuple_access, 3, .production_id = 34), - [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [1116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_guard_unit, 1), - [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [1120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_unit, 1), - [1122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [1124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), - [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [1130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [1132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_guard_expression, 1, .production_id = 60), - [1134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_expression, 1, .production_id = 60), - [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_guard_binary_expression, 3, .production_id = 33), - [1138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_binary_expression, 3, .production_id = 33), - [1140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_guard_unit, 3), - [1142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_unit, 3), - [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [1146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [1148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [1150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [1152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, .production_id = 6), - [1154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [1156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_var, 1), - [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_guard, 2), - [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [1182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 1, .production_id = 6), - [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1), - [1188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), - [1190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2), - [1192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [1196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), - [1200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(978), - [1203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, .production_id = 38), - [1205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1062), - [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 4), - [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discard, 1), - [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, .production_id = 48), - [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 4, .production_id = 38), - [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), - [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 2), - [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 4, .production_id = 49), - [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 2), - [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 31), - [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string, 4), - [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string, 5), - [1230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 5), - [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3), - [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), - [1236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), - [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 3), - [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [1244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 24), - [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), - [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), - [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string, 3), - [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 6), - [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_hole, 1), - [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 5, .production_id = 49), - [1260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 6, .production_id = 49), - [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [1264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 1, .production_id = 6), - [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), - [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 6), - [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 2, .production_id = 17), - [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string, 2), - [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), - [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), - [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), - [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2), - [1284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 5, .production_id = 38), - [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 6, .production_id = 58), - [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, .production_id = 58), - [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [1292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 2, .production_id = 17), - [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, .production_id = 48), - [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 3, .production_id = 39), - [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 2, .production_id = 3), - [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_imports, 3), - [1312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 2), - [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), - [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), - [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), - [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1), - [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_imports, 5), - [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 2, .production_id = 7), - [1336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 4, .production_id = 9), - [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_imports, 2), - [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), - [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_imports, 4), - [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__external_function, 8, .production_id = 37), - [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target_group, 5, .production_id = 8), - [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_body, 2), - [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_alias, 3), - [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function, 8, .production_id = 45), - [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant, 4, .production_id = 11), - [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_opaque_type_alias, 4), - [1368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_opaque_type_definition, 4), - [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target_group, 4, .production_id = 8), - [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function, 6, .production_id = 26), - [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 6, .production_id = 23), - [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__external_type, 3), - [1380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_type_alias, 3), - [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_type_definition, 3), + [980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 3, .production_id = 36), + [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update_argument, 3, .production_id = 36), + [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [1022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [1036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [1042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [1044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [1060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [1068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [1082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [1084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [1112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [1120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [1122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [1130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), + [1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [1138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_tuple_access, 3, .production_id = 34), + [1140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_tuple_access, 3, .production_id = 34), + [1142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_guard_binary_expression, 3, .production_id = 33), + [1144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_binary_expression, 3, .production_id = 33), + [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), + [1148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_guard_unit, 3), + [1150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_unit, 3), + [1152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [1154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_guard_unit, 1), + [1156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_unit, 1), + [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [1160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_guard_unit, 1, .production_id = 61), + [1162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_unit, 1, .production_id = 61), + [1164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_guard_expression, 1, .production_id = 60), + [1166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_expression, 1, .production_id = 60), + [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [1174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_guard, 2), + [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, .production_id = 6), + [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [1192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [1196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [1200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 1, .production_id = 6), + [1206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_var, 1), + [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1), + [1212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [1214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2), + [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), + [1220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1059), + [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [1227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 4), + [1229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 1, .production_id = 6), + [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [1239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, .production_id = 38), + [1241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 2), + [1243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 2, .production_id = 17), + [1245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 6, .production_id = 49), + [1247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string, 3), + [1249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 6, .production_id = 58), + [1251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, .production_id = 48), + [1253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 4, .production_id = 38), + [1255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), + [1257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 4, .production_id = 49), + [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [1261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), + [1263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_hole, 1), + [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [1267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1082), + [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string, 4), + [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), + [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string, 5), + [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 24), + [1278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discard, 1), + [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 3), + [1284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 6), + [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 5, .production_id = 49), + [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), + [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), + [1292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 5, .production_id = 38), + [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 31), + [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), + [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, .production_id = 58), + [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), + [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, .production_id = 48), + [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), + [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 2), + [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 2, .production_id = 17), + [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3), + [1312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 6), + [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 5), + [1316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2), + [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string, 2), + [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [1324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 3, .production_id = 39), + [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 2, .production_id = 3), + [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_imports, 3), + [1336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_imports, 5), + [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), + [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 2), + [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_imports, 4), + [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), + [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_imports, 2), + [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [1356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1), + [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 4, .production_id = 9), + [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 2, .production_id = 7), + [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), + [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__custom_type_definition, 4), + [1380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function, 8, .production_id = 45), + [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_body, 2), [1384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 2), - [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 2), - [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__custom_type_definition, 4), - [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_function, 2, .production_id = 5), - [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant, 5, .production_id = 18), - [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_external_function, 2, .production_id = 5), - [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_external_type, 2), - [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_constant, 2, .production_id = 4), - [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 4, .production_id = 10), - [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 1, .production_id = 2), - [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function, 1, .production_id = 2), - [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_type, 1), - [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 1, .production_id = 1), - [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 38), - [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [1428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_repeat1, 2), SHIFT_REPEAT(134), - [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [1445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_pattern, 1, .production_id = 43), - [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [1449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type, 1, .production_id = 6), - [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [1453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constructors, 1), - [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [1459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern_tail, 1), - [1461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_pattern, 2, .production_id = 50), - [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [1465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 50), - [1467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 50), SHIFT_REPEAT(401), - [1470] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(936), - [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_constructors_repeat1, 2), - [1476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructors_repeat1, 2), SHIFT_REPEAT(173), - [1479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 50), SHIFT_REPEAT(386), - [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [1484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 1, .production_id = 14), - [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pattern_bit_string_segment_options_repeat1, 2), - [1494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_bit_string_segment_options_repeat1, 2), SHIFT_REPEAT(273), - [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [1513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update_arguments, 3), - [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment_options, 1), - [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), - [1523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update_arguments, 2), - [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_patterns_repeat1, 2), - [1527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_patterns_repeat1, 2), SHIFT_REPEAT(373), - [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment_options, 1), - [1532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [1534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_tuple_repeat1, 2), SHIFT_REPEAT(421), - [1537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_tuple_repeat1, 2), - [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_patterns, 1), - [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), - [1547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_pattern_arguments_repeat1, 2), SHIFT_REPEAT(340), - [1550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_pattern_arguments_repeat1, 2), - [1552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 1, .production_id = 15), - [1554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_bit_string_segment_options_repeat1, 2), - [1556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_bit_string_segment_options_repeat1, 2), SHIFT_REPEAT(265), - [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [1561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment_options, 1), - [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [1565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_bit_string_segment_options_repeat1, 2), - [1567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_bit_string_segment_options_repeat1, 2), SHIFT_REPEAT(270), - [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constructor, 1, .production_id = 6), - [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_arguments, 3), - [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [1588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(921), - [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [1595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_external_function_parameters_repeat1, 2), SHIFT_REPEAT(454), - [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_external_function_parameters_repeat1, 2), - [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [1614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_parameters_repeat1, 2), SHIFT_REPEAT(555), - [1617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_parameters_repeat1, 2), - [1619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 2, .production_id = 12), - [1621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bit_string_segment_option_unit, 4, .production_id = 56), - [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [1625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__labeled_discard_param, 2, .production_id = 22), - [1627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__labeled_name_param, 2, .production_id = 22), - [1629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment, 1, .production_id = 32), - [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [1639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string_segment_option_size, 4, .production_id = 55), - [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [1645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(23), - [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), - [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [1654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment, 1, .production_id = 16), - [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_subjects, 2), - [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [1696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_bit_string_repeat1, 2), SHIFT_REPEAT(368), - [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pattern_bit_string_repeat1, 2), - [1701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string_segment_option_size, 4, .production_id = 55), - [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [1707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_record_arguments_repeat1, 2), SHIFT_REPEAT(394), - [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_record_arguments_repeat1, 2), - [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple_type, 5), - [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_import, 1, .production_id = 6), - [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [1718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_tuple_type_repeat1, 2), SHIFT_REPEAT(507), - [1721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_tuple_type_repeat1, 2), - [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [1729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_arguments, 4), - [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [1735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type, 2, .production_id = 17), - [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [1743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_type_arguments_repeat1, 2), SHIFT_REPEAT(497), - [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_type_arguments_repeat1, 2), - [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment, 1, .production_id = 16), - [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple_type, 4), - [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [1784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unqualified_imports_repeat1, 2), - [1786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unqualified_imports_repeat1, 2), SHIFT_REPEAT(697), - [1789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_arguments_repeat1, 2), SHIFT_REPEAT(441), - [1792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_constructor_arguments_repeat1, 2), - [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [1796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name_param, 1, .production_id = 6), - [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [1812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(467), - [1815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), - [1817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_arguments, 5), - [1819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple_type, 6), - [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [1825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(453), - [1828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), - [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple_type, 3), - [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [1846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_update_arguments_repeat1, 2), SHIFT_REPEAT(799), - [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_update_arguments_repeat1, 2), - [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update_arguments, 1), - [1861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_arguments, 2), - [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_argument, 3, .production_id = 59), - [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [1869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__constant_bit_string_repeat1, 2), SHIFT_REPEAT(411), - [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__constant_bit_string_repeat1, 2), - [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [1876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discard_param, 1, .production_id = 6), - [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [1900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_argument, 1, .production_id = 41), - [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [1904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string_segment_option_size, 4), - [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [1910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_bit_string_repeat1, 2), SHIFT_REPEAT(176), - [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_bit_string_repeat1, 2), - [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [1969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment, 3, .production_id = 29), - [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [1983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment, 3, .production_id = 29), - [1985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameter, 3, .production_id = 30), - [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_argument, 1, .production_id = 16), - [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constructor_arguments, 3), - [1997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 4), - [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constructor_arguments, 2), - [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_argument, 1), - [2009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 5), - [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 2, .production_id = 21), - [2013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 2, .production_id = 20), - [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [2017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_import, 3, .production_id = 28), - [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1), - [2021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 2), - [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constructor_argument, 3, .production_id = 36), - [2025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constructor_arguments, 5), - [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constructor_argument, 1, .production_id = 16), - [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_spread, 1), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constructor_arguments, 4), - [2041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 3), - [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameter, 1, .production_id = 19), - [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hole, 1), - [2059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_argument, 3, .production_id = 36), - [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constructor, 2, .production_id = 17), - [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument, 1), - [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment, 3, .production_id = 51), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [2077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_types, 4), - [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameters, 3), - [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameters, 2), - [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameters, 5), - [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string_segment_argument, 1), - [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [2147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_types, 5), - [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [2165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_spread, 2), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [2177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target, 1), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [2189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_types, 3), - [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [2203] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_type_annotation, 2, .production_id = 12), - [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [2235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameters, 4), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [2249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern_tail, 2), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [2257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_types, 2), + [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__external_function, 8, .production_id = 37), + [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant, 4, .production_id = 11), + [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 1, .production_id = 2), + [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_external_type, 2), + [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_external_function, 2, .production_id = 5), + [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_function, 2, .production_id = 5), + [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 6, .production_id = 23), + [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 2), + [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function, 1, .production_id = 2), + [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_type, 1), + [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 1, .production_id = 1), + [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target_group, 4, .production_id = 8), + [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant, 5, .production_id = 18), + [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function, 6, .production_id = 26), + [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 4, .production_id = 10), + [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_opaque_type_alias, 4), + [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_constant, 2, .production_id = 4), + [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__external_type, 3), + [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target_group, 5, .production_id = 8), + [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_type_definition, 3), + [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_alias, 3), + [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_type_alias, 3), + [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_opaque_type_definition, 4), + [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 38), + [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [1448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_repeat1, 2), SHIFT_REPEAT(135), + [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), + [1477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_pattern, 1, .production_id = 43), + [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [1481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constructors, 1), + [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), + [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), + [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), + [1495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(719), + [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 50), + [1500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 50), SHIFT_REPEAT(388), + [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern_tail, 1), + [1505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 50), SHIFT_REPEAT(392), + [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type, 1, .production_id = 6), + [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [1516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [1522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_pattern, 2, .production_id = 50), + [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_constructors_repeat1, 2), + [1532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructors_repeat1, 2), SHIFT_REPEAT(170), + [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [1537] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(952), + [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [1549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment_options, 1), + [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [1557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 1, .production_id = 15), + [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [1561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 1, .production_id = 14), + [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_bit_string_segment_options_repeat1, 2), + [1565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_bit_string_segment_options_repeat1, 2), SHIFT_REPEAT(275), + [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), + [1578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_bit_string_segment_options_repeat1, 2), + [1580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_bit_string_segment_options_repeat1, 2), SHIFT_REPEAT(277), + [1583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_pattern_arguments_repeat1, 2), SHIFT_REPEAT(346), + [1586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_pattern_arguments_repeat1, 2), + [1588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_tuple_repeat1, 2), SHIFT_REPEAT(429), + [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_tuple_repeat1, 2), + [1593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_patterns_repeat1, 2), + [1595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_patterns_repeat1, 2), SHIFT_REPEAT(351), + [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_patterns, 1), + [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment_options, 1), + [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [1606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constructor, 1, .production_id = 6), + [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [1618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pattern_bit_string_segment_options_repeat1, 2), + [1620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_bit_string_segment_options_repeat1, 2), SHIFT_REPEAT(274), + [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment_options, 1), + [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [1627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update_arguments, 2), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [1633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update_arguments, 3), + [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [1643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_arguments, 5), + [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [1649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_argument, 1, .production_id = 41), + [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [1657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_update_arguments_repeat1, 2), SHIFT_REPEAT(775), + [1660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_update_arguments_repeat1, 2), + [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [1670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_bit_string_repeat1, 2), SHIFT_REPEAT(167), + [1673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_bit_string_repeat1, 2), + [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string_segment_option_size, 4), + [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [1681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(462), + [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), + [1686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string_segment_option_size, 4, .production_id = 55), + [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [1690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update_arguments, 1), + [1692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(488), + [1695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), + [1697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_argument, 3, .production_id = 59), + [1699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_arguments_repeat1, 2), SHIFT_REPEAT(450), + [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_constructor_arguments_repeat1, 2), + [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [1714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_type_arguments_repeat1, 2), SHIFT_REPEAT(505), + [1717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_type_arguments_repeat1, 2), + [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [1723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_arguments, 4), + [1725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_tuple_type_repeat1, 2), SHIFT_REPEAT(517), + [1728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_tuple_type_repeat1, 2), + [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple_type, 5), + [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [1738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_record_arguments_repeat1, 2), SHIFT_REPEAT(393), + [1741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_record_arguments_repeat1, 2), + [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [1745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bit_string_segment_option_unit, 4, .production_id = 56), + [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [1751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string_segment_option_size, 4, .production_id = 55), + [1753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name_param, 1, .production_id = 6), + [1755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_subjects, 2), + [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [1765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(26), + [1768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), + [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment, 1, .production_id = 32), + [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discard_param, 1, .production_id = 6), + [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_import, 1, .production_id = 6), + [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [1804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment, 1, .production_id = 16), + [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [1808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_external_function_parameters_repeat1, 2), SHIFT_REPEAT(455), + [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_external_function_parameters_repeat1, 2), + [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [1817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_bit_string_repeat1, 2), SHIFT_REPEAT(348), + [1820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pattern_bit_string_repeat1, 2), + [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type, 2, .production_id = 17), + [1824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_arguments, 3), + [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [1828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple_type, 4), + [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [1832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__constant_bit_string_repeat1, 2), SHIFT_REPEAT(401), + [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__constant_bit_string_repeat1, 2), + [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unqualified_imports_repeat1, 2), + [1859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unqualified_imports_repeat1, 2), SHIFT_REPEAT(721), + [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [1868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__labeled_name_param, 2, .production_id = 22), + [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [1876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__labeled_discard_param, 2, .production_id = 22), + [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment, 1, .production_id = 16), + [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 2, .production_id = 12), + [1892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_parameters_repeat1, 2), SHIFT_REPEAT(564), + [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_parameters_repeat1, 2), + [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [1901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(987), + [1904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), + [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [1948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [1984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple_type, 3), + [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple_type, 6), + [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_arguments, 2), + [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [2012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 3), + [2014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_argument, 1), + [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [2020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_argument, 1, .production_id = 16), + [2022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constructor_arguments, 5), + [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [2042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constructor_arguments, 2), + [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constructor_argument, 1, .production_id = 16), + [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [2050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_spread, 1), + [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [2056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument, 1), + [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [2070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 4), + [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [2080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 2, .production_id = 21), + [2082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 2, .production_id = 20), + [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [2088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameter, 1, .production_id = 19), + [2090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_import, 3, .production_id = 28), + [2092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment, 3, .production_id = 29), + [2094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constructor, 2, .production_id = 17), + [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [2100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment, 3, .production_id = 29), + [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [2108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment, 3, .production_id = 51), + [2110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constructor_argument, 3, .production_id = 36), + [2112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constructor_arguments, 4), + [2114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameter, 3, .production_id = 30), + [2116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constructor_arguments, 3), + [2118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1), + [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [2122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 5), + [2124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 2), + [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [2128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_argument, 3, .production_id = 36), + [2130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hole, 1), + [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [2148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameters, 5), + [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_types, 3), + [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_spread, 2), + [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [2170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameters, 4), + [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [2174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_types, 4), + [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [2178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string_segment_argument, 1), + [2180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameters, 2), + [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [2196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_type_annotation, 2, .production_id = 12), + [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern_tail, 2), + [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_types, 2), + [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target, 1), + [2288] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_types, 5), + [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [2300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameters, 3), + [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), }; #ifdef __cplusplus